/* .wp-block-button{
	margin-bottom: 20px;
	&.is-style-squared{
		.wp-block-button__link{
			border-radius: 0;
		}
	}
}
// Cover
.wp-block-cover{
	color: $white;
}
// paraggraph
.single-post p{
	&[class],
	&[style]{
		line-height: normal;
		clear: both;
		overflow: hidden;
	}	
}
// Block
[class*="wp-block-"]{
	margin-bottom: 30px;
	&:first-child{
		margin-top: 0;
	}
	&:last-child{
		margin-bottom: 0;
	}
}
.kng-sidebar-area{
	[class*="wp-block-"]{
		margin-top: 0;
		margin-bottom: 0;
		&:first-child{
			margin-top: 0;
		}
		&:last-child{
			margin-bottom: 0;
		}
	} 
	 
	.wp-block-latest-comments{
		[class*="wp-block-"]{
		    padding-top: 3px;
		    padding-bottom: 3px;
		    line-height: 1.5;
		}
	}
	.widget_block{
		 
	    ul{
	        margin: 0;
	    }
	    li > a{
	        display: flex;
	        flex-wrap: wrap;
	        align-items: center;
	        position: relative;
	    }
	    
	}
}
// Block Group 
.wp-block-group{
	&.has-background{
		padding: 15px 20px;
	}
	.wp-block-button + *{
		padding-top: 15px;
	}
}
// RSS
.wp-block-rss{
	list-style: none;
}

.wp-block-table .has-fixed-layout{
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
// Gallery 
.blocks-gallery-caption {margin-bottom: 30px;}
.wp-caption.alignright{margin-bottom: 0!important;}
.wp-block-quote br{
	display: none;
}
.kng-sidebar-area-inner h2{
	font-size: 32px;
    line-height: 1.375;
}
.kng-sidebar-area .wp-block-latest-comments{
	li{
		margin-bottom: 30px;
		&:last-child{
			margin-bottom: 0;
		}
	}
}
.kng-sidebar-area .wp-block-latest-comments [class*="wp-block-"]{
	padding-top: 0;
	padding-bottom: 0;
}

.kng-sidebar-area .wp-block-search__label{
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    font-size: 32px;
    line-height: 1.375;
    font-family: $heading_font_family;
}
.wp-block-search__inside-wrapper{
	position: relative;
	[type="search"] {
	    padding-right: $search_icon_w;
	    height: 40px;
	    line-height: 40px;
	    background-color: $white;
	    @include box-shadow(none);
	    border: 1px solid $border_color;
	}
	[type="submit"] {
	    width: $search_icon_w;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		background: transparent;
		border: 0;
		color: $primary_color;
		[dir="rtl"] &{
			right: auto;
			left: 0;
		}
		
	}
	.wp-block-search__button{
		font-size: 0;
		&:before{
			content: "\f002";
		    font-family: "Font Awesome 5 Pro";
		    font-size: 14px;
		    font-weight: 300;
		    color: $heading_color;
		    speak: never;
		    font-style: normal;
		    font-weight: normal;
		    font-variant: normal;
		    text-transform: none;
		    line-height: 1;
		    -webkit-font-smoothing: antialiased;
		}
		&:hover:before{
			color: $primary_color;
		}
	}
} */
.kng-mousewheel {
  overflow: hidden;
  height: 100%;
  max-height: 100vh;
}
.kng-mousewheel > * {
  overflow-x: hidden;
  overflow-y: scroll;
  width: calc(100% + 34px);
  padding-right: 34px;
  height: 100%;
  max-height: 100vh;
  padding-bottom: 50px;
}
.kng-mousewheel > * select, .kng-mousewheel > * table {
  width: calc(100% - 34px);
}
[dir='rtl'] .kng-mousewheel > * {
  padding-right: 0;
  padding-left: 34px;
}
@-webkit-keyframes fadeInCustom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInCustom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInLeftCustom {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftCustom {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRightCustom {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightCustom {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInUpCustom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpCustom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUpCustom1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpCustom1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-o-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes kng-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes kng-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes kng-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes kng-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes kng-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes kng_zoom_reverse {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
  100% {
    -webkit-transform: scale(0.5);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
@-moz-keyframes kng_zoom_reverse {
  0% {
    -moz-transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
  100% {
    -moz-transform: scale(0.5);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
@keyframes kng_zoom_reverse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
  100% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
@-webkit-keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-ms-keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-o-keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-ms-keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-o-keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.elementor-widget-kng_heading {
  position: relative;
  z-index: 1;
}
.kng-swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: visible;
  z-index: 0;
}
@media (min-width: 1025px) {
  .kng-swiper-container:not(.no-shadow) {
    padding: 0;
    margin: 0;
  }
}
.kng-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;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.kng-swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0 !important;
}
.kng-swiper-slide.swiper-slide-visible {
  opacity: 1 !important;
}
.swiper-container-multirow-column > .kng-swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-multirow-column > .kng-swiper-wrapper .kng-swiper-slide {
  height: calc((100% - 40px) / 2);
}
.swiper-container-multirow-row > .kng-swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: row;
}
.swiper-container-multirow-row > .kng-swiper-wrapper .kng-swiper-slide {
  height: calc((100% - 40px) / 2);
}
.swiper-container-vertical > .kng-swiper-wrapper {
  flex-direction: column;
}
.swiper-container-cube .swiper-cube-shadow {
  display: none;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  visibility: hidden;
}
.kng-swiper-arrow {
  font-size: 40px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  display: block;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  color: var(--primary-color);
  padding: 10px 8px;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -khtml-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}
.kng-swiper-arrow:hover {
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 0.5;
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
}
.kng-swiper-arrow.swiper-button-disabled {
  filter: alpha(opacity=0.5 !important * 100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0.5 !important * 100)";
  opacity: 0.5 !important;
  -webkit-opacity: 0.5 !important;
  -khtml-opacity: 0.5 !important;
  -moz-opacity: 0.5 !important;
  -ms-opacity: 0.5 !important;
  -o-opacity: 0.5 !important;
  cursor: not-allowed;
}
.kng-swiper-arrows-false .kng-swiper-arrows, .kng-swiper-arrows-false .kng-swiper-arrow {
  display: none;
}
@media (max-width: 1600px) {
  .kng-swiper-arrows-widescreen-false .kng-swiper-arrows, .kng-swiper-arrows-widescreen-false .kng-swiper-arrow {
    display: none;
  }
  .kng-swiper-arrows-widescreen-true .kng-swiper-arrows, .kng-swiper-arrows-widescreen-true .kng-swiper-arrow {
    display: block;
  }
}
@media (max-width: 1599px) {
  .kng-swiper-arrows-false .kng-swiper-arrows, .kng-swiper-arrows-false .kng-swiper-arrow {
    display: none;
  }
  .kng-swiper-arrows-true .kng-swiper-arrows, .kng-swiper-arrows-true .kng-swiper-arrow {
    display: block;
  }
}
@media (max-width: 1439px) {
  .kng-swiper-arrows-laptop-false .kng-swiper-arrows, .kng-swiper-arrows-laptop-false .kng-swiper-arrow {
    display: none;
  }
  .kng-swiper-arrows-laptop-true .kng-swiper-arrows, .kng-swiper-arrows-laptop-true .kng-swiper-arrow {
    display: block;
  }
}
@media (max-width: 1199px) {
  .kng-swiper-arrows-tablet_extra-false .kng-swiper-arrows, .kng-swiper-arrows-tablet_extra-false .kng-swiper-arrow {
    display: none;
  }
  .kng-swiper-arrows-tablet_extra-true .kng-swiper-arrows, .kng-swiper-arrows-tablet_extra-true .kng-swiper-arrow {
    display: block;
  }
}
@media (max-width: 991px) {
  .kng-swiper-arrows-tablet-false .kng-swiper-arrows, .kng-swiper-arrows-tablet-false .kng-swiper-arrow {
    display: none;
  }
  .kng-swiper-arrows-tablet-true .kng-swiper-arrows, .kng-swiper-arrows-tablet-true .kng-swiper-arrow {
    display: block;
  }
}
@media (max-width: 767px) {
  .kng-swiper-arrows-mobile_extra-false .kng-swiper-arrows, .kng-swiper-arrows-mobile_extra-false .kng-swiper-arrow {
    display: none;
  }
  .kng-swiper-arrows-mobile_extra-true .kng-swiper-arrows, .kng-swiper-arrows-mobile_extra-true .kng-swiper-arrow {
    display: block;
  }
}
@media (max-width: 575px) {
  .kng-swiper-arrows-mobile-false .kng-swiper-arrows, .kng-swiper-arrows-mobile-false .kng-swiper-arrow {
    display: none;
  }
  .kng-swiper-arrows-mobile-true .kng-swiper-arrows, .kng-swiper-arrows-mobile-true .kng-swiper-arrow {
    display: block;
  }
}
.kng-swiper-nav-in-vertical .kng-swiper-arrow, .kng-swiper-nav-out-vertical .kng-swiper-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.kng-swiper-nav-in-vertical .kng-swiper-arrow-prev {
  left: 40px;
}
[dir="rtl"] .kng-swiper-nav-in-vertical .kng-swiper-arrow-prev {
  left: auto;
  right: 40px;
}
.kng-swiper-nav-in-vertical .kng-swiper-arrow-next {
  right: 40px;
}
[dir="rtl"] .kng-swiper-nav-in-vertical .kng-swiper-arrow-next {
  right: auto;
  left: 40px;
}
.kng-swiper-nav-out-vertical .kng-swiper-arrow-prev {
  left: -40px;
}
[dir="rtl"] .kng-swiper-nav-out-vertical .kng-swiper-arrow-prev {
  left: auto;
  right: -40px;
}
.kng-swiper-nav-out-vertical .kng-swiper-arrow-next {
  right: -40px;
}
[dir="rtl"] .kng-swiper-nav-out-vertical .kng-swiper-arrow-next {
  right: auto;
  left: -40px;
}
.kng-swiper-nav-left-side .kng-swiper-container {
  overflow: visible;
}
.kng-swiper-nav-left-side .kng-swiper-slider-wrap {
  position: relative;
}
.kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-swiper-arrows {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-link a {
  font-weight: 700;
  padding-bottom: 3px;
  padding-right: 40px;
  border-bottom: 3px solid;
}
@each $name, $color in $cms_theme_colors {
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-link a.text- {
    border-bottom-color: ;
  }
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-link a.text-hover-:hover {
    border-bottom-color: ;
  }
}
@media (min-width: 1025px) {
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap {
    padding-left: 70px;
  }
  [dir="rtl"] .kng-swiper-nav-left-side .kng-swiper-slider-wrap {
    padding-left: 0;
    padding-right: 70px;
  }
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-swiper-arrows {
    width: 70px;
    position: absolute;
    top: 0;
    bottom: calc(70px + 10px);
    left: -70px;
    z-index: 1;
    flex-direction: column;
  }
  [dir="rtl"] .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-swiper-arrows {
    left: auto;
    right: -70px;
  }
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-swiper-arrows-arrow {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-swiper-arrow {
    width: 100%;
    flex: 0 0 100px;
    text-align: start;
  }
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-swiper-arrow-prev {
    margin-bottom: 10px;
  }
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-swiper-arrows-additional {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding-bottom: 60px;
  }
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-swiper-arrows-additional > * {
    transform: rotate(90deg) translate(0, 20px);
    -webkit-transform: rotate(90deg) translate(0, 20px);
    -khtml-transform: rotate(90deg) translate(0, 20px);
    -moz-transform: rotate(90deg) translate(0, 20px);
    -ms-transform: rotate(90deg) translate(0, 20px);
    -o-transform: rotate(90deg) translate(0, 20px);
  }
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-swiper-dots {
    max-width: ;
  }
}
@media (max-width: 1024px) {
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-swiper-arrows {
    align-items: center;
    padding-top: 40px;
  }
  .kng-swiper-nav-left-side .kng-swiper-slider-wrap .kng-swiper-arrows-arrow {
    display: flex;
    flex-wrap: wrap;
  }
}
.kng-swiper-nav-left-side.kng-swiper-arrows-false .kng-swiper-slider-wrap .kng-swiper-arrows {
  display: none;
}
@media (min-width: 1025px) {
  .kng-swiper-nav-left-side.kng-swiper-arrows-false .kng-swiper-slider-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@each $name, $color in $cms_theme_colors {
  .kng-swiper-nav-color- .kng-swiper-arrow {
    color: ;
  }
  .kng-swiper-nav-color-hover- .kng-swiper-arrow:hover {
    color: ;
  }
}
.kng-swiper-arrows {
  position: absolute;
  width: 100%;
}
.kng-swiper-arrows.top {
  top: 43px;
}
.kng-swiper-arrows.top-left .kng-swiper-arrows-inner {
  justify-content: flex-start;
}
.kng-swiper-arrows.top-right .kng-swiper-arrows-inner {
  justify-content: flex-end;
}
.kng-swiper-arrows.top-center .kng-swiper-arrows-inner {
  justify-content: center;
}
.kng-swiper-arrows.top-between .kng-swiper-arrows-inner {
  justify-content: space-between;
}
.kng-swiper-arrows.bottom {
  bottom: 43px;
}
.kng-swiper-arrows.bottom-left .kng-swiper-arrows-inner {
  justify-content: flex-start;
}
.kng-swiper-arrows.bottom-right .kng-swiper-arrows-inner {
  justify-content: flex-end;
}
.kng-swiper-arrows.bottom-center .kng-swiper-arrows-inner {
  justify-content: center;
}
.kng-swiper-arrows.bottom-between .kng-swiper-arrows-inner {
  justify-content: space-between;
}
.kng-swiper-arrows-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -16px;
  margin-right: -8px;
}
.kng-swiper-arrows-inner > div {
  margin-left: 8px;
  margin-right: 8px;
}
.kng-swiper-nav-style-size-34 .kng-swiper-arrows {
  margin-left: -5px;
  margin-right: -5px;
}
.kng-swiper-nav-style-size-34 .kng-swiper-arrow {
  font-size: 34px;
  line-height: 34px;
  width: 44px;
  height: 34px;
  padding-left: 5px;
  padding-right: 5px;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
}
.kng-swiper-nav-style-size-34 .kng-swiper-arrow:before {
  line-height: 34px;
}
.kng-swiper-nav-style-round .kng-swiper-arrows-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -8px;
  margin-right: -8px;
}
.kng-swiper-nav-style-round .kng-swiper-arrows-inner > div {
  margin-left: 8px;
  margin-right: 8px;
}
.kng-swiper-nav-style-round .kng-swiper-arrow {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #828282;
  border-radius: 50%;
  color: var(--heading-color);
  padding: 0;
}
.kng-swiper-dots {
  margin: 32px 0px 0px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.kng-swiper-dots .kng-swiper-pagination-bullet {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background: transparent;
  cursor: pointer;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  position: relative;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-swiper-dots .kng-swiper-pagination-bullet:before {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  background: rgba(var(--heading-color-rgb), 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, );
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, );
  -khtml-box-shadow: 0 0 0 8px rgba(255, 255, 255, );
  -moz-box-shadow: 0 0 0 8px rgba(255, 255, 255, );
  -ms-box-shadow: 0 0 0 8px rgba(255, 255, 255, );
  -o-box-shadow: 0 0 0 8px rgba(255, 255, 255, );
}
.kng-swiper-dots .kng-swiper-pagination-bullet:hover:before, .kng-swiper-dots .kng-swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: var(--heading-color);
}
.kng-swiper-dots-false .kng-swiper-dots {
  display: none;
}
@media (max-width: 1600px) {
  .kng-swiper-dots-widescreen-false .kng-swiper-dots {
    display: none;
  }
  .kng-swiper-dots-widescreen-true .kng-swiper-dots {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 1599px) {
  .kng-swiper-dots-false .kng-swiper-dots {
    display: none;
  }
  .kng-swiper-dots-true .kng-swiper-dots {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 1439px) {
  .kng-swiper-dots-laptop-false .kng-swiper-dots {
    display: none;
  }
  .kng-swiper-dots-laptop-true .kng-swiper-dots {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .kng-swiper-dots-tablet_extra-false .kng-swiper-dots {
    display: none;
  }
  .kng-swiper-dots-tablet_extra-true .kng-swiper-dots {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .kng-swiper-dots-tablet-false .kng-swiper-dots {
    display: none;
  }
  .kng-swiper-dots-tablet-true .kng-swiper-dots {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .kng-swiper-dots-mobile_extra-false .kng-swiper-dots {
    display: none;
  }
  .kng-swiper-dots-mobile_extra-true .kng-swiper-dots {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .kng-swiper-dots-mobile-false .kng-swiper-dots {
    display: none;
  }
  .kng-swiper-dots-mobile-true .kng-swiper-dots {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
@each $name, $color in $cms_theme_colors {
  .kng-swiper-dots-color- .kng-swiper-pagination-bullet:before {
    background: ;
  }
  .kng-swiper-dots-color-hover- .kng-swiper-pagination-bullet:hover:before, .kng-swiper-dots-color-hover- .kng-swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    background: ;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, );
    -webkit-box-shadow: 0 0 0 8px rgba(0, 0, 0, );
    -khtml-box-shadow: 0 0 0 8px rgba(0, 0, 0, );
    -moz-box-shadow: 0 0 0 8px rgba(0, 0, 0, );
    -ms-box-shadow: 0 0 0 8px rgba(0, 0, 0, );
    -o-box-shadow: 0 0 0 8px rgba(0, 0, 0, );
  }
}
.kng-swiper-dots-middle-left .kng-swiper-dots {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  -webkit-transform: translate3d(0px, -50%, 0);
  -khtml-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -ms-transform: translate3d(0px, -50%, 0);
  -o-transform: translate3d(0px, -50%, 0);
  flex-direction: column;
}
.kng-swiper-dots-middle-right .kng-swiper-dots {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  -webkit-transform: translate3d(0px, -50%, 0);
  -khtml-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -ms-transform: translate3d(0px, -50%, 0);
  -o-transform: translate3d(0px, -50%, 0);
  flex-direction: column;
}
.kng-swiper-dots-bottom-in .kng-swiper-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.kng-swiper-dots-bottom-in-left .kng-swiper-dots {
  position: absolute;
  left: 0;
  bottom: 0;
}
.kng-swiper-dots-bottom-in-left .container > .kng-swiper-dots {
  left: 9px;
}
@media (max-width: 767px) {
  .kng-slider-layout-4.kng-swiper-dots-bottom-in-left .kng-swiper-dots {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
}
.kng-swiper-dots-bottom-in-right .kng-swiper-dots {
  position: absolute;
  right: 0;
  bottom: 0;
}
.kng-swiper-dots-bottom-in-right .container > .kng-swiper-dots {
  right: 9px;
}
.kng-swiper-dots-bottom-out .kng-swiper-dots {
  justify-content: center;
}
.kng-swiper-dots-bottom-out-left .kng-swiper-dots {
  justify-content: flex-start;
}
.kng-swiper-dots-bottom-out-right .kng-swiper-dots {
  justify-content: flex-end;
}
.kng-swiper-dots-align-center .kng-swiper-dots {
  justify-content: center;
}
.kng-swiper-dots-align-start .kng-swiper-dots {
  justify-content: start;
}
.kng-swiper-dots-align-end .kng-swiper-dots {
  justify-content: end;
}
.kng-swiper-dots-align-justify .kng-swiper-dots {
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .kng-swiper-dots-align-tablet-start .kng-swiper-dots {
    justify-content: start;
  }
  .kng-swiper-dots-align-tablet-center .kng-swiper-dots {
    justify-content: center;
  }
  .kng-swiper-dots-align-tablet-end .kng-swiper-dots {
    justify-content: end;
  }
  .kng-swiper-dots-align-tablet-justify .kng-swiper-dots {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .kng-swiper-dots-align-mobile-start .kng-swiper-dots {
    justify-content: start;
  }
  .kng-swiper-dots-align-mobile-center .kng-swiper-dots {
    justify-content: center;
  }
  .kng-swiper-dots-align-mobile-end .kng-swiper-dots {
    justify-content: end;
  }
  .kng-swiper-dots-align-mobile-justify .kng-swiper-dots {
    justify-content: space-between;
  }
}
*, *:before, *:after {
  outline: none;
  box-sizing: inherit;
}
::-moz-selection {
  background-color: var(--primary-color);
  color: #fff;
}
::selection {
  background-color: var(--primary-color);
  color: #fff;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--body-color);
  line-height: 2.13334;
  overflow-x: hidden;
  word-break: break-word;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  /* heading */
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h4-1, .h5, .h6 {
  font-family: 'Gilda Display', sans-serif;
  color: var(--heading-color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h4-1 a, .h5 a, .h6 a {
  color: inherit;
  line-height: unset;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h4-1 a:hover, .h5 a:hover, .h6 a:hover {
  color: var(--link-color-hover);
}
a:hover h1, a:hover h2, a:hover h3, a:hover h4, a:hover h5, a:hover h6, a:hover .h1, a:hover .h2, a:hover .h3, a:hover .h4, a:hover .h4-1, a:hover .h5, a:hover .h6 {
  color: var(--link-color-hover);
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h4-1, .h5, .h6 {
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  margin: 15px 0;
}
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0;
}
h1, .h1, .size-h1 {
  font-size: 56px;
  line-height: 1.28572;
}
@media screen and (max-width: 767px) {
  h1, .h1, .size-h1 {
    font-size: 40px;
  }
}
h2, .h2, .size-h2 {
  font-size: 40px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  h2, .h2, .size-h2 {
    font-size: 32px;
  }
}
h3, .h3, .size-h3 {
  font-size: 32px;
  line-height: 1.375;
}
@media screen and (max-width: 575px) {
  h3, .h3, .size-h3 {
    font-size: 24px;
  }
}
h4, .h4, .size-h4 {
  font-size: 24px;
  line-height: 1.5;
}
h5, .h5, .size-h5 {
  font-size: 18px;
  line-height: 1.77778;
}
h6, .h6, .size-h6 {
  font-size: 16px;
  line-height: 1.8;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bolder;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
form label {
  color: var(--body-color);
  max-width: 100%;
  margin-bottom: 5px;
}
label {
  display: block;
}
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
  height: auto;
  line-height: normal;
  width: auto;
  transform: translate(0px, 3px);
  margin-right: 10px;
}
input[type="button" i], input[type="submit" i], input[type="reset" i], input[type="file" i]::-webkit-file-upload-button, button {
  border: none;
}
button, input, optgroup, select, textarea {
  max-width: 100%;
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  margin: 0;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
  /* copy */
}
p {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
dfn, cite, em, i {
  font-style: italic;
}
pre {
  font-size: 14px;
  overflow: auto;
  background: #f5f5f5;
  padding: 15px;
}
code, kbd, tt, var {
  font-size: 12px;
}
code {
  padding: 2px 4px;
  color: #c7254e;
  border-radius: 4px;
  display: inline-block;
  vertical-align: top;
}
abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark, ins {
  text-decoration: none;
}
mark {
  background: #fff9c0;
}
big {
  font-size: 125%;
}
a {
  text-decoration: none;
  /* list */
}
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
ul, ol {
  list-style-position: inside;
  padding-left: 0;
  padding-right: 0;
}
ul ul, ol ul, ul ol, ol ol {
  padding-left: 15px;
}
[dir="rtl"] ul ul, [dir="rtl"] ol ul, [dir="rtl"] ul ol, [dir="rtl"] ol ol {
  padding-left: 0;
  padding-right: 15px;
}
ul.unstyled, ol.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.unstyled ul, ol.unstyled ul, ul.unstyled ol, ol.unstyled ol {
  list-style: none;
}
ul.horizontal, ol.horizontal {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
ul.horizontal > li, ol.horizontal > li {
  padding: 5px;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.list-style-none {
  list-style: none;
  /* table  */
}
table {
  width: 100%;
  max-width: 100%;
  border: 1px solid #e0e0e0;
  border-spacing: 0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  /* tags */
}
table th, table td {
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-top: 0;
  border-left: 0;
  text-align: start;
  vertical-align: middle;
}
table th:last-child, table td:last-child {
  border-right: 0;
}
table + * {
  margin-top: 20px;
}
table tbody tr:last-child th, table tbody tr:last-child td {
  border-bottom: 0;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
img.image-fit, img.img-fit {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -moz-object-fit: cover;
  -ms-filter-object-fit: cover;
  -webkit-object-fit: cover;
  /* Image black and white */
}
img.alignleft[alt="Image Alignment 150x150"], img.alignright[alt="Image Alignment 150x150"] {
  clear: both;
}
a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  color: var(--link-color-hover);
}
a:hover, a:active, a:focus {
  text-decoration: none;
}
p {
  margin: 0 0 32px;
}
p:last-child {
  margin-bottom: 0;
}
img, video, iframe, svg {
  max-width: 100%;
  vertical-align: top;
}
figure {
  margin: 0 0 30px 0;
}
figcaption {
  display: block;
  /* classes */
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 0px;
  overflow: hidden;
  position: absolute;
  width: 0px;
  word-wrap: normal;
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  display: none;
}
.text-start {
  text-align: start !important;
}
.text-end {
  text-align: end !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}
.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
@media (min-width: 0px) {
  .text-xs-start {
    text-align: start !important;
  }
  .text-xs-end {
    text-align: end !important;
  }
  .text-xs-left {
    text-align: left !important;
  }
  .text-xs-right {
    text-align: right !important;
  }
  .text-xs-center {
    text-align: center !important;
  }
  .justify-content-xs-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xs-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xs-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .align-self-xs-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xs-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xs-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
}
@media (min-width: 576px) {
  .text-sm-start {
    text-align: start !important;
  }
  .text-sm-end {
    text-align: end !important;
  }
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
}
@media (min-width: 768px) {
  .text-md-start {
    text-align: start !important;
  }
  .text-md-end {
    text-align: end !important;
  }
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
}
@media (min-width: 992px) {
  .text-lg-start {
    text-align: start !important;
  }
  .text-lg-end {
    text-align: end !important;
  }
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-start {
    text-align: start !important;
  }
  .text-xl-end {
    text-align: end !important;
  }
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
}
@media (min-width: 1440px) {
  .text-xxl-start {
    text-align: start !important;
  }
  .text-xxl-end {
    text-align: end !important;
  }
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
  .justify-content-xxl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
}
@media (min-width: 1600px) {
  .text-xxxl-start {
    text-align: start !important;
  }
  .text-xxxl-end {
    text-align: end !important;
  }
  .text-xxxl-left {
    text-align: left !important;
  }
  .text-xxxl-right {
    text-align: right !important;
  }
  .text-xxxl-center {
    text-align: center !important;
  }
  .justify-content-xxxl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxxl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxxl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .align-self-xxxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .elementor-column.kng-column-element-widescreen-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto !important;
    max-width: 100%;
  }
}
.elementor-column.kng-column-element-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto !important;
  max-width: 100%;
}
@media (max-width: 1599px) {
  .elementor-column.kng-column-element-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto !important;
    max-width: 100%;
  }
}
@media (max-width: 1439px) {
  .elementor-column.kng-column-element-laptop-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto !important;
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .elementor-column.kng-column-element-tablet_extra-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto !important;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .elementor-column.kng-column-element-tablet-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto !important;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .elementor-column.kng-column-element-mobile_extra-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto !important;
    max-width: 100%;
  }
}
.text-truncate-1 {
  display: block;
  display: -webkit-box;
  max-height: 25.6px;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -khtml-line-clamp: 1;
  -moz-line-clamp: 1;
  -ms-line-clamp: 1;
  -o-line-clamp: 1;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
}
.text-truncate-1 > * {
  display: block;
  display: -webkit-box;
  max-height: 25.6px;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -khtml-line-clamp: 1;
  -moz-line-clamp: 1;
  -ms-line-clamp: 1;
  -o-line-clamp: 1;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
}
.text-truncate-2 {
  display: block;
  display: -webkit-box;
  max-height: 51.2px;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -khtml-line-clamp: 2;
  -moz-line-clamp: 2;
  -ms-line-clamp: 2;
  -o-line-clamp: 2;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
}
.text-truncate-2 > * {
  display: block;
  display: -webkit-box;
  max-height: 51.2px;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -khtml-line-clamp: 2;
  -moz-line-clamp: 2;
  -ms-line-clamp: 2;
  -o-line-clamp: 2;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
}
.text-truncate-3 {
  display: block;
  display: -webkit-box;
  max-height: 72px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -khtml-line-clamp: 3;
  -moz-line-clamp: 3;
  -ms-line-clamp: 3;
  -o-line-clamp: 3;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
}
.text-truncate-3 > * {
  display: block;
  display: -webkit-box;
  max-height: 72px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -khtml-line-clamp: 3;
  -moz-line-clamp: 3;
  -ms-line-clamp: 3;
  -o-line-clamp: 3;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
}
.text-truncate-4 {
  display: block;
  display: -webkit-box;
  max-height: 96px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -khtml-line-clamp: 4;
  -moz-line-clamp: 4;
  -ms-line-clamp: 4;
  -o-line-clamp: 4;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
}
.text-truncate-4 > * {
  display: block;
  display: -webkit-box;
  max-height: 96px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -khtml-line-clamp: 4;
  -moz-line-clamp: 4;
  -ms-line-clamp: 4;
  -o-line-clamp: 4;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
}
.text-truncate-5 {
  display: block;
  display: -webkit-box;
  max-height: 120px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -khtml-line-clamp: 5;
  -moz-line-clamp: 5;
  -ms-line-clamp: 5;
  -o-line-clamp: 5;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
}
.text-truncate-5 > * {
  display: block;
  display: -webkit-box;
  max-height: 120px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -khtml-line-clamp: 5;
  -moz-line-clamp: 5;
  -ms-line-clamp: 5;
  -o-line-clamp: 5;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -khtml-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
}
.text-multi-line-1 {
  font-size: 20px;
  line-height: 1.4;
  min-height: 56px;
  max-height: 56px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-multi-line-2 {
  font-size: 30px;
  line-height: 1.5;
  min-height: 90px;
  max-height: 90px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-multi-line-242 {
  font-size: 24px;
  line-height: 1.16667;
  min-height: 56px;
  max-height: 56px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.italic {
  font-style: italic;
}
.no-padding {
  padding: 0 !important;
}
.text-underline {
  text-decoration: underline;
}
.bypostauthor, .sticky {
  visibility: visible;
}
.screen-reader-text {
  display: none;
}
.alignleft, .alignright, .aligncenter {
  margin-top: 6px;
  margin-bottom: 15px !important;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 30px !important;
}
[dir="rtl"] .alignleft {
  float: right;
  margin-right: 0 !important;
  margin-left: 30px !important;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 30px;
}
[dir="rtl"] .alignright {
  float: left;
  margin-left: 0;
  margin-right: 30px;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.kng-single-page p:last-child {
  clear: both;
}
.kng-single-page p:last-child img[class*="align"] {
  margin-bottom: 0;
}
blockquote {
  padding: 0 0 0 1rem;
  border-left: 5px solid var(--primary-color);
}
[dir="rtl"] blockquote {
  padding: 0 1rem 0 0;
  border-left: 0;
  border-right: 5px solid var(--primary-color);
}
blockquote.has-text-align-right {
  padding: 0 1rem 0 0;
  border-left: 0;
  border-right: 5px solid var(--primary-color);
}
[dir="rtl"] blockquote.has-text-align-right {
  padding: 0 0 0 1rem;
  border-right: 0;
  border-left: 5px solid var(--primary-color);
  text-align: left;
}
.empty-none:empty {
  display: none;
}
a, .transition, .kng-transition, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .kng-swiper-dots button {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-transition-1 {
  transition: all 300ms linear 0s;
  -webkit-transition: all 300ms linear 0s;
  -khtml-transition: all 300ms linear 0s;
  -moz-transition: all 300ms linear 0s;
  -ms-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
}
.kng-transition-2 {
  transition: all 300ms linear 0.05s;
  -webkit-transition: all 300ms linear 0.05s;
  -khtml-transition: all 300ms linear 0.05s;
  -moz-transition: all 300ms linear 0.05s;
  -ms-transition: all 300ms linear 0.05s;
  -o-transition: all 300ms linear 0.05s;
}
.hr--small {
  margin: 20px auto;
  width: 50px;
  border-width: 3px;
  border-style: solid;
  border-color: var(--primary-color);
  clear: both;
  border-top: 0;
}
.hr--large {
  margin: 60px auto;
  border-width: 3px 0 0 0;
  width: 50px;
  border-color: var(--primary-color);
  clear: both;
}
.kng-page-overlay {
  position: absolute;
  z-index: 603;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -khtml-transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.side-panel-open {
  overflow: hidden;
}
.side-panel-open .kng-page-overlay {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.kng-loader {
  background: #fff;
  height: 100vh;
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-loader .loading-spinner {
  margin: -20px auto 0 auto;
  width: 40px;
  height: 40px;
  top: 50%;
  position: relative;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}
.kng-loader .loading-dot1, .kng-loader .loading-dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: var(--primary-color);
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}
.kng-loader .loading-dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.kng-loading {
  cursor: wait;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.kng-loading:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  display: block;
  background: rgba(255, 255, 255, 0.3);
}
.kng-loading:after {
  z-index: 2;
  position: absolute;
  top: 45%;
  left: 50%;
  content: "\f110";
  font-family: 'Font Awesome 5 Pro';
  font-size: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: -25px 0 0 -25px;
  color: #fff;
  animation: spin 1s infinite linear;
  -webkit-animation: spin 1s infinite linear;
  -khtml-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  -ms-animation: spin 1s infinite linear;
  -o-animation: spin 1s infinite linear;
}
.wow.case-fade-in-up {
  transform: translateY(80px);
  -webkit-transform: translateY(80px);
  -khtml-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transition: 0.4s cubic-bezier(0.24, 0.74, 0.58, 1);
  -webkit-transition: 0.4s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.4s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.4s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.4s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.4s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.wow.case-fade-in-up.animated {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -khtml-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}
.item-featured img {
  width: 100%;
  transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.row.no-padding {
  margin-left: 0;
  margin-right: 0;
}
.row.no-padding > * {
  padding-left: 0;
  padding-right: 0;
}
.zoom-reverse {
  -webkit-animation: kng_zoom_reverse;
  -o-animation: kng_zoom_reverse;
  animation: kng_zoom_reverse;
  -webkit-animation-duration: 0.5s !important;
  -moz-animation-duration: 0.5s !important;
  -o-animation-duration: 0.5s !important;
  animation-duration: 0.5s !important;
}
@media (min-width: 1440px) {
  .col-xxl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.kng-heading {
  color: var(--heading-color);
  font-weight: 500;
  margin-top: 0;
}
.heading-font-family {
  font-family: 'Gilda Display', sans-serif;
}
.meta-color {
  color: var(--third-color);
}
.meta-color a {
  color: inherit;
}
.meta-color a:hover {
  color: var(--link-color-hover);
}
.invisible {
  visibility: hidden;
  opacity: 0;
}
.kng-anim-swing {
  animation: swing 2s linear infinite;
  -webkit-animation: swing 2s linear infinite;
  -khtml-animation: swing 2s linear infinite;
  -moz-animation: swing 2s linear infinite;
  -ms-animation: swing 2s linear infinite;
  -o-animation: swing 2s linear infinite;
}
.kng-anim-bounce {
  animation: bounce 2s linear infinite;
  -webkit-animation: bounce 2s linear infinite;
  -khtml-animation: bounce 2s linear infinite;
  -moz-animation: bounce 2s linear infinite;
  -ms-animation: bounce 2s linear infinite;
  -o-animation: bounce 2s linear infinite;
}
.kng-anim-bounceIn {
  animation: bounceIn 2s linear infinite;
  -webkit-animation: bounceIn 2s linear infinite;
  -khtml-animation: bounceIn 2s linear infinite;
  -moz-animation: bounceIn 2s linear infinite;
  -ms-animation: bounceIn 2s linear infinite;
  -o-animation: bounceIn 2s linear infinite;
}
.kng-anim-bounceInLeft {
  animation: bounceInLeft 2s linear infinite;
  -webkit-animation: bounceInLeft 2s linear infinite;
  -khtml-animation: bounceInLeft 2s linear infinite;
  -moz-animation: bounceInLeft 2s linear infinite;
  -ms-animation: bounceInLeft 2s linear infinite;
  -o-animation: bounceInLeft 2s linear infinite;
}
.kng-anim-bounceInRight {
  animation: bounceInRight 2s linear infinite;
  -webkit-animation: bounceInRight 2s linear infinite;
  -khtml-animation: bounceInRight 2s linear infinite;
  -moz-animation: bounceInRight 2s linear infinite;
  -ms-animation: bounceInRight 2s linear infinite;
  -o-animation: bounceInRight 2s linear infinite;
}
.kng-anim-bounceInUp {
  animation: bounceInUp 2s linear infinite;
  -webkit-animation: bounceInUp 2s linear infinite;
  -khtml-animation: bounceInUp 2s linear infinite;
  -moz-animation: bounceInUp 2s linear infinite;
  -ms-animation: bounceInUp 2s linear infinite;
  -o-animation: bounceInUp 2s linear infinite;
}
.kng-anim-bounceInDown {
  animation: bounceInDown 2s linear infinite;
  -webkit-animation: bounceInDown 2s linear infinite;
  -khtml-animation: bounceInDown 2s linear infinite;
  -moz-animation: bounceInDown 2s linear infinite;
  -ms-animation: bounceInDown 2s linear infinite;
  -o-animation: bounceInDown 2s linear infinite;
}
.hidden {
  display: none;
}
.bg-cover {
  background-size: cover;
}
.uppercase {
  text-transform: uppercase;
}
.parallax-overlay {
  position: absolute!important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* image fit */
}
.center-align {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  /* @mixin clearfix() {
    content: "";
    display: table;
} */
}
.link-white {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.link-white a {
  color: var(--primary-color);
}
.link-white a:hover {
  color: #fff;
}
.text-primary {
  color: var(--primary-color);
}
a.text-primary:focus, a.text-primary:hover {
  color: var(--primary-color);
}
.text-secondary {
  color: var(--second-color);
}
a.text-secondary:focus, a.text-secondary:hover {
  color: var(--second-color);
}
.text-block {
  font-size: 15px;
  line-height: 23px;
}
.text-heading {
  color: var(--heading-color);
}
.text-gray {
  color: #828282;
}
.text-uppercase {
  text-transform: uppercase;
}
.z-index99 {
  z-index: 99;
  position: relative;
}
.z-index0 {
  z-index: 0;
  position: relative;
}
.z-index-1 {
  position: relative;
  z-index: 1;
}
.z-index-top {
  z-index: 888;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mobile-order-top {
    order: -1;
  }
}
.d-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.flex-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.font-smooth {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.d-table {
  display: table;
}
.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hover-primary:hover {
  color: var(--primary-color) !important;
}
.scale-hover {
  overflow: hidden;
}
.scale-hover img {
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -khtml-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
}
.scale-hover:hover img {
  opacity: 0.9;
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
}
.hover-underline-in {
  position: relative;
}
.hover-underline-in:after {
  position: absolute;
  content: "";
  border-bottom: 1px solid transparent;
  display: inline-block;
  height: 1px;
  width: 100%;
  top: 1.15em;
  left: 0;
  transition: all 300ms linear 0s;
}
.hover-underline-in:hover:after {
  border-color: inherit;
}
.hover-underline-out {
  position: relative;
}
.hover-underline-out:after {
  position: absolute;
  content: "";
  border-bottom: 1px solid;
  display: inline-block;
  height: 1px;
  width: 100%;
  top: 1.15em;
  left: 0;
  transition: all 300ms linear 0s;
}
.hover-underline-out:hover:after {
  border-color: transparent;
}
.circle-image img {
  border-radius: 50% !important;
}
.screen-reader-text {
  display: none;
}
#content[tabindex="-1"]:focus {
  outline: 0;
}
.bg-overlay {
  position: relative;
}
.bg-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  display: block;
}
.site-overlay {
  position: fixed;
  z-index: -1;
  background-color: 'rgba(0,0,0,0.5)';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -webkit-transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  cursor: url(../images/pointer.png), auto;
}
.site-overlay.open {
  z-index: 9990;
  opacity: 1;
  visibility: visible;
}
.row-visible {
  overflow: visible !important;
}
.inline-block {
  display: inline-block;
  vertical-align: middle;
}
.text-right, .align-right {
  text-align: right;
}
.text-left, .align-left {
  text-align: left;
}
.text-center, .align-center {
  text-align: center;
}
.align-justified {
  width: 100%;
}
.h-main {
  font-weight: 700;
}
.img-cover {
  object-fit: cover;
}
.style-none {
  list-style: none;
  margin: 0;
}
.line-gap {
  background-color: #ebebea;
  height: 1px;
  margin-left: 15px;
  width: calc(100% - 30px);
  width: -webkit-calc(100% - 30px);
  width: -ms-calc(100% - 30px);
  width: -o-calc(100% - 30px);
}
#secondary .count.right {
  float: right;
}
.link-text {
  transition: all 300ms linear 0s;
}
.link-text:hover {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
@media screen and (min-width: 992px) {
  .text-left-lg {
    text-align: left !important;
  }
  .text-center-lg {
    text-align: center !important;
  }
  .text-right-lg {
    text-align: right !important;
  }
}
@media screen and (max-width: 1199px) {
  .align-center-md {
    text-align: center;
  }
  .align-left-md {
    text-align: left;
  }
  .align-right-md {
    text-align: right;
  }
  .align-justified-md {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .text-center-md {
    text-align: center !important;
  }
  .text-left-md {
    text-align: left !important;
  }
  .text-right-md {
    text-align: right !important;
  }
  .align-center-sm {
    text-align: center;
  }
  .align-left-sm {
    text-align: left;
  }
  .align-right-sm {
    text-align: right;
  }
  .align-justified-sm {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .text-center-sm {
    text-align: center !important;
  }
  .text-left-sm {
    text-align: left !important;
  }
  .text-right-sm {
    text-align: right !important;
  }
  .align-center-xs {
    text-align: center;
  }
  .align-left-xs {
    text-align: left;
  }
  .align-right-xs {
    text-align: right;
  }
  .align-justified-xs {
    width: 100%;
  }
  .sm-no-box-shadow .elementor-column-wrap {
    box-shadow: none !important;
  }
}
@media screen and (max-width: 1279px) {
  .responsive-hide {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .column-wrap-border {
    border-left: 1px solid 'rgba(#fff, 0.2)';
    border-right: 1px solid 'rgba(#fff, 0.2)';
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(0);
  }
}
.image-jump {
  -webkit-animation: jump 2s ease-in-out alternate;
  -moz-animation: jump 2s ease-in-out alternate;
  animation: jump 2s ease-in-out alternate;
  animation-iteration-count: infinite;
  animation-delay: 6s;
  position: relative;
}
.small-spacing {
  letter-spacing: 0.01em !important;
}
.border-shadow .elementor-image {
  position: relative;
}
.border-shadow .elementor-image:after {
  content: '';
  position: absolute;
  display: block;
  top: -45px;
  left: 35%;
  right: -45px;
  bottom: 60px;
  background-image: url(../images/image-pattern.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.border-shadow .elementor-image img {
  position: relative;
  z-index: 1;
}
.link-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.overlay-wrap {
  /* badge */
}
.overlay-wrap .relative {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .overlay-wrap .overlay {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -khtml-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    opacity: 0;
    visibility: hidden;
  }
}
.overlay-wrap:hover .overlay {
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.kng-badge-1 {
  height: 65px;
  min-width: 60px;
  position: relative;
  background-color: var(--second-color);
  color: #fff;
  padding: 0 10px;
  overflow: hidden;
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -khtml-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  -ms-border-radius: 4px 0 0 4px;
  -o-border-radius: 4px 0 0 4px;
}
[dir="rtl"] .kng-badge-1 {
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -khtml-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -ms-border-radius: 0 4px 4px 0;
  -o-border-radius: 0 4px 4px 0;
}
.kng-badge-1:before, .kng-badge-1:after {
  content: '';
  display: block;
  position: absolute;
}
.kng-badge-1:after {
  height: 5px;
  width: 100%;
  background: #fff;
  left: 5px;
  bottom: 0;
}
[dir="rtl"] .kng-badge-1:after {
  left: auto;
  right: 5px;
}
.kng-badge-2 {
  position: relative;
}
.kng-badge-2:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 35px 0 35px;
  border-color: var(--second-color) transparent transparent transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
}
.kng-badge-3 {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
  padding: 5px 9px 14px;
  position: relative;
  overflow: hidden;
  max-width: 46px;
}
.kng-badge-3:not(.badge-svg) {
  background-color: var(--primary-color);
}
.kng-badge-3:not(.badge-svg):after {
  content: '';
  background: white;
  position: absolute;
  left: 0;
  right: 0;
  height: 22px;
  top: calc(100% - 10px);
  border-radius: 50% 50% 0 0;
}
.kng-badge-3.badge-svg > svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  fill: var(--primary-color);
  height: 100%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.kng-badge-4 {
  position: relative;
}
.kng-badge-4:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 35px 0 35px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
}
.kng-ribbon {
  position: absolute;
  right: -7px;
  top: -7px;
  z-index: 2;
  overflow: hidden;
  width: 125px;
  height: 125px;
  text-align: right;
  /* border  */
}
.kng-ribbon .main {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 35px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 164px;
  display: block;
  border-color: ;
  position: absolute;
  top: 31px;
  right: -34px;
}
.kng-ribbon .main .before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left-width: 3px;
  border-left-style: solid;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top-width: 3px;
  border-top-style: solid;
}
.kng-ribbon .main .after {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right-width: 3px;
  border-right-style: solid;
  border-bottom: 3px solid transparent;
  border-top-width: 3px;
  border-top-style: solid;
}
.circle, .kng-circle, .elementor img.circle {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.bdr-main {
  border-color: #d7d7d7;
  /* classes */
}
.kng-img {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-hover-img-scale:hover .kng-img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -khtml-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.z-ontop, .z-top {
  z-index: 2;
}
.kng-link-overlay > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.kng-invisible {
  visibility: hidden;
}
.kng-rating-star:before {
  content: "\e949\e949\e949\e949\e949";
  letter-spacing: 4px;
}
[data-elementor-open-lightbox="yes"] {
  cursor: pointer;
  /* gradient  */
}
.kng-bg-gradient-1, .kng-overlay-gradient-1 > .kng-overlay-gradient, .kng-bg-gradient-2, .kng-overlay-gradient-2 > .kng-overlay-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.kng-bg-gradient-1:before, .kng-overlay-gradient-1 > .kng-overlay-gradient:before, .kng-bg-gradient-2:before, .kng-overlay-gradient-2 > .kng-overlay-gradient:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.kng-bg-gradient-1, .kng-overlay-gradient-1 > .kng-overlay-gradient {
  background: rgba(255, 178, 55, 0.5);
}
.kng-bg-gradient-1:before, .kng-overlay-gradient-1 > .kng-overlay-gradient:before {
  background: -webkit-linear-gradient(top, #021c37 0%, #051c33 14%, rgba(17, 27, 37, 0.1) 62%, rgba(27, 26, 26, ) 100%);
  background: -o-linear-gradient(top, #021c37 0%, #051c33 14%, rgba(17, 27, 37, 0.1) 62%, rgba(27, 26, 26, ) 100%);
  background: -ms-linear-gradient(top, #021c37 0%, #051c33 14%, rgba(17, 27, 37, 0.1) 62%, rgba(27, 26, 26, ) 100%);
  background: -moz-linear-gradient(top, #021c37 0%, #051c33 14%, rgba(17, 27, 37, 0.1) 62%, rgba(27, 26, 26, ) 100%);
  background: linear-gradient(to bottom, #021c37 0%, #051c33 14%, rgba(17, 27, 37, 0.1) 62%, rgba(27, 26, 26, ) 100%);
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 0.5;
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
}
.kng-bg-gradient-2, .kng-overlay-gradient-2 > .kng-overlay-gradient {
  filter: alpha(opacity=25);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  opacity: 0.25;
  -webkit-opacity: 0.25;
  -khtml-opacity: 0.25;
  -moz-opacity: 0.25;
  -ms-opacity: 0.25;
  -o-opacity: 0.25;
  background: #ffb237;
  /* hovers */
}
.kng-bg-gradient-2:before, .kng-overlay-gradient-2 > .kng-overlay-gradient:before {
  background: -webkit-linear-gradient(top, #021c37 0%, #051c33 14%, rgba(17, 27, 37, 0.1) 62%, rgba(27, 26, 26, ) 100%);
  background: -o-linear-gradient(top, #021c37 0%, #051c33 14%, rgba(17, 27, 37, 0.1) 62%, rgba(27, 26, 26, ) 100%);
  background: -ms-linear-gradient(top, #021c37 0%, #051c33 14%, rgba(17, 27, 37, 0.1) 62%, rgba(27, 26, 26, ) 100%);
  background: -moz-linear-gradient(top, #021c37 0%, #051c33 14%, rgba(17, 27, 37, 0.1) 62%, rgba(27, 26, 26, ) 100%);
  background: linear-gradient(to bottom, #021c37 0%, #051c33 14%, rgba(17, 27, 37, 0.1) 62%, rgba(27, 26, 26, ) 100%);
}
.hover-border {
  transition: color 0.25s;
  -webkit-transition: color 0.25s;
  -khtml-transition: color 0.25s;
  -moz-transition: color 0.25s;
  -ms-transition: color 0.25s;
  -o-transition: color 0.25s;
}
.hover-border:before, .hover-border:after {
  border: 3px solid transparent;
  width: 0;
  height: 0;
}
.hover-border:before {
  top: 0;
  left: 0;
}
.hover-border:after {
  bottom: 0;
  right: 0;
}
.hover-border:hover:before, .hover-border:hover:after {
  width: 100%;
  height: 100%;
  display: block;
}
.hover-border:hover:before {
  border-top-color: var(--second-color);
  border-right-color: var(--second-color);
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -khtml-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -moz-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -ms-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.hover-border:hover:after {
  border-bottom-color: var(--second-color);
  border-left-color: var(--second-color);
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
  -webkit-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
  -khtml-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
  -moz-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
  -ms-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
  -o-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}
.hover-border-outer {
  position: relative;
  z-index: 1;
  height: 100%;
  display: block;
}
.hover-border-outer:before, .hover-border-outer:after {
  box-sizing: inherit;
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
}
.kng-hover-show-more-text-wrap .kng-hover-show-more-text {
  overflow: hidden;
}
.kng-hover-show-more-text-wrap .kng-hover-show-more-text .kng-btn-text {
  transform: translateX(-150%);
  -webkit-transform: translateX(-150%);
  -khtml-transform: translateX(-150%);
  -moz-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  -o-transform: translateX(-150%);
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-hover-show-more-text-wrap:hover .kng-btn-text {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -khtml-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.kng-img-hover {
  /* icons */
}
.kng-img-hover .kng-img {
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 0.5;
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
}
.kng-img-hover .kng-img:hover {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
}
.kng-icon {
  line-height: 1;
  /* modal */
}
.kng-modal-html {
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.kng-modal-html.open {
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  z-index: 999;
  transform: scale(1);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.kng-modal-close {
  border-radius: 50%;
  background: #e4e6eb;
  border: 9px solid transparent;
  color: var(--heading-color);
  width: 36px;
  height: 36px;
  position: absolute;
  left: auto;
  right: 40px;
  top: 40px;
  /* overlay */
}
@media (max-width: 767px) {
  .kng-modal-close {
    width: 30px;
    height: 30px;
    border-width: 8px;
  }
}
.kng-modal-close:before, .kng-modal-close:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background-color: var(--heading-color);
  transform-origin: 50% 50%;
  opacity: 1;
  transition: transform ease 0.25s;
  -webkit-transition: transform ease 0.25s;
  -khtml-transition: transform ease 0.25s;
  -moz-transition: transform ease 0.25s;
  -ms-transition: transform ease 0.25s;
  -o-transition: transform ease 0.25s;
}
.kng-modal-close:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.kng-modal-close:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.kng-modal-close:hover:before, .kng-modal-close:hover:after {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
[dir="rtl"] .kng-modal-close {
  right: auto;
  left: 40px;
}
.kng-overlay-wrap {
  position: relative;
  overflow: hidden;
  outline: none;
}
.kng-overlay-wrap img {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-overlay-wrap .kng-overlay-content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  /* &:not([class*="bg-"]){
            background: #{'rgba(var(--primary-color-rgb), 0.7)'};
        } */
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-overlay-wrap .kng-bottom-to-top {
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -khtml-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}
.kng-overlay-wrap:hover img {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -khtml-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
}
.kng-overlay-wrap:hover .kng-overlay-content {
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
}
.kng-overlay-wrap:hover .kng-bottom-to-top {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -khtml-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
@media (max-width: 1024px) {
  .kng-overlay-wrap .kng-overlay-content {
    visibility: visible;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
  }
  .kng-overlay-wrap .kng-bottom-to-top {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
.kng-overlay-wrap.kng-overlay-bottom-to-top:before {
  height: 0;
}
.kng-overlay-wrap.kng-overlay-bottom-to-top:hover:before {
  height: calc(100% - 20px);
}
.kng-overlay-wrap.kng-overlay-slideup .kng-overlay-content {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -khtml-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -khtml-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}
.kng-overlay-wrap.kng-overlay-slideup .kng-overlay-content .entry-title {
  color: var(--second-color);
}
.kng-overlay-wrap.kng-overlay-slideup .kng-overlay-content .entry-title:hover {
  color: #fff;
}
.kng-overlay-wrap.kng-overlay-slideup .kng-overlay-content .entry-title:hover a {
  color: inherit;
}
.kng-overlay-wrap.kng-overlay-slideup:hover .kng-overlay-content {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -khtml-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.kng-overlay-wrap.kng-overlay-zoom-in .kng-overlay-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(214, 41, 40, 0.4);
  transform: scale(0);
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}
.kng-overlay-wrap.kng-overlay-center-to-side .kng-overlay-content {
  left: 50%;
  right: 50%;
  background: rgba(214, 41, 40, 0.4);
}
.kng-overlay-wrap:hover.kng-overlay-zoom-in .kng-overlay-content {
  transform: scale(1);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.kng-overlay-wrap:hover.kng-overlay-center-to-side .kng-overlay-content {
  left: 0;
  right: 0;
}
.kng-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* positions */
}
.relative {
  position: relative !important;
}
.absolute {
  position: absolute;
  z-index: 1;
}
.absolute-vertical {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  /* rating  */
}
.rating-container {
  display: inline-block;
  height: 24px;
  /* remove inline-block whitespace */
  vertical-align: top;
  /* flip the order so we can use the + and ~ combinators */
  font-size: 0;
  unicode-bidi: bidi-override;
  direction: rtl;
}
.rating-container * {
  font-size: 20px;
}
.rating-container > input {
  display: none;
}
.rating-container > input + label {
  font-family: "kngi";
  line-height: 1;
}
.rating-container > input + label:before {
  display: inline-block;
  content: "\e948";
  color: var(--body-color);
}
.rating-container > input:checked ~ label:before, .rating-container > input + label:hover ~ label:before, .rating-container > input + label:hover:before, .kng-rating-icon-filled:before {
  content: "\e949";
  color: var(--second-color);
}
.rating-container:hover > input + label:before, .kng-rating-icon-empty:before {
  content: "\e948";
  color: var(--body-color);
  text-shadow: none;
}
.rating-container:hover > input + label:hover ~ label:before, .rating-container:hover > input + label:hover:before {
  content: "\e949";
  color: var(--second-color);
}
.kng-rating-icon-filled, .kng-rating-icon-empty {
  font-family: "kngi";
  display: inline-block;
  overflow: hidden;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}
.kng-rating-icon-empty {
  z-index: -1;
}
.kng-star-rating {
  width: 90px;
  height: 14px;
  display: inline-block;
  letter-spacing: 3px;
  color: var(--body-color);
}
.kng-star-rating:before {
  font-family: "kngi";
  content: '\e948\e948\e948\e948\e948';
}
.kng-star-rating .kng-star-rated {
  top: 0;
}
.kng-star-rating .kng-star-rated:before {
  font-family: "kngi";
  content: '\e949\e949\e949\e949\e949';
}
.kng-star-rated {
  color: var(--second-color);
}
body .mfp-bg {
  background-color: #000;
}
.mfp-wrap .mfp-container button.mfp-arrow {
  background-color: transparent;
  width: 45px;
  height: 45px;
  background-size: 30px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: url(../images/svg/arrow1.svg);
}
.mfp-wrap .mfp-container button.mfp-arrow.mfp-arrow-left {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  left: 50px;
}
.mfp-wrap .mfp-container button.mfp-arrow.mfp-arrow-right {
  right: 50px;
}
.mfp-wrap .mfp-container button.mfp-arrow:before, .mfp-wrap .mfp-container button.mfp-arrow:after {
  content: none;
}
.mfp-wrap button.mfp-close {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  font-size: 0;
  opacity: 1;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.mfp-wrap button.mfp-close:hover {
  background-color: rgba(0, 1, 0, );
}
.mfp-wrap button.mfp-close:before, .mfp-wrap button.mfp-close:after {
  content: "";
  background-color: #fff;
  display: block;
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 28px;
  top: 21px;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.mfp-wrap button.mfp-close:before {
  width: 33px;
  top: 28px;
  left: 0px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
}
.mfp-wrap button.mfp-close:after {
  width: 33px;
  top: 28px;
  left: 0px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
}
.mfp-wrap .mfp-figure:after, .mfp-wrap .mfp-iframe-scaler iframe {
  box-shadow: none;
}
.mfp-wrap .mfp-bottom-bar {
  display: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #828282;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 1;
  text-overflow: ellipsis;
  line-height: inherit;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #828282;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 1;
  text-overflow: ellipsis;
  line-height: inherit;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #828282;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 1;
  text-overflow: ellipsis;
  line-height: inherit;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #828282;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 1;
  text-overflow: ellipsis;
  line-height: inherit;
}
input[type="search"]::-webkit-input-placeholder {
  color: #828282;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-style: normal;
  font-weight: 400;
  opacity: 1;
  text-overflow: ellipsis;
  line-height: inherit;
}
input[type="search"]:-moz-placeholder {
  color: #828282;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-style: normal;
  font-weight: 400;
  opacity: 1;
  text-overflow: ellipsis;
  line-height: inherit;
}
input[type="search"]::-moz-placeholder {
  color: #828282;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-style: normal;
  font-weight: 400;
  opacity: 1;
  text-overflow: ellipsis;
  line-height: inherit;
}
input[type="search"]:-ms-input-placeholder {
  color: #828282;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-style: normal;
  font-weight: 400;
  opacity: 1;
  text-overflow: ellipsis;
  line-height: inherit;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  appearance: none;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  height: 30px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.kng-input-number-spin {
  width: 19px;
  height: 25px;
  background: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  position: absolute;
  top: 12px;
  right: 20px;
}
[dir="rtl"] .kng-input-number-spin {
  left: 20px;
  right: auto;
}
.kng-input-number-spin-inner {
  cursor: pointer;
  width: 19px;
  height: 12.5px;
  position: relative;
  display: block;
}
.kng-input-number-spin-inner:before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  border-style: solid;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.kng-input-number-spin-inner.kng-input-number-spin-up:before {
  border-width: 0 3.5px 4px 3.5px;
  border-color: transparent transparent var(--primary-color) transparent;
}
.kng-input-number-spin-inner.kng-input-number-spin-down:before {
  border-width: 4px 3.5px 0 3.5px;
  border-color: var(--primary-color) transparent transparent transparent;
}
input::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  text-align: start;
  padding: 0;
  margin: 0;
}
input::-webkit-datetime-edit {
  text-align: start;
  width: 100%;
}
input[type="search" i]::-webkit-search-cancel-button {
  opacity: 0;
}
.button, button, input[type="button"], input[type="reset"], input[type="submit"] {
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  vertical-align: bottom;
}
.button:hover, button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .button:active, button:active, input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active, .button:focus, button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus {
  cursor: pointer;
}
.button:visited, button:visited, input[type="button"]:visited, input[type="reset"]:visited, input[type="submit"]:visited {
  text-decoration: none;
}
.button:focus, button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus {
  outline: none;
  outline-offset: 0;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select, .select2-container.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #d7d7d7;
  color: var(--body-color);
  padding: 0 16px;
  line-height: 48px;
  height: 48px;
  font-size: 100%;
  text-align: start;
  outline: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
input[type="text"]:hover, input[type="email"]:hover, input[type="url"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="number"]:hover, input[type="range"]:hover, input[type="date"]:hover, input[type="month"]:hover, input[type="week"]:hover, input[type="time"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="color"]:hover, textarea:hover, select:hover, .select2-container.select2-container--default .select2-selection--single:hover, input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus, select:focus, .select2-container.select2-container--default .select2-selection--single:focus, input[type="text"]:active, input[type="email"]:active, input[type="url"]:active, input[type="password"]:active, input[type="search"]:active, input[type="tel"]:active, input[type="number"]:active, input[type="range"]:active, input[type="date"]:active, input[type="month"]:active, input[type="week"]:active, input[type="time"]:active, input[type="datetime"]:active, input[type="datetime-local"]:active, input[type="color"]:active, textarea:active, select:active, .select2-container.select2-container--default .select2-selection--single:active {
  background-color: #fff;
  border-color: #828282;
}
[dir="rtl"] input[type="text"], [dir="rtl"] input[type="email"], [dir="rtl"] input[type="url"], [dir="rtl"] input[type="password"], [dir="rtl"] input[type="search"], [dir="rtl"] input[type="tel"], [dir="rtl"] input[type="number"], [dir="rtl"] input[type="range"], [dir="rtl"] input[type="date"], [dir="rtl"] input[type="month"], [dir="rtl"] input[type="week"], [dir="rtl"] input[type="time"], [dir="rtl"] input[type="datetime"], [dir="rtl"] input[type="datetime-local"], [dir="rtl"] input[type="color"], [dir="rtl"] textarea, [dir="rtl"] select, [dir="rtl"] .select2-container.select2-container--default .select2-selection--single {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="date"] {
  width: 100%;
}
select {
  width: 100%;
  height: 48px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/select-arrow.png);
  background-position: calc(100% - 16px) 50%;
  background-repeat: no-repeat;
  padding-right: 40px;
  background-size: 11px;
}
[dir="rtl"] select {
  background-position: 10px 50%;
  padding-right: 22px;
  padding-left: 40px;
}
textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100px;
  min-height: 110px;
  padding-top: 15px;
  line-height: normal;
  resize: vertical;
}
input, select, textarea {
  vertical-align: top;
  position: relative;
}
.kng-select form {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.kng-select select {
  height: 48px;
  line-height: 37px;
  font-size: 15px;
  background-color: transparent;
  position: relative;
  z-index: 99;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.kng-select i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
}
.kng-custom-checkbox, .kng-custom-radio {
  position: relative;
  margin-right: 5px;
  width: 17px;
  height: 17px;
  display: inline-block;
}
[dir="rtl"] .kng-custom-checkbox, [dir="rtl"] .kng-custom-radio {
  margin-right: 0;
  margin-left: 5px;
}
.kng-custom-checkbox input[type="checkbox"], .kng-custom-radio input[type="checkbox"], .kng-custom-checkbox .kng-checkmark, .kng-custom-radio .kng-checkmark {
  width: 17px;
  height: 17px;
  display: inline-block;
  padding: 0;
  margin: 0;
}
.kng-custom-checkbox input, .kng-custom-radio input {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
}
.kng-custom-checkbox input:checked + .kng-checkmark:after, .kng-custom-radio input:checked + .kng-checkmark:after {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
}
.kng-custom-checkbox .kng-checkmark, .kng-custom-radio .kng-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #d7d7d7;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.kng-custom-checkbox .kng-checkmark:after, .kng-custom-radio .kng-checkmark:after {
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  top: 3px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
}
.kng-custom-checkbox + label, .kng-custom-radio + label {
  display: inline-block;
}
.kng-custom-radio input:checked + .kng-checkmark {
  border-color: var(--primary-color);
}
.kng-custom-radio input:checked + .kng-checkmark:after {
  background-color: var(--primary-color);
}
.kng-custom-radio .kng-checkmark {
  margin-top: 3px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.kng-custom-radio .kng-checkmark:after {
  background-color: ;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
}
.kng-custom-checkbox {
  transform: translate(0, 3px);
  -webkit-transform: translate(0, 3px);
  -khtml-transform: translate(0, 3px);
  -moz-transform: translate(0, 3px);
  -ms-transform: translate(0, 3px);
  -o-transform: translate(0, 3px);
}
#ui-datepicker-div {
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -9999px;
  min-width: 300px;
  z-index: 10001 !important;
}
#ui-datepicker-div .ui-datepicker-header {
  position: relative;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all {
  display: block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  padding: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all:before {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all span {
  display: none;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-prev {
  left: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-next {
  right: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  line-height: 30px;
  margin-bottom: 10px;
  min-height: 40px;
  text-align: center;
  text-transform: uppercase;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
#ui-datepicker-div .ui-datepicker-calendar {
  margin: 0;
  width: 100%;
}
#ui-datepicker-div .ui-datepicker-calendar th {
  text-align: center;
}
#ui-datepicker-div .ui-datepicker-calendar td {
  text-align: center;
  padding: 6px;
}
#ui-datepicker-div .ui-datepicker-calendar td.ui-state-disabled {
  color: rgba(0, 0, 0, 0.2);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 15px !important;
  right: 15px !important;
  height: 20px;
}
[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: auto !important;
  left: 15px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 46px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #828282;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}
.select2-container.select2-container--woo-search-cat .select2-selection--single {
  background-color: transparent;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  box-shadow: none;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.04em;
  color: var(--heading-color);
  margin: 0;
  height: 48px;
  border: 1px solid #d7d7d7;
  padding: 0 24px;
  position: relative;
}
.select2-container.select2-container--woo-search-cat .select2-selection--single .select2-selection__rendered {
  color: var(--heading-color);
  padding-left: 0;
  padding-right: 0;
  height: 48px;
  line-height: 48px;
}
.select2-container.select2-container--woo-search-cat .select2-selection--single .select2-selection__arrow {
  position: absolute;
  line-height: 1;
  right: 16px;
  top: 50%;
  margin-top: -6px;
}
.select2-container.select2-container--woo-search-cat .select2-selection--single .select2-selection__arrow b {
  border-color: #333 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  line-height: 1;
  display: inline-block;
}
.select2-container--woo-search-cat .select2-dropdown {
  border-color: #d7d7d7;
}
.select2-container--woo-search-cat .select2-search input {
  height: 32px;
}
.select2-container--woo-search-cat .select2-results > .select2-results__options {
  max-height: 250px;
  overflow-y: auto;
}
.select2-container--woo-search-cat .select2-results__option {
  padding: 2px 15px;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.04em;
  color: var(--heading-color);
}
.wpcf7-form label {
  font-size: 16px;
  line-height: 32px;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
  border-color: #f13c3c !important;
}
.wpcf7-form .wpcf7-response-output {
  border: medium none;
  font-style: italic;
  padding: 0;
  margin: 20px 0 0;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #398f14;
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  color: #f13c3c;
}
.wpcf7-form .wpcf7-textarea {
  padding: 16px;
  height: 240px;
}
.wpcf7-form button {
  min-width: 188px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  color: var(--warning);
}
.kng-search-form-popup {
  max-width: 750px;
  margin: 0 auto;
}
.kng-search-popup-inner .cat-search-wrap {
  flex: 0 0 173px;
  width: 173px;
  max-width: 173px;
}
.kng-search-popup-inner .text-search-wrap {
  position: relative;
}
.kng-search-popup-inner .text-search-wrap .search-field {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  padding-right: 48px;
}
.kng-search-popup-inner .text-search-wrap .search-field:hover, .kng-search-popup-inner .text-search-wrap .search-field:focus, .kng-search-popup-inner .text-search-wrap .search-field:active {
  border-color: #d7d7d7;
}
.kng-search-popup-inner .text-search-wrap input::-webkit-input-placeholder {
  color: #828282;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.kng-search-popup-inner .text-search-wrap .search-submit {
  width: 48px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  border: 0;
  font-size: 0;
  text-indent: -999999px;
  color: #333;
}
.kng-search-popup-inner .text-search-wrap .kng-svg {
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -8px;
}
.kng-search-popup-inner .text-search-wrap .search-submit:hover .kng-svg path {
  fill: var(--primary-color);
}
.btn, button, .button, input[type="submit"], input[type="button"], .added_to_cart, .kng-btn {
  position: relative;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 2.46154;
  letter-spacing: 0.12em;
  padding: 7px 20px;
  background-color: var(--primary-color);
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  vertical-align: top;
  border: 1px solid var(--primary-color);
  text-align: center;
  box-shadow: none;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.btn:active, button:active, .button:active, input[type="submit"]:active, input[type="button"]:active, .added_to_cart:active, .kng-btn:active, .btn:hover, button:hover, .button:hover, input[type="submit"]:hover, input[type="button"]:hover, .added_to_cart:hover, .kng-btn:hover, .btn:focus, button:focus, .button:focus, input[type="submit"]:focus, input[type="button"]:focus, .added_to_cart:focus, .kng-btn:focus {
  background: var(--second-color);
  border-color: var(--second-color);
  color: #fff;
  outline: medium none;
  text-decoration: none;
}
.btn:active .kng-btn-icon, button:active .kng-btn-icon, .button:active .kng-btn-icon, input[type="submit"]:active .kng-btn-icon, input[type="button"]:active .kng-btn-icon, .added_to_cart:active .kng-btn-icon, .kng-btn:active .kng-btn-icon, .btn:hover .kng-btn-icon, button:hover .kng-btn-icon, .button:hover .kng-btn-icon, input[type="submit"]:hover .kng-btn-icon, input[type="button"]:hover .kng-btn-icon, .added_to_cart:hover .kng-btn-icon, .kng-btn:hover .kng-btn-icon, .btn:focus .kng-btn-icon, button:focus .kng-btn-icon, .button:focus .kng-btn-icon, input[type="submit"]:focus .kng-btn-icon, input[type="button"]:focus .kng-btn-icon, .added_to_cart:focus .kng-btn-icon, .kng-btn:focus .kng-btn-icon {
  animation: readmoreIcon 300ms linear 0s;
  -webkit-animation: readmoreIcon 300ms linear 0s;
  -khtml-animation: readmoreIcon 300ms linear 0s;
  -moz-animation: readmoreIcon 300ms linear 0s;
  -ms-animation: readmoreIcon 300ms linear 0s;
  -o-animation: readmoreIcon 300ms linear 0s;
}
[dir="rtl"] .btn:active .kng-btn-icon, [dir="rtl"] button:active .kng-btn-icon, [dir="rtl"] .button:active .kng-btn-icon, [dir="rtl"] input[type="submit"]:active .kng-btn-icon, [dir="rtl"] input[type="button"]:active .kng-btn-icon, [dir="rtl"] .added_to_cart:active .kng-btn-icon, [dir="rtl"] .kng-btn:active .kng-btn-icon, [dir="rtl"] .btn:hover .kng-btn-icon, [dir="rtl"] button:hover .kng-btn-icon, [dir="rtl"] .button:hover .kng-btn-icon, [dir="rtl"] input[type="submit"]:hover .kng-btn-icon, [dir="rtl"] input[type="button"]:hover .kng-btn-icon, [dir="rtl"] .added_to_cart:hover .kng-btn-icon, [dir="rtl"] .kng-btn:hover .kng-btn-icon, [dir="rtl"] .btn:focus .kng-btn-icon, [dir="rtl"] button:focus .kng-btn-icon, [dir="rtl"] .button:focus .kng-btn-icon, [dir="rtl"] input[type="submit"]:focus .kng-btn-icon, [dir="rtl"] input[type="button"]:focus .kng-btn-icon, [dir="rtl"] .added_to_cart:focus .kng-btn-icon, [dir="rtl"] .kng-btn:focus .kng-btn-icon {
  animation: readmoreIcon-rtl 300ms linear 0s;
  -webkit-animation: readmoreIcon-rtl 300ms linear 0s;
  -khtml-animation: readmoreIcon-rtl 300ms linear 0s;
  -moz-animation: readmoreIcon-rtl 300ms linear 0s;
  -ms-animation: readmoreIcon-rtl 300ms linear 0s;
  -o-animation: readmoreIcon-rtl 300ms linear 0s;
}
.btn:active .kng-btn-icon.kng-arrow-alt-circle-right:before, button:active .kng-btn-icon.kng-arrow-alt-circle-right:before, .button:active .kng-btn-icon.kng-arrow-alt-circle-right:before, input[type="submit"]:active .kng-btn-icon.kng-arrow-alt-circle-right:before, input[type="button"]:active .kng-btn-icon.kng-arrow-alt-circle-right:before, .added_to_cart:active .kng-btn-icon.kng-arrow-alt-circle-right:before, .kng-btn:active .kng-btn-icon.kng-arrow-alt-circle-right:before, .btn:hover .kng-btn-icon.kng-arrow-alt-circle-right:before, button:hover .kng-btn-icon.kng-arrow-alt-circle-right:before, .button:hover .kng-btn-icon.kng-arrow-alt-circle-right:before, input[type="submit"]:hover .kng-btn-icon.kng-arrow-alt-circle-right:before, input[type="button"]:hover .kng-btn-icon.kng-arrow-alt-circle-right:before, .added_to_cart:hover .kng-btn-icon.kng-arrow-alt-circle-right:before, .kng-btn:hover .kng-btn-icon.kng-arrow-alt-circle-right:before, .btn:focus .kng-btn-icon.kng-arrow-alt-circle-right:before, button:focus .kng-btn-icon.kng-arrow-alt-circle-right:before, .button:focus .kng-btn-icon.kng-arrow-alt-circle-right:before, input[type="submit"]:focus .kng-btn-icon.kng-arrow-alt-circle-right:before, input[type="button"]:focus .kng-btn-icon.kng-arrow-alt-circle-right:before, .added_to_cart:focus .kng-btn-icon.kng-arrow-alt-circle-right:before, .kng-btn:focus .kng-btn-icon.kng-arrow-alt-circle-right:before {
  content: '\e908';
}
.btn.btn-xsmall, button.btn-xsmall, .button.btn-xsmall, input[type="submit"].btn-xsmall, input[type="button"].btn-xsmall, .added_to_cart.btn-xsmall, .kng-btn.btn-xsmall {
  padding: 2px 10px;
  font-size: 9px;
}
.btn.btn-small, button.btn-small, .button.btn-small, input[type="submit"].btn-small, input[type="button"].btn-small, .added_to_cart.btn-small, .kng-btn.btn-small {
  padding: 7px 24px;
  font-size: 12px;
  line-height: 24px;
}
.btn.btn-medium, button.btn-medium, .button.btn-medium, input[type="submit"].btn-medium, input[type="button"].btn-medium, .added_to_cart.btn-medium, .kng-btn.btn-medium {
  padding: 8px 25px;
  font-size: 15px;
}
.btn.btn-large, button.btn-large, .button.btn-large, input[type="submit"].btn-large, input[type="button"].btn-large, .added_to_cart.btn-large, .kng-btn.btn-large {
  padding: 10px 30px;
  font-size: 17px;
}
.btn.btn-xlarge, button.btn-xlarge, .button.btn-xlarge, input[type="submit"].btn-xlarge, input[type="button"].btn-xlarge, .added_to_cart.btn-xlarge, .kng-btn.btn-xlarge {
  padding: 12px 35px;
  font-size: 19px;
}
.btn.btn-outline, button.btn-outline, .button.btn-outline, input[type="submit"].btn-outline, input[type="button"].btn-outline, .added_to_cart.btn-outline, .kng-btn.btn-outline, .btn.btn-alt, button.btn-alt, .button.btn-alt, input[type="submit"].btn-alt, input[type="button"].btn-alt, .added_to_cart.btn-alt, .kng-btn.btn-alt {
  background-color: transparent;
  color: #201c1c;
  border: 1px solid #d7d7d7;
  transition: all 300ms ease 0s;
}
.btn.btn-outline.primary, button.btn-outline.primary, .button.btn-outline.primary, input[type="submit"].btn-outline.primary, input[type="button"].btn-outline.primary, .added_to_cart.btn-outline.primary, .kng-btn.btn-outline.primary, .btn.btn-alt.primary, button.btn-alt.primary, .button.btn-alt.primary, input[type="submit"].btn-alt.primary, input[type="button"].btn-alt.primary, .added_to_cart.btn-alt.primary, .kng-btn.btn-alt.primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn.btn-outline.secondary, button.btn-outline.secondary, .button.btn-outline.secondary, input[type="submit"].btn-outline.secondary, input[type="button"].btn-outline.secondary, .added_to_cart.btn-outline.secondary, .kng-btn.btn-outline.secondary, .btn.btn-alt.secondary, button.btn-alt.secondary, .button.btn-alt.secondary, input[type="submit"].btn-alt.secondary, input[type="button"].btn-alt.secondary, .added_to_cart.btn-alt.secondary, .kng-btn.btn-alt.secondary {
  color: var(--second-color);
  border-color: var(--second-color);
}
.btn.btn-outline.secondary:active, button.btn-outline.secondary:active, .button.btn-outline.secondary:active, input[type="submit"].btn-outline.secondary:active, input[type="button"].btn-outline.secondary:active, .added_to_cart.btn-outline.secondary:active, .kng-btn.btn-outline.secondary:active, .btn.btn-alt.secondary:active, button.btn-alt.secondary:active, .button.btn-alt.secondary:active, input[type="submit"].btn-alt.secondary:active, input[type="button"].btn-alt.secondary:active, .added_to_cart.btn-alt.secondary:active, .kng-btn.btn-alt.secondary:active, .btn.btn-outline.secondary:hover, button.btn-outline.secondary:hover, .button.btn-outline.secondary:hover, input[type="submit"].btn-outline.secondary:hover, input[type="button"].btn-outline.secondary:hover, .added_to_cart.btn-outline.secondary:hover, .kng-btn.btn-outline.secondary:hover, .btn.btn-alt.secondary:hover, button.btn-alt.secondary:hover, .button.btn-alt.secondary:hover, input[type="submit"].btn-alt.secondary:hover, input[type="button"].btn-alt.secondary:hover, .added_to_cart.btn-alt.secondary:hover, .kng-btn.btn-alt.secondary:hover, .btn.btn-outline.secondary:focus, button.btn-outline.secondary:focus, .button.btn-outline.secondary:focus, input[type="submit"].btn-outline.secondary:focus, input[type="button"].btn-outline.secondary:focus, .added_to_cart.btn-outline.secondary:focus, .kng-btn.btn-outline.secondary:focus, .btn.btn-alt.secondary:focus, button.btn-alt.secondary:focus, .button.btn-alt.secondary:focus, input[type="submit"].btn-alt.secondary:focus, input[type="button"].btn-alt.secondary:focus, .added_to_cart.btn-alt.secondary:focus, .kng-btn.btn-alt.secondary:focus {
  background-color: var(--second-color);
  border-color: transparent;
  color: #fff;
}
.btn.btn-outline.third, button.btn-outline.third, .button.btn-outline.third, input[type="submit"].btn-outline.third, input[type="button"].btn-outline.third, .added_to_cart.btn-outline.third, .kng-btn.btn-outline.third, .btn.btn-alt.third, button.btn-alt.third, .button.btn-alt.third, input[type="submit"].btn-alt.third, input[type="button"].btn-alt.third, .added_to_cart.btn-alt.third, .kng-btn.btn-alt.third {
  color: var(--third-color);
  border-color: var(--third-color);
}
.btn.btn-outline.third:active, button.btn-outline.third:active, .button.btn-outline.third:active, input[type="submit"].btn-outline.third:active, input[type="button"].btn-outline.third:active, .added_to_cart.btn-outline.third:active, .kng-btn.btn-outline.third:active, .btn.btn-alt.third:active, button.btn-alt.third:active, .button.btn-alt.third:active, input[type="submit"].btn-alt.third:active, input[type="button"].btn-alt.third:active, .added_to_cart.btn-alt.third:active, .kng-btn.btn-alt.third:active, .btn.btn-outline.third:hover, button.btn-outline.third:hover, .button.btn-outline.third:hover, input[type="submit"].btn-outline.third:hover, input[type="button"].btn-outline.third:hover, .added_to_cart.btn-outline.third:hover, .kng-btn.btn-outline.third:hover, .btn.btn-alt.third:hover, button.btn-alt.third:hover, .button.btn-alt.third:hover, input[type="submit"].btn-alt.third:hover, input[type="button"].btn-alt.third:hover, .added_to_cart.btn-alt.third:hover, .kng-btn.btn-alt.third:hover, .btn.btn-outline.third:focus, button.btn-outline.third:focus, .button.btn-outline.third:focus, input[type="submit"].btn-outline.third:focus, input[type="button"].btn-outline.third:focus, .added_to_cart.btn-outline.third:focus, .kng-btn.btn-outline.third:focus, .btn.btn-alt.third:focus, button.btn-alt.third:focus, .button.btn-alt.third:focus, input[type="submit"].btn-alt.third:focus, input[type="button"].btn-alt.third:focus, .added_to_cart.btn-alt.third:focus, .kng-btn.btn-alt.third:focus {
  background-color: var(--third-color);
  border-color: transparent;
  color: #fff;
}
.btn.btn-outline.white, button.btn-outline.white, .button.btn-outline.white, input[type="submit"].btn-outline.white, input[type="button"].btn-outline.white, .added_to_cart.btn-outline.white, .kng-btn.btn-outline.white, .btn.btn-alt.white, button.btn-alt.white, .button.btn-alt.white, input[type="submit"].btn-alt.white, input[type="button"].btn-alt.white, .added_to_cart.btn-alt.white, .kng-btn.btn-alt.white {
  color: #fff;
  border-color: #fff;
}
.btn.btn-outline.white:active, button.btn-outline.white:active, .button.btn-outline.white:active, input[type="submit"].btn-outline.white:active, input[type="button"].btn-outline.white:active, .added_to_cart.btn-outline.white:active, .kng-btn.btn-outline.white:active, .btn.btn-alt.white:active, button.btn-alt.white:active, .button.btn-alt.white:active, input[type="submit"].btn-alt.white:active, input[type="button"].btn-alt.white:active, .added_to_cart.btn-alt.white:active, .kng-btn.btn-alt.white:active, .btn.btn-outline.white:hover, button.btn-outline.white:hover, .button.btn-outline.white:hover, input[type="submit"].btn-outline.white:hover, input[type="button"].btn-outline.white:hover, .added_to_cart.btn-outline.white:hover, .kng-btn.btn-outline.white:hover, .btn.btn-alt.white:hover, button.btn-alt.white:hover, .button.btn-alt.white:hover, input[type="submit"].btn-alt.white:hover, input[type="button"].btn-alt.white:hover, .added_to_cart.btn-alt.white:hover, .kng-btn.btn-alt.white:hover, .btn.btn-outline.white:focus, button.btn-outline.white:focus, .button.btn-outline.white:focus, input[type="submit"].btn-outline.white:focus, input[type="button"].btn-outline.white:focus, .added_to_cart.btn-outline.white:focus, .kng-btn.btn-outline.white:focus, .btn.btn-alt.white:focus, button.btn-alt.white:focus, .button.btn-alt.white:focus, input[type="submit"].btn-alt.white:focus, input[type="button"].btn-alt.white:focus, .added_to_cart.btn-alt.white:focus, .kng-btn.btn-alt.white:focus {
  background-color: #fff;
  border-color: transparent;
  color: #000;
}
.btn.btn-outline.black, button.btn-outline.black, .button.btn-outline.black, input[type="submit"].btn-outline.black, input[type="button"].btn-outline.black, .added_to_cart.btn-outline.black, .kng-btn.btn-outline.black, .btn.btn-alt.black, button.btn-alt.black, .button.btn-alt.black, input[type="submit"].btn-alt.black, input[type="button"].btn-alt.black, .added_to_cart.btn-alt.black, .kng-btn.btn-alt.black {
  border-width: 1px;
  border-color: var(--heading-color);
  color: var(--heading-color);
}
.btn.btn-outline.black:active, button.btn-outline.black:active, .button.btn-outline.black:active, input[type="submit"].btn-outline.black:active, input[type="button"].btn-outline.black:active, .added_to_cart.btn-outline.black:active, .kng-btn.btn-outline.black:active, .btn.btn-alt.black:active, button.btn-alt.black:active, .button.btn-alt.black:active, input[type="submit"].btn-alt.black:active, input[type="button"].btn-alt.black:active, .added_to_cart.btn-alt.black:active, .kng-btn.btn-alt.black:active, .btn.btn-outline.black:hover, button.btn-outline.black:hover, .button.btn-outline.black:hover, input[type="submit"].btn-outline.black:hover, input[type="button"].btn-outline.black:hover, .added_to_cart.btn-outline.black:hover, .kng-btn.btn-outline.black:hover, .btn.btn-alt.black:hover, button.btn-alt.black:hover, .button.btn-alt.black:hover, input[type="submit"].btn-alt.black:hover, input[type="button"].btn-alt.black:hover, .added_to_cart.btn-alt.black:hover, .kng-btn.btn-alt.black:hover, .btn.btn-outline.black:focus, button.btn-outline.black:focus, .button.btn-outline.black:focus, input[type="submit"].btn-outline.black:focus, input[type="button"].btn-outline.black:focus, .added_to_cart.btn-outline.black:focus, .kng-btn.btn-outline.black:focus, .btn.btn-alt.black:focus, button.btn-alt.black:focus, .button.btn-alt.black:focus, input[type="submit"].btn-alt.black:focus, input[type="button"].btn-alt.black:focus, .added_to_cart.btn-alt.black:focus, .kng-btn.btn-alt.black:focus {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: #fff;
}
.btn.btn-outline.default, button.btn-outline.default, .button.btn-outline.default, input[type="submit"].btn-outline.default, input[type="button"].btn-outline.default, .added_to_cart.btn-outline.default, .kng-btn.btn-outline.default, .btn.btn-alt.default, button.btn-alt.default, .button.btn-alt.default, input[type="submit"].btn-alt.default, input[type="button"].btn-alt.default, .added_to_cart.btn-alt.default, .kng-btn.btn-alt.default {
  border-width: 1px;
  border-color: #828282;
}
.btn.btn-outline:after, button.btn-outline:after, .button.btn-outline:after, input[type="submit"].btn-outline:after, input[type="button"].btn-outline:after, .added_to_cart.btn-outline:after, .kng-btn.btn-outline:after, .btn.btn-alt:after, button.btn-alt:after, .button.btn-alt:after, input[type="submit"].btn-alt:after, input[type="button"].btn-alt:after, .added_to_cart.btn-alt:after, .kng-btn.btn-alt:after {
  content: none;
}
.btn.btn-outline:active, button.btn-outline:active, .button.btn-outline:active, input[type="submit"].btn-outline:active, input[type="button"].btn-outline:active, .added_to_cart.btn-outline:active, .kng-btn.btn-outline:active, .btn.btn-alt:active, button.btn-alt:active, .button.btn-alt:active, input[type="submit"].btn-alt:active, input[type="button"].btn-alt:active, .added_to_cart.btn-alt:active, .kng-btn.btn-alt:active, .btn.btn-outline:hover, button.btn-outline:hover, .button.btn-outline:hover, input[type="submit"].btn-outline:hover, input[type="button"].btn-outline:hover, .added_to_cart.btn-outline:hover, .kng-btn.btn-outline:hover, .btn.btn-alt:hover, button.btn-alt:hover, .button.btn-alt:hover, input[type="submit"].btn-alt:hover, input[type="button"].btn-alt:hover, .added_to_cart.btn-alt:hover, .kng-btn.btn-alt:hover, .btn.btn-outline:focus, button.btn-outline:focus, .button.btn-outline:focus, input[type="submit"].btn-outline:focus, input[type="button"].btn-outline:focus, .added_to_cart.btn-outline:focus, .kng-btn.btn-outline:focus, .btn.btn-alt:focus, button.btn-alt:focus, .button.btn-alt:focus, input[type="submit"].btn-alt:focus, input[type="button"].btn-alt:focus, .added_to_cart.btn-alt:focus, .kng-btn.btn-alt:focus {
  background-color: var(--primary-color);
  border-color: transparent;
  color: #fff;
}
.btn.btn-primary, button.btn-primary, .button.btn-primary, input[type="submit"].btn-primary, input[type="button"].btn-primary, .added_to_cart.btn-primary, .kng-btn.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.btn.btn-primary:active, button.btn-primary:active, .button.btn-primary:active, input[type="submit"].btn-primary:active, input[type="button"].btn-primary:active, .added_to_cart.btn-primary:active, .kng-btn.btn-primary:active, .btn.btn-primary:hover, button.btn-primary:hover, .button.btn-primary:hover, input[type="submit"].btn-primary:hover, input[type="button"].btn-primary:hover, .added_to_cart.btn-primary:hover, .kng-btn.btn-primary:hover, .btn.btn-primary:focus, button.btn-primary:focus, .button.btn-primary:focus, input[type="submit"].btn-primary:focus, input[type="button"].btn-primary:focus, .added_to_cart.btn-primary:focus, .kng-btn.btn-primary:focus {
  background-color: var(--second-color);
  border-color: var(--second-color);
}
.btn.btn-secondary, button.btn-secondary, .button.btn-secondary, input[type="submit"].btn-secondary, input[type="button"].btn-secondary, .added_to_cart.btn-secondary, .kng-btn.btn-secondary, .btn.secondary, button.secondary, .button.secondary, input[type="submit"].secondary, input[type="button"].secondary, .added_to_cart.secondary, .kng-btn.secondary {
  background-color: var(--second-color);
  border-color: var(--second-color);
  color: #201c1c;
}
.btn.btn-secondary:active, button.btn-secondary:active, .button.btn-secondary:active, input[type="submit"].btn-secondary:active, input[type="button"].btn-secondary:active, .added_to_cart.btn-secondary:active, .kng-btn.btn-secondary:active, .btn.secondary:active, button.secondary:active, .button.secondary:active, input[type="submit"].secondary:active, input[type="button"].secondary:active, .added_to_cart.secondary:active, .kng-btn.secondary:active, .btn.btn-secondary:hover, button.btn-secondary:hover, .button.btn-secondary:hover, input[type="submit"].btn-secondary:hover, input[type="button"].btn-secondary:hover, .added_to_cart.btn-secondary:hover, .kng-btn.btn-secondary:hover, .btn.secondary:hover, button.secondary:hover, .button.secondary:hover, input[type="submit"].secondary:hover, input[type="button"].secondary:hover, .added_to_cart.secondary:hover, .kng-btn.secondary:hover, .btn.btn-secondary:focus, button.btn-secondary:focus, .button.btn-secondary:focus, input[type="submit"].btn-secondary:focus, input[type="button"].btn-secondary:focus, .added_to_cart.btn-secondary:focus, .kng-btn.btn-secondary:focus, .btn.secondary:focus, button.secondary:focus, .button.secondary:focus, input[type="submit"].secondary:focus, input[type="button"].secondary:focus, .added_to_cart.secondary:focus, .kng-btn.secondary:focus, .btn.btn-secondary.active, button.btn-secondary.active, .button.btn-secondary.active, input[type="submit"].btn-secondary.active, input[type="button"].btn-secondary.active, .added_to_cart.btn-secondary.active, .kng-btn.btn-secondary.active, .btn.secondary.active, button.secondary.active, .button.secondary.active, input[type="submit"].secondary.active, input[type="button"].secondary.active, .added_to_cart.secondary.active, .kng-btn.secondary.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.btn.btn-second, button.btn-second, .button.btn-second, input[type="submit"].btn-second, input[type="button"].btn-second, .added_to_cart.btn-second, .kng-btn.btn-second {
  background-color: var(--second-color);
  border-color: var(--second-color);
  color: #201c1c;
}
.btn.btn-second:active, button.btn-second:active, .button.btn-second:active, input[type="submit"].btn-second:active, input[type="button"].btn-second:active, .added_to_cart.btn-second:active, .kng-btn.btn-second:active, .btn.btn-second:hover, button.btn-second:hover, .button.btn-second:hover, input[type="submit"].btn-second:hover, input[type="button"].btn-second:hover, .added_to_cart.btn-second:hover, .kng-btn.btn-second:hover, .btn.btn-second:focus, button.btn-second:focus, .button.btn-second:focus, input[type="submit"].btn-second:focus, input[type="button"].btn-second:focus, .added_to_cart.btn-second:focus, .kng-btn.btn-second:focus, .btn.btn-second.active, button.btn-second.active, .button.btn-second.active, input[type="submit"].btn-second.active, input[type="button"].btn-second.active, .added_to_cart.btn-second.active, .kng-btn.btn-second.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.btn.btn-second2, button.btn-second2, .button.btn-second2, input[type="submit"].btn-second2, input[type="button"].btn-second2, .added_to_cart.btn-second2, .kng-btn.btn-second2 {
  background-color: var(--second-color);
  border-color: var(--second-color);
  color: #fff6f0;
}
.btn.btn-second2:active, button.btn-second2:active, .button.btn-second2:active, input[type="submit"].btn-second2:active, input[type="button"].btn-second2:active, .added_to_cart.btn-second2:active, .kng-btn.btn-second2:active, .btn.btn-second2:hover, button.btn-second2:hover, .button.btn-second2:hover, input[type="submit"].btn-second2:hover, input[type="button"].btn-second2:hover, .added_to_cart.btn-second2:hover, .kng-btn.btn-second2:hover, .btn.btn-second2:focus, button.btn-second2:focus, .button.btn-second2:focus, input[type="submit"].btn-second2:focus, input[type="button"].btn-second2:focus, .added_to_cart.btn-second2:focus, .kng-btn.btn-second2:focus, .btn.btn-second2.active, button.btn-second2.active, .button.btn-second2.active, input[type="submit"].btn-second2.active, input[type="button"].btn-second2.active, .added_to_cart.btn-second2.active, .kng-btn.btn-second2.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.btn.btn-third, button.btn-third, .button.btn-third, input[type="submit"].btn-third, input[type="button"].btn-third, .added_to_cart.btn-third, .kng-btn.btn-third {
  background-color: var(--third-color);
  border-color: var(--third-color);
  color: #fff;
}
.btn.btn-third:active, button.btn-third:active, .button.btn-third:active, input[type="submit"].btn-third:active, input[type="button"].btn-third:active, .added_to_cart.btn-third:active, .kng-btn.btn-third:active, .btn.btn-third:hover, button.btn-third:hover, .button.btn-third:hover, input[type="submit"].btn-third:hover, input[type="button"].btn-third:hover, .added_to_cart.btn-third:hover, .kng-btn.btn-third:hover, .btn.btn-third:focus, button.btn-third:focus, .button.btn-third:focus, input[type="submit"].btn-third:focus, input[type="button"].btn-third:focus, .added_to_cart.btn-third:focus, .kng-btn.btn-third:focus, .btn.btn-third.active, button.btn-third.active, .button.btn-third.active, input[type="submit"].btn-third.active, input[type="button"].btn-third.active, .added_to_cart.btn-third.active, .kng-btn.btn-third.active {
  background-color: transparent;
  color: var(--third-color);
  border-color: var(--third-color);
}
.btn.btn-black, button.btn-black, .button.btn-black, input[type="submit"].btn-black, input[type="button"].btn-black, .added_to_cart.btn-black, .kng-btn.btn-black {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: #fff;
}
.btn.btn-black:active, button.btn-black:active, .button.btn-black:active, input[type="submit"].btn-black:active, input[type="button"].btn-black:active, .added_to_cart.btn-black:active, .kng-btn.btn-black:active, .btn.btn-black:hover, button.btn-black:hover, .button.btn-black:hover, input[type="submit"].btn-black:hover, input[type="button"].btn-black:hover, .added_to_cart.btn-black:hover, .kng-btn.btn-black:hover, .btn.btn-black:focus, button.btn-black:focus, .button.btn-black:focus, input[type="submit"].btn-black:focus, input[type="button"].btn-black:focus, .added_to_cart.btn-black:focus, .kng-btn.btn-black:focus {
  border-width: 1px;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-fullwidth, button.btn-fullwidth, .button.btn-fullwidth, input[type="submit"].btn-fullwidth, input[type="button"].btn-fullwidth, .added_to_cart.btn-fullwidth, .kng-btn.btn-fullwidth {
  width: 100%;
}
.btn.btn-fullwidth.border-3px, button.btn-fullwidth.border-3px, .button.btn-fullwidth.border-3px, input[type="submit"].btn-fullwidth.border-3px, input[type="button"].btn-fullwidth.border-3px, .added_to_cart.btn-fullwidth.border-3px, .kng-btn.btn-fullwidth.border-3px {
  border-radius: 3px !important;
}
.btn.btn-round, button.btn-round, .button.btn-round, input[type="submit"].btn-round, input[type="button"].btn-round, .added_to_cart.btn-round, .kng-btn.btn-round {
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -khtml-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}
.btn.text-justify, button.text-justify, .button.text-justify, input[type="submit"].text-justify, input[type="button"].text-justify, .added_to_cart.text-justify, .kng-btn.text-justify {
  display: block;
}
.btn-link {
  font-weight: 400;
  color: var(--link-color);
  text-decoration: none;
}
.btn-link:hover {
  color: var(--link-color-hover);
  text-decoration: none;
}
.btn-video {
  width: 105px;
  height: 105px;
  line-height: 73px;
  font-size: 33px;
  position: relative;
  color: var(--primary-color);
  display: block;
  text-align: center;
  border: 16px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.btn-video:before, .btn-video:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 65px;
  width: 65px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
  -khtml-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
  animation: ripple 3s infinite;
  -webkit-animation: ripple 3s infinite;
  -khtml-animation: ripple 3s infinite;
  -moz-animation: ripple 3s infinite;
  -ms-animation: ripple 3s infinite;
  -o-animation: ripple 3s infinite;
}
.btn-video:before {
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
  -khtml-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
}
.btn-video:after {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -khtml-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
}
.btn-video .kng-play-video-icon {
  width: 73px;
  height: 73px;
  line-height: 73px;
  display: block;
  background: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.btn-video .kng-play-video-icon:before {
  font-family: "kngi";
  content: '\f3aa';
}
.btn-video.rev-btn {
  border: none !important;
}
.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none;
}
.kng-video-btn {
  width: 68px;
  height: 68px;
  display: block;
  line-height: 68px;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-video-btn.bg-primary {
  box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
}
.kng-video-btn.bg-hover-primary:hover {
  box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0.2);
}
.kng-video-btn.bg-second {
  box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
}
.kng-video-btn.bg-hover-second:hover {
  box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--second-color-rgb), 0.2);
}
.kng-video-btn.bg-second2 {
  box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
}
.kng-video-btn.bg-hover-second2:hover {
  box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--second2-color-rgb), 0.2);
}
.kng-video-btn.bg-third {
  box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
}
.kng-video-btn.bg-hover-third:hover {
  box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--third-color-rgb), 0.2);
}
.kng-video-btn.bg-rating {
  box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
}
.kng-video-btn.bg-hover-rating:hover {
  box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--rating-color-rgb), 0.2);
}
.kng-video-btn.bg-body {
  box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
}
.kng-video-btn.bg-hover-body:hover {
  box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--body-color-rgb), 0.2);
}
.kng-video-btn.bg-heading {
  box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
}
.kng-video-btn.bg-hover-heading:hover {
  box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--heading-color-rgb), 0.2);
}
.kng-video-btn.bg-white {
  box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
}
.kng-video-btn.bg-hover-white:hover {
  box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
  -webkit-box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
  -khtml-box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
  -moz-box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
  -ms-box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
  -o-box-shadow: 0 0 0 15px rgba(var(--white-color-rgb), 0.2);
}
.kng-video-btn > span {
  display: inline-block;
  transform: translateY(2px);
}
.wpml-ls-legacy-dropdown {
  width: auto;
  max-width: 100%;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.48px;
  line-height: 32px;
}
.wpml-ls-legacy-dropdown > ul {
  position: relative;
  padding: 0;
  margin: 0 !important;
  list-style-type: none;
}
.wpml-ls-legacy-dropdown > ul > li > a {
  line-height: 23px;
}
.wpml-ls-legacy-dropdown .wpml-ls-item {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.wpml-ls-legacy-dropdown a {
  display: block;
  text-decoration: none;
  background-color: #fff;
  padding: 8px 0;
  line-height: 18px;
  border: 0;
}
.wpml-ls-legacy-dropdown a span {
  vertical-align: middle;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
  position: relative;
  padding-right: 13px;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
  content: "\e91d";
  font-family: 'kngi';
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  border: 0;
  right: 0;
  top: 18px;
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
}
.wpml-ls-legacy-dropdown a a:focus, .wpml-ls-legacy-dropdown a a:hover {
  color: var(--primary-color);
  background: #fff;
}
.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a, .wpml-ls-legacy-dropdown a:focus, .wpml-ls-legacy-dropdown a:hover {
  color: var(--primary-color);
  background: #fff;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 150px;
  top: calc(100% + 30px);
  right: 0;
  left: 0;
  border-top: 1px solid #cdcdcd;
  padding: 0;
  margin: 0;
  list-style-type: none;
  z-index: 101;
  box-shadow: 6px 5px 20px -5px rgba(51, 51, 51, .3);
  -webkit-box-shadow: 6px 5px 20px -5px rgba(51, 51, 51, .3);
  -khtml-box-shadow: 6px 5px 20px -5px rgba(51, 51, 51, .3);
  -moz-box-shadow: 6px 5px 20px -5px rgba(51, 51, 51, .3);
  -ms-box-shadow: 6px 5px 20px -5px rgba(51, 51, 51, .3);
  -o-box-shadow: 6px 5px 20px -5px rgba(51, 51, 51, .3);
  transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -khtml-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu a {
  border-style: solid;
  border-width: 0 1px 1px;
  border-color: #d7d7d7;
  padding: 5px 15px;
}
.wpml-ls-legacy-dropdown .wpml-ls-flag {
  display: inline;
  vertical-align: middle;
}
.wpml-ls-legacy-dropdown .wpml-ls-flag + span {
  margin-left: 0.4em;
}
.wpml-ls-legacy-dropdown .wpml-ls-current-language:focus .wpml-ls-sub-menu, .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover .wpml-ls-sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.rtl .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
  padding-right: 10px;
  padding-left: calc(10px + 1.4em);
}
.rtl .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
  right: auto;
  left: 10px;
}
.rtl .wpml-ls-legacy-dropdown .wpml-ls-flag + span {
  margin-left: 0;
  margin-right: 0.4em;
}
.language-dropdow > ul > li.lang-item {
  position: relative;
  z-index: 9999;
}
.language-dropdow > ul > li.lang-item a {
  color: #1f1f1f;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.language-dropdow > ul > li.lang-item a img {
  margin-right: 0.5rem;
  margin-bottom: 3px;
}
.language-dropdow > ul > li.lang-item a span:after {
  content: "\ea99";
  font-family: IcoFont;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  line-height: 1;
  color: var(--primary-color);
  margin-left: 2px;
}
.language-dropdow > ul > li.lang-item ul.lang-submenu {
  position: absolute;
  width: 100%;
  min-width: 100px;
  padding: 10px 0;
  border-radius: 3px;
  background: #fff;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -khtml-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -khtml-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
}
.language-dropdow > ul > li.lang-item ul.lang-submenu li a {
  color: #333;
  font-weight: 300;
  font-size: 0.775rem;
  display: block;
  padding: 0.4rem 0.9rem;
  text-transform: capitalize;
}
.language-dropdow > ul > li.lang-item ul.lang-submenu li a:hover {
  color: var(--link-color-hover);
}
.language-dropdow > ul > li.lang-item:hover ul.lang-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(9px);
  -webkit-transform: translateY(9px);
  -khtml-transform: translateY(9px);
  -moz-transform: translateY(9px);
  -ms-transform: translateY(9px);
  -o-transform: translateY(9px);
}
.header-top-1 {
  height: 41px;
}
.kng-header-logo a {
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  max-width: 144px;
  max-height: 73px;
}
a.logo-mobile {
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  max-width: 140px;
}
.kng-primary-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.kng-primary-menu li {
  position: relative;
  padding: 0;
}
.kng-primary-menu ul, .kng-primary-menu ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .kng-primary-menu {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
    flex-wrap: wrap;
  }
  .kng-primary-menu li {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .kng-primary-menu li:hover > .sub-menu {
    top: 100%;
    z-index: 1;
    visibility: visible;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
  }
  .kng-primary-menu > li {
    flex: 0 0 auto;
    width: auto;
    margin: 0 15px;
    display: inline-flex;
  }
  .kng-primary-menu > li.kng-separator {
    padding-right: 70px;
  }
  .kng-primary-menu > li.kng-separator:before {
    right: 70px;
  }
  .kng-primary-menu > li.kng-separator:after {
    content: '';
    width: 2px;
    height: 27px;
    display: block;
    background-color: rgba(9, 29, 62, 0.15);
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .kng-primary-menu > li > a {
    color: #201c1c;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 87px;
    display: inline-block;
    letter-spacing: 0.64px;
    text-transform: uppercase;
  }
  .kng-primary-menu > li > a .kng-menu-title {
    position: relative;
    padding-bottom: 10px;
  }
  .kng-primary-menu > li > a .kng-menu-title:after {
    content: '';
    display: block;
    position: absolute;
    background: #201c1c;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -khtml-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
  }
  .kng-primary-menu > li > a:hover {
    color: #201c1c;
  }
  .kng-primary-menu > li.active:before, .kng-primary-menu > li.current-menu-item:before, .kng-primary-menu > li.current-menu-ancestor:before, .kng-primary-menu > li:hover:before {
    transform-origin: left center;
    -webkit-transform-origin: left center;
    -khtml-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -khtml-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    background-color: #201c1c;
  }
  .kng-primary-menu > li.active > a, .kng-primary-menu > li.current-menu-item > a, .kng-primary-menu > li.current-menu-ancestor > a, .kng-primary-menu > li:hover > a, .kng-primary-menu > li.active > .main-menu-toggle:before, .kng-primary-menu > li.current-menu-item > .main-menu-toggle:before, .kng-primary-menu > li.current-menu-ancestor > .main-menu-toggle:before, .kng-primary-menu > li:hover > .main-menu-toggle:before {
    color: #201c1c;
  }
  .kng-primary-menu > li.active > a > .kng-menu-title:after, .kng-primary-menu > li.current-menu-item > a > .kng-menu-title:after, .kng-primary-menu > li.current-menu-ancestor > a > .kng-menu-title:after, .kng-primary-menu > li:hover > a > .kng-menu-title:after {
    background: #201c1c;
    width: 50%;
  }
  .kng-primary-menu > li > .main-menu-toggle {
    display: none;
    line-height: 1;
    align-self: center;
    margin-left: 8px;
    margin-top: 3px;
  }
  .kng-primary-menu > li > .main-menu-toggle:before {
    color: #201c1c;
    font-family: "kngi";
    content: '\e91d';
    font-size: 9px;
  }
  .kng-primary-menu > li > .sub-menu {
    left: 0;
  }
  [dir="rtl"] .kng-primary-menu > li > .sub-menu {
    left: auto;
    right: 0;
  }
  .kng-primary-menu > li.active > a, .kng-primary-menu > li:hover > a, .kng-primary-menu > li.active > .main-menu-toggle:before, .kng-primary-menu > li:hover > .main-menu-toggle:before {
    color: #201c1c;
  }
  .kng-primary-menu > li.active > a .kng-menu-title:after, .kng-primary-menu > li:hover > a .kng-menu-title:after, .kng-primary-menu > li.active > .main-menu-toggle:before .kng-menu-title:after, .kng-primary-menu > li:hover > .main-menu-toggle:before .kng-menu-title:after {
    background: #201c1c;
  }
  .kng-primary-menu > li.active:before, .kng-primary-menu > li:hover:before {
    background-color: #201c1c;
  }
  .kng-primary-menu > li.active > .sub-menu, .kng-primary-menu > li:hover > .sub-menu {
    top: 100%;
  }
  .kng-primary-menu .sub-menu {
    width: 250px;
    color: #201c1c;
    /* background-image: $dropdown_bg_img; */
    background-color: #fff;
    background-repeat: repeat-x;
    background-position: top left;
    position: absolute;
    top: calc(100% + 20px);
    left: 100%;
    padding: 27px 40px;
    z-index: -1;
    visibility: hidden;
    box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
    -webkit-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
    -khtml-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
    -moz-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
    -ms-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
    -o-box-shadow: 0px 10px 40px 0px rgba(27, 26, 26, 0.09);
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    transition: top 0.3s;
    -webkit-transition: top 0.3s;
    -khtml-transition: top 0.3s;
    -moz-transition: top 0.3s;
    -ms-transition: top 0.3s;
    -o-transition: top 0.3s;
    border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    -khtml-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    -o-border-radius: 0 0 4px 4px;
  }
  .kng-primary-menu .sub-menu.back {
    left: auto;
    right: 100%;
  }
  [dir="rtl"] .kng-primary-menu .sub-menu {
    left: auto;
    right: 100%;
  }
  [dir="rtl"] .kng-primary-menu .sub-menu.back {
    right: auto;
    left: 100%;
  }
  .kng-primary-menu .sub-menu li {
    padding: 2px 0;
  }
  .kng-primary-menu .sub-menu .kng-parent-menu-icon:before {
    font-family: "kngi";
    content: "\6a";
    font-size: 12px;
  }
  .kng-primary-menu .sub-menu li {
    padding: 0;
  }
  .kng-primary-menu .sub-menu li:last-child a {
    border-bottom: 0;
  }
  .kng-primary-menu .sub-menu li:hover > .sub-menu {
    top: 0;
  }
  .kng-primary-menu .sub-menu li:hover > .main-menu-toggle {
    color: #201c1c;
  }
  .kng-primary-menu .sub-menu li.active > .main-menu-toggle, .kng-primary-menu .sub-menu li.current-menu-item > .main-menu-toggle, .kng-primary-menu .sub-menu li.current-menu-ancestor > .main-menu-toggle {
    color: #201c1c;
  }
  .kng-primary-menu .sub-menu a {
    display: block;
    font-size: 14px;
    padding: 0;
    color: #201c1c;
    background-color: transparent;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.8;
  }
  .kng-primary-menu .sub-menu a span {
    padding: 6px 0;
    position: relative;
    display: inline-block;
  }
  .kng-primary-menu .sub-menu a span:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background-color: #201c1c;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -khtml-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
  }
  [dir="rtl"] .kng-primary-menu .sub-menu a span:after {
    left: auto;
    right: 0;
  }
  .kng-primary-menu .sub-menu a:hover {
    color: #201c1c;
    background-color: transparent;
  }
  .kng-primary-menu .sub-menu a:hover span:after {
    width: 50%;
  }
  .kng-primary-menu .sub-menu .current-menu-item > a, .kng-primary-menu .sub-menu .current-menu-ancestor > a {
    color: #201c1c;
    background-color: transparent;
  }
  .kng-primary-menu .sub-menu .current-menu-item > a span:after, .kng-primary-menu .sub-menu .current-menu-ancestor > a span:after {
    width: 50%;
  }
  .kng-primary-menu .kng-parent-menu-icon {
    float: right;
  }
  .kng-primary-menu .kng-parent-menu-icon:before {
    margin-left: 5px;
    font-family: "kngi";
    content: "\6a";
    font-size: 12px;
  }
  [dir="rtl"] .kng-primary-menu .kng-parent-menu-icon:before {
    margin-left: 0;
    margin-right: 5px;
  }
  [dir="rtl"] .kng-primary-menu .kng-parent-menu-icon {
    float: left;
  }
}
@media (min-width: 1200px) {
  .kng-primary-menu > li {
    margin: 0 20px;
  }
}
@media (max-width: 991px) {
  .kng-side-menu.widescreen {
    display: none;
  }
}
@media (min-width: 992px) {
  .kng-side-menu .container {
    position: relative;
  }
  .kng-side-menu .container > .separate {
    position: absolute;
    left: calc(25% + 30px);
    top: 0;
    bottom: 0;
    content: "";
    width: 1px;
    background-color: #d7d7d7;
  }
  .kng-side-menu .kng-primary-menu {
    flex-direction: column;
    width: 25%;
    margin-left: 0;
    margin-right: 0;
  }
  .kng-side-menu .kng-primary-menu > li {
    margin: 0;
  }
  .kng-side-menu .kng-primary-menu > li.menu-item-has-children {
    position: static;
  }
  .kng-side-menu .kng-primary-menu > li.active > .sub-menu, .kng-side-menu .kng-primary-menu > li:hover > .sub-menu {
    top: 0;
    z-index: 1;
    visibility: visible;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
  }
  .kng-side-menu .kng-primary-menu > li > a {
    line-height: 48px;
    text-transform: uppercase;
  }
  .kng-side-menu .kng-primary-menu > li > a .kng-menu-title:after {
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -khtml-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  .kng-side-menu .kng-primary-menu .sub-menu {
    width: 75%;
    min-height: 50vh;
    left: calc(25% + 35px);
    top: 20px;
    padding: 0 0 0 45px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
  }
  .kng-side-menu .kng-primary-menu .sub-menu li {
    padding: 5px 0;
  }
  .kng-side-menu .kng-primary-menu .sub-menu.kng-dropdown-mega {
    padding: 0 0 0 30px !important;
  }
  .kng-side-menu .kng-primary-menu .kng-dropdown-mega .elementor-section {
    width: 100% !important;
    left: auto !important;
    padding-top: 20px !important;
  }
  .kng-side-menu .kng-primary-menu .kng-dropdown-mega .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 75%;
    margin-left: 0;
  }
  .kng-side-menu .kng-primary-menu .kng-dropdown-mega .kng-invisible {
    visibility: visible;
  }
  .kng-side-menu .kng-primary-menu .kng-dropdown-mega .kng-category-box-layout-1 ul li {
    padding-left: 13px;
  }
  .kng-side-menu .kng-primary-menu .kng-dropdown-mega .kng-category-box-layout-1 ul li:before {
    top: 13px;
  }
  .kng-side-menu .kng-primary-menu .kng-dropdown-mega .kng-category-box-layout-1 .kng-cat-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .kng-side-menu .kng-primary-menu .kng-dropdown-mega .kng-category-box-layout-1 .kng-cat-img {
    display: none;
  }
  .kng-bottom-extras {
    width: 25%;
    margin-top: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .kng-side-menu .kng-primary-menu .kng-dropdown-mega .elementor-column {
    width: 50% !important;
  }
}
.kng-nav-menu ul, .kng-nav-menu ol {
  list-style: none;
}
.kng-nav-menu.is-arrow .kng-primary-menu > li > .main-menu-toggle {
  display: inline-flex;
}
@media (min-width: 992px) {
  .kng-menu-template-2 .kng-primary-menu > li > a .kng-menu-title {
    padding-bottom: 20px;
  }
  .kng-menu-template-2 .kng-primary-menu > li > a .kng-menu-title:after {
    left: 0;
    height: 4px;
    background-color: var(--second-color);
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -khtml-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  .kng-menu-template-2 .kng-primary-menu > li.menu-item-has-children.current-menu-item > a > .kng-menu-title:after, .kng-menu-template-2 .kng-primary-menu > li.menu-item-has-children.current-menu-ancestor > a > .kng-menu-title:after, .kng-menu-template-2 .kng-primary-menu > li.menu-item-has-children:hover > a > .kng-menu-title:after {
    width: calc(100% + 18px);
  }
  .kng-menu-template-2 .kng-primary-menu > li:not(.menu-item-has-children).current-menu-item > a > .kng-menu-title:after, .kng-menu-template-2 .kng-primary-menu > li:not(.menu-item-has-children).current-menu-ancestor > a > .kng-menu-title:after, .kng-menu-template-2 .kng-primary-menu > li:not(.menu-item-has-children):hover > a > .kng-menu-title:after {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .kng-menu-template-2 .kng-primary-menu > li.menu-item-has-children.current-menu-item > a > .kng-menu-title:after, .kng-menu-template-2 .kng-primary-menu > li.menu-item-has-children.current-menu-ancestor > a > .kng-menu-title:after, .kng-menu-template-2 .kng-primary-menu > li.menu-item-has-children:hover > a > .kng-menu-title:after {
    width: calc(100% + 18px);
  }
  .kng-menu-template-2 .kng-primary-menu > li:not(.menu-item-has-children).current-menu-item > a > .kng-menu-title:after, .kng-menu-template-2 .kng-primary-menu > li:not(.menu-item-has-children).current-menu-ancestor > a > .kng-menu-title:after, .kng-menu-template-2 .kng-primary-menu > li:not(.menu-item-has-children):hover > a > .kng-menu-title:after {
    width: 100%;
  }
}
.kng-nav-menu ul.cat-list-item li {
  padding-left: 13px;
}
.kng-nav-menu ul.cat-list-item li:hover a, .kng-nav-menu ul.cat-list-item li a:hover {
  color: var(--link-color-hover);
}
.kng-dropdown-mega .elementor-widget-image a:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -khtml-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-dropdown-mega .kng-category-box-wrap .kng-cat-img {
  overflow: hidden;
}
.kng-dropdown-mega .kng-category-box-wrap .kng-cat-img img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -khtml-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}
.kng-dropdown-mega .kng-category-box-wrap:hover .kng-cat-img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -khtml-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
#cms-primary-menu .megamenu .sub-menu {
  padding: 0;
  overflow: hidden;
}
@media (min-width: 1200px) {
  #cms-primary-menu .megamenu .sub-menu {
    width: 470px;
  }
}
#cms-primary-menu .megamenu .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-default > .elementor-column {
  box-shadow: 0px 5px 83px 0px rgba(3, 43, 86, 0.12);
  background-color: var(--dropdown-bg);
  background-image: url(../images/dropdown-shadow.png);
  background-repeat: repeat-x;
  background-position: top left;
}
#cms-primary-menu .megamenu .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-default > .elementor-column:first-child {
  z-index: 1;
}
#cms-primary-menu .megamenu .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 37px 40px 26px;
}
.elementor-section.has-mega-menu .elementor-column {
  position: static;
}
.elementor-section.has-mega-menu .elementor-widget-wrap {
  position: static;
}
.elementor-section.has-mega-menu .elementor-section {
  position: static;
}
.elementor-section.has-mega-menu .elementor-container {
  position: static;
}
.elementor-section.has-mega-menu .elementor-widget {
  position: static;
}
.elementor-section.has-mega-menu li.megamenu {
  position: static;
}
.kng-primary-menu .sub-menu.kng-dropdown-mega {
  width: 100%;
  padding: 0;
}
.sub-menu.kng-dropdown-mega {
  width: 100%;
  padding: 0;
}
.kng-hidden-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 460px;
  background: #fff;
  z-index: 10;
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  transform: translateX(460px);
  -webkit-transform: translateX(460px);
  -khtml-transform: translateX(460px);
  -moz-transform: translateX(460px);
  -ms-transform: translateX(460px);
  -o-transform: translateX(460px);
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
@media (max-width: 1279px) {
  .kng-hidden-sidebar {
    max-width: 320px;
  }
}
[dir="rtl"] .kng-hidden-sidebar {
  right: auto;
  left: 0;
  transform: translateX(-460px);
  -webkit-transform: translateX(-460px);
  -khtml-transform: translateX(-460px);
  -moz-transform: translateX(-460px);
  -ms-transform: translateX(-460px);
  -o-transform: translateX(-460px);
}
.kng-hidden-sidebar .kng-hidden-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: red;
  cursor: pointer;
}
.kng-hidden-sidebar .kng-hidden-close:hover {
  background: red;
  color: #fff;
}
[dir="rtl"] .kng-hidden-sidebar .kng-hidden-close {
  right: auto;
  left: 0;
}
.kng-hidden-sidebar.open {
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -khtml-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
[dir="rtl"] .kng-header-hidden-sidebar {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.logged-in .kng-hidden-sidebar {
  top: 32px;
}
.header-ontop {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--ontop-bg);
}
@media (min-width: 1600px) {
  .header-ontop .kng-primary-menu > li > a, .header-ontop .kng-primary-menu > li > .main-menu-toggle:before {
    color: var(--ontop-regular);
  }
  .header-ontop .kng-primary-menu > li > a:hover, .header-ontop .kng-primary-menu > li > .main-menu-toggle:before:hover {
    color: var(--ontop-hover);
  }
  .header-ontop .kng-primary-menu > li:before {
    background-color: var(--ontop-hover);
  }
  .header-ontop .kng-primary-menu > li:hover > a, .header-ontop .kng-primary-menu > li:hover > .main-menu-toggle:before {
    color: var(--ontop-hover);
  }
  .header-ontop .kng-primary-menu > li:hover:before {
    background-color: var(--primary-color);
  }
  .header-ontop .kng-primary-menu > li.current-menu-item > a, .header-ontop .kng-primary-menu > li.current-menu-ancestor > a, .header-ontop .kng-primary-menu > li.current-menu-item .main-menu-toggle:before, .header-ontop .kng-primary-menu > li.current-menu-ancestor .main-menu-toggle:before {
    color: var(--ontop-active);
  }
  .header-ontop .kng-primary-menu > li.current-menu-item:before, .header-ontop .kng-primary-menu > li.current-menu-ancestor:before {
    background-color: var(--primary-color);
  }
  .header-ontop .menu-color {
    color: var(--ontop-regular);
  }
  .header-ontop .menu-color:hover {
    color: var(--ontop-hover);
  }
}
.kng-header-elementor-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 999;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -khtml-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -webkit-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  visibility: hidden;
}
.kng-header-elementor-sticky.h-fixed {
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -khtml-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  visibility: visible;
  box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -khtml-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -moz-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -ms-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -o-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
}
.logged-in .h-fixed {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .logged-in .h-fixed {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .logged-in .h-fixed {
    top: 0;
  }
}
.kng-header-mobile .header-main-mobile {
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.kng-header-mobile.mh-fixed .header-main-mobile {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}
.logged-in .mh-fixed .header-main-mobile {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .logged-in .mh-fixed .header-main-mobile {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .logged-in .mh-fixed .header-main-mobile {
    top: 0;
  }
}
@media (max-width: 991px) {
  .kng-header-mobile .header-main-mobile {
    position: relative;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    -khtml-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    -ms-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    -o-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.02);
    background-color: #fff;
  }
  .kng-header-mobile .header-top-mobile {
    padding: 5px 0;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: rgba(215, 215, 215, 0.4);
    font-weight: 400;
    font-size: 13px;
    line-height: 32px;
    letter-spacing: 0.04em;
    background-color: #fff;
  }
  .kng-header-mobile .hmt-item-inner > svg, .kng-header-mobile .hmt-item-inner > i, .kng-header-mobile .hmt-item-inner > span {
    margin-right: 5px;
  }
  .kng-header-mobile .mobile-menu-toggle .bars {
    line-height: 1;
    cursor: pointer;
  }
  .kng-header-mobile .kng-factor {
    flex: 0 0 auto;
    padding: 3px;
    line-height: 1;
    position: relative;
  }
  .kng-header-mobile .kng-factor svg {
    transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -khtml-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
  }
  .kng-header-mobile .header-factor-inner {
    margin-left: -8px;
    margin-right: -8px;
  }
  .kng-header-mobile .kng-factor-item {
    margin-left: 8px;
    margin-right: 8px;
  }
  .kng-header-mobile .kng-user.logined .kng-factor {
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .kng-header-mobile .kng-user.logined .kng-factor span {
    margin-left: 5px;
  }
  .kng-header-mobile .header-count {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -7px;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.08em;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding-left: 1px;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -khtml-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
  }
  .kng-header-mobile .kng-wishlist, .kng-header-mobile .kng-cart-toggle {
    padding-right: 25px;
  }
  .header-mobile-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .header-ontop-mobile .kng-header-mobile .header-top-mobile {
    background-color: transparent;
  }
  .header-ontop-mobile .kng-header-mobile:not(.mh-fixed) .header-main-mobile {
    background-color: transparent;
  }
  .header-ontop-mobile .kng-header-mobile .header-main-mobile {
    box-shadow: none;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
  }
}
@media (max-width: 991px) {
  .kng-mobile-menu > li {
    color: var(--heading-color);
  }
  .kng-mobile-menu > li > a {
    padding: 10px 0;
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.64px;
    background-color: transparent;
  }
  .kng-mobile-menu .menu-item:hover, .kng-mobile-menu .menu-item:active, .kng-mobile-menu .current-menu-item, .kng-mobile-menu .current-menu-ancestor {
    color: var(--primary-color);
  }
  .kng-mobile-menu .menu-item:hover > a, .kng-mobile-menu .menu-item:active > a, .kng-mobile-menu .current-menu-item > a, .kng-mobile-menu .current-menu-ancestor > a {
    color: var(--primary-color);
    background-color: transparent;
  }
  .kng-mobile-menu .menu-item:active {
    color: var(--primary-color);
  }
  .kng-mobile-menu .menu-item:active > a {
    color: var(--primary-color);
    background-color: transparent;
  }
  .kng-mobile-menu .sub-menu {
    display: none;
  }
  .kng-mobile-menu .sub-menu .menu-item {
    color: var(--heading-color);
  }
  .kng-mobile-menu .sub-menu .menu-item > a {
    padding: 5px 0;
    display: inline-block;
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 400;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.64px;
    text-transform: initial;
  }
  .kng-mobile-menu .sub-menu .menu-item:hover, .kng-mobile-menu .sub-menu .current-menu-item, .kng-mobile-menu .sub-menu .current-menu-ancestor {
    color: var(--primary-color);
  }
  .kng-mobile-menu .sub-menu .menu-item:hover > a, .kng-mobile-menu .sub-menu .current-menu-item > a, .kng-mobile-menu .sub-menu .current-menu-ancestor > a {
    color: var(--primary-color);
    background-color: transparent;
  }
  .kng-mobile-menu .sub-menu .menu-item:active {
    color: var(--primary-color);
  }
  .kng-mobile-menu .sub-menu .menu-item:active > a {
    color: var(--primary-color);
    background-color: transparent;
  }
  .kng-mobile-menu .sub-menu .kng-heading-wrap {
    display: none;
  }
  .kng-mobile-menu .sub-menu .elementor-column, .kng-mobile-menu .sub-menu .elementor-column {
    width: 100% !important;
  }
  .kng-mobile-menu .sub-menu .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0;
  }
  .main-menu-toggle {
    cursor: pointer;
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    position: absolute;
    right: -6px;
    text-align: center;
    top: 14px;
    background-color: transparent;
    border-radius: 4px 4px 0 4px;
    -webkit-border-radius: 4px 4px 0 4px;
    -khtml-border-radius: 4px 4px 0 4px;
    -moz-border-radius: 4px 4px 0 4px;
    -ms-border-radius: 4px 4px 0 4px;
    -o-border-radius: 4px 4px 0 4px;
    transition: all 300ms linear 0ms;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
  }
  .main-menu-toggle:before {
    font-family: "kngi";
    content: '\e91d';
  }
  .main-menu-toggle.open:before {
    font-family: "kngi";
    content: '\e920';
  }
}
.side-panel-menu {
  width: 100%;
  max-width: 460px;
  z-index: 604;
  right: auto;
  left: 0;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -khtml-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  overflow: hidden;
}
.kng-mobile-search-wrap {
  margin-bottom: 30px;
}
.kng-mobile-search-wrap fieldset {
  padding: 0;
}
.kng-mobile-search-wrap form {
  position: relative;
}
.kng-mobile-search-wrap form:hover .kng-svg path {
  fill: var(--primary-color);
}
.kng-mobile-search-wrap .kng-search-field {
  border-width: 0 0 1px 0;
  border-radius: 0;
  padding: 0 50px 0 0;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.04em;
}
.kng-mobile-search-wrap .kng-search-field:hover {
  border-color: var(--primary-color);
}
.kng-mobile-search-wrap .kng-search-submit {
  width: 48px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -15px;
  background: transparent;
  border: 0;
  color: var(--primary-color);
}
.kng-mobile-search-wrap.search-ajax .search-button-group {
  position: relative;
}
.kng-mobile-search-wrap.search-ajax .search-button-group .search-clear, .kng-mobile-search-wrap.search-ajax .search-button-group .search-icon {
  position: absolute;
  left: 0;
  bottom: 16px;
  z-index: 1;
  width: 16px;
  height: 16px;
}
.kng-mobile-search-wrap.search-ajax .search-button-group .search-clear {
  opacity: 0;
  cursor: pointer;
}
.kng-mobile-search-wrap.search-ajax .search-button-group .search-clear:before, .kng-mobile-search-wrap.search-ajax .search-button-group .search-clear:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background-color: #333;
  transform-origin: 50% 50%;
  opacity: 1;
  transition: transform ease 0.25s;
  -webkit-transition: transform ease 0.25s;
  -khtml-transition: transform ease 0.25s;
  -moz-transition: transform ease 0.25s;
  -ms-transition: transform ease 0.25s;
  -o-transition: transform ease 0.25s;
}
.kng-mobile-search-wrap.search-ajax .search-button-group .search-clear:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.kng-mobile-search-wrap.search-ajax .search-button-group .search-clear:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.kng-mobile-search-wrap.search-ajax .search-button-group .search-clear:hover:before, .kng-mobile-search-wrap.search-ajax .search-button-group .search-clear:hover:after {
  background-color: var(--primary-color);
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.kng-mobile-search-wrap.search-ajax .search-button-group .search-icon .kng-svg {
  vertical-align: top;
}
.kng-mobile-search-wrap.search-ajax .search-button-group .search-icon .kng-svg path {
  fill: #828282;
}
.kng-mobile-search-wrap.search-ajax .search-button-group.filling .search-icon {
  opacity: 0;
}
.kng-mobile-search-wrap.search-ajax .search-button-group.filling .search-clear {
  opacity: 1;
  z-index: 2;
}
.kng-mobile-search-wrap.search-ajax .kng-search-field {
  padding-right: 0;
  padding-left: 30px;
}
.kng-mobile-search-wrap.search-ajax .kng-search-submit {
  display: none;
}
.m-divider {
  padding: 0;
  margin: 10px 0;
}
.kng-bottom-extras {
  border-top: 1px solid #d7d7d7;
  padding-top: 10px;
  margin-top: 80px;
}
.kng-bottom-extras .m-divider {
  border-top: 1px solid #d7d7d7;
}
.kng-bottom-extras .kng-factor {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
.kng-bottom-extras span.factor-title {
  font-weight: 400;
  font-size: 14px;
}
.kng-bottom-extras .kng-factor .avatar {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.kng-bottom-extras .item-count .header-count {
  font-size: 10px;
  letter-spacing: 0.08em;
  width: 14px;
  height: 14px;
  line-height: 14px;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  display: inline-block;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -khtml-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}
.kng-bottom-extras .wpml-ls-legacy-dropdown {
  font-size: 13px;
}
.kng-bottom-extras .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  left: auto;
  width: 180px;
}
.kng-bottom-extras .mh-socials {
  padding: 5px 0;
}
@media (min-width: 992px) {
  .header-height {
    height: 87px;
  }
}
.kng-header-wraps {
  z-index: 5;
  position: relative;
}
#kng-header {
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
  -webkit-box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
  -khtml-box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
  -moz-box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
  -ms-box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
  -o-box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
}
#kng-header:not(.header-ontop):not(.header-sticky) {
  background: #fff;
}
#kng-header-elementor:not(.header-ontop) {
  box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
  -webkit-box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
  -khtml-box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
  -moz-box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
  -ms-box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
  -o-box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.02);
}
#kng-header-elementor .kng-header-mobile {
  display: none;
}
#kng-header-elementor .kng-header-elementor-main {
  position: relative;
  z-index: 999;
}
@media (max-width: 991px) {
  #kng-header-elementor .kng-header-elementor-main, #kng-header-elementor .kng-header-elementor-sticky {
    display: none;
  }
  #kng-header-elementor .kng-header-mobile {
    display: block;
  }
  #kng-header-default {
    position: relative;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
    -khtml-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
    background-color: #fff;
  }
  #kng-header-default .kng-header-main {
    position: relative;
  }
  #kng-header-default .kng-header-branding {
    margin: 15px;
    min-height: 50px;
    align-items: center;
    display: flex;
  }
  #kng-header-default .kng-header-branding img {
    max-height: 35px;
  }
}
.admin-bar .kng-side-panel {
  top: 32px;
  height: calc(100% - 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .kng-side-panel {
    top: 46px;
    height: calc(100% - 46px);
  }
}
.kng-side-panel {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  padding: 0;
  background: #fff;
  right: 0;
  will-change: transform;
  transition: opacity 0.25s ease, transform 0.25s ease;
  -webkit-transition: opacity 0.25s ease, transform 0.25s ease;
  -khtml-transition: opacity 0.25s ease, transform 0.25s ease;
  -moz-transition: opacity 0.25s ease, transform 0.25s ease;
  -ms-transition: opacity 0.25s ease, transform 0.25s ease;
  -o-transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 0;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
}
.kng-side-panel.open {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -khtml-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  opacity: 1;
  z-index: 9999;
}
.kng-side-panel .kng-panel-header {
  padding: 30px 50px;
}
@media (max-width: 575px) {
  .kng-side-panel .kng-panel-header {
    padding: 20px 30px;
  }
}
.kng-side-panel .kng-panel-header .panel-header-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.kng-side-panel .kng-side-panel-content {
  position: relative;
  padding: 10px 50px 50px;
  flex: 1;
}
@media (max-width: 575px) {
  .kng-side-panel .kng-side-panel-content {
    padding: 5px 30px 30px;
  }
}
.kng-side-panel::-webkit-scrollbar {
  height: 0;
  width: 7px;
  background-color: transparent;
}
.kng-side-panel::-webkit-scrollbar-track {
  border-radius: 0;
}
.kng-side-panel::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: transparent;
}
.kng-side-panel:hover::-webkit-scrollbar {
  width: 7px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
}
.kng-side-panel:hover::-webkit-scrollbar-thumb {
  background-color: rgba(48, 48, 48, 0.1);
}
.kng-close {
  border-radius: 50%;
  background: #e4e6eb;
  border: 9px solid transparent;
  color: var(--heading-color);
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .kng-close {
    width: 30px;
    height: 30px;
    border-width: 8px;
  }
}
.kng-close:before, .kng-close:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background-color: var(--heading-color);
  transform-origin: 50% 50%;
  opacity: 1;
  transition: transform ease 0.25s;
  -webkit-transition: transform ease 0.25s;
  -khtml-transition: transform ease 0.25s;
  -moz-transition: transform ease 0.25s;
  -ms-transition: transform ease 0.25s;
  -o-transition: transform ease 0.25s;
}
.kng-close:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.kng-close:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.kng-close:hover:before, .kng-close:hover:after {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.kng-side-panel-content {
  /* mini cart */
}
.kng-side-panel-content .menu-main-container-wrap {
  padding: 0;
  min-height: calc(100% - 50px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.kng-side-cart {
  width: 100%;
  max-width: 360px;
  left: auto;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
}
.kng-side-cart .kng-close {
  background-color: transparent;
  margin-right: -9px;
}
.kng-side-cart .kng-close:before, .kng-side-cart .kng-close:after {
  background-color: #828282;
}
.kng-side-cart .kng-close:hover:before, .kng-side-cart .kng-close:hover:after {
  background-color: var(--primary-color);
}
.kng-side-cart .kng-panel-header {
  padding: 24px 24px 0 24px;
}
@media (max-width: 400px) {
  .kng-side-cart .kng-panel-header {
    padding: 24px 15px 0 15px;
  }
}
.kng-side-cart .kng-panel-header .panel-header-inner {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(215, 215, 215, 0.3);
}
.kng-side-cart .kng-side-panel-content {
  padding: 0 24px 24px 24px;
}
@media (max-width: 400px) {
  .kng-side-cart .kng-side-panel-content {
    padding: 0 15px 24px 15px;
  }
}
.kng-side-cart .widget_shopping_cart_content ul {
  list-style: none outside;
  padding: 0;
  margin: 0;
}
.kng-side-cart .widget_shopping_cart_content ul li {
  padding: 24px 30px 24px 0;
  position: relative;
  display: block;
  clear: both;
  overflow: hidden;
  border-bottom: 1px solid rgba(215, 215, 215, 0.3);
}
.kng-side-cart .widget_shopping_cart_content ul li a {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}
.kng-side-cart .widget_shopping_cart_content ul li .remove {
  position: absolute;
  top: 13px;
  right: -5px;
  line-height: 1;
  padding: 5px;
  color: #828282;
}
.kng-side-cart .widget_shopping_cart_content ul li .remove:hover {
  color: var(--primary-color);
}
.kng-side-cart .widget_shopping_cart_content ul li .quantity {
  font-size: 15px;
  font-weight: 400;
  margin-top: 8px;
}
.kng-side-cart .widget_shopping_cart_content ul li .amount {
  color: var(--primary-color);
  font-weight: 500;
}
.kng-side-cart .widget_shopping_cart_content ul li .star-rating + .woocommerce-Price-amount, .kng-side-cart .widget_shopping_cart_content ul li .star-rating + .reviewer {
  display: block;
  width: 100%;
  padding-left: 92px;
}
.kng-side-cart .widget_shopping_cart_content ul li img {
  float: left;
  margin-right: 20px;
  width: 72px;
  height: auto;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.kng-side-cart .widget_shopping_cart_content ul li dl {
  margin: 0;
  padding-left: 1em;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}
.kng-side-cart .widget_shopping_cart_content ul li dl::after, .kng-side-cart .widget_shopping_cart_content ul li dl::before {
  display: block;
  clear: both;
  content: "";
}
.kng-side-cart .widget_shopping_cart_content ul li dl dt, .kng-side-cart .widget_shopping_cart_content ul li dl dd {
  display: inline-block;
  float: left;
  margin-bottom: 1em;
}
.kng-side-cart .widget_shopping_cart_content ul li dl dt {
  font-weight: 700;
  padding: 0 0 0.25em;
  margin: 0 4px 0 0;
  clear: left;
}
.kng-side-cart .widget_shopping_cart_content ul li dl dd {
  padding: 0 0 0.25em;
}
.kng-side-cart .widget_shopping_cart_content ul li dl dd p:last-child {
  margin-bottom: 0;
}
.kng-side-cart .widget_shopping_cart_content .woocommerce-mini-cart__total {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(215, 215, 215, 0.3);
  border-bottom: 1px solid rgba(215, 215, 215, 0.3);
  color: var(--heading-color);
  margin-bottom: 20px;
}
.kng-side-cart .widget_shopping_cart_content .woocommerce-mini-cart__total strong {
  font-weight: 400;
}
.kng-side-cart .widget_shopping_cart_content .woocommerce-mini-cart__total .amount {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: var(--primary-color);
}
.kng-side-cart .widget_shopping_cart_content .buttons .button {
  display: block;
}
.kng-side-cart .widget_shopping_cart_content .buttons .button + .button {
  margin-top: 8px;
}
.kng-side-cart .blockOverlay {
  background-color: rgba(192, 192, 192, .6) !important;
}
.kng-side-cat {
  width: 100%;
  max-width: 360px;
  right: auto;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -khtml-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
}
.kng-side-cat .kng-close {
  background-color: transparent;
  margin-right: -9px;
}
.kng-side-cat .kng-close:before, .kng-side-cat .kng-close:after {
  background-color: #828282;
}
.kng-side-cat .kng-close:hover:before, .kng-side-cat .kng-close:hover:after {
  background-color: var(--primary-color);
}
.kng-side-cat .kng-panel-header {
  padding: 24px 24px 0 24px;
}
@media (max-width: 400px) {
  .kng-side-cat .kng-panel-header {
    padding: 24px 15px 0 15px;
  }
}
.kng-side-cat .kng-panel-header .panel-header-inner {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(215, 215, 215, 0.3);
}
.kng-side-cat .kng-side-panel-content {
  padding: 0 24px 24px 24px;
}
@media (max-width: 400px) {
  .kng-side-cat .kng-side-panel-content {
    padding: 0 15px 24px 15px;
  }
}
.kng-side-cat .kng-cat-menu-wrap {
  padding: 24px 0 24px 0;
  list-style: none;
}
.kng-side-cat .kng-cat-menu-wrap li {
  position: relative;
  padding-top: 4px;
  padding-bottom: 4px;
}
.kng-side-cat .kng-cat-menu-wrap li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0 2px 14px;
}
.kng-side-cat .kng-cat-menu-wrap li a:before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  display: block;
  background-color: #4f4f4f;
}
.kng-side-cat .kng-cat-menu-wrap ul.children {
  padding-left: 18px;
  margin-bottom: 0;
  list-style: none;
  display: none;
}
.kng-pagetitle .container {
  z-index: 1;
}
.kng-pagetitle .heading {
  color: inherit;
  margin: 0;
}
.kng-pagetitle .kng-scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  -khtml-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
}
.kng-pagetitle .kng-page-title-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.kng-pagetitle .kng-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}
.kng-pagetitle .kng-breadcrumb .br-item {
  flex: 0 0 auto;
  max-width: 100%;
}
.kng-pagetitle .kng-breadcrumb .br-item:last-child .br-divider {
  display: none !important;
}
.kng-pagetitle .kng-breadcrumb .br-divider {
  padding: 5px 8px;
  font-size: 70%;
}
.kng-pagetitle .kng-breadcrumb .br-item + .br-item::before {
  display: none;
}
.kng-pagetitle-default {
  background-color: var(--ptitle-background-color);
  background-image: var(--ptitle-background-image);
  background-size: var(--ptitle-background-size);
  background-position: var(--ptitle-background-position);
  background-repeat: var(--ptitle-background-repeat);
  background-attachment: var(--ptitle-background-attachment);
  color: var(--ptitle-color);
  padding-top: var(--ptitle-padding-top);
  padding-bottom: var(--ptitle-padding-bottom);
  /* .kng-no-demo .kng-pagetitle-default{
	background-color: $ptitle_overlay_rgba;
	.kng-page-title-overlay{
		background-color: transparent;
		background-image: linear-gradient(to bottom, $heading_color , $second_color);
		opacity: 0.5;
	}
}  */
}
.kng-pagetitle-default .kng-page-title-overlay {
  background-color: var(--ptitle-overlay-rgba);
}
.kng-pagetitle-default .kng-pagetitle-breadcrumb {
  color: var(--ptitle-breadcrumb-regular);
}
.kng-pagetitle-default .kng-pagetitle-breadcrumb a {
  color: var(--ptitle-breadcrumb-active);
}
.kng-pagetitle-default .kng-pagetitle-breadcrumb a:hover {
  color: var(--ptitle-breadcrumb-hover);
}
.kng-pagetitle-default .kng-pagetitle-breadcrumb .br-divider {
  color: var(--ptitle-breadcrumb-regular);
}
.kng-pagetitle-product {
  background-color: var(--product-ptitle-background-color);
  background-image: var(--product-ptitle-background-image);
  background-size: var(--product-ptitle-background-size);
  background-position: var(--product-ptitle-background-position);
  background-repeat: var(--product-ptitle-background-repeat);
  background-attachment: var(--product-ptitle-background-attachment);
  color: var(--product-ptitle-color);
  padding-top: var(--product-ptitle-padding-top);
  padding-bottom: var(--product-ptitle-padding-bottom);
}
.kng-pagetitle-product .kng-page-title-overlay {
  background-color: var(--product-ptitle-overlay-rgba);
}
.kng-pagetitle-product .kng-pagetitle-breadcrumb {
  color: var(--product-ptitle-breadcrumb-regular);
}
.kng-pagetitle-product .kng-pagetitle-breadcrumb a {
  color: var(--product-ptitle-breadcrumb-active);
}
.kng-pagetitle-product .kng-pagetitle-breadcrumb a:hover {
  color: var(--product-ptitle-breadcrumb-hover);
}
.kng-post-title-layout {
  padding-top: 120px;
  padding-bottom: 97px;
}
.kng-post-title-layout a {
  color: inherit;
}
.kng-post-title-layout .kng-post-cat {
  display: block;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.kng-post-title-layout .kng-post-title {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.kng-post-title-layout .date-author {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
}
.kng-pagetitle-shop {
  background-color: var(--shop-ptitle-background-color);
  background-image: var(--shop-ptitle-background-image);
  background-size: var(--shop-ptitle-background-size);
  background-position: var(--shop-ptitle-background-position);
  background-repeat: var(--shop-ptitle-background-repeat);
  background-attachment: var(--shop-ptitle-background-attachment);
  color: var(--shop-ptitle-color);
  padding-top: var(--shop-ptitle-padding-top);
  padding-bottom: var(--shop-ptitle-padding-bottom);
}
.kng-pagetitle-shop .kng-page-title-overlay {
  background-color: var(--shop-ptitle-overlay-rgba);
}
.kng-pagetitle-shop .kng-pagetitle-breadcrumb {
  color: var(--shop-ptitle-breadcrumb-regular);
}
.kng-pagetitle-shop .kng-pagetitle-breadcrumb a {
  color: var(--shop-ptitle-breadcrumb-active);
}
.kng-pagetitle-shop .kng-pagetitle-breadcrumb a:hover {
  color: var(--shop-ptitle-breadcrumb-hover);
}
.kng-page-title-layout2 .kng-breadcrumb + .kng-page-title {
  margin-top: 40px;
}
.single-post .kng-post-title .kngi-thumbtack {
  font-size: 40px;
  margin-right: 12px;
}
.kng-main {
  padding-top: 96px;
  padding-bottom: 96px;
}
.kng-content-area {
  margin-bottom: 64px;
}
.kng-sidebar-area {
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .kng-sidebar-area {
    margin-bottom: 24px;
    margin-top: 34px;
  }
}
.kng-post-archive + .kng-post-archive {
  margin-top: 88px;
}
.kng-post-archive .kng-post-title {
  font-size: 40px;
}
.kng-post-archive .kng-post-title .kngi-thumbtack {
  font-size: 22px;
  margin-right: 11px;
}
.kng-post-archive.tag-sticky-2:not(.sticky) .kngi-thumbtack {
  display: none;
}
.kng-post-excerpt {
  color: #828282;
}
.kng-post-meta {
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .kng-content-area.no-sidebar {
    padding-left: 63px;
    padding-right: 63px;
  }
}
.kng-content-area.no-sidebar .kng-single-post .kng-post-meta-inner {
  justify-content: center;
}
.kng-content-area.no-sidebar .kng-single-post .kng-post-title {
  text-align: center;
}
.single-post .kng-main {
  padding-bottom: 46px;
}
.sticky {
  display: block;
}
.updated:not(.published) {
  display: none;
}
.kng-post-title {
  margin-top: 0;
  margin-bottom: 30px;
  color: #201c1c;
}
.kng-post-title > a > span {
  font-size: 22px;
}
.kng-featured .kng-post-image.background img {
  visibility: hidden;
  opacity: 0;
}
.redux-page .kng-featured img {
  width: 100%;
}
.kng-single-post .kng-post-title {
  margin-bottom: 70px;
}
.kng-single-post .kng-post-title > span {
  font-size: 24px;
}
.single-post .kng-featured {
  margin-bottom: 70px;
}
.kng-post-image a {
  overflow: hidden;
  display: block;
  padding: 0;
  will-change: opacity;
  position: relative;
}
.redux-page .kng-post-image a img {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -khtml-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  backface-visibility: hidden;
  transform-origin: center center;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  transition: all 0.45s linear;
  -webkit-transition: all 0.45s linear;
  -khtml-transition: all 0.45s linear;
  -moz-transition: all 0.45s linear;
  -ms-transition: all 0.45s linear;
  -o-transition: all 0.45s linear;
}
.redux-page .kng-post-image a:hover img {
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  -khtml-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
}
.post-password-form label {
  margin-bottom: 15px;
}
.post-password-form input[type="submit"] {
  min-width: 150px;
}
.single-post .kng-post-content {
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d7d7d7;
}
.kng-image-gallery .grid-item-inner {
  overflow: hidden;
  border-radius: 4px;
}
.post-date {
  font-weight: 300;
}
.entry-social-share {
  margin-top: 80px;
}
.entry-social-share ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.entry-social-share ul li {
  padding: 0 15px;
}
.single-post .kng-post-meta {
  margin-bottom: 32px;
}
.kng-post-meta-inner.row {
  margin-left: -8px;
  margin-right: -8px;
}
.kng-post-meta-inner.row > * {
  padding-left: 8px;
  padding-right: 8px;
}
.kng-post-meta-inner > span {
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.3em;
  color: var(--third-color);
}
.kng-post-meta-inner > span a {
  color: inherit;
}
.kng-post-meta-inner > span a:hover {
  color: var(--heading-color);
}
.kng-post-meta-inner .kng-meta-separator {
  width: 4px;
  height: 4px;
  background-color: var(--third-color);
  border-radius: 50%;
  display: block;
}
.single-post .kng-post-tags-share .kng-social {
  font-size: 16px;
}
.single-post .kng-post-tags-share .kng-social a {
  color: var(--body-color);
}
.single-post .kng-post-tags-share .kng-social a:hover {
  color: var(--primary-color);
}
.single-post .kng-post-tags-share .tagcloud {
  margin: 0;
}
.single-post .kng-post-tags-share .tagcloud > span {
  color: var(--heading-color);
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 32px;
}
.single-post .kng-post-tags-share .tagcloud > a {
  padding: 0;
}
.single-post .kng-post-tags-share .tagcloud > a:after {
  display: none;
}
.kng-single-next-prev-navigation {
  margin-top: 56px;
}
.entry-author-info {
  background-color: #f2f2f2;
  padding: 40px 40px 26px 40px;
  margin-top: 55px;
}
.entry-author-info .kng-socials {
  margin-top: 16px;
}
.kng-post-author-title {
  font-size: 24px;
  line-height: 36px;
  color: var(--heading-color);
  font-family: 'Gilda Display', sans-serif;
  margin-bottom: 4px;
}
.kng-post-author-description {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  /* .kng-social-item >a{
    font-size: 16px;
    color: $body_color;
    &:hover{
        color: $primary_color;
    }
} */
}
.kng-single-related-recent-post {
  border-top: 1px solid #d7d7d7;
  padding-top: 64px;
  margin-top: 96px;
  padding-bottom: 14px;
}
@media screen and (max-width: 1199px) {
  .kng-single-related-recent-post {
    margin-top: 30px;
  }
}
.kng-related-post + .kng-recent-post {
  margin-top: 64px;
}
.kng-related-post, .kng-recent-post {
  font-size: 14px;
  line-height: 17px;
  /* Event */
}
.kng-related-post .grid-item, .kng-recent-post .grid-item {
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.kng-related-post .kng-heading, .kng-recent-post .kng-heading {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}
.kng-related-post .kng-featured, .kng-recent-post .kng-featured {
  margin-bottom: 20px;
}
.kng-related-post .item-title, .kng-recent-post .item-title {
  margin: 0;
}
.kng-related-post .item-meta, .kng-recent-post .item-meta {
  margin-top: 18px;
}
.kng-related-post .kng-svg, .kng-recent-post .kng-svg {
  margin-right: 6px;
}
.kng-related-post .lbl, .kng-recent-post .lbl {
  color: #828282;
  margin-right: 5px;
}
.kng-single-event {
  /* author  */
}
.kng-single-event .kng-feature {
  margin-bottom: 72px;
}
.kng-single-event .kng-feature img {
  width: 100%;
}
.kng-single-event .kng-post-meta {
  margin-bottom: 16px;
}
.kng-single-event .kng-post-title {
  margin-bottom: 48px;
}
.kng-single-event .event-meta-detail {
  background-color: var(--second2-color);
  overflow: hidden;
  border-radius: 8px;
  padding: 32px;
}
@media screen and (max-width: 991px) {
  .kng-single-event .event-meta-detail {
    margin-top: 80px;
  }
}
@media screen and (max-width: 575px) {
  .kng-single-event .event-meta-detail {
    padding: 30px 15px;
  }
}
.kng-single-event .event-meta-detail .widget-title {
  margin-top: 0;
  margin-bottom: 22px;
}
.kng-single-event .event-meta-detail .event-meta-item {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(32, 28, 28, 0.08);
}
.kng-single-event .event-meta-detail .event-meta-item .event-meta-item-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: var(--heading-color);
}
.kng-single-event .event-meta-detail .event-meta-item .event-meta-item-title i {
  margin-right: 2px;
}
.kng-single-event .event-meta-detail .event-meta-item .meta-info {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: #828282;
}
.kng-single-event .event-meta-detail .event-meta-social {
  margin-left: -9px;
  margin-right: -9px;
}
.kng-single-event .event-meta-detail .event-meta-social > a {
  padding: 4px 9px;
  font-size: 14px;
  line-height: 16px;
  color: var(--body-color);
}
.kng-single-event .event-meta-detail .event-meta-social > a:hover {
  color: var(--link-color-hover);
}
.kng-single-event .event-meta-detail .btn-ticket-wrap {
  margin-top: 20px;
}
.kng-single-event .event-meta-detail .btn-ticket-wrap a.btn {
  width: 100%;
}
.kng-author-single .kng-post-meta {
  margin-bottom: 32px;
}
.kng-author-single .kng-post-title {
  margin-bottom: 16px;
}
.kng-author-single .kng-post-content blockquote {
  padding: 0;
  border-left: 0;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Gilda Display', sans-serif;
  color: var(--heading-color);
  margin-bottom: 32px;
}
@media screen and (min-width: 1600px) {
  .kng-author-single .kng-post-content blockquote {
    padding-right: 320px;
  }
}
.kng-author-single .kng-post-content .kng-heading {
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: var(--heading-color);
  margin-bottom: 16px;
}
.kng-author-single .event-meta-detail .kng-feature {
  margin-bottom: 24px;
}
.kng-author-single .event-meta-detail .kng-feature img {
  border-radius: 8px;
}
.kng-author-single .event-meta-detail .kng-post-title {
  margin-bottom: 0;
}
.kng-author-single .event-meta-detail .rol-extra {
  margin-bottom: 12px;
}
.kng-author-single .event-meta-detail .kng-meta-separator {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #828282;
  display: block;
}
.kng-author-single .event-meta-detail .author-excerpt {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
}
.kng-author-single .event-meta-detail .event-meta-social {
  margin-top: 32px;
}
.navigation, .woocommerce-pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.navigation:empty, .woocommerce-pagination:empty {
  display: none;
}
.navigation .page-numbers, .woocommerce-pagination .page-numbers, .navigation .post-page-numbers, .woocommerce-pagination .post-page-numbers {
  flex: 0 0 auto;
  margin: 8px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  border: 1px solid #d7d7d7;
  font-size: 15px;
  line-height: 32px;
  background: #fff;
  color: var(--link-color);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.navigation .page-numbers.dots, .woocommerce-pagination .page-numbers.dots, .navigation .post-page-numbers.dots, .woocommerce-pagination .post-page-numbers.dots {
  line-height: 30px;
}
.navigation .page-numbers:hover, .woocommerce-pagination .page-numbers:hover, .navigation .post-page-numbers:hover, .woocommerce-pagination .post-page-numbers:hover, .navigation .page-numbers.current, .woocommerce-pagination .page-numbers.current, .navigation .post-page-numbers.current, .woocommerce-pagination .post-page-numbers.current {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;
}
.navigation .page-numbers, .woocommerce-pagination .page-numbers, .navigation .post-page-numbers, .woocommerce-pagination .post-page-numbers {
  min-width: 40px;
  height: 40px;
  line-height: 38px;
}
.navigation.kng-page-links, .woocommerce-pagination.kng-page-links {
  justify-content: start;
}
.comment-list-wrap .navigation {
  justify-content: flex-end;
}
.navigation.kng-page-links {
  margin-top: 26px;
  margin-bottom: 20px;
}
.posts-pagination {
  padding-top: 80px;
}
.kng-single-next-prev-navigation .kng-single-nav-inner {
  display: inline-block;
  position: relative;
}
.kng-single-next-prev-navigation .kng-single-nav-inner > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.kng-single-next-prev-navigation .kng-single-nav-inner:hover .kng-nav-label {
  color: var(--primary-color);
}
.kng-single-next-prev-navigation .kng-single-nav-inner:hover .kng-nav-icon {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.kng-single-next-prev-navigation .kng-nav-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(130, 130, 130, 0.2);
  box-sizing: border-box;
  border-radius: 99px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 42px;
  font-size: 16px;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
@media (max-width: 767px) {
  .kng-single-next-prev-navigation .kng-nav-icon {
    width: 32px;
    height: 32px;
    line-height: 30px;
  }
}
.kng-single-next-prev-navigation .kng-nav-label {
  font-family: 'Gilda Display', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  line-height: 44px;
  color: var(--heading-color);
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
@media (max-width: 767px) {
  .kng-single-next-prev-navigation .kng-nav-label {
    font-size: 24px;
    line-height: 1.5;
  }
}
@media (max-width: 575px) {
  .kng-single-next-prev-navigation .kng-nav-label {
    font-size: 20px;
  }
}
.kng-single-next-prev-navigation .kng-nav-title {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 32px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .kng-single-next-prev-navigation .kng-nav-title {
    display: none;
  }
}
.kng-single-next-prev-navigation .post-image {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.kng-single-next-prev-navigation .post-image:before, .kng-single-next-prev-navigation .post-image:after {
  position: absolute;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-single-next-prev-navigation .post-image:before {
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  transform: scale(0);
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  filter: alpha(opacity=90);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  opacity: 0.9;
  -webkit-opacity: 0.9;
  -khtml-opacity: 0.9;
  -moz-opacity: 0.9;
  -ms-opacity: 0.9;
  -o-opacity: 0.9;
}
.kng-single-next-prev-navigation .post-image:after {
  top: 50%;
  left: 50%;
  color: #fff;
  transform: scale(0) translate(-50%, -50%);
  -webkit-transform: scale(0) translate(-50%, -50%);
  -khtml-transform: scale(0) translate(-50%, -50%);
  -moz-transform: scale(0) translate(-50%, -50%);
  -ms-transform: scale(0) translate(-50%, -50%);
  -o-transform: scale(0) translate(-50%, -50%);
}
.kng-single-next-prev-navigation .kng-single-next .post-image:after {
  font-family: "kngi";
  content: "\e90c";
}
.kng-single-next-prev-navigation .kng-single-prev .post-image:after {
  font-family: "kngi";
  content: "\e90d";
}
.kng-single-next-prev-navigation .kng-single-next-prev:hover .post-image:before {
  transform: scale(1);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.kng-single-next-prev-navigation .kng-single-next-prev:hover .post-image:after {
  transform: scale(1) translate(-50%, -50%);
  -webkit-transform: scale(1) translate(-50%, -50%);
  -khtml-transform: scale(1) translate(-50%, -50%);
  -moz-transform: scale(1) translate(-50%, -50%);
  -ms-transform: scale(1) translate(-50%, -50%);
  -o-transform: scale(1) translate(-50%, -50%);
}
.posts-pagination {
  text-align: center;
  display: block;
  width: 100%;
}
.posts-pagination .posts-page-links {
  display: inline-block;
}
.posts-pagination .posts-page-links .page-numbers {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  margin: 5px 1px;
  border: 1px solid transparent;
  border-radius: 40px;
}
.posts-pagination .posts-page-links .page-numbers.current {
  color: #fff;
  background-color: var(--third-color);
}
.posts-pagination .posts-page-links .page-numbers:not(.current):hover {
  color: #000;
  border-color: var(--third-color);
  background-color: transparent;
}
.posts-pagination .posts-page-links .page-numbers i {
  font-size: 12px;
}
.error-404 {
  text-align: center;
}
.kng-404-page {
  padding-top: 34px;
  padding-bottom: 40px;
}
.kng-404-page .kng-404-img {
  margin-bottom: 49px;
}
.kng-404-page .kng-404-img img {
  max-width: 590px;
  margin-left: -27px;
}
@media screen and (max-width: 767px) {
  .kng-404-page .kng-404-img img {
    max-width: 60%;
  }
}
.kng-404-page .kng-404-heading {
  font-size: 56px;
  line-height: 1.28571;
  font-family: 'Gilda Display', sans-serif;
  color: var(--heading-color);
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .kng-404-page .kng-404-heading {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .kng-404-page .kng-404-heading {
    font-size: 32px;
  }
}
.kng-404-page .kng-404-subheading {
  font-size: 15px;
  line-height: 32px;
  color: var(--heading-color);
}
.kng-404-page .button-wrap {
  margin-top: 40px;
}
.kng-404-page .button-wrap .btn {
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  text-transform: inherit;
}
@media screen and (min-width: 576px) {
  .kng-404-page .button-wrap .btn {
    min-width: 216px;
  }
}
.single-authors .author-single-book-wrap {
  padding-top: 59px;
  margin-top: 96px;
  border-top: 1px solid #d7d7d7;
}
.single-authors .author-single-book-wrap .author-book-title {
  margin-bottom: 40px;
}
.kng-widget-title {
  margin-bottom: 25px;
}
.kng-sidebar-area-inner .kng-widget + .kng-widget {
  margin-top: 40px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 40px;
}
.kng-sidebar-area-inner .kng-widget:last-child {
  padding-bottom: 0;
}
.kng-sidebar-area-inner .kng-widget:last-child {
  border-bottom: 0;
}
.kng-widget {
  position: relative;
}
.kng-widget ul, .kng-widget ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kng-widget ul ul, .kng-widget ol ul, .kng-widget ul ol, .kng-widget ol ol {
  padding-left: 18px;
}
[dir="rlt"] .kng-widget ul ul, [dir="rlt"] .kng-widget ol ul, [dir="rlt"] .kng-widget ul ol, [dir="rlt"] .kng-widget ol ol {
  padding-left: 0;
  padding-right: 18px;
}
.kng-widget .count {
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  margin-right: -8px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  color: #828282;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-widget.widget_archive .kng-list-item > a, .kng-widget.widget_categories .kng-list-item > a, .kng-widget.widget_product_categories .kng-list-item > a {
  padding-left: 14px;
}
.kng-widget.widget_archive .kng-list-item > a:before, .kng-widget.widget_categories .kng-list-item > a:before, .kng-widget.widget_product_categories .kng-list-item > a:before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  display: block;
  background-color: #4f4f4f;
}
.kng-widget .kng-list-item > a, .kng-widget .wc-layered-nav-term > a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2px 0 2px 0;
}
.kng-widget .kng-list-item > a > .title, .kng-widget .wc-layered-nav-term > a > .title {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.kng-widget .kng-list-item > a > .count, .kng-widget .wc-layered-nav-term > a > .count {
  flex: 0 0 auto;
  max-width: 100%;
  justify-content: space-between;
}
.kng-widget .kng-list-item .kng-menu-toggle, .kng-widget .wc-layered-nav-term .kng-menu-toggle {
  width: 20px;
  height: 20px;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 14px;
  right: -8px;
  cursor: pointer;
  z-index: 2;
}
.kng-widget .kng-list-item .kng-menu-toggle:hover, .kng-widget .wc-layered-nav-term .kng-menu-toggle:hover {
  color: var(--link-color-hover);
}
.kng-widget .kng-list-item .kng-menu-toggle:before, .kng-widget .wc-layered-nav-term .kng-menu-toggle:before {
  font-family: "kngi";
  content: "\e91d";
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  vertical-align: middle;
}
[dir="rtl"] .kng-widget .kng-list-item .kng-menu-toggle, [dir="rtl"] .kng-widget .wc-layered-nav-term .kng-menu-toggle {
  right: auto;
  left: 0;
}
.kng-widget .kng-list-item .kng-menu-toggle.open:before, .kng-widget .wc-layered-nav-term .kng-menu-toggle.open:before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  display: inline-block;
}
.kng-widget ul.children .kng-list-item > a:before, .kng-widget ul.children .wc-layered-nav-term > a:before {
  display: none;
}
.kng-widget.widget_categories .kng-list-item .kng-menu-toggle, .kng-widget .wc-layered-nav-term .kng-menu-toggle {
  display: none;
}
.kng-widget-inner > ul > li, .kng-widget-inner > ol > li {
  padding-top: 4px;
  padding-bottom: 4px;
}
.kng-widget-inner > * {
  position: relative;
  z-index: 1;
}
.kng-widget-inner > .kng-wg-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.kng-search-form {
  position: relative;
}
.kng-search-form [type="search"] {
  padding-right: 48px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  box-shadow: none;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
}
[dir="rtl"] .kng-search-form [type="search"] {
  padding-right: 20px;
  padding-left: 48px;
}
.kng-search-form [type="submit"] {
  width: 48px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  border: 0;
  color: var(--primary-color);
}
[dir="rtl"] .kng-search-form [type="submit"] {
  right: auto;
  left: 0;
}
.kng-search-form [type="submit"]:hover {
  color: #828282;
}
.kng-search-form:hover .kng-svg path {
  fill: var(--primary-color);
}
table.wp-calendar-table {
  border-spacing: 0;
}
table.wp-calendar-table caption {
  padding: 0;
  margin-bottom: 15px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--heading-color);
  caption-side: top;
}
table.wp-calendar-table th, table.wp-calendar-table td {
  text-align: center;
  border-right: 0;
  padding: 5px;
  position: relative;
}
table.wp-calendar-table th a, table.wp-calendar-table td a {
  color: #fff;
  display: block;
}
table.wp-calendar-table th a:before, table.wp-calendar-table td a:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  z-index: -1;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
table.wp-calendar-table th:hover a:before, table.wp-calendar-table td:hover a:before {
  background-color: var(--primary-color);
}
.widget_calendar .wp-calendar-nav {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.widget_archive li, .widget_categories li, .widget_pages li, .widget_nav_menu li, .woocommerce-widget-layered-nav-list li, .widget_layered_nav_filters li {
  padding: 0 0 8px 0;
}
.widget_archive li:last-child, .widget_categories li:last-child, .widget_pages li:last-child, .widget_nav_menu li:last-child, .woocommerce-widget-layered-nav-list li:last-child, .widget_layered_nav_filters li:last-child {
  padding: 0;
}
.widget_archive .children, .widget_categories .children, .widget_pages .children, .widget_nav_menu .children, .woocommerce-widget-layered-nav-list .children, .widget_layered_nav_filters .children {
  margin-top: 10px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .widget_kng_recent_posts .kng-posts-list {
    margin-left: -8px;
    margin-right: -8px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
.widget_kng_recent_posts .kng-post-item {
  padding-bottom: 24px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .widget_kng_recent_posts .kng-post-item {
    padding-left: 8px;
    padding-right: 8px;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.widget_kng_recent_posts .kng-post-item:last-child {
  padding-bottom: 0;
}
.widget_kng_recent_posts .kng-post-image {
  margin-bottom: 12px;
}
.widget_kng_recent_posts .kng-post-image img {
  width: 100%;
}
.widget_kng_recent_posts .kng-wg-post-title {
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}
.widget_nav_menu.horizontal .menu {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.widget_nav_menu.horizontal .menu li {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: 8px;
}
.widget_nav_menu.horizontal .menu li a {
  padding: 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
}
.widget_nav_menu.horizontal .menu li a:hover {
  border-color: var(--second-color);
}
.widget_nav_menu.horizontal .menu li:after {
  content: '';
  width: 4px;
  height: 4px;
  display: inline-block;
  margin-left: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
[dir="rtl"] .widget_nav_menu.horizontal .menu li:after {
  margin-left: 0;
  margin-right: 8px;
}
.widget_nav_menu.horizontal .menu li:last-child:after {
  display: none;
}
.widget_nav_menu.horizontal .sub-menu {
  display: none;
}
.widget_nav_menu .menu-item {
  position: relative;
}
.widget_nav_menu .menu-item .kng-menu-toggle {
  width: 20px;
  height: 20px;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 14px;
  right: -8px;
  cursor: pointer;
  z-index: 2;
}
.widget_nav_menu .menu-item .kng-menu-toggle:hover {
  color: var(--link-color-hover);
}
.widget_nav_menu .menu-item .kng-menu-toggle:before {
  font-family: "kngi";
  content: "\e91d";
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  vertical-align: middle;
}
[dir="rtl"] .widget_nav_menu .menu-item .kng-menu-toggle {
  right: auto;
  left: 0;
}
.widget_nav_menu .menu-item .kng-menu-toggle.open:before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  display: inline-block;
}
.widget_nav_menu .menu-item .sub-menu {
  display: none;
  margin-top: 5px;
  padding-left: 0;
}
.widget_recent_comments li {
  padding: 5px 0;
}
.widget_recent_comments a:not([class]) {
  color: var(--primary-color);
}
.widget_recent_entries a {
  font-size: 18px;
  font-family: 'Gilda Display', sans-serif;
  padding: 2px 0;
  display: block;
}
.widget_recent_entries li:first-child a {
  padding-top: 0;
}
.widget_recent_entries li:last-child a {
  padding-bottom: 0;
}
.widget_rss ul {
  margin: -15px;
}
.widget_rss li {
  padding: 15px;
}
.widget_rss li .rsswidget {
  font-size: 125%;
}
.widget_rss li .rss-date {
  font-style: italic;
  margin-bottom: 10px;
  display: block;
}
.widget_rss li .rssSummary {
  margin-bottom: 10px;
}
.widget_rss li cite {
  font-weight: 700;
  color: var(--primary-color);
}
.widget_rss .rss-widget-icon {
  vertical-align: middle;
}
.tagcloud {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.tagcloud > a {
  flex: 0 0 auto;
  padding: 0 10px;
  font-size: 15px !important;
  line-height: 32px;
  text-transform: capitalize;
  color: #828282;
  position: relative;
}
.tagcloud > a:after {
  content: "/";
  position: absolute;
  top: 0;
  right: -3px;
}
.tagcloud > a:last-child:after {
  display: none;
}
.tagcloud > a:hover {
  color: var(--primary-color);
}
.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
embed, iframe, object {
  max-width: 100%;
}
.custom-logo-link {
  display: inline-block;
}
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  padding-top: 2px;
  text-align: right;
  font-size: 14px;
  line-height: 34px;
  color: #acacac;
  font-style: italic;
}
.wp-caption-text {
  text-align: right;
  font-size: 14px;
  line-height: 34px;
  color: #acacac;
}
.gallery {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 25px;
  margin-top: 28px;
}
.gallery-item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  margin: 0 0 1em !important;
  padding: 0 10px;
  width: 50%;
}
.gallery-item .gallery-icon {
  border-radius: 5px;
  overflow: hidden;
}
.gallery-item img {
  border-radius: 5px;
  transition: all 1s;
  -webkit-transition: all 1s;
  -khtml-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
}
.gallery-item:hover img {
  opacity: 0.9;
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
}
.gallery-caption {
  display: block;
  text-align: left;
  padding: 0 10px 0 0;
  margin-bottom: 0;
}
.wp-block-gallery.aligncenter, .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  display: flex;
}
.wp-block-gallery.alignfull {
  margin-bottom: 20px;
}
.wp-block-gallery.alignfull .blocks-gallery-caption {
  margin-bottom: 20px;
}
#primary:not(.content-has-sidebar) .wp-block-gallery.alignfull {
  width: 100vw;
}
#primary:not(.content-has-sidebar) .wp-block-gallery.alignfull .blocks-gallery-grid {
  position: relative;
  left: calc(-12.5% - 128px);
  width: calc(125% + 150px);
  max-width: calc(125% + 150px);
}
.gallery-columns-1 .gallery-item {
  width: 100%;
}
@media (min-width: 480px) {
  .gallery-columns-3 .gallery-item {
    width: 33.33333%;
  }
}
@media (min-width: 480px) {
  .gallery-columns-4 .gallery-item {
    width: 25%;
  }
}
.gallery-columns-5 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-5 .gallery-item {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .gallery-columns-5 .gallery-item {
    width: 20%;
  }
}
.gallery-columns-6 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-6 .gallery-item {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .gallery-columns-6 .gallery-item {
    width: 16.66%;
  }
}
.gallery-columns-7 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-7 .gallery-item {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .gallery-columns-7 .gallery-item {
    width: 14.28%;
  }
}
.gallery-columns-8 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-8 .gallery-item {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .gallery-columns-8 .gallery-item {
    width: 12.5%;
  }
}
.gallery-columns-9 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-9 .gallery-item {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .gallery-columns-9 .gallery-item {
    width: 11.11%;
  }
}
.gallery-caption {
  display: block;
}
.wp-block-gallery.aligncenter, .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  display: flex;
}
.comments-area .no-comments {
  margin-top: 20px;
}
.comment-list-wrap {
  margin-top: 88px;
}
.comment-respond {
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid #e0e0e0;
}
.comments-title {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 36px;
  margin: 0 0 24px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.comments-title > span {
  color: var(--primary-color);
}
.comment-reply-title {
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  margin: 0 0 4px 0;
}
.comment-reply-title > span {
  color: var(--primary-color);
}
.woocommerce-Reviews-title {
  display: none;
}
.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.commentlist .comment {
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid #e0e0e0;
}
.commentlist .review {
  margin-top: 40px;
}
.commentlist > .comment:first-child, .commentlist > .review:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.commentlist > .comment:not(:last-child) > .children, .commentlist > .review:not(:last-child) > .children {
  margin-bottom: 0;
}
.commentlist .comment-avatar img {
  border: 0;
  border-radius: 36px;
  -webkit-border-radius: 36px;
  -khtml-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
}
@media (max-width: 1024px) {
  .commentlist .comment-avatar img {
    max-width: 30px;
  }
}
.commentlist .comment-content {
  max-width: calc(100% - 72px - 30px);
}
@media (max-width: 1024px) {
  .commentlist .comment-content {
    max-width: calc(100% - 45px);
  }
}
.commentlist .comment-content .comment-title {
  position: relative;
}
.commentlist .comment-content .comment-title a {
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.12em;
}
@media (min-width: 576px) {
  .commentlist .comment-content .comment-title:after {
    content: "";
    width: 1px;
    height: 14px;
    background-color: #e0e0e0;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
}
.commentlist .comment-content .comment-date {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: #828282;
}
.commentlist .comment-content .comment-meta {
  font-size: 12px;
  color: #333;
}
.commentlist .comment-content .comment-text {
  padding-top: 4px;
}
.commentlist .comment-content .comment-text p {
  margin-bottom: 15px;
}
.commentlist .comment-content .comment-text p:last-child {
  margin-bottom: 0;
}
.commentlist .children {
  list-style: none;
  padding: 0 0 0 15px;
  margin: 0;
}
[dir="rtl"] .commentlist .children {
  padding: 0 15px 0 0;
}
@media (min-width: 1025px) {
  .commentlist .children {
    padding: 0 0 0 calc(72px);
  }
  [dir="rtl"] .commentlist .children {
    padding: 0 calc(72px) 0 0;
  }
}
.commentlist .comment-reply-link {
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.12em;
  position: absolute;
  right: 0;
}
.commentlist .comment-reply-link:hover {
  color: var(--primary-color);
}
.comments-pagination {
  margin-top: 24px;
}
#respond #commentform .comment-note {
  color: #828282;
  display: block;
  margin-bottom: 8px;
}
#respond #commentform .comment-form-comment textarea {
  height: 240px;
}
@media (max-width: 767px) {
  #respond #commentform .comment-form-comment textarea {
    height: 180px;
  }
}
#respond #commentform .comment-form-field {
  margin-top: 16px;
}
#respond #commentform .kng-comment-form-rating .comment-form-field {
  margin-top: 0;
}
#respond .comment-form-cookies-consent {
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
}
#respond .comment-form-cookies-consent .cms-custom-checkbox {
  flex: 0 0 auto;
  margin-top: 1px;
}
#respond .comment-form-cookies-consent label {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  margin: 0;
  color: #828282;
  line-height: normal;
}
#respond .form-submit {
  margin: 28px 0 0;
}
@media (min-width: 480px) {
  #respond .form-submit #submit {
    min-width: 218px;
  }
}
@media (max-width: 479px) {
  #respond .form-submit #submit {
    min-width: 100%;
  }
}
.logged-in-as {
  margin-bottom: 10px;
}
#cancel-comment-reply-link {
  padding-left: 30px;
  color: red;
}
[dir="rtl"] #cancel-comment-reply-link {
  padding-left: 0;
  padding-right: 30px;
}
.comment-body + .comment-respond {
  margin-top: 32px;
}
.comment-body + .comment-respond #reply-title {
  margin-bottom: 15px;
}
.comment-body + .comment-respond + ul.children {
  margin-top: 15px;
}
p.no-comments {
  margin-top: 30px;
  color: red;
}
.kng-footer.kng-footer-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.kng-scroll-top {
  height: 50px;
  width: 50px;
  background: var(--second-color);
  color: #fff;
  border: none;
  position: fixed;
  right: 10px;
  bottom: -55px;
  font-size: 18px;
  line-height: 50px;
  font-weight: bold;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  text-align: center;
  z-index: 999;
  visibility: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
}
.kng-scroll-top:hover, .kng-scroll-top:focus, .kng-scroll-top:active {
  color: #fff;
  background: rgba(var(--second-color-rgb), 0.8);
}
.kng-scroll-top:hover .kng-scroll-top-arrow span, .kng-scroll-top:focus .kng-scroll-top-arrow span, .kng-scroll-top:active .kng-scroll-top-arrow span {
  margin-top: 0;
}
.kng-scroll-top.on {
  bottom: 10px;
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
}
.kng-scroll-top .kng-scroll-top-arrow {
  display: block;
  width: 100%;
  position: relative;
  animation: vibrate 2s linear 0s infinite;
  -webkit-animation: vibrate 2s linear 0s infinite;
  -khtml-animation: vibrate 2s linear 0s infinite;
  -moz-animation: vibrate 2s linear 0s infinite;
  -ms-animation: vibrate 2s linear 0s infinite;
  -o-animation: vibrate 2s linear 0s infinite;
}
.kng-scroll-top .kng-scroll-top-arrow span {
  font-size: 28px;
  line-height: 30px;
  margin-top: 10px;
  transition: margin 0.4s linear 0s;
  -webkit-transition: margin 0.4s linear 0s;
  -khtml-transition: margin 0.4s linear 0s;
  -moz-transition: margin 0.4s linear 0s;
  -ms-transition: margin 0.4s linear 0s;
  -o-transition: margin 0.4s linear 0s;
}
[dir="rtl"] .kng-scroll-top {
  right: auto;
  left: 0;
}
@media (max-width: 1200px) {
  .kng-scroll-top {
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
  .kng-scroll-top .kng-scroll-top-arrow span {
    font-size: 18px;
    line-height: 1;
  }
}
#kng-footer.scroll-off:after {
  display: none;
}
.kng-footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(32, 28, 28, 0.1);
  margin-left: 72px;
  margin-right: 72px;
}
@media screen and (max-width: 991px) {
  .kng-footer-bottom {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .kng-footer-bottom {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .kng-footer-bottom {
    margin-left: 0;
    margin-right: 0;
  }
}
.kng-copyright-text {
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: rgba(32, 28, 28, 0.8);
}
.kng-footer .kng-nav-menu2 .kng-nav-inner li {
  padding: 6px 0;
}
@media (min-width: 992px) {
  .kng-menu-template-2 .kng-primary-menu > li > a {
    text-transform: inherit;
  }
}
.kng-logo a {
  line-height: 1;
}
.kng-icon-text {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.kng-icon-text i, .kng-icon-text svg {
  margin-right: 10px;
  font-size: 12px;
}
.kng-icon-text svg {
  width: 13px;
  height: auto;
}
.kng-block-quote-wrap .kng-block-quote {
  padding: 0 0 0 32px;
  border-left: 3px solid var(--primary-color);
  font-family: 'Gilda Display', sans-serif;
  color: var(--heading-color);
  font-size: 24px;
  line-height: 36px;
}
.kng-block-quote-wrap .clearfix {
  height: 11px;
}
.kng-block-quote-wrap cite {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 32px;
  color: var(--heading-color);
  position: relative;
  padding-left: 32px;
  display: inline-block;
}
.kng-block-quote-wrap cite:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  background-image: url('../images/svg/quote.svg');
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
}
.kng-post-pagination.kng-load-more {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 22px;
}
.kng-grid-filter-wrap {
  margin-bottom: 58px;
}
.kng-grid-filter-wrap span {
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: #828282;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-grid-filter-wrap span.active, .kng-grid-filter-wrap span:hover {
  color: var(--heading-color);
}
.kng-post-grid .kng-featured {
  margin-bottom: 28px;
}
.kng-post-grid .kng-post-meta {
  margin-bottom: 16px;
}
.kng-post-grid .kng-item-content-title {
  font-family: 'Gilda Display', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}
.kng-post-grid .posts-pagination {
  padding-top: 22px;
}
.kng-post-grid .kng-btn-wraps {
  margin-top: 20px;
}
.kng-post-grid .kng-readmore {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.08em;
}
.kng-post-grid .kng-readmore .kng-btn-icon {
  font-size: 15px;
  position: relative;
  top: 2px;
}
.kng-post-grid.layout-1 .posts-pagination {
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 576px) {
  .kng-post-grid.layout-2 .kng-featured {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 576px) {
  .kng-post-grid.layout-2 .kng-item-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
  }
  .kng-post-grid.layout-2 .kng-item-content > div {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.kng-post-grid.layout-2 .kng-post-meta {
  margin-bottom: 24px;
}
.kng-post-grid.layout-2 .kng-item-content-inner {
  padding-top: 14px;
}
@media screen and (min-width: 1200px) {
  .kng-post-grid.layout-2 .kng-item-content .kng-item-content-inner {
    padding-right: 80px;
  }
}
.kng-post-grid.layout-1-events .kng-featured {
  margin-bottom: 36px;
}
.kng-post-grid.layout-1-events .kng-post-meta {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.3em;
  margin-bottom: 21px;
}
.kng-post-grid.layout-1-events .kng-item-content-title {
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 8px;
}
.kng-post-grid.layout-1-events .kng-item-content-excerpt {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.kng-post-grid.layout-1-events .kng-event-post-meta {
  padding-top: 16px;
  border-top: 1px solid #f2f2f2;
}
.kng-post-grid.layout-1-events .kng-event-post-meta .event-meta-item-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: var(--heading-color);
}
.kng-post-grid.layout-1-events .kng-event-post-meta .event-meta-item-title i {
  margin-right: 2px;
}
.kng-post-grid.layout-1-author .kng-item-content {
  padding: 24px 24px 32px 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .kng-post-grid.layout-1-author .kng-item-content {
    padding: 0 0 30px 0;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .kng-post-grid.layout-1-author .kng-item-content {
    padding: 15px 15px 30px 15px;
  }
}
@media screen and (max-width: 991px) {
  .kng-post-grid.layout-1-author .kng-item-content {
    padding: 15px 15px 30px 15px;
  }
}
@media screen and (max-width: 575px) {
  .kng-post-grid.layout-1-author .kng-item-content {
    padding: 0 0 30px 0;
  }
}
.kng-post-grid.layout-1-author .kng-featured {
  margin-bottom: 24px;
}
.kng-post-grid.layout-1-author .kng-featured img {
  border-radius: 8px;
}
.kng-post-grid.layout-1-author .kng-item-content-title {
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 0;
}
.kng-post-grid.layout-1-author .rol-extra {
  margin-bottom: 12px;
}
.kng-post-grid.layout-1-author .kng-meta-separator {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #828282;
  display: block;
}
.kng-post-grid.layout-1-author .author-excerpt {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
}
.kng-post-grid.layout-1-author .event-meta-social {
  margin-top: 32px;
}
.kng-grid-overlay.loader {
  cursor: wait;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.kng-grid-overlay.loader:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  display: block;
  background: rgba(255, 255, 255, 0.3);
}
.kng-grid-overlay.loader:after {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "\f110";
  font-family: 'Font Awesome 5 Pro';
  font-size: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: -25px 0 0 -25px;
  color: rgba(32, 28, 28, 0.3);
  animation: spin 1s infinite linear;
  -webkit-animation: spin 1s infinite linear;
  -khtml-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  -ms-animation: spin 1s infinite linear;
  -o-animation: spin 1s infinite linear;
}
.kng-post-grid-color-mode-text-white .kng-post-meta-inner > span {
  color: #fff;
}
.kng-post-grid-color-mode-text-white .kng-post-meta-inner > span a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.kng-post-grid-color-mode-text-white a, .kng-post-grid-color-mode-text-white .kng-heading, .kng-post-grid-color-mode-text-white .kng-heading a {
  color: #fff;
}
.kng-post-grid-color-mode-text-white a:hover, .kng-post-grid-color-mode-text-white .kng-heading:hover, .kng-post-grid-color-mode-text-white .kng-heading a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.kng-post-grid-color-mode-text-white .kng-post-meta-inner .kng-meta-separator {
  background-color: #fff;
}
.kng-accordion .kng-ac-content {
  display: none;
}
.kng-accordion .kng-ac-title [class*="kng-ac-title-icon-"] {
  font-size: 16px;
}
.kng-accordion .kng-ac-title-icon {
  padding-top: 8px;
}
.kng-accordion .kng-heading {
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: var(--primary-color);
  letter-spacing: 0.3em;
}
.kng-accordion .kng-ac-title-text {
  font-family: 'Gilda Display', sans-serif;
  font-size: 32px;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .kng-accordion .kng-ac-title-text {
    font-size: 24px;
  }
}
.kng-accordion .kng-ac-content {
  font-size: 15px;
  line-height: 32px;
}
.kng-accordion .kng-accordion-item {
  padding: 32px 0;
  cursor: pointer;
  position: relative;
}
.kng-accordion .kng-accordion-item:after {
  content: "";
  width: calc(100% - 64px);
  height: 1px;
  background-color: #d7d7d7;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .kng-accordion .kng-accordion-item:after {
    width: 100%;
  }
}
.kng-accordion .kng-accordion-item:last-child {
  margin-bottom: 0;
}
.kng-accordion .kng-accordion-item:hover, .kng-accordion .kng-accordion-item.active {
  border-color: var(--primary-color);
}
.kng-accordion .kng-accordion-item:hover .kng-ac-title-text, .kng-accordion .kng-accordion-item.active .kng-ac-title-text, .kng-accordion .kng-accordion-item:hover .kng-ac-title-icon, .kng-accordion .kng-accordion-item.active .kng-ac-title-icon {
  color: var(--primary-color);
}
.kng-accordion .kng-accordion-item .kng-ac-title-icon-open {
  display: none;
}
.kng-accordion .kng-accordion-item.active .kng-ac-title-icon-close {
  display: none;
}
.kng-accordion .kng-accordion-item.active .kng-ac-title-icon-open {
  display: inline-block;
}
.kng-accordion .kng-ac-content {
  padding: 20px 0 0;
}
.kng-qc-wrap.layout-1 .kng-qc-item {
  margin-bottom: 24px;
}
.kng-qc-wrap.layout-1 .kng-qc-item:last-child {
  margin-bottom: 0;
}
.kng-qc-wrap.layout-1 .qc-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
  color: var(--heading-color);
  margin-bottom: 4px;
}
.kng-qc-wrap.layout-2 .qc-icon {
  padding-top: 7px;
  margin-right: 8px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto !important;
  max-width: 100%;
}
.kng-qc-wrap.layout-2 .qc-desc {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
@media (max-width: 767px) {
  .kng-qc-wrap.layout-2 .qc-desc br {
    display: none;
  }
}
.kng-qc-wrap.layout-2 .kng-qc-item + .kng-qc-item {
  margin-top: 9px;
}
.kng-qc-wrap.layout-2 .phone {
  font-weight: 500;
  color: var(--primary-color);
}
.kng-fancybox .kng-fancybox-inner.relative {
  z-index: 1;
}
.kng-fancybox-layout-1 .kng-fancy-img {
  margin-bottom: 24px;
  overflow: hidden;
  display: block;
  padding: 0;
  will-change: opacity;
  position: relative;
}
.kng-fancybox-layout-1 .kng-fancy-img img {
  width: 100%;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -khtml-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  backface-visibility: hidden;
  transform-origin: center center;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  transition: all 0.45s linear;
  -webkit-transition: all 0.45s linear;
  -khtml-transition: all 0.45s linear;
  -moz-transition: all 0.45s linear;
  -ms-transition: all 0.45s linear;
  -o-transition: all 0.45s linear;
}
.kng-fancybox-layout-1 .kng-fancy-title {
  margin-bottom: 4px;
}
.kng-fancybox-layout-1 .kng-fancy-description {
  color: #828282;
}
.kng-fancybox-layout-1:hover .kng-fancy-img img {
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  -khtml-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
}
.kng-fancybox-layout-2 .kng-fancy-icon-wrap {
  margin-bottom: 12px;
}
.kng-fancybox-layout-2 .kng-fancy-title {
  margin-bottom: 4px;
}
.kng-fancybox-layout-2 .kng-fancy-description {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
}
.kng-fancybox-layout-2:hover .kng-fancy-icon-wrap {
  animation: scaleDisappear 0.5s;
  -webkit-animation: scaleDisappear 0.5s;
  -khtml-animation: scaleDisappear 0.5s;
  -moz-animation: scaleDisappear 0.5s;
  -ms-animation: scaleDisappear 0.5s;
  -o-animation: scaleDisappear 0.5s;
}
.kng-fancybox-layout-3 .kng-fancybox {
  padding: 15px 15px 20px 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .kng-fancybox-layout-3 .kng-fancybox {
    min-width: 250px;
  }
}
.kng-fancybox-layout-3 .kng-fancybox:before, .kng-fancybox-layout-3 .kng-fancybox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.kng-fancybox-layout-3 .small-title-wrap {
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.12em;
}
.kng-fancybox-layout-3 .kng-fancy-title {
  margin-bottom: 16px;
}
.kng-fancybox-layout-3 .kng-fancy-description {
  margin-bottom: 20px;
}
.kng-fancybox-layout-3 .kng-btn-wraps {
  margin-top: 36px;
}
.kng-fancybox-layout-4 .kng-fancybox {
  padding: 31px 50px;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
@media (max-width: 1599px) {
  .kng-fancybox-layout-4 .kng-fancybox {
    padding: 31px 40px;
  }
}
@media (max-width: 1439px) {
  .kng-fancybox-layout-4 .kng-fancybox {
    padding: 31px 32px;
  }
}
@media (max-width: 991px) {
  .kng-fancybox-layout-4 .kng-fancybox {
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  .kng-fancybox-layout-4 .kng-fancybox {
    padding: 31px 50px;
    max-width: 470px;
    margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .kng-fancybox-layout-4 .kng-fancybox {
    padding: 20px 15px;
  }
}
.kng-fancybox-layout-4 .kng-fancybox-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .kng-fancybox-layout-4 .kng-fancybox-inner {
    text-align: center;
  }
}
.kng-fancybox-layout-4 .kng-fancy-icon-wrap {
  flex: 0 0 50px;
  max-width: 50px;
  padding-top: 7px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .kng-fancybox-layout-4 .kng-fancy-icon-wrap {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 12px;
    padding-top: 0;
  }
}
.kng-fancybox-layout-4 .kng-fancybox-content {
  flex: 0 0 calc(100% - 50px);
  max-width: calc(100% - 50px);
  padding-left: 30px;
}
@media (max-width: 1439px) {
  .kng-fancybox-layout-4 .kng-fancybox-content {
    padding-left: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .kng-fancybox-layout-4 .kng-fancybox-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .kng-fancybox-layout-4 .kng-fancybox-content {
    padding-left: 20px;
  }
}
.kng-fancybox-layout-4 .kng-fancy-title {
  font-weight: 500;
  line-height: 36px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .kng-fancybox-layout-4 .kng-fancy-title {
    font-size: 24px;
  }
}
.kng-fancybox-layout-4 .kng-fancy-description {
  color: #828282;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .kng-fancybox-layout-4 .kng-fancy-description {
    line-height: 24px;
    margin-top: 5px;
  }
}
.kng-fancybox-layout-5 .kng-fancybox {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.kng-fancybox-layout-5 .kng-fancybox-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .kng-fancybox-layout-5 .kng-fancybox-inner {
    text-align: center;
  }
}
.kng-fancybox-layout-5 .kng-fancy-icon-wrap {
  flex: 0 0 50px;
  max-width: 50px;
  padding-top: 7px;
}
@media (max-width: 1199px) {
  .kng-fancybox-layout-5 .kng-fancy-icon-wrap {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 12px;
    padding-top: 0;
  }
}
.kng-fancybox-layout-5 .kng-fancybox-content {
  flex: 0 0 calc(100% - 50px);
  max-width: calc(100% - 50px);
  padding-left: 26px;
}
@media (max-width: 1439px) {
  .kng-fancybox-layout-5 .kng-fancybox-content {
    padding-left: 20px;
  }
}
@media (max-width: 1199px) {
  .kng-fancybox-layout-5 .kng-fancybox-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
.kng-fancybox-layout-5 .kng-fancy-title {
  font-weight: 500;
  line-height: 36px;
}
@media (max-width: 991px) {
  .kng-fancybox-layout-5 .kng-fancy-title {
    font-size: 24px;
  }
}
.kng-fancybox-layout-5 .kng-fancy-description {
  color: #828282;
}
@media (max-width: 1199px) {
  .kng-fancybox-layout-5 .kng-fancy-description {
    line-height: 24px;
    margin-top: 5px;
  }
}
.kng-fancy5-border-true .kng-fancybox:before {
  content: "";
  width: 1px;
  height: 56px;
  background-color: #d7d7d7;
  position: absolute;
  left: -16px;
  top: 50%;
  margin-top: -28px;
}
@media (min-width: 1600px) {
  .kng-fancy5-border-widescreen-false .kng-fancybox:before {
    display: none;
  }
}
@media (max-width: 1599px) {
  .kng-fancy5-border-false .kng-fancybox:before {
    display: none;
  }
}
@media (max-width: 1439px) {
  .kng-fancy5-border-laptop-false .kng-fancybox:before {
    display: none;
  }
}
@media (max-width: 1199px) {
  .kng-fancy5-border-tablet_extra-false .kng-fancybox:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .kng-fancy5-border-tablet-false .kng-fancybox:before {
    display: none;
  }
}
@media (max-width: 767px) {
  .kng-fancy5-border-mobile_extra-false .kng-fancybox:before {
    display: none;
  }
}
@media (max-width: 575px) {
  .kng-fancy5-border-mobile-false .kng-fancybox:before {
    display: none;
  }
}
.about-author-social {
  margin-left: -22px;
  margin-right: -22px;
}
.about-author-social > a {
  padding-left: 22px;
  padding-right: 22px;
}
.about-author-social a {
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kng-speaker-wrap .kng-tabs-title {
  border-bottom: 1px solid #d7d7d7;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.kng-speaker-wrap .kng-tabs-title > div {
  flex: 0 0 auto;
  width: auto;
  font-family: 'Gilda Display', sans-serif;
  color: var(--heading-color);
  font-size: 32px;
  line-height: 1.375;
  padding-bottom: 11px;
  cursor: pointer;
  position: relative;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-speaker-wrap .kng-tabs-title > div:after {
  content: '';
  display: block;
  width: 0px;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-speaker-wrap .kng-tabs-title > div:hover, .kng-speaker-wrap .kng-tabs-title > div.active {
  color: var(--primary-color);
}
.kng-speaker-wrap .kng-tabs-title > div:hover:after, .kng-speaker-wrap .kng-tabs-title > div.active:after {
  left: 0;
  width: 100%;
}
.kng-speaker-wrap .kng-tabs-title > div + div {
  margin-left: 32px;
}
@media (min-width: 1440px) {
  .kng-speaker-wrap .speaker-content {
    margin-top: -16px;
  }
}
.kng-speaker-wrap .kng-post-image {
  overflow: hidden;
  display: block;
  padding: 0;
  will-change: opacity;
  position: relative;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.kng-speaker-wrap .kng-post-image img {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -khtml-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  backface-visibility: hidden;
  transform-origin: center center;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  transition: all 0.45s linear;
  -webkit-transition: all 0.45s linear;
  -khtml-transition: all 0.45s linear;
  -moz-transition: all 0.45s linear;
  -ms-transition: all 0.45s linear;
  -o-transition: all 0.45s linear;
}
.kng-speaker-wrap .kng-post-image:hover img {
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  -khtml-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
}
@media (min-width: 1440px) {
  .kng-speaker-wrap .speaker-item-inner {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .kng-speaker-wrap .kng-speaker-item {
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
  .kng-speaker-wrap .kng-speaker-item.col-sm-6:first-child {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .kng-speaker-wrap .kng-speaker-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.kng-speaker-wrap .kng-speaker-item img {
  width: 100%;
}
.kng-speaker-wrap .kng-speaker-item .speaker-name {
  margin-top: 24px;
}
.kng-speaker-wrap .kng-speaker-item .rol-extra {
  margin-left: -10px;
  margin-right: -10px;
}
.kng-speaker-wrap .kng-speaker-item .rol-extra > span {
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}
.kng-speaker-wrap .kng-speaker-item .rol-extra .rol {
  color: var(--primary-color);
}
.kng-speaker-wrap .kng-speaker-item .rol-extra .extra-text {
  padding-left: 14px;
}
.kng-speaker-wrap .kng-speaker-item .rol-extra .extra-text:before {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 2px;
  background-color: #828282;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
}
.kng-speaker-wrap .kng-speaker-item .desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
}
.kng-speaker-wrap .kng-speaker-item .kng-speaker-social {
  margin-top: 32px;
}
.kng-search-wrap.layout-1 .kng-search-inner {
  width: 276px;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .kng-search-wrap.layout-1 .kng-search-inner {
    width: 200px;
  }
}
.kng-search-wrap.layout-1 .kng-search-inner:hover .kng-svg path {
  fill: var(--primary-color);
}
.kng-search-wrap.layout-1 .search-field {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #d7d7d7;
  height: 32px;
  line-height: 32px;
  padding-left: 0;
  padding-right: 32px;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-search-wrap.layout-1 .search-field:hover {
  border-color: var(--primary-color);
}
.kng-search-wrap.layout-1 input::-webkit-input-placeholder {
  color: var(--body-color);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.kng-search-wrap.layout-1 .search-submit {
  width: 32px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  border: 0;
  font-size: 0;
  text-indent: -999999px;
  color: #333;
}
.kng-search-wrap.layout-1 .kng-svg {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
}
.kng-search-wrap.layout-2 .cat-search-wrap {
  flex: 0 0 173px;
  width: 173px;
  max-width: 173px;
}
.kng-search-wrap.layout-2 .text-search-wrap {
  position: relative;
}
.kng-search-wrap.layout-2 .text-search-wrap .search-field {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  padding-right: 48px;
}
.kng-search-wrap.layout-2 .text-search-wrap .search-field:hover, .kng-search-wrap.layout-2 .text-search-wrap .search-field:focus, .kng-search-wrap.layout-2 .text-search-wrap .search-field:active {
  border-color: #d7d7d7;
}
.kng-search-wrap.layout-2 .text-search-wrap input::-webkit-input-placeholder {
  color: #828282;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.kng-search-wrap.layout-2 .text-search-wrap .search-submit {
  width: 48px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  border: 0;
  font-size: 0;
  text-indent: -999999px;
  color: #333;
}
.kng-search-wrap.layout-2 .text-search-wrap .kng-svg {
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -8px;
}
.kng-search-wrap.layout-2 .text-search-wrap .search-submit:hover .kng-svg path {
  fill: var(--primary-color);
}
.kng-header-factor .kng-factor-item {
  flex: 0 0 auto;
  width: auto;
}
.kng-header-factor .kng-factor {
  padding: 5px;
  line-height: 1;
  position: relative;
}
.kng-header-factor.layout-1 .header-count {
  position: absolute;
}
.kng-header-factor.layout-1 .header-factor-inner {
  margin-left: -14px;
  margin-right: -14px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .kng-header-factor.layout-1 .header-factor-inner {
    margin-left: -8px;
    margin-right: -8px;
  }
}
.kng-header-factor.layout-1 .kng-factor-item {
  margin-left: 14px;
  margin-right: 14px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .kng-header-factor.layout-1 .kng-factor-item {
    margin-left: 8px;
    margin-right: 8px;
  }
}
.kng-header-factor.layout-1 .kng-factor {
  padding: 12px;
  width: 44px;
  height: 44px;
  display: block;
  border: 1px solid rgba(32, 28, 28, 0.3);
  text-align: center;
  border-radius: 27px;
  -webkit-border-radius: 27px;
  -khtml-border-radius: 27px;
  -moz-border-radius: 27px;
  -ms-border-radius: 27px;
  -o-border-radius: 27px;
}
.kng-header-factor.layout-1 .kng-factor:hover {
  border-color: var(--primary-color);
}
.kng-header-factor.layout-1 .kng-user.logined .kng-factor {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.kng-header-factor.layout-1 .kng-user.logined .kng-factor span {
  margin-left: 10px;
}
.kng-header-factor.layout-1 .header-count {
  top: -3px;
  right: -3px;
  font-weight: bold;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.04em;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding-left: 2px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.kng-header-factor.layout-2 {
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.12em;
  color: var(--heading-color);
}
.kng-header-factor.layout-2 .header-factor-inner {
  margin-left: -20px;
  margin-right: -20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .kng-header-factor.layout-2 .header-factor-inner {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.kng-header-factor.layout-2 .kng-factor-item {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .kng-header-factor.layout-2 .kng-factor-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.kng-header-factor.layout-2 .kng-factor-item + .kng-factor-item {
  padding-left: 68px;
}
.kng-header-factor.layout-2 .kng-factor-item + .kng-factor-item:before {
  content: "";
  width: 48px;
  height: 1px;
  background-color: var(--body-color);
  position: absolute;
  top: 50%;
  left: 0;
}
.kng-header-factor.layout-2 .kng-cart-toggle .header-count {
  position: relative;
}
.kng-header-factor.layout-2 .kng-cart-toggle .header-count:before {
  content: "(";
}
.kng-header-factor.layout-2 .kng-cart-toggle .header-count:after {
  content: ")";
}
.kng-header-factor.layout-3 .kng-factor {
  padding: 0;
}
.kng-header-factor.layout-3 .header-factor-inner {
  margin-left: -8px;
  margin-right: -8px;
}
.kng-header-factor.layout-3 .kng-factor-item {
  padding-left: 8px;
  padding-right: 8px;
}
.kng-header-factor.layout-3 .kng-user.logined .kng-factor {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.kng-header-factor.layout-3 .kng-user.logined img {
  width: 16px;
}
.kng-header-factor.layout-3 .kng-user.logined .user-title {
  margin-left: 5px;
}
.kng-header-factor.layout-3 .header-count {
  font-size: 10px;
  line-height: 12px;
  padding-right: 2px;
  border-radius: 50%;
  height: 14px;
  display: inline-block;
  min-width: 14px;
  letter-spacing: -1px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
}
.kng-header-factor.layout-3 .wishlist-count {
  background-color: #e0e0e0;
  margin-left: 5px;
}
.kng-header-factor.layout-3 .cart-count {
  background-color: var(--primary-color);
  color: #fff;
}
.kng-newsletter-wrap.layout-1 .tnp-email {
  border-width: 0 0 1px 0;
  border-color: rgba(32, 28, 28, 0.2);
  background-color: transparent;
  font-size: 13px;
  line-height: 32px;
  color: #828282;
  letter-spacing: 0.04em;
  padding-left: 0;
  padding-right: 60px;
  border-radius: 0;
}
.kng-newsletter-wrap.layout-1 .tnp-email::-webkit-input-placeholder {
  font-size: 13px;
  line-height: 32px;
  color: #828282;
}
.kng-newsletter-wrap.layout-1 .tnp-email:-moz-placeholder {
  font-size: 13px;
  line-height: 32px;
  color: #828282;
}
.kng-newsletter-wrap.layout-1 .tnp-email::-moz-placeholder {
  font-size: 13px;
  line-height: 32px;
  color: #828282;
}
.kng-newsletter-wrap.layout-1 .tnp-email:-ms-input-placeholder {
  font-size: 13px;
  line-height: 32px;
  color: #828282;
}
.kng-newsletter-wrap.layout-1 .tnp-field-button {
  position: absolute;
  top: 0;
  right: 0;
}
.kng-newsletter-wrap.layout-1 input[type="submit"] {
  background: transparent;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  text-transform: capitalize;
  letter-spacing: 0.12em;
  padding-left: 0;
  padding-right: 0;
  border: 0;
}
.kng-newsletter-wrap.layout-1 input[type="submit"]:hover {
  color: var(--heading-color);
}
.kng-socials-wrap {
  /* slider */
}
.kng-socials-wrap.layout-1 .kng-social-item {
  line-height: 1;
}
.kng-sliders-wrap .kng-slider-container {
  position: relative;
  overflow: hidden;
}
.kng-sliders-wrap .kng-swiper-dots {
  margin: 0;
}
.kng-sliders-wrap .btn-link {
  letter-spacing: 0.12em;
}
.kng-slide-bg-classic.kng-overlay {
  z-index: -1;
}
.kng-slide-static-layer {
  z-index: 0 !important;
}
.kng-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.kng-product-cat-carousel-layout-1 .kng-product-cat-item .cat-item-inner {
  border: 1px solid rgba(var(--heading-color-rgb), 0.2);
  border-radius: 8px;
  padding: 54px 15px 38px 15px;
}
.kng-product-cat-carousel-layout-1 .kng-product-cat-item svg path {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-product-cat-carousel-layout-1 .kng-product-cat-item .kng-pcat-icon-wrap {
  margin-bottom: 28px;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transform: scale(1);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.kng-product-cat-carousel-layout-1 .kng-product-cat-item .cat-title {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: var(--heading-color);
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-product-cat-carousel-layout-1 .kng-product-cat-item .cat-count {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--heading-color-rgb), 0.5);
}
.kng-product-cat-carousel-layout-1 .kng-product-cat-item .kng-cat-link {
  display: block;
}
.kng-product-cat-carousel-layout-1 .kng-product-cat-item .kng-cat-link:hover .kng-pcat-icon-wrap {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -khtml-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.kng-product-cat-carousel-layout-1 .kng-product-cat-item .kng-cat-link:hover .kng-pcat-icon-wrap svg path {
  fill: var(--primary-color);
}
.kng-product-cat-carousel-layout-1 .kng-product-cat-item .kng-cat-link:hover .cat-title {
  color: var(--link-color-hover);
}
.kng-product-cat-carousel-layout-2 .slider-indent-wrap {
  padding-left: 411px;
}
@media (max-width: 1439px) {
  .kng-product-cat-carousel-layout-2 .slider-indent-wrap {
    padding-left: 350px;
  }
}
@media (max-width: 1199px) {
  .kng-product-cat-carousel-layout-2 .slider-indent-wrap {
    padding-left: 0;
  }
}
.kng-product-cat-carousel-layout-2 .general-title-wrap {
  max-width: 265px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .kng-product-cat-carousel-layout-2 .general-title-wrap {
    max-width: 80%;
    position: relative;
  }
}
.kng-product-cat-carousel-layout-2 .general-title-wrap .w-inner {
  position: relative;
  z-index: 1;
}
.kng-product-cat-carousel-layout-2 .general-title-wrap .sub-title {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 28px;
}
@media (max-width: 1199px) {
  .kng-product-cat-carousel-layout-2 .general-title-wrap .sub-title {
    margin-bottom: 7px;
  }
}
.kng-product-cat-carousel-layout-2 .general-title-wrap .title {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .kng-product-cat-carousel-layout-2 .general-title-wrap .btn {
    display: none;
  }
}
.kng-product-cat-carousel-layout-2 .kng-swiper-arrows {
  width: auto;
  left: 0;
  bottom: 154px;
}
@media (max-width: 1199px) {
  .kng-product-cat-carousel-layout-2 .kng-swiper-arrows {
    position: absolute;
    top: -87px;
    bottom: auto;
    right: 0;
    left: auto;
  }
  .kng-product-cat-carousel-layout-2 .kng-swiper-arrows .container {
    width: auto;
    padding: 0;
  }
}
.kng-product-cat-carousel-layout-2 .kng-product-cat-item .kng-pcat-icon-wrap {
  overflow: hidden;
  padding: 40px;
  margin-bottom: 24px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .kng-product-cat-carousel-layout-2 .kng-product-cat-item .kng-pcat-icon-wrap {
    padding: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .kng-product-cat-carousel-layout-2 .kng-product-cat-item .kng-pcat-icon-wrap {
    padding: 30px;
  }
}
@media (max-width: 350px) {
  .kng-product-cat-carousel-layout-2 .kng-product-cat-item .kng-pcat-icon-wrap {
    padding: 30px;
  }
}
.kng-product-cat-carousel-layout-2 .kng-product-cat-item .kng-pcat-icon-wrap img {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transform: scale(1);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.kng-product-cat-carousel-layout-2 .kng-product-cat-item .cat-title {
  font-size: 32px;
  line-height: 44px;
  font-family: 'Gilda Display', sans-serif;
  color: var(--heading-color);
  margin-bottom: 4px;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
@media (max-width: 1599px) {
  .kng-product-cat-carousel-layout-2 .kng-product-cat-item .cat-title {
    font-size: 24px;
    line-height: 1.5;
  }
}
.kng-product-cat-carousel-layout-2 .kng-product-cat-item .cat-count {
  color: var(--body-color);
}
.kng-product-cat-carousel-layout-2 .kng-product-cat-item .kng-cat-link {
  display: block;
}
.kng-product-cat-carousel-layout-2 .kng-product-cat-item .kng-cat-link:hover .kng-pcat-icon-wrap img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -khtml-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.kng-product-cat-carousel-layout-2 .kng-product-cat-item .kng-cat-link:hover .kng-pcat-icon-wrap svg path {
  fill: var(--primary-color);
}
.kng-product-cat-carousel-layout-2 .kng-product-cat-item .kng-cat-link:hover .cat-title {
  color: var(--link-color-hover);
}
.kng-dropdown-mega .kng-product-cat-carousel-layout-2 .kng-swiper-slider-wrap {
  position: relative;
}
@media (min-width: 1200px) {
  .kng-dropdown-mega .kng-product-cat-carousel-layout-2 .kng-swiper-slider-wrap .general-title-wrap {
    top: 30px;
  }
}
.kng-dropdown-mega .kng-product-cat-carousel-layout-2 .kng-swiper-slider-wrap .general-title-wrap a.btn-second {
  border: 1px solid var(--second-color);
  margin-bottom: 30px;
  height: 48px;
  line-height: 48px;
}
.kng-dropdown-mega .kng-product-cat-carousel-layout-2 .kng-swiper-slider-wrap .general-title-wrap a.btn-second:hover {
  background-color: var(--second-color);
  border-color: transparent;
  color: #fff;
}
.kng-dropdown-mega .kng-product-cat-carousel-layout-2 .kng-swiper-slider-wrap .kng-product-cat-item .cat-title {
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 1439px) {
  .kng-dropdown-mega .kng-product-cat-carousel-layout-2 .kng-swiper-slider-wrap .kng-product-cat-item .cat-title {
    font-size: 20px;
  }
}
@media (max-width: 1599px) {
  .kng-dropdown-mega .kng-product-cat-carousel-layout-2 .kng-swiper-arrows {
    bottom: 30px;
  }
}
.kng-dropdown-mega .kng-product-cat-carousel-layout-2 .kng-swiper-arrows .container {
  padding: 0;
}
.kng-countdown-layout-1 .kng-countdown-bar {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
  padding: 2px 20px 2px 15px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  margin-left: -9px;
  margin-right: -9px;
}
@media (max-width: 767px) {
  .kng-countdown-layout-1 .kng-countdown-bar {
    margin-left: 0;
    margin-right: 0;
  }
}
.kng-countdown-layout-1 .kng-countdown-bar .col-auto {
  padding-left: 9px;
  padding-right: 9px;
}
.kng-countdown-layout-1 .kng-countdown-bar .time-item + .time-item {
  position: relative;
}
.kng-countdown-layout-1 .kng-countdown-bar .time-item + .time-item:before {
  content: ":";
  position: absolute;
  left: -2px;
}
.kng-product-carousel .product {
  margin-bottom: 30px;
}
.kng-product-carousel .product .woosw-btn:before {
  position: absolute;
  top: 22px;
  right: 16px;
  color: #fff;
}
.kng-product-carousel .product .woosw-btn:hover:before {
  color: var(--primary-color);
}
.kng-product-carousel .product .kng-products-content {
  padding-top: 16px;
}
.kng-product-carousel .product .kng-products-content .woocommerce-loop-product__link {
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
}
.kng-product-carousel .product .kng-loop-product-cat {
  line-height: 17px;
  margin-top: 4px;
}
.kng-product-carousel .product .kng-loop-product-cat a {
  font-size: 14px;
  color: #828282;
}
.kng-product-carousel .product .kng-loop-product-cat a:hover {
  color: var(--link-color);
}
.kng-product-carousel .product .price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 12px 0 0 0;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  clear: both;
  white-space: pre-wrap;
}
.kng-product-carousel .product .price del {
  order: 2;
  padding-left: 6px;
  font-size: 14px;
  line-height: 32px;
  color: #828282;
}
[dir="rtl"] .kng-product-carousel .product .price del {
  padding-left: 0;
  padding-right: 6px;
}
.kng-product-carousel .product .price ins {
  font-weight: inherit;
  text-decoration: none;
}
.kng-product-carousel .product .sold-bar-wrap {
  margin-top: 18px;
}
.kng-product-carousel .product .sold-bar-wrap .sales-bar {
  position: relative;
  height: 4px;
  background-color: rgba(var(--primary-color-rgb),0.3);
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -khtml-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}
.kng-product-carousel .product .sold-bar-wrap .sales-bar .sold-bar {
  height: 4px;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -khtml-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}
.kng-product-carousel .product .sold-bar-wrap .sold-bar-text {
  margin-top: 8px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.08em;
  color: #828282;
}
.kng-product-carousel .product .sold-bar-wrap .sold-bar-text span span {
  color: var(--heading-color);
}
.kng-product-carousel .kng-swiper-arrows.top {
  top: -90px;
}
.kng-product-carousel .kng-swiper-arrows.top .container {
  padding: 0;
}
.kng-product-carousel .kng-swiper-arrow {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #828282;
  border-radius: 50%;
  color: var(--heading-color);
  padding: 0;
}
.kng-banner-wrap {
  overflow: hidden;
}
.kng-banner-layout-1 .kng-banner-content {
  padding-top: 56px;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.kng-banner-layout-1 .kng-banner-imgs {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.kng-banner-layout-2 .kng-banner-content {
  padding: 0 0 0 48px;
}
.kng-banner-layout-2 .large-heading {
  margin-bottom: 8px;
}
.kng-banner-layout-2 .description {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: var(--heading-color);
  opacity: 0.7;
}
.kng-banner-layout-2 .kng-btn-wraps {
  margin-top: 32px;
}
.kng-banner-layout-3 .kng-banner-static.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.kng-banner-layout-4 .kng-img.absolute {
  top: 44px;
  left: 50%;
  margin-left: -84px;
}
.kng-banner-layout-4 .kng-img.absolute img {
  width: 168px;
}
.kng-banner-layout-5 .kng-banner-wrap {
  overflow: visible;
}
.kng-banner-layout-5 .kng-banner-content {
  left: -44px;
  top: 24px;
}
.kng-banner-layout-5 .large-heading {
  font-size: 80px;
  line-height: 1.175;
}
.kng-product-grid .kng-grid-filter-wrap {
  margin-bottom: 36px;
}
.kng-product-grid .kng-grid-filter-wrap span {
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}
.kng-product-grid .kng-grid-filter-wrap span:after {
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  width: 0;
  content: "";
  height: 1px;
  background-color: var(--heading-color);
  transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
  -khtml-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -ms-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
}
.kng-product-grid .kng-grid-filter-wrap span.active:after, .kng-product-grid .kng-grid-filter-wrap span:hover:after {
  width: calc(100% - 30px);
}
.kng-product-grid-layout-2 .filter-top-wrap {
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 40px;
}
.kng-product-grid-layout-2 .filter-wrap a {
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  color: #828282;
}
.kng-product-grid-layout-2 .filter-wrap a:after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  left: 20px;
  bottom: 0;
  background-color: var(--heading-color);
  transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
  -khtml-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -ms-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
}
.kng-product-grid-layout-2 .filter-wrap a:hover, .kng-product-grid-layout-2 .filter-wrap a.active {
  color: var(--link-color);
}
.kng-product-grid-layout-2 .filter-wrap a:hover:after, .kng-product-grid-layout-2 .filter-wrap a.active:after {
  width: 16px;
}
.kng-product-grid-layout-2 .col-view-all-bot {
  display: none;
}
@media (max-width: 575px) {
  .kng-product-grid-layout-2 .col-view-all-top {
    display: none;
  }
  .kng-product-grid-layout-2 .col-view-all-bot {
    display: block;
  }
}
.kng-product-grid-layout-2 .view-all-link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}
.kng-product-grid-layout-2 .view-all-link svg {
  margin-left: 15px;
}
.kng-product-grid-layout-2 .view-all-link svg path {
  stroke: var(--link-color);
}
.kng-product-grid-layout-2 .view-all-link:hover {
  color: #828282;
}
.kng-product-grid-layout-2 .view-all-link:hover svg path {
  fill: transparent;
  stroke: #828282;
}
.kng-product-grid-layout-2 .products > .product .kng-shop-item-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.kng-product-grid-layout-2 .products > .product .kng-shop-item-wrap .kng-products-thumb {
  flex: 0 0 35%;
  max-width: 35%;
}
.kng-product-grid-layout-2 .products > .product .kng-shop-item-wrap .kng-products-content {
  flex: 0 0 65%;
  max-width: 65%;
  padding-left: 24px;
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .kng-product-grid-layout-2 .products > .product .kng-shop-item-wrap .kng-products-content {
    padding-top: 0;
    padding-left: 15px;
  }
  .kng-product-grid-layout-2 .products > .product .kng-shop-item-wrap .kng-products-content .review-num {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .kng-product-grid-layout-2 .products > .product .kng-shop-item-wrap .kng-products-content {
    padding-top: 0;
    padding-left: 15px;
  }
  .kng-product-grid-layout-2 .products > .product .kng-shop-item-wrap .kng-products-content .review-num {
    display: none;
  }
}
@media (max-width: 400px) {
  .kng-product-grid-layout-2 .products > .product .kng-shop-item-wrap .kng-products-content {
    padding-top: 0;
    padding-left: 15px;
  }
  .kng-product-grid-layout-2 .products > .product .kng-shop-item-wrap .kng-products-content .review-num {
    display: none;
  }
}
.kng-product-grid-layout-2 .products > .product .kng-badge {
  display: none;
}
.kng-product-grid-layout-2 .products > .product .kng-overlay-content {
  display: none !important;
}
.kng-product-grid-layout-2 .products > .product .kng-after-product-thumb {
  display: none;
}
.kng-product-grid-layout-2 .products > .product .kng-products-content-list-view {
  display: none;
}
.kng-product-grid-layout-2 .kng-post-pagination {
  margin-top: 50px;
}
.kng-product-grid-layout-2 .posts-pagination {
  padding-top: 0;
}
.kng-product-grid-layout-3 .kng-product-grid-heading {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(224, 224, 224, 0.6);
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .kng-product-grid-layout-3 .kng-product-grid-heading {
    font-size: 28px;
  }
}
.kng-product-grid-layout-3 .products > .product {
  padding: 16px 15px;
}
.kng-product-grid-layout-3 .products > .product .kng-shop-item-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.kng-product-grid-layout-3 .products > .product .kng-shop-item-wrap .kng-products-thumb {
  flex: 0 0 35%;
  max-width: 35%;
}
@media (min-width: 576px) and (max-width: 991px) {
  .kng-product-grid-layout-3 .products > .product .kng-shop-item-wrap .kng-products-thumb {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.kng-product-grid-layout-3 .products > .product .kng-shop-item-wrap .kng-products-content {
  flex: 0 0 65%;
  max-width: 65%;
  padding-left: 24px;
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .kng-product-grid-layout-3 .products > .product .kng-shop-item-wrap .kng-products-content {
    padding-top: 0;
    padding-left: 15px;
  }
  .kng-product-grid-layout-3 .products > .product .kng-shop-item-wrap .kng-products-content .review-num {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .kng-product-grid-layout-3 .products > .product .kng-shop-item-wrap .kng-products-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 400px) {
  .kng-product-grid-layout-3 .products > .product .kng-shop-item-wrap .kng-products-content {
    padding-top: 0;
    padding-left: 15px;
  }
  .kng-product-grid-layout-3 .products > .product .kng-shop-item-wrap .kng-products-content .review-num {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .kng-product-grid-layout-3 .products > .product .kng-shop-item-wrap .price {
    font-size: 16px;
  }
}
.kng-product-grid-layout-3 .products > .product .kng-badge {
  display: none;
}
.kng-product-grid-layout-3 .products > .product .kng-overlay-content {
  display: none !important;
}
.kng-product-grid-layout-3 .products > .product .kng-after-product-thumb {
  display: none;
}
.kng-product-grid-layout-3 .products > .product .kng-products-content-list-view {
  display: none;
}
.kng-video-player {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.btn-video-wrap .kng-btn-text {
  line-height: 1.4;
}
.kng-video-play-btn-top-left .btn-video-wrap, .kng-video-play-btn-top-right .btn-video-wrap, .kng-video-play-btn-top-center .btn-video-wrap, .kng-video-play-btn-center-left .btn-video-wrap, .kng-video-play-btn-center-right .btn-video-wrap, .kng-video-play-btn-center-center .btn-video-wrap, .kng-video-play-btn-bottom-left .btn-video-wrap, .kng-video-play-btn-bottom-right .btn-video-wrap, .kng-video-play-btn-bottom-center .btn-video-wrap {
  position: absolute;
}
.kng-video-play-btn-top-left .btn-video-wrap, .kng-video-play-btn-top-center .btn-video-wrap, .kng-video-play-btn-top-right .btn-video-wrap {
  top: 40px;
}
.kng-video-play-btn-bottom-left .btn-video-wrap, .kng-video-play-btn-bottom-center .btn-video-wrap, .kng-video-play-btn-bottom-right .btn-video-wrap {
  bottom: 40px;
}
.kng-video-play-btn-top-left .btn-video-wrap, .kng-video-play-btn-center-left .btn-video-wrap, .kng-video-play-btn-bottom-left .btn-video-wrap {
  left: 40px;
}
[dir="rtl"] .kng-video-play-btn-top-left .btn-video-wrap, [dir="rtl"] .kng-video-play-btn-center-left .btn-video-wrap, [dir="rtl"] .kng-video-play-btn-bottom-left .btn-video-wrap {
  left: auto;
  right: 40px;
}
.kng-video-play-btn-top-right .btn-video-wrap, .kng-video-play-btn-center-right .btn-video-wrap, .kng-video-play-btn-bottom-right .btn-video-wrap {
  right: 40px;
}
[dir="rtl"] .kng-video-play-btn-top-right .btn-video-wrap, [dir="rtl"] .kng-video-play-btn-center-right .btn-video-wrap, [dir="rtl"] .kng-video-play-btn-bottom-right .btn-video-wrap {
  right: auto;
  left: 40px;
}
.kng-video-play-btn-top-center .btn-video-wrap, .kng-video-play-btn-bottom-center .btn-video-wrap {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.kng-video-play-btn-center-left .btn-video-wrap, .kng-video-play-btn-center-right .btn-video-wrap {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.kng-video-play-btn-center-center .btn-video-wrap {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.kng-author-carousel-layout-1 .kng-featured {
  margin-bottom: 24px;
}
.kng-author-carousel-layout-1 .kng-item-content-title {
  margin-bottom: 2px;
}
.kng-author-carousel-layout-1 .rol-extra {
  margin-bottom: 12px;
}
.kng-author-carousel-layout-1 .kng-meta-separator {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--heading-color);
  display: block;
}
.kng-author-carousel-layout-1 .author-excerpt {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: #828282;
}
.kng-author-carousel-layout-1 .btn-viewall {
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 217px;
  z-index: 1;
}
@media (max-width: 991px) {
  .kng-author-carousel-layout-1 .btn-viewall {
    width: 150px;
  }
}
@media (max-width: 575px) {
  .kng-author-carousel-layout-1 .btn-viewall {
    display: none;
  }
}
.kng-author-carousel-layout-1 .kng-swiper-arrows {
  bottom: -13px;
}
.kng-author-carousel-layout-1 .kng-swiper-arrows .container {
  padding: 0;
}
.kng-author-carousel-layout-1 .kng-swiper-dots {
  margin: 45px 0px 13px;
}
.kng-post-layout-3 {
  font-size: 14px;
  line-height: 17px;
}
.kng-post-layout-3 .kng-featured {
  margin-bottom: 20px;
}
.kng-post-layout-3 .item-title {
  margin: 0;
}
.kng-post-layout-3 .item-meta {
  margin-top: 18px;
}
.kng-post-layout-3 .kng-svg {
  margin-right: 6px;
}
.kng-post-layout-3 .lbl {
  color: #828282;
  margin-right: 5px;
}
.kng-category-box-layout-1 ul {
  margin: 0;
  list-style: none;
}
.kng-category-box-layout-1 ul li {
  line-height: 18px;
  margin-bottom: 6px;
  position: relative;
  padding-left: 13px;
}
.kng-category-box-layout-1 ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  margin-top: -1.5px;
  width: 3px;
  height: 3px;
  border-radius: 3px;
  display: block;
  background-color: #4f4f4f;
}
.kng-category-box-layout-1 ul li:last-child {
  margin-bottom: 0;
}
.kng-category-box-layout-1 .kng-category-box-wrap {
  padding: 24px 32px 24px 32px;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
@media (max-width: 1439px) {
  .kng-category-box-layout-1 .kng-category-box-wrap {
    padding: 24px 24px 24px 24px;
  }
}
@media (max-width: 1280px) {
  .kng-category-box-layout-1 .kng-category-box-wrap {
    padding: 24px 0 24px 15px;
  }
}
@media (max-width: 1199px) {
  .kng-category-box-layout-1 .kng-category-box-wrap {
    padding: 24px 15px 24px 24px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .kng-category-box-layout-1 .kng-category-box-wrap {
    padding: 24px 0 24px 15px;
  }
}
@media (max-width: 575px) {
  .kng-category-box-layout-1 .kng-category-box-wrap {
    padding: 24px 32px 24px 32px;
  }
}
@media (max-width: 350px) {
  .kng-category-box-layout-1 .kng-category-box-wrap {
    padding: 24px 15px 24px 24px;
  }
}
.kng-category-box-layout-1 .kng-cat-content {
  flex: 0 0 calc(100% - 82px);
  max-width: calc(100% - 82px);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .kng-category-box-layout-1 .kng-cat-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.kng-category-box-layout-1 .kng-cat-img {
  flex: 0 0 82px;
  max-width: 82px;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .kng-category-box-layout-1 .kng-cat-img {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  .kng-category-box-layout-1 .large-heading {
    font-size: 18px;
  }
}
.kng-anchor-wrap .kng-anchor-icon svg {
  vertical-align: middle;
}
@media (max-width: 991px) {
  #kng-page, #kng-footer {
    overflow-x: hidden;
  }
}
.container-small {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-medium {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-xxl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1025px) {
  .container {
    max-width: 1025px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1230px;
  }
}
@media (min-width: 1410px) {
  .container {
    max-width: 1366px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}
.container-wide {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .container-wide {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container-wide {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container-wide {
    max-width: 960px;
  }
}
@media (min-width: 1025px) {
  .container-wide {
    max-width: 1025px;
  }
}
@media (min-width: 1200px) {
  .container-wide {
    max-width: 1140px;
  }
}
@media (min-width: 1280px) {
  .container-wide {
    max-width: 1230px;
  }
}
@media (min-width: 1410px) {
  .container-wide {
    max-width: 1366px;
  }
}
@media (min-width: 1600px) {
  .container-wide {
    max-width: 1440px;
  }
}
.container-full {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}
#elementor-editor-wrapper {
  display: none;
}
.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xl-15 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-15 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.col-24 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media screen and (min-width: 576px) {
  .col-sm-15 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .col-sm-24 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-15 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .col-md-24 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-15 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .col-lg-24 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media screen and (min-width: 1200px) {
  .col-xl-15 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .col-xl-24 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xxl-15 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .col-xxl-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xxl-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xxl-24 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .col-xxl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xxl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.elementor-element h1, .elementor-element h2, .elementor-element h3, .elementor-element h4, .elementor-element h5, .elementor-element h6 {
  margin: 0;
}
.elementor-element .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}
.elementor-section.kng-justify-content-start > .elementor-container {
  justify-content: flex-start;
}
.elementor-section.kng-justify-content-end > .elementor-container {
  justify-content: flex-end;
}
.elementor-section.kng-justify-content-center > .elementor-container {
  justify-content: center;
}
.elementor-section.kng-justify-content-between > .elementor-container {
  justify-content: space-between;
}
.elementor-section.kng-justify-content-around > .elementor-container {
  justify-content: space-around;
}
@media (max-width: 991px) {
  .elementor-section.kng-justify-content-tablet-start > .elementor-container {
    justify-content: flex-start;
  }
  .elementor-section.kng-justify-content-tablet-end > .elementor-container {
    justify-content: flex-end;
  }
  .elementor-section.kng-justify-content-tablet-center > .elementor-container {
    justify-content: center;
  }
  .elementor-section.kng-justify-content-tablet-between > .elementor-container {
    justify-content: space-between;
  }
  .elementor-section.kng-justify-content-tablet-around > .elementor-container {
    justify-content: space-around;
  }
}
@media (min-width: 1600px) {
  .kng-justify-content-xxl-between > .elementor-container {
    justify-content: space-between;
  }
}
[dir="rtl"] .elementor-background-overlay {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -khtml-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.kng-boxed-bg-true > .kng-section-boxed-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: ;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media (min-width: 1600px) {
  .kng-boxed-bg-true > .kng-section-boxed-bg {
    left: 80px;
    right: 80px;
  }
}
@media (max-width: 1599px) {
  .kng-boxed-bg-true > .kng-section-boxed-bg {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -khtml-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
  }
}
.kng-boxed-bg-true > .kng-section-boxed-bg:before, .kng-boxed-bg-true > .kng-section-boxed-bg:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.kng-boxed-bg-true:before, .kng-boxed-bg-true:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  background: #fff;
  display: none;
}
@media (min-width: 1600px) {
  .kng-boxed-bg-true:before, .kng-boxed-bg-true:after {
    width: 50%;
    display: block;
  }
  .kng-boxed-bg-true:before {
    right: calc(100% - 80px);
  }
  .kng-boxed-bg-true:after {
    left: calc(100% - 80px);
  }
}
.kng-section-boxed-divider-true .kng-section-boxed-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #d7d7d7;
}
@media (min-width: 1366px) {
  .kng-section-boxed-divider-true.elementor-section-boxed .kng-section-boxed-divider {
    left: 40px;
    right: 40px;
  }
}
@media (min-width: 1440px) {
  .kng-section-boxed-divider-true.elementor-section-boxed .kng-section-boxed-divider {
    left: 80px;
    right: 80px;
  }
}
.kng-section-boxed-divider-true.kng-section-boxed-divider-bottom .kng-section-boxed-divider {
  top: auto;
  bottom: 0;
}
.kng-gradient {
  position: relative;
}
.kng-gradient:before, .kng-gradient:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  -webkit-border-radius: inherit;
  -khtml-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  -o-border-radius: inherit;
}
.kng-gradient > * {
  position: relative;
  z-index: 1;
}
.kng-column-element-horizontal .elementor-widget-wrap {
  margin: 0 -15px;
  width: calc(100% + 30px);
}
.kng-column-element-horizontal .elementor-widget-wrap > .elementor-element {
  width: auto;
  min-width: unset !important;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 0 15px;
  margin: 0;
}
.elementor-widget-wrap > .elementor-inner-section.elementor-section-boxed {
  max-width: calc(100% + 30px);
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
}
.elementor-column-gap-default > .elementor-column > .elementor-element-populated .elementor-inner-section.bg-full-right:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 100%;
  background-color: inherit;
}
[dir="rtl"] .elementor-column-gap-default > .elementor-column > .elementor-element-populated .elementor-inner-section.bg-full-right:after {
  left: auto;
  right: 100%;
}
.elementor-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.elementor-section.bg-att-scroll {
  background-attachment: scroll;
}
.elementor-section .elementor-container {
  flex-wrap: wrap;
  justify-content: center;
}
.elementor .elementor-section {
  /* &.elementor-column-gap-no {
        max-width: 1230px;
    }
    &.elementor-column-gap-narrow{
        max-width: 1240px;
    }
    &.elementor-column-gap-default {
        max-width: 1410px;
    }
    &.elementor-column-gap-extended {
        max-width: 1260px;
    }  */
}
@media (min-width: 576px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 960px;
  }
}
@media (min-width: 1025px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1025px;
  }
}
@media (min-width: 1200px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1140px;
  }
}
@media (min-width: 1280px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1230px;
  }
}
@media (min-width: 1410px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1366px;
  }
}
@media (min-width: 1600px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1440px;
  }
}
@media (min-width: 576px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-no {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-no {
    max-width: 738px;
  }
}
@media (min-width: 992px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-no {
    max-width: 930px;
  }
}
@media (min-width: 1025px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-no {
    max-width: 995px;
  }
}
@media (min-width: 1200px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-no {
    max-width: 1110px;
  }
}
@media (min-width: 1280px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-no {
    max-width: 1200px;
  }
}
@media (min-width: 1410px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-no {
    max-width: 1336px;
  }
}
@media (min-width: 1600px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-no {
    max-width: 1410px;
  }
}
@media (min-width: 576px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-narrow {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-narrow {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-narrow {
    max-width: 960px;
  }
}
@media (min-width: 1025px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-narrow {
    max-width: 1025px;
  }
}
@media (min-width: 1200px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-narrow {
    max-width: 1140px;
  }
}
@media (min-width: 1280px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-narrow {
    max-width: 1230px;
  }
}
@media (min-width: 1410px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-narrow {
    max-width: 1366px;
  }
}
@media (min-width: 1600px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-narrow {
    max-width: 1420px;
  }
}
.elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0 15px;
}
.elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
  max-width: 1450px;
}
@media (min-width: 576px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
    max-width: 960px;
  }
}
@media (min-width: 1025px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
    max-width: 1025px;
  }
}
@media (min-width: 1200px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
    max-width: 1140px;
  }
}
@media (min-width: 1280px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
    max-width: 1230px;
  }
}
@media (min-width: 1410px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
    max-width: 1366px;
  }
}
@media (min-width: 1600px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
    max-width: 1450px;
  }
}
@media (min-width: 1600px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended > .elementor-column > .elementor-element-populated {
    padding: 0 20px;
  }
}
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0 15px !important;
}
.kng-section-overvlay-with-space-start .elementor-background-overlay, .kng-section-overvlay-with-space-end .elementor-background-overlay, .kng-section-overvlay-with-space-between .elementor-background-overlay {
  width: unset !important;
  right: 0;
}
.elementor-widget-spacer {
  margin-bottom: 0 !important;
  /* custom backend */
}
@media (min-width: 1025px) {
  .elementor-editor-active .kng-tabs-title.elementor-hidden-desktop {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .elementor-editor-active .elementor-hidden-tablet.kng-tabs-title {
    display: none !important;
  }
}
@media (max-width: 767px) {
  /* Elementor Widget Order */  .elementor-editor-active .elementor-hidden-phone.kng-tabs-title {
    display: none !important;
  }
}
.elementor-panel-categories {
  display: flex;
  flex-wrap: wrap;
}
.elementor-panel-category {
  flex: 0 0 100%;
  width: 100%;
}
#elementor-panel-category-elementor-theme-core {
  order: 1;
}
@media (max-width: 767px) {
  .elementor-section.kng-justify-content-mobile-start > .elementor-container {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .elementor-column.col-xl-8 {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.elementor-element.fadeInUp.animated {
  animation: kngFadeInUp 1s ease-in-out forwards;
  -webkit-animation: kngFadeInUp 1s ease-in-out forwards;
  -khtml-animation: kngFadeInUp 1s ease-in-out forwards;
  -moz-animation: kngFadeInUp 1s ease-in-out forwards;
  -ms-animation: kngFadeInUp 1s ease-in-out forwards;
  -o-animation: kngFadeInUp 1s ease-in-out forwards;
  transition: transform 1s ease-in-out, opacity 1s ease;
  -webkit-transition: transform 1s ease-in-out, opacity 1s ease;
  -khtml-transition: transform 1s ease-in-out, opacity 1s ease;
  -moz-transition: transform 1s ease-in-out, opacity 1s ease;
  -ms-transition: transform 1s ease-in-out, opacity 1s ease;
  -o-transition: transform 1s ease-in-out, opacity 1s ease;
}
.elementor-element.fadeInUp.animated.animated-slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.elementor-element.fadeInUp.animated.animated-fast {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
.elementor-element.fadeInDown.animated {
  animation: kngFadeInDown 1s ease-in-out forwards;
  -webkit-animation: kngFadeInDown 1s ease-in-out forwards;
  -khtml-animation: kngFadeInDown 1s ease-in-out forwards;
  -moz-animation: kngFadeInDown 1s ease-in-out forwards;
  -ms-animation: kngFadeInDown 1s ease-in-out forwards;
  -o-animation: kngFadeInDown 1s ease-in-out forwards;
  transition: transform 1s ease-in-out, opacity 1s ease;
  -webkit-transition: transform 1s ease-in-out, opacity 1s ease;
  -khtml-transition: transform 1s ease-in-out, opacity 1s ease;
  -moz-transition: transform 1s ease-in-out, opacity 1s ease;
  -ms-transition: transform 1s ease-in-out, opacity 1s ease;
  -o-transition: transform 1s ease-in-out, opacity 1s ease;
}
.elementor-element.fadeInDown.animated.animated-slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.elementor-element.fadeInDown.animated.animated-fast {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
.elementor-element.fadeInLeft.animated {
  animation: kngFadeInLeft 1s ease forwards;
  -webkit-animation: kngFadeInLeft 1s ease forwards;
  -khtml-animation: kngFadeInLeft 1s ease forwards;
  -moz-animation: kngFadeInLeft 1s ease forwards;
  -ms-animation: kngFadeInLeft 1s ease forwards;
  -o-animation: kngFadeInLeft 1s ease forwards;
  transition: transform 1s ease-in-out, opacity 1s ease;
  -webkit-transition: transform 1s ease-in-out, opacity 1s ease;
  -khtml-transition: transform 1s ease-in-out, opacity 1s ease;
  -moz-transition: transform 1s ease-in-out, opacity 1s ease;
  -ms-transition: transform 1s ease-in-out, opacity 1s ease;
  -o-transition: transform 1s ease-in-out, opacity 1s ease;
}
.elementor-element.fadeInLeft.animated.animated-slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.elementor-element.fadeInLeft.animated.animated-fast {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
.elementor-element.fadeInRight.animated {
  animation: kngFadeInRight 1s ease forwards;
  -webkit-animation: kngFadeInRight 1s ease forwards;
  -khtml-animation: kngFadeInRight 1s ease forwards;
  -moz-animation: kngFadeInRight 1s ease forwards;
  -ms-animation: kngFadeInRight 1s ease forwards;
  -o-animation: kngFadeInRight 1s ease forwards;
  transition: transform 1s ease-in-out, opacity 1s ease;
  -webkit-transition: transform 1s ease-in-out, opacity 1s ease;
  -khtml-transition: transform 1s ease-in-out, opacity 1s ease;
  -moz-transition: transform 1s ease-in-out, opacity 1s ease;
  -ms-transition: transform 1s ease-in-out, opacity 1s ease;
  -o-transition: transform 1s ease-in-out, opacity 1s ease;
}
.elementor-element.fadeInRight.animated.animated-slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.elementor-element.fadeInRight.animated.animated-fast {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
.mb-0 {
  margin-bottom: 0px;
}
.mt-0 {
  margin-top: 0px;
}
.ml-0 {
  margin-left: 0px;
}
.mr-0 {
  margin-right: 0px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pt-0 {
  padding-top: 0px;
}
.pl-0 {
  padding-left: 0px;
}
.pr-0 {
  padding-right: 0px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mt-5 {
  margin-top: 5px;
}
.ml-5 {
  margin-left: 5px;
}
.mr-5 {
  margin-right: 5px;
}
.pb-5 {
  padding-bottom: 5px;
}
.pt-5 {
  padding-top: 5px;
}
.pl-5 {
  padding-left: 5px;
}
.pr-5 {
  padding-right: 5px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mt-8 {
  margin-top: 8px;
}
.ml-8 {
  margin-left: 8px;
}
.mr-8 {
  margin-right: 8px;
}
.pb-8 {
  padding-bottom: 8px;
}
.pt-8 {
  padding-top: 8px;
}
.pl-8 {
  padding-left: 8px;
}
.pr-8 {
  padding-right: 8px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mt-10 {
  margin-top: 10px;
}
.ml-10 {
  margin-left: 10px;
}
.mr-10 {
  margin-right: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pt-10 {
  padding-top: 10px;
}
.pl-10 {
  padding-left: 10px;
}
.pr-10 {
  padding-right: 10px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mt-12 {
  margin-top: 12px;
}
.ml-12 {
  margin-left: 12px;
}
.mr-12 {
  margin-right: 12px;
}
.pb-12 {
  padding-bottom: 12px;
}
.pt-12 {
  padding-top: 12px;
}
.pl-12 {
  padding-left: 12px;
}
.pr-12 {
  padding-right: 12px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mt-15 {
  margin-top: 15px;
}
.ml-15 {
  margin-left: 15px;
}
.mr-15 {
  margin-right: 15px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pt-15 {
  padding-top: 15px;
}
.pl-15 {
  padding-left: 15px;
}
.pr-15 {
  padding-right: 15px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mt-16 {
  margin-top: 16px;
}
.ml-16 {
  margin-left: 16px;
}
.mr-16 {
  margin-right: 16px;
}
.pb-16 {
  padding-bottom: 16px;
}
.pt-16 {
  padding-top: 16px;
}
.pl-16 {
  padding-left: 16px;
}
.pr-16 {
  padding-right: 16px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-20 {
  margin-top: 20px;
}
.ml-20 {
  margin-left: 20px;
}
.mr-20 {
  margin-right: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pt-20 {
  padding-top: 20px;
}
.pl-20 {
  padding-left: 20px;
}
.pr-20 {
  padding-right: 20px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mt-24 {
  margin-top: 24px;
}
.ml-24 {
  margin-left: 24px;
}
.mr-24 {
  margin-right: 24px;
}
.pb-24 {
  padding-bottom: 24px;
}
.pt-24 {
  padding-top: 24px;
}
.pl-24 {
  padding-left: 24px;
}
.pr-24 {
  padding-right: 24px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mt-25 {
  margin-top: 25px;
}
.ml-25 {
  margin-left: 25px;
}
.mr-25 {
  margin-right: 25px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pt-25 {
  padding-top: 25px;
}
.pl-25 {
  padding-left: 25px;
}
.pr-25 {
  padding-right: 25px;
}
.mb-26 {
  margin-bottom: 26px;
}
.mt-26 {
  margin-top: 26px;
}
.ml-26 {
  margin-left: 26px;
}
.mr-26 {
  margin-right: 26px;
}
.pb-26 {
  padding-bottom: 26px;
}
.pt-26 {
  padding-top: 26px;
}
.pl-26 {
  padding-left: 26px;
}
.pr-26 {
  padding-right: 26px;
}
.mb-28 {
  margin-bottom: 28px;
}
.mt-28 {
  margin-top: 28px;
}
.ml-28 {
  margin-left: 28px;
}
.mr-28 {
  margin-right: 28px;
}
.pb-28 {
  padding-bottom: 28px;
}
.pt-28 {
  padding-top: 28px;
}
.pl-28 {
  padding-left: 28px;
}
.pr-28 {
  padding-right: 28px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-30 {
  margin-top: 30px;
}
.ml-30 {
  margin-left: 30px;
}
.mr-30 {
  margin-right: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-30 {
  padding-top: 30px;
}
.pl-30 {
  padding-left: 30px;
}
.pr-30 {
  padding-right: 30px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mt-32 {
  margin-top: 32px;
}
.ml-32 {
  margin-left: 32px;
}
.mr-32 {
  margin-right: 32px;
}
.pb-32 {
  padding-bottom: 32px;
}
.pt-32 {
  padding-top: 32px;
}
.pl-32 {
  padding-left: 32px;
}
.pr-32 {
  padding-right: 32px;
}
.mb-36 {
  margin-bottom: 36px;
}
.mt-36 {
  margin-top: 36px;
}
.ml-36 {
  margin-left: 36px;
}
.mr-36 {
  margin-right: 36px;
}
.pb-36 {
  padding-bottom: 36px;
}
.pt-36 {
  padding-top: 36px;
}
.pl-36 {
  padding-left: 36px;
}
.pr-36 {
  padding-right: 36px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-40 {
  margin-top: 40px;
}
.ml-40 {
  margin-left: 40px;
}
.mr-40 {
  margin-right: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pt-40 {
  padding-top: 40px;
}
.pl-40 {
  padding-left: 40px;
}
.pr-40 {
  padding-right: 40px;
}
.mb-48 {
  margin-bottom: 48px;
}
.mt-48 {
  margin-top: 48px;
}
.ml-48 {
  margin-left: 48px;
}
.mr-48 {
  margin-right: 48px;
}
.pb-48 {
  padding-bottom: 48px;
}
.pt-48 {
  padding-top: 48px;
}
.pl-48 {
  padding-left: 48px;
}
.pr-48 {
  padding-right: 48px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mt-50 {
  margin-top: 50px;
}
.ml-50 {
  margin-left: 50px;
}
.mr-50 {
  margin-right: 50px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pt-50 {
  padding-top: 50px;
}
.pl-50 {
  padding-left: 50px;
}
.pr-50 {
  padding-right: 50px;
}
.mb-56 {
  margin-bottom: 56px;
}
.mt-56 {
  margin-top: 56px;
}
.ml-56 {
  margin-left: 56px;
}
.mr-56 {
  margin-right: 56px;
}
.pb-56 {
  padding-bottom: 56px;
}
.pt-56 {
  padding-top: 56px;
}
.pl-56 {
  padding-left: 56px;
}
.pr-56 {
  padding-right: 56px;
}
@media screen and (min-width: 0px) {
  .mb-xs-0 {
    margin-bottom: 0px;
  }
  .mt-xs-0 {
    margin-top: 0px;
  }
  .ml-xs-0 {
    margin-left: 0px;
  }
  .mr-xs-0 {
    margin-right: 0px;
  }
  .pb-xs-0 {
    padding-bottom: 0px;
  }
  .pt-xs-0 {
    padding-top: 0px;
  }
  .pl-xs-0 {
    padding-left: 0px;
  }
  .pr-xs-0 {
    padding-right: 0px;
  }
  .mb-xs-5 {
    margin-bottom: 5px;
  }
  .mt-xs-5 {
    margin-top: 5px;
  }
  .ml-xs-5 {
    margin-left: 5px;
  }
  .mr-xs-5 {
    margin-right: 5px;
  }
  .pb-xs-5 {
    padding-bottom: 5px;
  }
  .pt-xs-5 {
    padding-top: 5px;
  }
  .pl-xs-5 {
    padding-left: 5px;
  }
  .pr-xs-5 {
    padding-right: 5px;
  }
  .mb-xs-8 {
    margin-bottom: 8px;
  }
  .mt-xs-8 {
    margin-top: 8px;
  }
  .ml-xs-8 {
    margin-left: 8px;
  }
  .mr-xs-8 {
    margin-right: 8px;
  }
  .pb-xs-8 {
    padding-bottom: 8px;
  }
  .pt-xs-8 {
    padding-top: 8px;
  }
  .pl-xs-8 {
    padding-left: 8px;
  }
  .pr-xs-8 {
    padding-right: 8px;
  }
  .mb-xs-10 {
    margin-bottom: 10px;
  }
  .mt-xs-10 {
    margin-top: 10px;
  }
  .ml-xs-10 {
    margin-left: 10px;
  }
  .mr-xs-10 {
    margin-right: 10px;
  }
  .pb-xs-10 {
    padding-bottom: 10px;
  }
  .pt-xs-10 {
    padding-top: 10px;
  }
  .pl-xs-10 {
    padding-left: 10px;
  }
  .pr-xs-10 {
    padding-right: 10px;
  }
  .mb-xs-12 {
    margin-bottom: 12px;
  }
  .mt-xs-12 {
    margin-top: 12px;
  }
  .ml-xs-12 {
    margin-left: 12px;
  }
  .mr-xs-12 {
    margin-right: 12px;
  }
  .pb-xs-12 {
    padding-bottom: 12px;
  }
  .pt-xs-12 {
    padding-top: 12px;
  }
  .pl-xs-12 {
    padding-left: 12px;
  }
  .pr-xs-12 {
    padding-right: 12px;
  }
  .mb-xs-15 {
    margin-bottom: 15px;
  }
  .mt-xs-15 {
    margin-top: 15px;
  }
  .ml-xs-15 {
    margin-left: 15px;
  }
  .mr-xs-15 {
    margin-right: 15px;
  }
  .pb-xs-15 {
    padding-bottom: 15px;
  }
  .pt-xs-15 {
    padding-top: 15px;
  }
  .pl-xs-15 {
    padding-left: 15px;
  }
  .pr-xs-15 {
    padding-right: 15px;
  }
  .mb-xs-16 {
    margin-bottom: 16px;
  }
  .mt-xs-16 {
    margin-top: 16px;
  }
  .ml-xs-16 {
    margin-left: 16px;
  }
  .mr-xs-16 {
    margin-right: 16px;
  }
  .pb-xs-16 {
    padding-bottom: 16px;
  }
  .pt-xs-16 {
    padding-top: 16px;
  }
  .pl-xs-16 {
    padding-left: 16px;
  }
  .pr-xs-16 {
    padding-right: 16px;
  }
  .mb-xs-20 {
    margin-bottom: 20px;
  }
  .mt-xs-20 {
    margin-top: 20px;
  }
  .ml-xs-20 {
    margin-left: 20px;
  }
  .mr-xs-20 {
    margin-right: 20px;
  }
  .pb-xs-20 {
    padding-bottom: 20px;
  }
  .pt-xs-20 {
    padding-top: 20px;
  }
  .pl-xs-20 {
    padding-left: 20px;
  }
  .pr-xs-20 {
    padding-right: 20px;
  }
  .mb-xs-24 {
    margin-bottom: 24px;
  }
  .mt-xs-24 {
    margin-top: 24px;
  }
  .ml-xs-24 {
    margin-left: 24px;
  }
  .mr-xs-24 {
    margin-right: 24px;
  }
  .pb-xs-24 {
    padding-bottom: 24px;
  }
  .pt-xs-24 {
    padding-top: 24px;
  }
  .pl-xs-24 {
    padding-left: 24px;
  }
  .pr-xs-24 {
    padding-right: 24px;
  }
  .mb-xs-25 {
    margin-bottom: 25px;
  }
  .mt-xs-25 {
    margin-top: 25px;
  }
  .ml-xs-25 {
    margin-left: 25px;
  }
  .mr-xs-25 {
    margin-right: 25px;
  }
  .pb-xs-25 {
    padding-bottom: 25px;
  }
  .pt-xs-25 {
    padding-top: 25px;
  }
  .pl-xs-25 {
    padding-left: 25px;
  }
  .pr-xs-25 {
    padding-right: 25px;
  }
  .mb-xs-26 {
    margin-bottom: 26px;
  }
  .mt-xs-26 {
    margin-top: 26px;
  }
  .ml-xs-26 {
    margin-left: 26px;
  }
  .mr-xs-26 {
    margin-right: 26px;
  }
  .pb-xs-26 {
    padding-bottom: 26px;
  }
  .pt-xs-26 {
    padding-top: 26px;
  }
  .pl-xs-26 {
    padding-left: 26px;
  }
  .pr-xs-26 {
    padding-right: 26px;
  }
  .mb-xs-28 {
    margin-bottom: 28px;
  }
  .mt-xs-28 {
    margin-top: 28px;
  }
  .ml-xs-28 {
    margin-left: 28px;
  }
  .mr-xs-28 {
    margin-right: 28px;
  }
  .pb-xs-28 {
    padding-bottom: 28px;
  }
  .pt-xs-28 {
    padding-top: 28px;
  }
  .pl-xs-28 {
    padding-left: 28px;
  }
  .pr-xs-28 {
    padding-right: 28px;
  }
  .mb-xs-30 {
    margin-bottom: 30px;
  }
  .mt-xs-30 {
    margin-top: 30px;
  }
  .ml-xs-30 {
    margin-left: 30px;
  }
  .mr-xs-30 {
    margin-right: 30px;
  }
  .pb-xs-30 {
    padding-bottom: 30px;
  }
  .pt-xs-30 {
    padding-top: 30px;
  }
  .pl-xs-30 {
    padding-left: 30px;
  }
  .pr-xs-30 {
    padding-right: 30px;
  }
  .mb-xs-32 {
    margin-bottom: 32px;
  }
  .mt-xs-32 {
    margin-top: 32px;
  }
  .ml-xs-32 {
    margin-left: 32px;
  }
  .mr-xs-32 {
    margin-right: 32px;
  }
  .pb-xs-32 {
    padding-bottom: 32px;
  }
  .pt-xs-32 {
    padding-top: 32px;
  }
  .pl-xs-32 {
    padding-left: 32px;
  }
  .pr-xs-32 {
    padding-right: 32px;
  }
  .mb-xs-36 {
    margin-bottom: 36px;
  }
  .mt-xs-36 {
    margin-top: 36px;
  }
  .ml-xs-36 {
    margin-left: 36px;
  }
  .mr-xs-36 {
    margin-right: 36px;
  }
  .pb-xs-36 {
    padding-bottom: 36px;
  }
  .pt-xs-36 {
    padding-top: 36px;
  }
  .pl-xs-36 {
    padding-left: 36px;
  }
  .pr-xs-36 {
    padding-right: 36px;
  }
  .mb-xs-40 {
    margin-bottom: 40px;
  }
  .mt-xs-40 {
    margin-top: 40px;
  }
  .ml-xs-40 {
    margin-left: 40px;
  }
  .mr-xs-40 {
    margin-right: 40px;
  }
  .pb-xs-40 {
    padding-bottom: 40px;
  }
  .pt-xs-40 {
    padding-top: 40px;
  }
  .pl-xs-40 {
    padding-left: 40px;
  }
  .pr-xs-40 {
    padding-right: 40px;
  }
  .mb-xs-48 {
    margin-bottom: 48px;
  }
  .mt-xs-48 {
    margin-top: 48px;
  }
  .ml-xs-48 {
    margin-left: 48px;
  }
  .mr-xs-48 {
    margin-right: 48px;
  }
  .pb-xs-48 {
    padding-bottom: 48px;
  }
  .pt-xs-48 {
    padding-top: 48px;
  }
  .pl-xs-48 {
    padding-left: 48px;
  }
  .pr-xs-48 {
    padding-right: 48px;
  }
  .mb-xs-50 {
    margin-bottom: 50px;
  }
  .mt-xs-50 {
    margin-top: 50px;
  }
  .ml-xs-50 {
    margin-left: 50px;
  }
  .mr-xs-50 {
    margin-right: 50px;
  }
  .pb-xs-50 {
    padding-bottom: 50px;
  }
  .pt-xs-50 {
    padding-top: 50px;
  }
  .pl-xs-50 {
    padding-left: 50px;
  }
  .pr-xs-50 {
    padding-right: 50px;
  }
  .mb-xs-56 {
    margin-bottom: 56px;
  }
  .mt-xs-56 {
    margin-top: 56px;
  }
  .ml-xs-56 {
    margin-left: 56px;
  }
  .mr-xs-56 {
    margin-right: 56px;
  }
  .pb-xs-56 {
    padding-bottom: 56px;
  }
  .pt-xs-56 {
    padding-top: 56px;
  }
  .pl-xs-56 {
    padding-left: 56px;
  }
  .pr-xs-56 {
    padding-right: 56px;
  }
}
@media screen and (min-width: 576px) {
  .mb-sm-0 {
    margin-bottom: 0px;
  }
  .mt-sm-0 {
    margin-top: 0px;
  }
  .ml-sm-0 {
    margin-left: 0px;
  }
  .mr-sm-0 {
    margin-right: 0px;
  }
  .pb-sm-0 {
    padding-bottom: 0px;
  }
  .pt-sm-0 {
    padding-top: 0px;
  }
  .pl-sm-0 {
    padding-left: 0px;
  }
  .pr-sm-0 {
    padding-right: 0px;
  }
  .mb-sm-5 {
    margin-bottom: 5px;
  }
  .mt-sm-5 {
    margin-top: 5px;
  }
  .ml-sm-5 {
    margin-left: 5px;
  }
  .mr-sm-5 {
    margin-right: 5px;
  }
  .pb-sm-5 {
    padding-bottom: 5px;
  }
  .pt-sm-5 {
    padding-top: 5px;
  }
  .pl-sm-5 {
    padding-left: 5px;
  }
  .pr-sm-5 {
    padding-right: 5px;
  }
  .mb-sm-8 {
    margin-bottom: 8px;
  }
  .mt-sm-8 {
    margin-top: 8px;
  }
  .ml-sm-8 {
    margin-left: 8px;
  }
  .mr-sm-8 {
    margin-right: 8px;
  }
  .pb-sm-8 {
    padding-bottom: 8px;
  }
  .pt-sm-8 {
    padding-top: 8px;
  }
  .pl-sm-8 {
    padding-left: 8px;
  }
  .pr-sm-8 {
    padding-right: 8px;
  }
  .mb-sm-10 {
    margin-bottom: 10px;
  }
  .mt-sm-10 {
    margin-top: 10px;
  }
  .ml-sm-10 {
    margin-left: 10px;
  }
  .mr-sm-10 {
    margin-right: 10px;
  }
  .pb-sm-10 {
    padding-bottom: 10px;
  }
  .pt-sm-10 {
    padding-top: 10px;
  }
  .pl-sm-10 {
    padding-left: 10px;
  }
  .pr-sm-10 {
    padding-right: 10px;
  }
  .mb-sm-12 {
    margin-bottom: 12px;
  }
  .mt-sm-12 {
    margin-top: 12px;
  }
  .ml-sm-12 {
    margin-left: 12px;
  }
  .mr-sm-12 {
    margin-right: 12px;
  }
  .pb-sm-12 {
    padding-bottom: 12px;
  }
  .pt-sm-12 {
    padding-top: 12px;
  }
  .pl-sm-12 {
    padding-left: 12px;
  }
  .pr-sm-12 {
    padding-right: 12px;
  }
  .mb-sm-15 {
    margin-bottom: 15px;
  }
  .mt-sm-15 {
    margin-top: 15px;
  }
  .ml-sm-15 {
    margin-left: 15px;
  }
  .mr-sm-15 {
    margin-right: 15px;
  }
  .pb-sm-15 {
    padding-bottom: 15px;
  }
  .pt-sm-15 {
    padding-top: 15px;
  }
  .pl-sm-15 {
    padding-left: 15px;
  }
  .pr-sm-15 {
    padding-right: 15px;
  }
  .mb-sm-16 {
    margin-bottom: 16px;
  }
  .mt-sm-16 {
    margin-top: 16px;
  }
  .ml-sm-16 {
    margin-left: 16px;
  }
  .mr-sm-16 {
    margin-right: 16px;
  }
  .pb-sm-16 {
    padding-bottom: 16px;
  }
  .pt-sm-16 {
    padding-top: 16px;
  }
  .pl-sm-16 {
    padding-left: 16px;
  }
  .pr-sm-16 {
    padding-right: 16px;
  }
  .mb-sm-20 {
    margin-bottom: 20px;
  }
  .mt-sm-20 {
    margin-top: 20px;
  }
  .ml-sm-20 {
    margin-left: 20px;
  }
  .mr-sm-20 {
    margin-right: 20px;
  }
  .pb-sm-20 {
    padding-bottom: 20px;
  }
  .pt-sm-20 {
    padding-top: 20px;
  }
  .pl-sm-20 {
    padding-left: 20px;
  }
  .pr-sm-20 {
    padding-right: 20px;
  }
  .mb-sm-24 {
    margin-bottom: 24px;
  }
  .mt-sm-24 {
    margin-top: 24px;
  }
  .ml-sm-24 {
    margin-left: 24px;
  }
  .mr-sm-24 {
    margin-right: 24px;
  }
  .pb-sm-24 {
    padding-bottom: 24px;
  }
  .pt-sm-24 {
    padding-top: 24px;
  }
  .pl-sm-24 {
    padding-left: 24px;
  }
  .pr-sm-24 {
    padding-right: 24px;
  }
  .mb-sm-25 {
    margin-bottom: 25px;
  }
  .mt-sm-25 {
    margin-top: 25px;
  }
  .ml-sm-25 {
    margin-left: 25px;
  }
  .mr-sm-25 {
    margin-right: 25px;
  }
  .pb-sm-25 {
    padding-bottom: 25px;
  }
  .pt-sm-25 {
    padding-top: 25px;
  }
  .pl-sm-25 {
    padding-left: 25px;
  }
  .pr-sm-25 {
    padding-right: 25px;
  }
  .mb-sm-26 {
    margin-bottom: 26px;
  }
  .mt-sm-26 {
    margin-top: 26px;
  }
  .ml-sm-26 {
    margin-left: 26px;
  }
  .mr-sm-26 {
    margin-right: 26px;
  }
  .pb-sm-26 {
    padding-bottom: 26px;
  }
  .pt-sm-26 {
    padding-top: 26px;
  }
  .pl-sm-26 {
    padding-left: 26px;
  }
  .pr-sm-26 {
    padding-right: 26px;
  }
  .mb-sm-28 {
    margin-bottom: 28px;
  }
  .mt-sm-28 {
    margin-top: 28px;
  }
  .ml-sm-28 {
    margin-left: 28px;
  }
  .mr-sm-28 {
    margin-right: 28px;
  }
  .pb-sm-28 {
    padding-bottom: 28px;
  }
  .pt-sm-28 {
    padding-top: 28px;
  }
  .pl-sm-28 {
    padding-left: 28px;
  }
  .pr-sm-28 {
    padding-right: 28px;
  }
  .mb-sm-30 {
    margin-bottom: 30px;
  }
  .mt-sm-30 {
    margin-top: 30px;
  }
  .ml-sm-30 {
    margin-left: 30px;
  }
  .mr-sm-30 {
    margin-right: 30px;
  }
  .pb-sm-30 {
    padding-bottom: 30px;
  }
  .pt-sm-30 {
    padding-top: 30px;
  }
  .pl-sm-30 {
    padding-left: 30px;
  }
  .pr-sm-30 {
    padding-right: 30px;
  }
  .mb-sm-32 {
    margin-bottom: 32px;
  }
  .mt-sm-32 {
    margin-top: 32px;
  }
  .ml-sm-32 {
    margin-left: 32px;
  }
  .mr-sm-32 {
    margin-right: 32px;
  }
  .pb-sm-32 {
    padding-bottom: 32px;
  }
  .pt-sm-32 {
    padding-top: 32px;
  }
  .pl-sm-32 {
    padding-left: 32px;
  }
  .pr-sm-32 {
    padding-right: 32px;
  }
  .mb-sm-36 {
    margin-bottom: 36px;
  }
  .mt-sm-36 {
    margin-top: 36px;
  }
  .ml-sm-36 {
    margin-left: 36px;
  }
  .mr-sm-36 {
    margin-right: 36px;
  }
  .pb-sm-36 {
    padding-bottom: 36px;
  }
  .pt-sm-36 {
    padding-top: 36px;
  }
  .pl-sm-36 {
    padding-left: 36px;
  }
  .pr-sm-36 {
    padding-right: 36px;
  }
  .mb-sm-40 {
    margin-bottom: 40px;
  }
  .mt-sm-40 {
    margin-top: 40px;
  }
  .ml-sm-40 {
    margin-left: 40px;
  }
  .mr-sm-40 {
    margin-right: 40px;
  }
  .pb-sm-40 {
    padding-bottom: 40px;
  }
  .pt-sm-40 {
    padding-top: 40px;
  }
  .pl-sm-40 {
    padding-left: 40px;
  }
  .pr-sm-40 {
    padding-right: 40px;
  }
  .mb-sm-48 {
    margin-bottom: 48px;
  }
  .mt-sm-48 {
    margin-top: 48px;
  }
  .ml-sm-48 {
    margin-left: 48px;
  }
  .mr-sm-48 {
    margin-right: 48px;
  }
  .pb-sm-48 {
    padding-bottom: 48px;
  }
  .pt-sm-48 {
    padding-top: 48px;
  }
  .pl-sm-48 {
    padding-left: 48px;
  }
  .pr-sm-48 {
    padding-right: 48px;
  }
  .mb-sm-50 {
    margin-bottom: 50px;
  }
  .mt-sm-50 {
    margin-top: 50px;
  }
  .ml-sm-50 {
    margin-left: 50px;
  }
  .mr-sm-50 {
    margin-right: 50px;
  }
  .pb-sm-50 {
    padding-bottom: 50px;
  }
  .pt-sm-50 {
    padding-top: 50px;
  }
  .pl-sm-50 {
    padding-left: 50px;
  }
  .pr-sm-50 {
    padding-right: 50px;
  }
  .mb-sm-56 {
    margin-bottom: 56px;
  }
  .mt-sm-56 {
    margin-top: 56px;
  }
  .ml-sm-56 {
    margin-left: 56px;
  }
  .mr-sm-56 {
    margin-right: 56px;
  }
  .pb-sm-56 {
    padding-bottom: 56px;
  }
  .pt-sm-56 {
    padding-top: 56px;
  }
  .pl-sm-56 {
    padding-left: 56px;
  }
  .pr-sm-56 {
    padding-right: 56px;
  }
}
@media screen and (min-width: 768px) {
  .mb-md-0 {
    margin-bottom: 0px;
  }
  .mt-md-0 {
    margin-top: 0px;
  }
  .ml-md-0 {
    margin-left: 0px;
  }
  .mr-md-0 {
    margin-right: 0px;
  }
  .pb-md-0 {
    padding-bottom: 0px;
  }
  .pt-md-0 {
    padding-top: 0px;
  }
  .pl-md-0 {
    padding-left: 0px;
  }
  .pr-md-0 {
    padding-right: 0px;
  }
  .mb-md-5 {
    margin-bottom: 5px;
  }
  .mt-md-5 {
    margin-top: 5px;
  }
  .ml-md-5 {
    margin-left: 5px;
  }
  .mr-md-5 {
    margin-right: 5px;
  }
  .pb-md-5 {
    padding-bottom: 5px;
  }
  .pt-md-5 {
    padding-top: 5px;
  }
  .pl-md-5 {
    padding-left: 5px;
  }
  .pr-md-5 {
    padding-right: 5px;
  }
  .mb-md-8 {
    margin-bottom: 8px;
  }
  .mt-md-8 {
    margin-top: 8px;
  }
  .ml-md-8 {
    margin-left: 8px;
  }
  .mr-md-8 {
    margin-right: 8px;
  }
  .pb-md-8 {
    padding-bottom: 8px;
  }
  .pt-md-8 {
    padding-top: 8px;
  }
  .pl-md-8 {
    padding-left: 8px;
  }
  .pr-md-8 {
    padding-right: 8px;
  }
  .mb-md-10 {
    margin-bottom: 10px;
  }
  .mt-md-10 {
    margin-top: 10px;
  }
  .ml-md-10 {
    margin-left: 10px;
  }
  .mr-md-10 {
    margin-right: 10px;
  }
  .pb-md-10 {
    padding-bottom: 10px;
  }
  .pt-md-10 {
    padding-top: 10px;
  }
  .pl-md-10 {
    padding-left: 10px;
  }
  .pr-md-10 {
    padding-right: 10px;
  }
  .mb-md-12 {
    margin-bottom: 12px;
  }
  .mt-md-12 {
    margin-top: 12px;
  }
  .ml-md-12 {
    margin-left: 12px;
  }
  .mr-md-12 {
    margin-right: 12px;
  }
  .pb-md-12 {
    padding-bottom: 12px;
  }
  .pt-md-12 {
    padding-top: 12px;
  }
  .pl-md-12 {
    padding-left: 12px;
  }
  .pr-md-12 {
    padding-right: 12px;
  }
  .mb-md-15 {
    margin-bottom: 15px;
  }
  .mt-md-15 {
    margin-top: 15px;
  }
  .ml-md-15 {
    margin-left: 15px;
  }
  .mr-md-15 {
    margin-right: 15px;
  }
  .pb-md-15 {
    padding-bottom: 15px;
  }
  .pt-md-15 {
    padding-top: 15px;
  }
  .pl-md-15 {
    padding-left: 15px;
  }
  .pr-md-15 {
    padding-right: 15px;
  }
  .mb-md-16 {
    margin-bottom: 16px;
  }
  .mt-md-16 {
    margin-top: 16px;
  }
  .ml-md-16 {
    margin-left: 16px;
  }
  .mr-md-16 {
    margin-right: 16px;
  }
  .pb-md-16 {
    padding-bottom: 16px;
  }
  .pt-md-16 {
    padding-top: 16px;
  }
  .pl-md-16 {
    padding-left: 16px;
  }
  .pr-md-16 {
    padding-right: 16px;
  }
  .mb-md-20 {
    margin-bottom: 20px;
  }
  .mt-md-20 {
    margin-top: 20px;
  }
  .ml-md-20 {
    margin-left: 20px;
  }
  .mr-md-20 {
    margin-right: 20px;
  }
  .pb-md-20 {
    padding-bottom: 20px;
  }
  .pt-md-20 {
    padding-top: 20px;
  }
  .pl-md-20 {
    padding-left: 20px;
  }
  .pr-md-20 {
    padding-right: 20px;
  }
  .mb-md-24 {
    margin-bottom: 24px;
  }
  .mt-md-24 {
    margin-top: 24px;
  }
  .ml-md-24 {
    margin-left: 24px;
  }
  .mr-md-24 {
    margin-right: 24px;
  }
  .pb-md-24 {
    padding-bottom: 24px;
  }
  .pt-md-24 {
    padding-top: 24px;
  }
  .pl-md-24 {
    padding-left: 24px;
  }
  .pr-md-24 {
    padding-right: 24px;
  }
  .mb-md-25 {
    margin-bottom: 25px;
  }
  .mt-md-25 {
    margin-top: 25px;
  }
  .ml-md-25 {
    margin-left: 25px;
  }
  .mr-md-25 {
    margin-right: 25px;
  }
  .pb-md-25 {
    padding-bottom: 25px;
  }
  .pt-md-25 {
    padding-top: 25px;
  }
  .pl-md-25 {
    padding-left: 25px;
  }
  .pr-md-25 {
    padding-right: 25px;
  }
  .mb-md-26 {
    margin-bottom: 26px;
  }
  .mt-md-26 {
    margin-top: 26px;
  }
  .ml-md-26 {
    margin-left: 26px;
  }
  .mr-md-26 {
    margin-right: 26px;
  }
  .pb-md-26 {
    padding-bottom: 26px;
  }
  .pt-md-26 {
    padding-top: 26px;
  }
  .pl-md-26 {
    padding-left: 26px;
  }
  .pr-md-26 {
    padding-right: 26px;
  }
  .mb-md-28 {
    margin-bottom: 28px;
  }
  .mt-md-28 {
    margin-top: 28px;
  }
  .ml-md-28 {
    margin-left: 28px;
  }
  .mr-md-28 {
    margin-right: 28px;
  }
  .pb-md-28 {
    padding-bottom: 28px;
  }
  .pt-md-28 {
    padding-top: 28px;
  }
  .pl-md-28 {
    padding-left: 28px;
  }
  .pr-md-28 {
    padding-right: 28px;
  }
  .mb-md-30 {
    margin-bottom: 30px;
  }
  .mt-md-30 {
    margin-top: 30px;
  }
  .ml-md-30 {
    margin-left: 30px;
  }
  .mr-md-30 {
    margin-right: 30px;
  }
  .pb-md-30 {
    padding-bottom: 30px;
  }
  .pt-md-30 {
    padding-top: 30px;
  }
  .pl-md-30 {
    padding-left: 30px;
  }
  .pr-md-30 {
    padding-right: 30px;
  }
  .mb-md-32 {
    margin-bottom: 32px;
  }
  .mt-md-32 {
    margin-top: 32px;
  }
  .ml-md-32 {
    margin-left: 32px;
  }
  .mr-md-32 {
    margin-right: 32px;
  }
  .pb-md-32 {
    padding-bottom: 32px;
  }
  .pt-md-32 {
    padding-top: 32px;
  }
  .pl-md-32 {
    padding-left: 32px;
  }
  .pr-md-32 {
    padding-right: 32px;
  }
  .mb-md-36 {
    margin-bottom: 36px;
  }
  .mt-md-36 {
    margin-top: 36px;
  }
  .ml-md-36 {
    margin-left: 36px;
  }
  .mr-md-36 {
    margin-right: 36px;
  }
  .pb-md-36 {
    padding-bottom: 36px;
  }
  .pt-md-36 {
    padding-top: 36px;
  }
  .pl-md-36 {
    padding-left: 36px;
  }
  .pr-md-36 {
    padding-right: 36px;
  }
  .mb-md-40 {
    margin-bottom: 40px;
  }
  .mt-md-40 {
    margin-top: 40px;
  }
  .ml-md-40 {
    margin-left: 40px;
  }
  .mr-md-40 {
    margin-right: 40px;
  }
  .pb-md-40 {
    padding-bottom: 40px;
  }
  .pt-md-40 {
    padding-top: 40px;
  }
  .pl-md-40 {
    padding-left: 40px;
  }
  .pr-md-40 {
    padding-right: 40px;
  }
  .mb-md-48 {
    margin-bottom: 48px;
  }
  .mt-md-48 {
    margin-top: 48px;
  }
  .ml-md-48 {
    margin-left: 48px;
  }
  .mr-md-48 {
    margin-right: 48px;
  }
  .pb-md-48 {
    padding-bottom: 48px;
  }
  .pt-md-48 {
    padding-top: 48px;
  }
  .pl-md-48 {
    padding-left: 48px;
  }
  .pr-md-48 {
    padding-right: 48px;
  }
  .mb-md-50 {
    margin-bottom: 50px;
  }
  .mt-md-50 {
    margin-top: 50px;
  }
  .ml-md-50 {
    margin-left: 50px;
  }
  .mr-md-50 {
    margin-right: 50px;
  }
  .pb-md-50 {
    padding-bottom: 50px;
  }
  .pt-md-50 {
    padding-top: 50px;
  }
  .pl-md-50 {
    padding-left: 50px;
  }
  .pr-md-50 {
    padding-right: 50px;
  }
  .mb-md-56 {
    margin-bottom: 56px;
  }
  .mt-md-56 {
    margin-top: 56px;
  }
  .ml-md-56 {
    margin-left: 56px;
  }
  .mr-md-56 {
    margin-right: 56px;
  }
  .pb-md-56 {
    padding-bottom: 56px;
  }
  .pt-md-56 {
    padding-top: 56px;
  }
  .pl-md-56 {
    padding-left: 56px;
  }
  .pr-md-56 {
    padding-right: 56px;
  }
}
@media screen and (min-width: 1025px) {
  .mb-lg-0 {
    margin-bottom: 0px;
  }
  .mt-lg-0 {
    margin-top: 0px;
  }
  .ml-lg-0 {
    margin-left: 0px;
  }
  .mr-lg-0 {
    margin-right: 0px;
  }
  .pb-lg-0 {
    padding-bottom: 0px;
  }
  .pt-lg-0 {
    padding-top: 0px;
  }
  .pl-lg-0 {
    padding-left: 0px;
  }
  .pr-lg-0 {
    padding-right: 0px;
  }
  .mb-lg-5 {
    margin-bottom: 5px;
  }
  .mt-lg-5 {
    margin-top: 5px;
  }
  .ml-lg-5 {
    margin-left: 5px;
  }
  .mr-lg-5 {
    margin-right: 5px;
  }
  .pb-lg-5 {
    padding-bottom: 5px;
  }
  .pt-lg-5 {
    padding-top: 5px;
  }
  .pl-lg-5 {
    padding-left: 5px;
  }
  .pr-lg-5 {
    padding-right: 5px;
  }
  .mb-lg-8 {
    margin-bottom: 8px;
  }
  .mt-lg-8 {
    margin-top: 8px;
  }
  .ml-lg-8 {
    margin-left: 8px;
  }
  .mr-lg-8 {
    margin-right: 8px;
  }
  .pb-lg-8 {
    padding-bottom: 8px;
  }
  .pt-lg-8 {
    padding-top: 8px;
  }
  .pl-lg-8 {
    padding-left: 8px;
  }
  .pr-lg-8 {
    padding-right: 8px;
  }
  .mb-lg-10 {
    margin-bottom: 10px;
  }
  .mt-lg-10 {
    margin-top: 10px;
  }
  .ml-lg-10 {
    margin-left: 10px;
  }
  .mr-lg-10 {
    margin-right: 10px;
  }
  .pb-lg-10 {
    padding-bottom: 10px;
  }
  .pt-lg-10 {
    padding-top: 10px;
  }
  .pl-lg-10 {
    padding-left: 10px;
  }
  .pr-lg-10 {
    padding-right: 10px;
  }
  .mb-lg-12 {
    margin-bottom: 12px;
  }
  .mt-lg-12 {
    margin-top: 12px;
  }
  .ml-lg-12 {
    margin-left: 12px;
  }
  .mr-lg-12 {
    margin-right: 12px;
  }
  .pb-lg-12 {
    padding-bottom: 12px;
  }
  .pt-lg-12 {
    padding-top: 12px;
  }
  .pl-lg-12 {
    padding-left: 12px;
  }
  .pr-lg-12 {
    padding-right: 12px;
  }
  .mb-lg-15 {
    margin-bottom: 15px;
  }
  .mt-lg-15 {
    margin-top: 15px;
  }
  .ml-lg-15 {
    margin-left: 15px;
  }
  .mr-lg-15 {
    margin-right: 15px;
  }
  .pb-lg-15 {
    padding-bottom: 15px;
  }
  .pt-lg-15 {
    padding-top: 15px;
  }
  .pl-lg-15 {
    padding-left: 15px;
  }
  .pr-lg-15 {
    padding-right: 15px;
  }
  .mb-lg-16 {
    margin-bottom: 16px;
  }
  .mt-lg-16 {
    margin-top: 16px;
  }
  .ml-lg-16 {
    margin-left: 16px;
  }
  .mr-lg-16 {
    margin-right: 16px;
  }
  .pb-lg-16 {
    padding-bottom: 16px;
  }
  .pt-lg-16 {
    padding-top: 16px;
  }
  .pl-lg-16 {
    padding-left: 16px;
  }
  .pr-lg-16 {
    padding-right: 16px;
  }
  .mb-lg-20 {
    margin-bottom: 20px;
  }
  .mt-lg-20 {
    margin-top: 20px;
  }
  .ml-lg-20 {
    margin-left: 20px;
  }
  .mr-lg-20 {
    margin-right: 20px;
  }
  .pb-lg-20 {
    padding-bottom: 20px;
  }
  .pt-lg-20 {
    padding-top: 20px;
  }
  .pl-lg-20 {
    padding-left: 20px;
  }
  .pr-lg-20 {
    padding-right: 20px;
  }
  .mb-lg-24 {
    margin-bottom: 24px;
  }
  .mt-lg-24 {
    margin-top: 24px;
  }
  .ml-lg-24 {
    margin-left: 24px;
  }
  .mr-lg-24 {
    margin-right: 24px;
  }
  .pb-lg-24 {
    padding-bottom: 24px;
  }
  .pt-lg-24 {
    padding-top: 24px;
  }
  .pl-lg-24 {
    padding-left: 24px;
  }
  .pr-lg-24 {
    padding-right: 24px;
  }
  .mb-lg-25 {
    margin-bottom: 25px;
  }
  .mt-lg-25 {
    margin-top: 25px;
  }
  .ml-lg-25 {
    margin-left: 25px;
  }
  .mr-lg-25 {
    margin-right: 25px;
  }
  .pb-lg-25 {
    padding-bottom: 25px;
  }
  .pt-lg-25 {
    padding-top: 25px;
  }
  .pl-lg-25 {
    padding-left: 25px;
  }
  .pr-lg-25 {
    padding-right: 25px;
  }
  .mb-lg-26 {
    margin-bottom: 26px;
  }
  .mt-lg-26 {
    margin-top: 26px;
  }
  .ml-lg-26 {
    margin-left: 26px;
  }
  .mr-lg-26 {
    margin-right: 26px;
  }
  .pb-lg-26 {
    padding-bottom: 26px;
  }
  .pt-lg-26 {
    padding-top: 26px;
  }
  .pl-lg-26 {
    padding-left: 26px;
  }
  .pr-lg-26 {
    padding-right: 26px;
  }
  .mb-lg-28 {
    margin-bottom: 28px;
  }
  .mt-lg-28 {
    margin-top: 28px;
  }
  .ml-lg-28 {
    margin-left: 28px;
  }
  .mr-lg-28 {
    margin-right: 28px;
  }
  .pb-lg-28 {
    padding-bottom: 28px;
  }
  .pt-lg-28 {
    padding-top: 28px;
  }
  .pl-lg-28 {
    padding-left: 28px;
  }
  .pr-lg-28 {
    padding-right: 28px;
  }
  .mb-lg-30 {
    margin-bottom: 30px;
  }
  .mt-lg-30 {
    margin-top: 30px;
  }
  .ml-lg-30 {
    margin-left: 30px;
  }
  .mr-lg-30 {
    margin-right: 30px;
  }
  .pb-lg-30 {
    padding-bottom: 30px;
  }
  .pt-lg-30 {
    padding-top: 30px;
  }
  .pl-lg-30 {
    padding-left: 30px;
  }
  .pr-lg-30 {
    padding-right: 30px;
  }
  .mb-lg-32 {
    margin-bottom: 32px;
  }
  .mt-lg-32 {
    margin-top: 32px;
  }
  .ml-lg-32 {
    margin-left: 32px;
  }
  .mr-lg-32 {
    margin-right: 32px;
  }
  .pb-lg-32 {
    padding-bottom: 32px;
  }
  .pt-lg-32 {
    padding-top: 32px;
  }
  .pl-lg-32 {
    padding-left: 32px;
  }
  .pr-lg-32 {
    padding-right: 32px;
  }
  .mb-lg-36 {
    margin-bottom: 36px;
  }
  .mt-lg-36 {
    margin-top: 36px;
  }
  .ml-lg-36 {
    margin-left: 36px;
  }
  .mr-lg-36 {
    margin-right: 36px;
  }
  .pb-lg-36 {
    padding-bottom: 36px;
  }
  .pt-lg-36 {
    padding-top: 36px;
  }
  .pl-lg-36 {
    padding-left: 36px;
  }
  .pr-lg-36 {
    padding-right: 36px;
  }
  .mb-lg-40 {
    margin-bottom: 40px;
  }
  .mt-lg-40 {
    margin-top: 40px;
  }
  .ml-lg-40 {
    margin-left: 40px;
  }
  .mr-lg-40 {
    margin-right: 40px;
  }
  .pb-lg-40 {
    padding-bottom: 40px;
  }
  .pt-lg-40 {
    padding-top: 40px;
  }
  .pl-lg-40 {
    padding-left: 40px;
  }
  .pr-lg-40 {
    padding-right: 40px;
  }
  .mb-lg-48 {
    margin-bottom: 48px;
  }
  .mt-lg-48 {
    margin-top: 48px;
  }
  .ml-lg-48 {
    margin-left: 48px;
  }
  .mr-lg-48 {
    margin-right: 48px;
  }
  .pb-lg-48 {
    padding-bottom: 48px;
  }
  .pt-lg-48 {
    padding-top: 48px;
  }
  .pl-lg-48 {
    padding-left: 48px;
  }
  .pr-lg-48 {
    padding-right: 48px;
  }
  .mb-lg-50 {
    margin-bottom: 50px;
  }
  .mt-lg-50 {
    margin-top: 50px;
  }
  .ml-lg-50 {
    margin-left: 50px;
  }
  .mr-lg-50 {
    margin-right: 50px;
  }
  .pb-lg-50 {
    padding-bottom: 50px;
  }
  .pt-lg-50 {
    padding-top: 50px;
  }
  .pl-lg-50 {
    padding-left: 50px;
  }
  .pr-lg-50 {
    padding-right: 50px;
  }
  .mb-lg-56 {
    margin-bottom: 56px;
  }
  .mt-lg-56 {
    margin-top: 56px;
  }
  .ml-lg-56 {
    margin-left: 56px;
  }
  .mr-lg-56 {
    margin-right: 56px;
  }
  .pb-lg-56 {
    padding-bottom: 56px;
  }
  .pt-lg-56 {
    padding-top: 56px;
  }
  .pl-lg-56 {
    padding-left: 56px;
  }
  .pr-lg-56 {
    padding-right: 56px;
  }
}
@media screen and (min-width: 1280px) {
  .mb-xl-0 {
    margin-bottom: 0px;
  }
  .mt-xl-0 {
    margin-top: 0px;
  }
  .ml-xl-0 {
    margin-left: 0px;
  }
  .mr-xl-0 {
    margin-right: 0px;
  }
  .pb-xl-0 {
    padding-bottom: 0px;
  }
  .pt-xl-0 {
    padding-top: 0px;
  }
  .pl-xl-0 {
    padding-left: 0px;
  }
  .pr-xl-0 {
    padding-right: 0px;
  }
  .mb-xl-5 {
    margin-bottom: 5px;
  }
  .mt-xl-5 {
    margin-top: 5px;
  }
  .ml-xl-5 {
    margin-left: 5px;
  }
  .mr-xl-5 {
    margin-right: 5px;
  }
  .pb-xl-5 {
    padding-bottom: 5px;
  }
  .pt-xl-5 {
    padding-top: 5px;
  }
  .pl-xl-5 {
    padding-left: 5px;
  }
  .pr-xl-5 {
    padding-right: 5px;
  }
  .mb-xl-8 {
    margin-bottom: 8px;
  }
  .mt-xl-8 {
    margin-top: 8px;
  }
  .ml-xl-8 {
    margin-left: 8px;
  }
  .mr-xl-8 {
    margin-right: 8px;
  }
  .pb-xl-8 {
    padding-bottom: 8px;
  }
  .pt-xl-8 {
    padding-top: 8px;
  }
  .pl-xl-8 {
    padding-left: 8px;
  }
  .pr-xl-8 {
    padding-right: 8px;
  }
  .mb-xl-10 {
    margin-bottom: 10px;
  }
  .mt-xl-10 {
    margin-top: 10px;
  }
  .ml-xl-10 {
    margin-left: 10px;
  }
  .mr-xl-10 {
    margin-right: 10px;
  }
  .pb-xl-10 {
    padding-bottom: 10px;
  }
  .pt-xl-10 {
    padding-top: 10px;
  }
  .pl-xl-10 {
    padding-left: 10px;
  }
  .pr-xl-10 {
    padding-right: 10px;
  }
  .mb-xl-12 {
    margin-bottom: 12px;
  }
  .mt-xl-12 {
    margin-top: 12px;
  }
  .ml-xl-12 {
    margin-left: 12px;
  }
  .mr-xl-12 {
    margin-right: 12px;
  }
  .pb-xl-12 {
    padding-bottom: 12px;
  }
  .pt-xl-12 {
    padding-top: 12px;
  }
  .pl-xl-12 {
    padding-left: 12px;
  }
  .pr-xl-12 {
    padding-right: 12px;
  }
  .mb-xl-15 {
    margin-bottom: 15px;
  }
  .mt-xl-15 {
    margin-top: 15px;
  }
  .ml-xl-15 {
    margin-left: 15px;
  }
  .mr-xl-15 {
    margin-right: 15px;
  }
  .pb-xl-15 {
    padding-bottom: 15px;
  }
  .pt-xl-15 {
    padding-top: 15px;
  }
  .pl-xl-15 {
    padding-left: 15px;
  }
  .pr-xl-15 {
    padding-right: 15px;
  }
  .mb-xl-16 {
    margin-bottom: 16px;
  }
  .mt-xl-16 {
    margin-top: 16px;
  }
  .ml-xl-16 {
    margin-left: 16px;
  }
  .mr-xl-16 {
    margin-right: 16px;
  }
  .pb-xl-16 {
    padding-bottom: 16px;
  }
  .pt-xl-16 {
    padding-top: 16px;
  }
  .pl-xl-16 {
    padding-left: 16px;
  }
  .pr-xl-16 {
    padding-right: 16px;
  }
  .mb-xl-20 {
    margin-bottom: 20px;
  }
  .mt-xl-20 {
    margin-top: 20px;
  }
  .ml-xl-20 {
    margin-left: 20px;
  }
  .mr-xl-20 {
    margin-right: 20px;
  }
  .pb-xl-20 {
    padding-bottom: 20px;
  }
  .pt-xl-20 {
    padding-top: 20px;
  }
  .pl-xl-20 {
    padding-left: 20px;
  }
  .pr-xl-20 {
    padding-right: 20px;
  }
  .mb-xl-24 {
    margin-bottom: 24px;
  }
  .mt-xl-24 {
    margin-top: 24px;
  }
  .ml-xl-24 {
    margin-left: 24px;
  }
  .mr-xl-24 {
    margin-right: 24px;
  }
  .pb-xl-24 {
    padding-bottom: 24px;
  }
  .pt-xl-24 {
    padding-top: 24px;
  }
  .pl-xl-24 {
    padding-left: 24px;
  }
  .pr-xl-24 {
    padding-right: 24px;
  }
  .mb-xl-25 {
    margin-bottom: 25px;
  }
  .mt-xl-25 {
    margin-top: 25px;
  }
  .ml-xl-25 {
    margin-left: 25px;
  }
  .mr-xl-25 {
    margin-right: 25px;
  }
  .pb-xl-25 {
    padding-bottom: 25px;
  }
  .pt-xl-25 {
    padding-top: 25px;
  }
  .pl-xl-25 {
    padding-left: 25px;
  }
  .pr-xl-25 {
    padding-right: 25px;
  }
  .mb-xl-26 {
    margin-bottom: 26px;
  }
  .mt-xl-26 {
    margin-top: 26px;
  }
  .ml-xl-26 {
    margin-left: 26px;
  }
  .mr-xl-26 {
    margin-right: 26px;
  }
  .pb-xl-26 {
    padding-bottom: 26px;
  }
  .pt-xl-26 {
    padding-top: 26px;
  }
  .pl-xl-26 {
    padding-left: 26px;
  }
  .pr-xl-26 {
    padding-right: 26px;
  }
  .mb-xl-28 {
    margin-bottom: 28px;
  }
  .mt-xl-28 {
    margin-top: 28px;
  }
  .ml-xl-28 {
    margin-left: 28px;
  }
  .mr-xl-28 {
    margin-right: 28px;
  }
  .pb-xl-28 {
    padding-bottom: 28px;
  }
  .pt-xl-28 {
    padding-top: 28px;
  }
  .pl-xl-28 {
    padding-left: 28px;
  }
  .pr-xl-28 {
    padding-right: 28px;
  }
  .mb-xl-30 {
    margin-bottom: 30px;
  }
  .mt-xl-30 {
    margin-top: 30px;
  }
  .ml-xl-30 {
    margin-left: 30px;
  }
  .mr-xl-30 {
    margin-right: 30px;
  }
  .pb-xl-30 {
    padding-bottom: 30px;
  }
  .pt-xl-30 {
    padding-top: 30px;
  }
  .pl-xl-30 {
    padding-left: 30px;
  }
  .pr-xl-30 {
    padding-right: 30px;
  }
  .mb-xl-32 {
    margin-bottom: 32px;
  }
  .mt-xl-32 {
    margin-top: 32px;
  }
  .ml-xl-32 {
    margin-left: 32px;
  }
  .mr-xl-32 {
    margin-right: 32px;
  }
  .pb-xl-32 {
    padding-bottom: 32px;
  }
  .pt-xl-32 {
    padding-top: 32px;
  }
  .pl-xl-32 {
    padding-left: 32px;
  }
  .pr-xl-32 {
    padding-right: 32px;
  }
  .mb-xl-36 {
    margin-bottom: 36px;
  }
  .mt-xl-36 {
    margin-top: 36px;
  }
  .ml-xl-36 {
    margin-left: 36px;
  }
  .mr-xl-36 {
    margin-right: 36px;
  }
  .pb-xl-36 {
    padding-bottom: 36px;
  }
  .pt-xl-36 {
    padding-top: 36px;
  }
  .pl-xl-36 {
    padding-left: 36px;
  }
  .pr-xl-36 {
    padding-right: 36px;
  }
  .mb-xl-40 {
    margin-bottom: 40px;
  }
  .mt-xl-40 {
    margin-top: 40px;
  }
  .ml-xl-40 {
    margin-left: 40px;
  }
  .mr-xl-40 {
    margin-right: 40px;
  }
  .pb-xl-40 {
    padding-bottom: 40px;
  }
  .pt-xl-40 {
    padding-top: 40px;
  }
  .pl-xl-40 {
    padding-left: 40px;
  }
  .pr-xl-40 {
    padding-right: 40px;
  }
  .mb-xl-48 {
    margin-bottom: 48px;
  }
  .mt-xl-48 {
    margin-top: 48px;
  }
  .ml-xl-48 {
    margin-left: 48px;
  }
  .mr-xl-48 {
    margin-right: 48px;
  }
  .pb-xl-48 {
    padding-bottom: 48px;
  }
  .pt-xl-48 {
    padding-top: 48px;
  }
  .pl-xl-48 {
    padding-left: 48px;
  }
  .pr-xl-48 {
    padding-right: 48px;
  }
  .mb-xl-50 {
    margin-bottom: 50px;
  }
  .mt-xl-50 {
    margin-top: 50px;
  }
  .ml-xl-50 {
    margin-left: 50px;
  }
  .mr-xl-50 {
    margin-right: 50px;
  }
  .pb-xl-50 {
    padding-bottom: 50px;
  }
  .pt-xl-50 {
    padding-top: 50px;
  }
  .pl-xl-50 {
    padding-left: 50px;
  }
  .pr-xl-50 {
    padding-right: 50px;
  }
  .mb-xl-56 {
    margin-bottom: 56px;
  }
  .mt-xl-56 {
    margin-top: 56px;
  }
  .ml-xl-56 {
    margin-left: 56px;
  }
  .mr-xl-56 {
    margin-right: 56px;
  }
  .pb-xl-56 {
    padding-bottom: 56px;
  }
  .pt-xl-56 {
    padding-top: 56px;
  }
  .pl-xl-56 {
    padding-left: 56px;
  }
  .pr-xl-56 {
    padding-right: 56px;
  }
}
@media screen and (min-width: 1440px) {
  .mb-xxl-0 {
    margin-bottom: 0px;
  }
  .mt-xxl-0 {
    margin-top: 0px;
  }
  .ml-xxl-0 {
    margin-left: 0px;
  }
  .mr-xxl-0 {
    margin-right: 0px;
  }
  .pb-xxl-0 {
    padding-bottom: 0px;
  }
  .pt-xxl-0 {
    padding-top: 0px;
  }
  .pl-xxl-0 {
    padding-left: 0px;
  }
  .pr-xxl-0 {
    padding-right: 0px;
  }
  .mb-xxl-5 {
    margin-bottom: 5px;
  }
  .mt-xxl-5 {
    margin-top: 5px;
  }
  .ml-xxl-5 {
    margin-left: 5px;
  }
  .mr-xxl-5 {
    margin-right: 5px;
  }
  .pb-xxl-5 {
    padding-bottom: 5px;
  }
  .pt-xxl-5 {
    padding-top: 5px;
  }
  .pl-xxl-5 {
    padding-left: 5px;
  }
  .pr-xxl-5 {
    padding-right: 5px;
  }
  .mb-xxl-8 {
    margin-bottom: 8px;
  }
  .mt-xxl-8 {
    margin-top: 8px;
  }
  .ml-xxl-8 {
    margin-left: 8px;
  }
  .mr-xxl-8 {
    margin-right: 8px;
  }
  .pb-xxl-8 {
    padding-bottom: 8px;
  }
  .pt-xxl-8 {
    padding-top: 8px;
  }
  .pl-xxl-8 {
    padding-left: 8px;
  }
  .pr-xxl-8 {
    padding-right: 8px;
  }
  .mb-xxl-10 {
    margin-bottom: 10px;
  }
  .mt-xxl-10 {
    margin-top: 10px;
  }
  .ml-xxl-10 {
    margin-left: 10px;
  }
  .mr-xxl-10 {
    margin-right: 10px;
  }
  .pb-xxl-10 {
    padding-bottom: 10px;
  }
  .pt-xxl-10 {
    padding-top: 10px;
  }
  .pl-xxl-10 {
    padding-left: 10px;
  }
  .pr-xxl-10 {
    padding-right: 10px;
  }
  .mb-xxl-12 {
    margin-bottom: 12px;
  }
  .mt-xxl-12 {
    margin-top: 12px;
  }
  .ml-xxl-12 {
    margin-left: 12px;
  }
  .mr-xxl-12 {
    margin-right: 12px;
  }
  .pb-xxl-12 {
    padding-bottom: 12px;
  }
  .pt-xxl-12 {
    padding-top: 12px;
  }
  .pl-xxl-12 {
    padding-left: 12px;
  }
  .pr-xxl-12 {
    padding-right: 12px;
  }
  .mb-xxl-15 {
    margin-bottom: 15px;
  }
  .mt-xxl-15 {
    margin-top: 15px;
  }
  .ml-xxl-15 {
    margin-left: 15px;
  }
  .mr-xxl-15 {
    margin-right: 15px;
  }
  .pb-xxl-15 {
    padding-bottom: 15px;
  }
  .pt-xxl-15 {
    padding-top: 15px;
  }
  .pl-xxl-15 {
    padding-left: 15px;
  }
  .pr-xxl-15 {
    padding-right: 15px;
  }
  .mb-xxl-16 {
    margin-bottom: 16px;
  }
  .mt-xxl-16 {
    margin-top: 16px;
  }
  .ml-xxl-16 {
    margin-left: 16px;
  }
  .mr-xxl-16 {
    margin-right: 16px;
  }
  .pb-xxl-16 {
    padding-bottom: 16px;
  }
  .pt-xxl-16 {
    padding-top: 16px;
  }
  .pl-xxl-16 {
    padding-left: 16px;
  }
  .pr-xxl-16 {
    padding-right: 16px;
  }
  .mb-xxl-20 {
    margin-bottom: 20px;
  }
  .mt-xxl-20 {
    margin-top: 20px;
  }
  .ml-xxl-20 {
    margin-left: 20px;
  }
  .mr-xxl-20 {
    margin-right: 20px;
  }
  .pb-xxl-20 {
    padding-bottom: 20px;
  }
  .pt-xxl-20 {
    padding-top: 20px;
  }
  .pl-xxl-20 {
    padding-left: 20px;
  }
  .pr-xxl-20 {
    padding-right: 20px;
  }
  .mb-xxl-24 {
    margin-bottom: 24px;
  }
  .mt-xxl-24 {
    margin-top: 24px;
  }
  .ml-xxl-24 {
    margin-left: 24px;
  }
  .mr-xxl-24 {
    margin-right: 24px;
  }
  .pb-xxl-24 {
    padding-bottom: 24px;
  }
  .pt-xxl-24 {
    padding-top: 24px;
  }
  .pl-xxl-24 {
    padding-left: 24px;
  }
  .pr-xxl-24 {
    padding-right: 24px;
  }
  .mb-xxl-25 {
    margin-bottom: 25px;
  }
  .mt-xxl-25 {
    margin-top: 25px;
  }
  .ml-xxl-25 {
    margin-left: 25px;
  }
  .mr-xxl-25 {
    margin-right: 25px;
  }
  .pb-xxl-25 {
    padding-bottom: 25px;
  }
  .pt-xxl-25 {
    padding-top: 25px;
  }
  .pl-xxl-25 {
    padding-left: 25px;
  }
  .pr-xxl-25 {
    padding-right: 25px;
  }
  .mb-xxl-26 {
    margin-bottom: 26px;
  }
  .mt-xxl-26 {
    margin-top: 26px;
  }
  .ml-xxl-26 {
    margin-left: 26px;
  }
  .mr-xxl-26 {
    margin-right: 26px;
  }
  .pb-xxl-26 {
    padding-bottom: 26px;
  }
  .pt-xxl-26 {
    padding-top: 26px;
  }
  .pl-xxl-26 {
    padding-left: 26px;
  }
  .pr-xxl-26 {
    padding-right: 26px;
  }
  .mb-xxl-28 {
    margin-bottom: 28px;
  }
  .mt-xxl-28 {
    margin-top: 28px;
  }
  .ml-xxl-28 {
    margin-left: 28px;
  }
  .mr-xxl-28 {
    margin-right: 28px;
  }
  .pb-xxl-28 {
    padding-bottom: 28px;
  }
  .pt-xxl-28 {
    padding-top: 28px;
  }
  .pl-xxl-28 {
    padding-left: 28px;
  }
  .pr-xxl-28 {
    padding-right: 28px;
  }
  .mb-xxl-30 {
    margin-bottom: 30px;
  }
  .mt-xxl-30 {
    margin-top: 30px;
  }
  .ml-xxl-30 {
    margin-left: 30px;
  }
  .mr-xxl-30 {
    margin-right: 30px;
  }
  .pb-xxl-30 {
    padding-bottom: 30px;
  }
  .pt-xxl-30 {
    padding-top: 30px;
  }
  .pl-xxl-30 {
    padding-left: 30px;
  }
  .pr-xxl-30 {
    padding-right: 30px;
  }
  .mb-xxl-32 {
    margin-bottom: 32px;
  }
  .mt-xxl-32 {
    margin-top: 32px;
  }
  .ml-xxl-32 {
    margin-left: 32px;
  }
  .mr-xxl-32 {
    margin-right: 32px;
  }
  .pb-xxl-32 {
    padding-bottom: 32px;
  }
  .pt-xxl-32 {
    padding-top: 32px;
  }
  .pl-xxl-32 {
    padding-left: 32px;
  }
  .pr-xxl-32 {
    padding-right: 32px;
  }
  .mb-xxl-36 {
    margin-bottom: 36px;
  }
  .mt-xxl-36 {
    margin-top: 36px;
  }
  .ml-xxl-36 {
    margin-left: 36px;
  }
  .mr-xxl-36 {
    margin-right: 36px;
  }
  .pb-xxl-36 {
    padding-bottom: 36px;
  }
  .pt-xxl-36 {
    padding-top: 36px;
  }
  .pl-xxl-36 {
    padding-left: 36px;
  }
  .pr-xxl-36 {
    padding-right: 36px;
  }
  .mb-xxl-40 {
    margin-bottom: 40px;
  }
  .mt-xxl-40 {
    margin-top: 40px;
  }
  .ml-xxl-40 {
    margin-left: 40px;
  }
  .mr-xxl-40 {
    margin-right: 40px;
  }
  .pb-xxl-40 {
    padding-bottom: 40px;
  }
  .pt-xxl-40 {
    padding-top: 40px;
  }
  .pl-xxl-40 {
    padding-left: 40px;
  }
  .pr-xxl-40 {
    padding-right: 40px;
  }
  .mb-xxl-48 {
    margin-bottom: 48px;
  }
  .mt-xxl-48 {
    margin-top: 48px;
  }
  .ml-xxl-48 {
    margin-left: 48px;
  }
  .mr-xxl-48 {
    margin-right: 48px;
  }
  .pb-xxl-48 {
    padding-bottom: 48px;
  }
  .pt-xxl-48 {
    padding-top: 48px;
  }
  .pl-xxl-48 {
    padding-left: 48px;
  }
  .pr-xxl-48 {
    padding-right: 48px;
  }
  .mb-xxl-50 {
    margin-bottom: 50px;
  }
  .mt-xxl-50 {
    margin-top: 50px;
  }
  .ml-xxl-50 {
    margin-left: 50px;
  }
  .mr-xxl-50 {
    margin-right: 50px;
  }
  .pb-xxl-50 {
    padding-bottom: 50px;
  }
  .pt-xxl-50 {
    padding-top: 50px;
  }
  .pl-xxl-50 {
    padding-left: 50px;
  }
  .pr-xxl-50 {
    padding-right: 50px;
  }
  .mb-xxl-56 {
    margin-bottom: 56px;
  }
  .mt-xxl-56 {
    margin-top: 56px;
  }
  .ml-xxl-56 {
    margin-left: 56px;
  }
  .mr-xxl-56 {
    margin-right: 56px;
  }
  .pb-xxl-56 {
    padding-bottom: 56px;
  }
  .pt-xxl-56 {
    padding-top: 56px;
  }
  .pl-xxl-56 {
    padding-left: 56px;
  }
  .pr-xxl-56 {
    padding-right: 56px;
  }
}
@media screen and (min-width: 1600px) {
  .mb-xxxl-0 {
    margin-bottom: 0px;
  }
  .mt-xxxl-0 {
    margin-top: 0px;
  }
  .ml-xxxl-0 {
    margin-left: 0px;
  }
  .mr-xxxl-0 {
    margin-right: 0px;
  }
  .pb-xxxl-0 {
    padding-bottom: 0px;
  }
  .pt-xxxl-0 {
    padding-top: 0px;
  }
  .pl-xxxl-0 {
    padding-left: 0px;
  }
  .pr-xxxl-0 {
    padding-right: 0px;
  }
  .mb-xxxl-5 {
    margin-bottom: 5px;
  }
  .mt-xxxl-5 {
    margin-top: 5px;
  }
  .ml-xxxl-5 {
    margin-left: 5px;
  }
  .mr-xxxl-5 {
    margin-right: 5px;
  }
  .pb-xxxl-5 {
    padding-bottom: 5px;
  }
  .pt-xxxl-5 {
    padding-top: 5px;
  }
  .pl-xxxl-5 {
    padding-left: 5px;
  }
  .pr-xxxl-5 {
    padding-right: 5px;
  }
  .mb-xxxl-8 {
    margin-bottom: 8px;
  }
  .mt-xxxl-8 {
    margin-top: 8px;
  }
  .ml-xxxl-8 {
    margin-left: 8px;
  }
  .mr-xxxl-8 {
    margin-right: 8px;
  }
  .pb-xxxl-8 {
    padding-bottom: 8px;
  }
  .pt-xxxl-8 {
    padding-top: 8px;
  }
  .pl-xxxl-8 {
    padding-left: 8px;
  }
  .pr-xxxl-8 {
    padding-right: 8px;
  }
  .mb-xxxl-10 {
    margin-bottom: 10px;
  }
  .mt-xxxl-10 {
    margin-top: 10px;
  }
  .ml-xxxl-10 {
    margin-left: 10px;
  }
  .mr-xxxl-10 {
    margin-right: 10px;
  }
  .pb-xxxl-10 {
    padding-bottom: 10px;
  }
  .pt-xxxl-10 {
    padding-top: 10px;
  }
  .pl-xxxl-10 {
    padding-left: 10px;
  }
  .pr-xxxl-10 {
    padding-right: 10px;
  }
  .mb-xxxl-12 {
    margin-bottom: 12px;
  }
  .mt-xxxl-12 {
    margin-top: 12px;
  }
  .ml-xxxl-12 {
    margin-left: 12px;
  }
  .mr-xxxl-12 {
    margin-right: 12px;
  }
  .pb-xxxl-12 {
    padding-bottom: 12px;
  }
  .pt-xxxl-12 {
    padding-top: 12px;
  }
  .pl-xxxl-12 {
    padding-left: 12px;
  }
  .pr-xxxl-12 {
    padding-right: 12px;
  }
  .mb-xxxl-15 {
    margin-bottom: 15px;
  }
  .mt-xxxl-15 {
    margin-top: 15px;
  }
  .ml-xxxl-15 {
    margin-left: 15px;
  }
  .mr-xxxl-15 {
    margin-right: 15px;
  }
  .pb-xxxl-15 {
    padding-bottom: 15px;
  }
  .pt-xxxl-15 {
    padding-top: 15px;
  }
  .pl-xxxl-15 {
    padding-left: 15px;
  }
  .pr-xxxl-15 {
    padding-right: 15px;
  }
  .mb-xxxl-16 {
    margin-bottom: 16px;
  }
  .mt-xxxl-16 {
    margin-top: 16px;
  }
  .ml-xxxl-16 {
    margin-left: 16px;
  }
  .mr-xxxl-16 {
    margin-right: 16px;
  }
  .pb-xxxl-16 {
    padding-bottom: 16px;
  }
  .pt-xxxl-16 {
    padding-top: 16px;
  }
  .pl-xxxl-16 {
    padding-left: 16px;
  }
  .pr-xxxl-16 {
    padding-right: 16px;
  }
  .mb-xxxl-20 {
    margin-bottom: 20px;
  }
  .mt-xxxl-20 {
    margin-top: 20px;
  }
  .ml-xxxl-20 {
    margin-left: 20px;
  }
  .mr-xxxl-20 {
    margin-right: 20px;
  }
  .pb-xxxl-20 {
    padding-bottom: 20px;
  }
  .pt-xxxl-20 {
    padding-top: 20px;
  }
  .pl-xxxl-20 {
    padding-left: 20px;
  }
  .pr-xxxl-20 {
    padding-right: 20px;
  }
  .mb-xxxl-24 {
    margin-bottom: 24px;
  }
  .mt-xxxl-24 {
    margin-top: 24px;
  }
  .ml-xxxl-24 {
    margin-left: 24px;
  }
  .mr-xxxl-24 {
    margin-right: 24px;
  }
  .pb-xxxl-24 {
    padding-bottom: 24px;
  }
  .pt-xxxl-24 {
    padding-top: 24px;
  }
  .pl-xxxl-24 {
    padding-left: 24px;
  }
  .pr-xxxl-24 {
    padding-right: 24px;
  }
  .mb-xxxl-25 {
    margin-bottom: 25px;
  }
  .mt-xxxl-25 {
    margin-top: 25px;
  }
  .ml-xxxl-25 {
    margin-left: 25px;
  }
  .mr-xxxl-25 {
    margin-right: 25px;
  }
  .pb-xxxl-25 {
    padding-bottom: 25px;
  }
  .pt-xxxl-25 {
    padding-top: 25px;
  }
  .pl-xxxl-25 {
    padding-left: 25px;
  }
  .pr-xxxl-25 {
    padding-right: 25px;
  }
  .mb-xxxl-26 {
    margin-bottom: 26px;
  }
  .mt-xxxl-26 {
    margin-top: 26px;
  }
  .ml-xxxl-26 {
    margin-left: 26px;
  }
  .mr-xxxl-26 {
    margin-right: 26px;
  }
  .pb-xxxl-26 {
    padding-bottom: 26px;
  }
  .pt-xxxl-26 {
    padding-top: 26px;
  }
  .pl-xxxl-26 {
    padding-left: 26px;
  }
  .pr-xxxl-26 {
    padding-right: 26px;
  }
  .mb-xxxl-28 {
    margin-bottom: 28px;
  }
  .mt-xxxl-28 {
    margin-top: 28px;
  }
  .ml-xxxl-28 {
    margin-left: 28px;
  }
  .mr-xxxl-28 {
    margin-right: 28px;
  }
  .pb-xxxl-28 {
    padding-bottom: 28px;
  }
  .pt-xxxl-28 {
    padding-top: 28px;
  }
  .pl-xxxl-28 {
    padding-left: 28px;
  }
  .pr-xxxl-28 {
    padding-right: 28px;
  }
  .mb-xxxl-30 {
    margin-bottom: 30px;
  }
  .mt-xxxl-30 {
    margin-top: 30px;
  }
  .ml-xxxl-30 {
    margin-left: 30px;
  }
  .mr-xxxl-30 {
    margin-right: 30px;
  }
  .pb-xxxl-30 {
    padding-bottom: 30px;
  }
  .pt-xxxl-30 {
    padding-top: 30px;
  }
  .pl-xxxl-30 {
    padding-left: 30px;
  }
  .pr-xxxl-30 {
    padding-right: 30px;
  }
  .mb-xxxl-32 {
    margin-bottom: 32px;
  }
  .mt-xxxl-32 {
    margin-top: 32px;
  }
  .ml-xxxl-32 {
    margin-left: 32px;
  }
  .mr-xxxl-32 {
    margin-right: 32px;
  }
  .pb-xxxl-32 {
    padding-bottom: 32px;
  }
  .pt-xxxl-32 {
    padding-top: 32px;
  }
  .pl-xxxl-32 {
    padding-left: 32px;
  }
  .pr-xxxl-32 {
    padding-right: 32px;
  }
  .mb-xxxl-36 {
    margin-bottom: 36px;
  }
  .mt-xxxl-36 {
    margin-top: 36px;
  }
  .ml-xxxl-36 {
    margin-left: 36px;
  }
  .mr-xxxl-36 {
    margin-right: 36px;
  }
  .pb-xxxl-36 {
    padding-bottom: 36px;
  }
  .pt-xxxl-36 {
    padding-top: 36px;
  }
  .pl-xxxl-36 {
    padding-left: 36px;
  }
  .pr-xxxl-36 {
    padding-right: 36px;
  }
  .mb-xxxl-40 {
    margin-bottom: 40px;
  }
  .mt-xxxl-40 {
    margin-top: 40px;
  }
  .ml-xxxl-40 {
    margin-left: 40px;
  }
  .mr-xxxl-40 {
    margin-right: 40px;
  }
  .pb-xxxl-40 {
    padding-bottom: 40px;
  }
  .pt-xxxl-40 {
    padding-top: 40px;
  }
  .pl-xxxl-40 {
    padding-left: 40px;
  }
  .pr-xxxl-40 {
    padding-right: 40px;
  }
  .mb-xxxl-48 {
    margin-bottom: 48px;
  }
  .mt-xxxl-48 {
    margin-top: 48px;
  }
  .ml-xxxl-48 {
    margin-left: 48px;
  }
  .mr-xxxl-48 {
    margin-right: 48px;
  }
  .pb-xxxl-48 {
    padding-bottom: 48px;
  }
  .pt-xxxl-48 {
    padding-top: 48px;
  }
  .pl-xxxl-48 {
    padding-left: 48px;
  }
  .pr-xxxl-48 {
    padding-right: 48px;
  }
  .mb-xxxl-50 {
    margin-bottom: 50px;
  }
  .mt-xxxl-50 {
    margin-top: 50px;
  }
  .ml-xxxl-50 {
    margin-left: 50px;
  }
  .mr-xxxl-50 {
    margin-right: 50px;
  }
  .pb-xxxl-50 {
    padding-bottom: 50px;
  }
  .pt-xxxl-50 {
    padding-top: 50px;
  }
  .pl-xxxl-50 {
    padding-left: 50px;
  }
  .pr-xxxl-50 {
    padding-right: 50px;
  }
  .mb-xxxl-56 {
    margin-bottom: 56px;
  }
  .mt-xxxl-56 {
    margin-top: 56px;
  }
  .ml-xxxl-56 {
    margin-left: 56px;
  }
  .mr-xxxl-56 {
    margin-right: 56px;
  }
  .pb-xxxl-56 {
    padding-bottom: 56px;
  }
  .pt-xxxl-56 {
    padding-top: 56px;
  }
  .pl-xxxl-56 {
    padding-left: 56px;
  }
  .pr-xxxl-56 {
    padding-right: 56px;
  }
}
.text-13 {
  font-size: 13px;
}
.text-16 {
  font-size: 16px;
}
.text-20 {
  font-size: 20px;
}
.text-24 {
  font-size: 24px;
}
.text-32 {
  font-size: 32px;
}
.text-36 {
  font-size: 36px;
}
.text-40 {
  font-size: 40px;
}
.text-42 {
  font-size: 42px;
}
.text-56 {
  font-size: 56px;
}
.text-60 {
  font-size: 60px;
}
@media screen and (min-width: 0px) {
  .text-xs-13 {
    font-size: 13px;
  }
  .text-xs-16 {
    font-size: 16px;
  }
  .text-xs-20 {
    font-size: 20px;
  }
  .text-xs-24 {
    font-size: 24px;
  }
  .text-xs-32 {
    font-size: 32px;
  }
  .text-xs-36 {
    font-size: 36px;
  }
  .text-xs-40 {
    font-size: 40px;
  }
  .text-xs-42 {
    font-size: 42px;
  }
  .text-xs-56 {
    font-size: 56px;
  }
  .text-xs-60 {
    font-size: 60px;
  }
}
@media screen and (min-width: 576px) {
  .text-sm-13 {
    font-size: 13px;
  }
  .text-sm-16 {
    font-size: 16px;
  }
  .text-sm-20 {
    font-size: 20px;
  }
  .text-sm-24 {
    font-size: 24px;
  }
  .text-sm-32 {
    font-size: 32px;
  }
  .text-sm-36 {
    font-size: 36px;
  }
  .text-sm-40 {
    font-size: 40px;
  }
  .text-sm-42 {
    font-size: 42px;
  }
  .text-sm-56 {
    font-size: 56px;
  }
  .text-sm-60 {
    font-size: 60px;
  }
}
@media screen and (min-width: 768px) {
  .text-md-13 {
    font-size: 13px;
  }
  .text-md-16 {
    font-size: 16px;
  }
  .text-md-20 {
    font-size: 20px;
  }
  .text-md-24 {
    font-size: 24px;
  }
  .text-md-32 {
    font-size: 32px;
  }
  .text-md-36 {
    font-size: 36px;
  }
  .text-md-40 {
    font-size: 40px;
  }
  .text-md-42 {
    font-size: 42px;
  }
  .text-md-56 {
    font-size: 56px;
  }
  .text-md-60 {
    font-size: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .text-lg-13 {
    font-size: 13px;
  }
  .text-lg-16 {
    font-size: 16px;
  }
  .text-lg-20 {
    font-size: 20px;
  }
  .text-lg-24 {
    font-size: 24px;
  }
  .text-lg-32 {
    font-size: 32px;
  }
  .text-lg-36 {
    font-size: 36px;
  }
  .text-lg-40 {
    font-size: 40px;
  }
  .text-lg-42 {
    font-size: 42px;
  }
  .text-lg-56 {
    font-size: 56px;
  }
  .text-lg-60 {
    font-size: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .text-xl-13 {
    font-size: 13px;
  }
  .text-xl-16 {
    font-size: 16px;
  }
  .text-xl-20 {
    font-size: 20px;
  }
  .text-xl-24 {
    font-size: 24px;
  }
  .text-xl-32 {
    font-size: 32px;
  }
  .text-xl-36 {
    font-size: 36px;
  }
  .text-xl-40 {
    font-size: 40px;
  }
  .text-xl-42 {
    font-size: 42px;
  }
  .text-xl-56 {
    font-size: 56px;
  }
  .text-xl-60 {
    font-size: 60px;
  }
}
@media screen and (min-width: 1440px) {
  .text-xxl-13 {
    font-size: 13px;
  }
  .text-xxl-16 {
    font-size: 16px;
  }
  .text-xxl-20 {
    font-size: 20px;
  }
  .text-xxl-24 {
    font-size: 24px;
  }
  .text-xxl-32 {
    font-size: 32px;
  }
  .text-xxl-36 {
    font-size: 36px;
  }
  .text-xxl-40 {
    font-size: 40px;
  }
  .text-xxl-42 {
    font-size: 42px;
  }
  .text-xxl-56 {
    font-size: 56px;
  }
  .text-xxl-60 {
    font-size: 60px;
  }
}
@media screen and (min-width: 1600px) {
  .text-xxxl-13 {
    font-size: 13px;
  }
  .text-xxxl-16 {
    font-size: 16px;
  }
  .text-xxxl-20 {
    font-size: 20px;
  }
  .text-xxxl-24 {
    font-size: 24px;
  }
  .text-xxxl-32 {
    font-size: 32px;
  }
  .text-xxxl-36 {
    font-size: 36px;
  }
  .text-xxxl-40 {
    font-size: 40px;
  }
  .text-xxxl-42 {
    font-size: 42px;
  }
  .text-xxxl-56 {
    font-size: 56px;
  }
  .text-xxxl-60 {
    font-size: 60px;
  }
}
.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;
}
.font-800 {
  font-weight: 800;
}
.font-900 {
  font-weight: 900;
}
@media screen and (min-width: 0px) {
  .text-xs-300 {
    font-weight: 300;
  }
  .text-xs-400 {
    font-weight: 400;
  }
  .text-xs-500 {
    font-weight: 500;
  }
  .text-xs-600 {
    font-weight: 600;
  }
  .text-xs-700 {
    font-weight: 700;
  }
  .text-xs-800 {
    font-weight: 800;
  }
  .text-xs-900 {
    font-weight: 900;
  }
}
@media screen and (min-width: 576px) {
  .text-sm-300 {
    font-weight: 300;
  }
  .text-sm-400 {
    font-weight: 400;
  }
  .text-sm-500 {
    font-weight: 500;
  }
  .text-sm-600 {
    font-weight: 600;
  }
  .text-sm-700 {
    font-weight: 700;
  }
  .text-sm-800 {
    font-weight: 800;
  }
  .text-sm-900 {
    font-weight: 900;
  }
}
@media screen and (min-width: 768px) {
  .text-md-300 {
    font-weight: 300;
  }
  .text-md-400 {
    font-weight: 400;
  }
  .text-md-500 {
    font-weight: 500;
  }
  .text-md-600 {
    font-weight: 600;
  }
  .text-md-700 {
    font-weight: 700;
  }
  .text-md-800 {
    font-weight: 800;
  }
  .text-md-900 {
    font-weight: 900;
  }
}
@media screen and (min-width: 1025px) {
  .text-lg-300 {
    font-weight: 300;
  }
  .text-lg-400 {
    font-weight: 400;
  }
  .text-lg-500 {
    font-weight: 500;
  }
  .text-lg-600 {
    font-weight: 600;
  }
  .text-lg-700 {
    font-weight: 700;
  }
  .text-lg-800 {
    font-weight: 800;
  }
  .text-lg-900 {
    font-weight: 900;
  }
}
@media screen and (min-width: 1280px) {
  .text-xl-300 {
    font-weight: 300;
  }
  .text-xl-400 {
    font-weight: 400;
  }
  .text-xl-500 {
    font-weight: 500;
  }
  .text-xl-600 {
    font-weight: 600;
  }
  .text-xl-700 {
    font-weight: 700;
  }
  .text-xl-800 {
    font-weight: 800;
  }
  .text-xl-900 {
    font-weight: 900;
  }
}
@media screen and (min-width: 1440px) {
  .text-xxl-300 {
    font-weight: 300;
  }
  .text-xxl-400 {
    font-weight: 400;
  }
  .text-xxl-500 {
    font-weight: 500;
  }
  .text-xxl-600 {
    font-weight: 600;
  }
  .text-xxl-700 {
    font-weight: 700;
  }
  .text-xxl-800 {
    font-weight: 800;
  }
  .text-xxl-900 {
    font-weight: 900;
  }
}
@media screen and (min-width: 1600px) {
  .text-xxxl-300 {
    font-weight: 300;
  }
  .text-xxxl-400 {
    font-weight: 400;
  }
  .text-xxxl-500 {
    font-weight: 500;
  }
  .text-xxxl-600 {
    font-weight: 600;
  }
  .text-xxxl-700 {
    font-weight: 700;
  }
  .text-xxxl-800 {
    font-weight: 800;
  }
  .text-xxxl-900 {
    font-weight: 900;
  }
}
.lh-1 {
  line-height: 1;
}
.lh-1-28572 {
  line-height: 1.28572;
}
.lh-1-3 {
  line-height: 1.3;
}
.lh-1-375 {
  line-height: 1.375;
}
.lh-1-5 {
  line-height: 1.5;
}
.lh-1-777777 {
  line-height: 1.777777;
}
.lh-1-8 {
  line-height: 1.8;
}
.lh-2-46153846154 {
  line-height: 2.46153846154;
}
@media screen and (min-width: 0px) {
  .lh-xs-1 {
    line-height: 1;
  }
  .lh-xs-1-28572 {
    line-height: 1.28572;
  }
  .lh-xs-1-3 {
    line-height: 1.3;
  }
  .lh-xs-1-375 {
    line-height: 1.375;
  }
  .lh-xs-1-5 {
    line-height: 1.5;
  }
  .lh-xs-1-777777 {
    line-height: 1.777777;
  }
  .lh-xs-1-8 {
    line-height: 1.8;
  }
  .lh-xs-2-46153846154 {
    line-height: 2.46153846154;
  }
}
@media screen and (min-width: 576px) {
  .lh-sm-1 {
    line-height: 1;
  }
  .lh-sm-1-28572 {
    line-height: 1.28572;
  }
  .lh-sm-1-3 {
    line-height: 1.3;
  }
  .lh-sm-1-375 {
    line-height: 1.375;
  }
  .lh-sm-1-5 {
    line-height: 1.5;
  }
  .lh-sm-1-777777 {
    line-height: 1.777777;
  }
  .lh-sm-1-8 {
    line-height: 1.8;
  }
  .lh-sm-2-46153846154 {
    line-height: 2.46153846154;
  }
}
@media screen and (min-width: 768px) {
  .lh-md-1 {
    line-height: 1;
  }
  .lh-md-1-28572 {
    line-height: 1.28572;
  }
  .lh-md-1-3 {
    line-height: 1.3;
  }
  .lh-md-1-375 {
    line-height: 1.375;
  }
  .lh-md-1-5 {
    line-height: 1.5;
  }
  .lh-md-1-777777 {
    line-height: 1.777777;
  }
  .lh-md-1-8 {
    line-height: 1.8;
  }
  .lh-md-2-46153846154 {
    line-height: 2.46153846154;
  }
}
@media screen and (min-width: 1025px) {
  .lh-lg-1 {
    line-height: 1;
  }
  .lh-lg-1-28572 {
    line-height: 1.28572;
  }
  .lh-lg-1-3 {
    line-height: 1.3;
  }
  .lh-lg-1-375 {
    line-height: 1.375;
  }
  .lh-lg-1-5 {
    line-height: 1.5;
  }
  .lh-lg-1-777777 {
    line-height: 1.777777;
  }
  .lh-lg-1-8 {
    line-height: 1.8;
  }
  .lh-lg-2-46153846154 {
    line-height: 2.46153846154;
  }
}
@media screen and (min-width: 1280px) {
  .lh-xl-1 {
    line-height: 1;
  }
  .lh-xl-1-28572 {
    line-height: 1.28572;
  }
  .lh-xl-1-3 {
    line-height: 1.3;
  }
  .lh-xl-1-375 {
    line-height: 1.375;
  }
  .lh-xl-1-5 {
    line-height: 1.5;
  }
  .lh-xl-1-777777 {
    line-height: 1.777777;
  }
  .lh-xl-1-8 {
    line-height: 1.8;
  }
  .lh-xl-2-46153846154 {
    line-height: 2.46153846154;
  }
}
@media screen and (min-width: 1440px) {
  .lh-xxl-1 {
    line-height: 1;
  }
  .lh-xxl-1-28572 {
    line-height: 1.28572;
  }
  .lh-xxl-1-3 {
    line-height: 1.3;
  }
  .lh-xxl-1-375 {
    line-height: 1.375;
  }
  .lh-xxl-1-5 {
    line-height: 1.5;
  }
  .lh-xxl-1-777777 {
    line-height: 1.777777;
  }
  .lh-xxl-1-8 {
    line-height: 1.8;
  }
  .lh-xxl-2-46153846154 {
    line-height: 2.46153846154;
  }
}
@media screen and (min-width: 1600px) {
  .lh-xxxl-1 {
    line-height: 1;
  }
  .lh-xxxl-1-28572 {
    line-height: 1.28572;
  }
  .lh-xxxl-1-3 {
    line-height: 1.3;
  }
  .lh-xxxl-1-375 {
    line-height: 1.375;
  }
  .lh-xxxl-1-5 {
    line-height: 1.5;
  }
  .lh-xxxl-1-777777 {
    line-height: 1.777777;
  }
  .lh-xxxl-1-8 {
    line-height: 1.8;
  }
  .lh-xxxl-2-46153846154 {
    line-height: 2.46153846154;
  }
}
.gutters-0 {
  margin-left: -0px;
  margin-right: -0px;
}
.gutters-0 > [class*='col'] {
  padding-left: 0px;
  padding-right: 0px;
}
.gutters-0 > * {
  padding-left: 0px;
  padding-right: 0px;
}
.gutters-0.gutters-grid {
  margin: -0px;
}
.gutters-0.gutters-grid > [class*='col'] {
  padding: 0px;
}
.gutters-0.gutters-grid > * {
  padding: 0px;
}
.gutters-5 {
  margin-left: -2.5px;
  margin-right: -2.5px;
}
.gutters-5 > [class*='col'] {
  padding-left: 2.5px;
  padding-right: 2.5px;
}
.gutters-5 > * {
  padding-left: 2.5px;
  padding-right: 2.5px;
}
.gutters-5.gutters-grid {
  margin: -2.5px;
}
.gutters-5.gutters-grid > [class*='col'] {
  padding: 2.5px;
}
.gutters-5.gutters-grid > * {
  padding: 2.5px;
}
.gutters-8 {
  margin-left: -4px;
  margin-right: -4px;
}
.gutters-8 > [class*='col'] {
  padding-left: 4px;
  padding-right: 4px;
}
.gutters-8 > * {
  padding-left: 4px;
  padding-right: 4px;
}
.gutters-8.gutters-grid {
  margin: -4px;
}
.gutters-8.gutters-grid > [class*='col'] {
  padding: 4px;
}
.gutters-8.gutters-grid > * {
  padding: 4px;
}
.gutters-10 {
  margin-left: -5px;
  margin-right: -5px;
}
.gutters-10 > [class*='col'] {
  padding-left: 5px;
  padding-right: 5px;
}
.gutters-10 > * {
  padding-left: 5px;
  padding-right: 5px;
}
.gutters-10.gutters-grid {
  margin: -5px;
}
.gutters-10.gutters-grid > [class*='col'] {
  padding: 5px;
}
.gutters-10.gutters-grid > * {
  padding: 5px;
}
.gutters-12 {
  margin-left: -6px;
  margin-right: -6px;
}
.gutters-12 > [class*='col'] {
  padding-left: 6px;
  padding-right: 6px;
}
.gutters-12 > * {
  padding-left: 6px;
  padding-right: 6px;
}
.gutters-12.gutters-grid {
  margin: -6px;
}
.gutters-12.gutters-grid > [class*='col'] {
  padding: 6px;
}
.gutters-12.gutters-grid > * {
  padding: 6px;
}
.gutters-15 {
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.gutters-15 > [class*='col'] {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.gutters-15 > * {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.gutters-15.gutters-grid {
  margin: -7.5px;
}
.gutters-15.gutters-grid > [class*='col'] {
  padding: 7.5px;
}
.gutters-15.gutters-grid > * {
  padding: 7.5px;
}
.gutters-16 {
  margin-left: -8px;
  margin-right: -8px;
}
.gutters-16 > [class*='col'] {
  padding-left: 8px;
  padding-right: 8px;
}
.gutters-16 > * {
  padding-left: 8px;
  padding-right: 8px;
}
.gutters-16.gutters-grid {
  margin: -8px;
}
.gutters-16.gutters-grid > [class*='col'] {
  padding: 8px;
}
.gutters-16.gutters-grid > * {
  padding: 8px;
}
.gutters-18 {
  margin-left: -9px;
  margin-right: -9px;
}
.gutters-18 > [class*='col'] {
  padding-left: 9px;
  padding-right: 9px;
}
.gutters-18 > * {
  padding-left: 9px;
  padding-right: 9px;
}
.gutters-18.gutters-grid {
  margin: -9px;
}
.gutters-18.gutters-grid > [class*='col'] {
  padding: 9px;
}
.gutters-18.gutters-grid > * {
  padding: 9px;
}
.gutters-20 {
  margin-left: -10px;
  margin-right: -10px;
}
.gutters-20 > [class*='col'] {
  padding-left: 10px;
  padding-right: 10px;
}
.gutters-20 > * {
  padding-left: 10px;
  padding-right: 10px;
}
.gutters-20.gutters-grid {
  margin: -10px;
}
.gutters-20.gutters-grid > [class*='col'] {
  padding: 10px;
}
.gutters-20.gutters-grid > * {
  padding: 10px;
}
.gutters-24 {
  margin-left: -12px;
  margin-right: -12px;
}
.gutters-24 > [class*='col'] {
  padding-left: 12px;
  padding-right: 12px;
}
.gutters-24 > * {
  padding-left: 12px;
  padding-right: 12px;
}
.gutters-24.gutters-grid {
  margin: -12px;
}
.gutters-24.gutters-grid > [class*='col'] {
  padding: 12px;
}
.gutters-24.gutters-grid > * {
  padding: 12px;
}
.gutters-25 {
  margin-left: -12.5px;
  margin-right: -12.5px;
}
.gutters-25 > [class*='col'] {
  padding-left: 12.5px;
  padding-right: 12.5px;
}
.gutters-25 > * {
  padding-left: 12.5px;
  padding-right: 12.5px;
}
.gutters-25.gutters-grid {
  margin: -12.5px;
}
.gutters-25.gutters-grid > [class*='col'] {
  padding: 12.5px;
}
.gutters-25.gutters-grid > * {
  padding: 12.5px;
}
.gutters-30 {
  margin-left: -15px;
  margin-right: -15px;
}
.gutters-30 > [class*='col'] {
  padding-left: 15px;
  padding-right: 15px;
}
.gutters-30 > * {
  padding-left: 15px;
  padding-right: 15px;
}
.gutters-30.gutters-grid {
  margin: -15px;
}
.gutters-30.gutters-grid > [class*='col'] {
  padding: 15px;
}
.gutters-30.gutters-grid > * {
  padding: 15px;
}
.gutters-40 {
  margin-left: -20px;
  margin-right: -20px;
}
.gutters-40 > [class*='col'] {
  padding-left: 20px;
  padding-right: 20px;
}
.gutters-40 > * {
  padding-left: 20px;
  padding-right: 20px;
}
.gutters-40.gutters-grid {
  margin: -20px;
}
.gutters-40.gutters-grid > [class*='col'] {
  padding: 20px;
}
.gutters-40.gutters-grid > * {
  padding: 20px;
}
.gutters-50 {
  margin-left: -25px;
  margin-right: -25px;
}
.gutters-50 > [class*='col'] {
  padding-left: 25px;
  padding-right: 25px;
}
.gutters-50 > * {
  padding-left: 25px;
  padding-right: 25px;
}
.gutters-50.gutters-grid {
  margin: -25px;
}
.gutters-50.gutters-grid > [class*='col'] {
  padding: 25px;
}
.gutters-50.gutters-grid > * {
  padding: 25px;
}
.gutters-60 {
  margin-left: -30px;
  margin-right: -30px;
}
.gutters-60 > [class*='col'] {
  padding-left: 30px;
  padding-right: 30px;
}
.gutters-60 > * {
  padding-left: 30px;
  padding-right: 30px;
}
.gutters-60.gutters-grid {
  margin: -30px;
}
.gutters-60.gutters-grid > [class*='col'] {
  padding: 30px;
}
.gutters-60.gutters-grid > * {
  padding: 30px;
}
.gutters-70 {
  margin-left: -35px;
  margin-right: -35px;
}
.gutters-70 > [class*='col'] {
  padding-left: 35px;
  padding-right: 35px;
}
.gutters-70 > * {
  padding-left: 35px;
  padding-right: 35px;
}
.gutters-70.gutters-grid {
  margin: -35px;
}
.gutters-70.gutters-grid > [class*='col'] {
  padding: 35px;
}
.gutters-70.gutters-grid > * {
  padding: 35px;
}
.gutters-80 {
  margin-left: -40px;
  margin-right: -40px;
}
.gutters-80 > [class*='col'] {
  padding-left: 40px;
  padding-right: 40px;
}
.gutters-80 > * {
  padding-left: 40px;
  padding-right: 40px;
}
.gutters-80.gutters-grid {
  margin: -40px;
}
.gutters-80.gutters-grid > [class*='col'] {
  padding: 40px;
}
.gutters-80.gutters-grid > * {
  padding: 40px;
}
.gutters-90 {
  margin-left: -45px;
  margin-right: -45px;
}
.gutters-90 > [class*='col'] {
  padding-left: 45px;
  padding-right: 45px;
}
.gutters-90 > * {
  padding-left: 45px;
  padding-right: 45px;
}
.gutters-90.gutters-grid {
  margin: -45px;
}
.gutters-90.gutters-grid > [class*='col'] {
  padding: 45px;
}
.gutters-90.gutters-grid > * {
  padding: 45px;
}
.gutters-100 {
  margin-left: -50px;
  margin-right: -50px;
}
.gutters-100 > [class*='col'] {
  padding-left: 50px;
  padding-right: 50px;
}
.gutters-100 > * {
  padding-left: 50px;
  padding-right: 50px;
}
.gutters-100.gutters-grid {
  margin: -50px;
}
.gutters-100.gutters-grid > [class*='col'] {
  padding: 50px;
}
.gutters-100.gutters-grid > * {
  padding: 50px;
}
.primary-color {
  color: var(--primary-color);
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-hover-primary:hover {
  background-color: var(--primary-color) !important;
}
.bd-primary {
  border-color: var(--primary-color) !important;
}
.bd-hover-primary:hover {
  border-color: var(--primary-color) !important;
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-hover-primary:hover {
  color: var(--primary-color) !important;
}
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-hover-primary:hover, .btn-hover-primary:active, .btn-hover-primary:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.second-color {
  color: var(--second-color);
}
.bg-second {
  background-color: var(--second-color) !important;
}
.bg-hover-second:hover {
  background-color: var(--second-color) !important;
}
.bd-second {
  border-color: var(--second-color) !important;
}
.bd-hover-second:hover {
  border-color: var(--second-color) !important;
}
.text-second {
  color: var(--second-color) !important;
}
.text-hover-second:hover {
  color: var(--second-color) !important;
}
.btn-second {
  background-color: var(--second-color);
  border-color: var(--second-color);
}
.btn-hover-second:hover, .btn-hover-second:active, .btn-hover-second:focus {
  background-color: var(--second-color);
  border-color: var(--second-color);
}
.second2-color {
  color: var(--second2-color);
}
.bg-second2 {
  background-color: var(--second2-color) !important;
}
.bg-hover-second2:hover {
  background-color: var(--second2-color) !important;
}
.bd-second2 {
  border-color: var(--second2-color) !important;
}
.bd-hover-second2:hover {
  border-color: var(--second2-color) !important;
}
.text-second2 {
  color: var(--second2-color) !important;
}
.text-hover-second2:hover {
  color: var(--second2-color) !important;
}
.btn-second2 {
  background-color: var(--second2-color);
  border-color: var(--second2-color);
}
.btn-hover-second2:hover, .btn-hover-second2:active, .btn-hover-second2:focus {
  background-color: var(--second2-color);
  border-color: var(--second2-color);
}
.third-color {
  color: var(--third-color);
}
.bg-third {
  background-color: var(--third-color) !important;
}
.bg-hover-third:hover {
  background-color: var(--third-color) !important;
}
.bd-third {
  border-color: var(--third-color) !important;
}
.bd-hover-third:hover {
  border-color: var(--third-color) !important;
}
.text-third {
  color: var(--third-color) !important;
}
.text-hover-third:hover {
  color: var(--third-color) !important;
}
.btn-third {
  background-color: var(--third-color);
  border-color: var(--third-color);
}
.btn-hover-third:hover, .btn-hover-third:active, .btn-hover-third:focus {
  background-color: var(--third-color);
  border-color: var(--third-color);
}
.rating-color {
  color: var(--rating-color);
}
.bg-rating {
  background-color: var(--rating-color) !important;
}
.bg-hover-rating:hover {
  background-color: var(--rating-color) !important;
}
.bd-rating {
  border-color: var(--rating-color) !important;
}
.bd-hover-rating:hover {
  border-color: var(--rating-color) !important;
}
.text-rating {
  color: var(--rating-color) !important;
}
.text-hover-rating:hover {
  color: var(--rating-color) !important;
}
.btn-rating {
  background-color: var(--rating-color);
  border-color: var(--rating-color);
}
.btn-hover-rating:hover, .btn-hover-rating:active, .btn-hover-rating:focus {
  background-color: var(--rating-color);
  border-color: var(--rating-color);
}
.body-color {
  color: var(--body-color);
}
.bg-body {
  background-color: var(--body-color) !important;
}
.bg-hover-body:hover {
  background-color: var(--body-color) !important;
}
.bd-body {
  border-color: var(--body-color) !important;
}
.bd-hover-body:hover {
  border-color: var(--body-color) !important;
}
.text-body {
  color: var(--body-color) !important;
}
.text-hover-body:hover {
  color: var(--body-color) !important;
}
.btn-body {
  background-color: var(--body-color);
  border-color: var(--body-color);
}
.btn-hover-body:hover, .btn-hover-body:active, .btn-hover-body:focus {
  background-color: var(--body-color);
  border-color: var(--body-color);
}
.heading-color {
  color: var(--heading-color);
}
.bg-heading {
  background-color: var(--heading-color) !important;
}
.bg-hover-heading:hover {
  background-color: var(--heading-color) !important;
}
.bd-heading {
  border-color: var(--heading-color) !important;
}
.bd-hover-heading:hover {
  border-color: var(--heading-color) !important;
}
.text-heading {
  color: var(--heading-color) !important;
}
.text-hover-heading:hover {
  color: var(--heading-color) !important;
}
.btn-heading {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}
.btn-hover-heading:hover, .btn-hover-heading:active, .btn-hover-heading:focus {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}
.white-color {
  color: var(--white-color);
}
.bg-white {
  background-color: var(--white-color) !important;
}
.bg-hover-white:hover {
  background-color: var(--white-color) !important;
}
.bd-white {
  border-color: var(--white-color) !important;
}
.bd-hover-white:hover {
  border-color: var(--white-color) !important;
}
.text-white {
  color: var(--white-color) !important;
}
.text-hover-white:hover {
  color: var(--white-color) !important;
}
.btn-white {
  background-color: var(--white-color);
  border-color: var(--white-color);
}
.btn-hover-white:hover, .btn-hover-white:active, .btn-hover-white:focus {
  background-color: var(--white-color);
  border-color: var(--white-color);
}
.rotateX-45 {
  transform: rotateX(45deg);
  -webkit-transform: rotateX(45deg);
  -khtml-transform: rotateX(45deg);
  -moz-transform: rotateX(45deg);
  -ms-transform: rotateX(45deg);
  -o-transform: rotateX(45deg);
}
.rotateY-45 {
  transform: rotateY(45deg);
  -webkit-transform: rotateY(45deg);
  -khtml-transform: rotateY(45deg);
  -moz-transform: rotateY(45deg);
  -ms-transform: rotateY(45deg);
  -o-transform: rotateY(45deg);
}
.icon-rotateX-45:before {
  display: inline-block;
  transform: rotateX(45deg);
  -webkit-transform: rotateX(45deg);
  -khtml-transform: rotateX(45deg);
  -moz-transform: rotateX(45deg);
  -ms-transform: rotateX(45deg);
  -o-transform: rotateX(45deg);
}
.icon-rotateY-45:before {
  display: inline-block;
  transform: rotateY(45deg);
  -webkit-transform: rotateY(45deg);
  -khtml-transform: rotateY(45deg);
  -moz-transform: rotateY(45deg);
  -ms-transform: rotateY(45deg);
  -o-transform: rotateY(45deg);
}
.rotateX-90 {
  transform: rotateX(90deg);
  -webkit-transform: rotateX(90deg);
  -khtml-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  -ms-transform: rotateX(90deg);
  -o-transform: rotateX(90deg);
}
.rotateY-90 {
  transform: rotateY(90deg);
  -webkit-transform: rotateY(90deg);
  -khtml-transform: rotateY(90deg);
  -moz-transform: rotateY(90deg);
  -ms-transform: rotateY(90deg);
  -o-transform: rotateY(90deg);
}
.icon-rotateX-90:before {
  display: inline-block;
  transform: rotateX(90deg);
  -webkit-transform: rotateX(90deg);
  -khtml-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  -ms-transform: rotateX(90deg);
  -o-transform: rotateX(90deg);
}
.icon-rotateY-90:before {
  display: inline-block;
  transform: rotateY(90deg);
  -webkit-transform: rotateY(90deg);
  -khtml-transform: rotateY(90deg);
  -moz-transform: rotateY(90deg);
  -ms-transform: rotateY(90deg);
  -o-transform: rotateY(90deg);
}
.rotateX-180 {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -khtml-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.rotateY-180 {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -khtml-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.icon-rotateX-180:before {
  display: inline-block;
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -khtml-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.icon-rotateY-180:before {
  display: inline-block;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -khtml-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.rotateX-270 {
  transform: rotateX(270deg);
  -webkit-transform: rotateX(270deg);
  -khtml-transform: rotateX(270deg);
  -moz-transform: rotateX(270deg);
  -ms-transform: rotateX(270deg);
  -o-transform: rotateX(270deg);
}
.rotateY-270 {
  transform: rotateY(270deg);
  -webkit-transform: rotateY(270deg);
  -khtml-transform: rotateY(270deg);
  -moz-transform: rotateY(270deg);
  -ms-transform: rotateY(270deg);
  -o-transform: rotateY(270deg);
}
.icon-rotateX-270:before {
  display: inline-block;
  transform: rotateX(270deg);
  -webkit-transform: rotateX(270deg);
  -khtml-transform: rotateX(270deg);
  -moz-transform: rotateX(270deg);
  -ms-transform: rotateX(270deg);
  -o-transform: rotateX(270deg);
}
.icon-rotateY-270:before {
  display: inline-block;
  transform: rotateY(270deg);
  -webkit-transform: rotateY(270deg);
  -khtml-transform: rotateY(270deg);
  -moz-transform: rotateY(270deg);
  -ms-transform: rotateY(270deg);
  -o-transform: rotateY(270deg);
}
.rotateX-360 {
  transform: rotateX(360deg);
  -webkit-transform: rotateX(360deg);
  -khtml-transform: rotateX(360deg);
  -moz-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  -o-transform: rotateX(360deg);
}
.rotateY-360 {
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -khtml-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
}
.icon-rotateX-360:before {
  display: inline-block;
  transform: rotateX(360deg);
  -webkit-transform: rotateX(360deg);
  -khtml-transform: rotateX(360deg);
  -moz-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  -o-transform: rotateX(360deg);
}
.icon-rotateY-360:before {
  display: inline-block;
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -khtml-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
}
.kng-shadow-1 {
  box-shadow: ;
  -webkit-box-shadow: ;
  -khtml-box-shadow: ;
  -moz-box-shadow: ;
  -ms-box-shadow: ;
  -o-box-shadow: ;
}
.kng-hover-shadow-1:hover {
  box-shadow: ;
  -webkit-box-shadow: ;
  -khtml-box-shadow: ;
  -moz-box-shadow: ;
  -ms-box-shadow: ;
  -o-box-shadow: ;
}
.kng-shadow-2 {
  box-shadow: ;
  -webkit-box-shadow: ;
  -khtml-box-shadow: ;
  -moz-box-shadow: ;
  -ms-box-shadow: ;
  -o-box-shadow: ;
}
.kng-hover-shadow-2:hover {
  box-shadow: ;
  -webkit-box-shadow: ;
  -khtml-box-shadow: ;
  -moz-box-shadow: ;
  -ms-box-shadow: ;
  -o-box-shadow: ;
}
.kng-abs-t-0 {
  top: 0px;
}
.kng-abs-r-0 {
  right: 0px;
}
[dir="rtl"] .kng-abs-r-0 {
  right: auto;
  left: 0px;
}
.kng-abs-b-0 {
  bottom: 0px;
}
.kng-abs-l-0 {
  left: 0px;
}
[dir="rtl"] .kng-abs-l-0 {
  left: auto;
  right: 0px;
}
.kng-abs-t-5 {
  top: 5px;
}
.kng-abs-r-5 {
  right: 5px;
}
[dir="rtl"] .kng-abs-r-5 {
  right: auto;
  left: 5px;
}
.kng-abs-b-5 {
  bottom: 5px;
}
.kng-abs-l-5 {
  left: 5px;
}
[dir="rtl"] .kng-abs-l-5 {
  left: auto;
  right: 5px;
}
.kng-abs-t-10 {
  top: 10px;
}
.kng-abs-r-10 {
  right: 10px;
}
[dir="rtl"] .kng-abs-r-10 {
  right: auto;
  left: 10px;
}
.kng-abs-b-10 {
  bottom: 10px;
}
.kng-abs-l-10 {
  left: 10px;
}
[dir="rtl"] .kng-abs-l-10 {
  left: auto;
  right: 10px;
}
.kng-abs-t-15 {
  top: 15px;
}
.kng-abs-r-15 {
  right: 15px;
}
[dir="rtl"] .kng-abs-r-15 {
  right: auto;
  left: 15px;
}
.kng-abs-b-15 {
  bottom: 15px;
}
.kng-abs-l-15 {
  left: 15px;
}
[dir="rtl"] .kng-abs-l-15 {
  left: auto;
  right: 15px;
}
.kng-abs-t-20 {
  top: 20px;
}
.kng-abs-r-20 {
  right: 20px;
}
[dir="rtl"] .kng-abs-r-20 {
  right: auto;
  left: 20px;
}
.kng-abs-b-20 {
  bottom: 20px;
}
.kng-abs-l-20 {
  left: 20px;
}
[dir="rtl"] .kng-abs-l-20 {
  left: auto;
  right: 20px;
}
.kng-abs-t-25 {
  top: 25px;
}
.kng-abs-r-25 {
  right: 25px;
}
[dir="rtl"] .kng-abs-r-25 {
  right: auto;
  left: 25px;
}
.kng-abs-b-25 {
  bottom: 25px;
}
.kng-abs-l-25 {
  left: 25px;
}
[dir="rtl"] .kng-abs-l-25 {
  left: auto;
  right: 25px;
}
.kng-abs-t-30 {
  top: 30px;
}
.kng-abs-r-30 {
  right: 30px;
}
[dir="rtl"] .kng-abs-r-30 {
  right: auto;
  left: 30px;
}
.kng-abs-b-30 {
  bottom: 30px;
}
.kng-abs-l-30 {
  left: 30px;
}
[dir="rtl"] .kng-abs-l-30 {
  left: auto;
  right: 30px;
}
.kng-abs-t-35 {
  top: 35px;
}
.kng-abs-r-35 {
  right: 35px;
}
[dir="rtl"] .kng-abs-r-35 {
  right: auto;
  left: 35px;
}
.kng-abs-b-35 {
  bottom: 35px;
}
.kng-abs-l-35 {
  left: 35px;
}
[dir="rtl"] .kng-abs-l-35 {
  left: auto;
  right: 35px;
}
.kng-abs-t-40 {
  top: 40px;
}
.kng-abs-r-40 {
  right: 40px;
}
[dir="rtl"] .kng-abs-r-40 {
  right: auto;
  left: 40px;
}
.kng-abs-b-40 {
  bottom: 40px;
}
.kng-abs-l-40 {
  left: 40px;
}
[dir="rtl"] .kng-abs-l-40 {
  left: auto;
  right: 40px;
}
.kng-none {
  display: none !important;
}
@media (min-width: 768px) {
  .kng-tb-none {
    display: none !important;
  }
  .kng-tb-block {
    display: block !important;
  }
}
@media (min-width: 1025px) {
  /* Social Color
 * establish social media colors
*/  .kng-dt-none {
    display: none !important;
  }
  .kng-dt-block {
    display: block !important;
  }
}
.kng-svg {
  vertical-align: middle;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-svg path {
  fill: ;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.kng-svg:hover path {
  fill: var(--primary-color);
}
a:hover > .kng-svg path {
  fill: var(--primary-color);
}
a:hover > span > .kng-svg path {
  fill: var(--primary-color);
}
.kng-svg:active path {
  fill: var(--primary-color);
}
a:active > .kng-svg path {
  fill: var(--primary-color);
}
.kng-cart-toggle a:hover > .kng-svg path {
  fill: none;
  stroke: var(--primary-color);
}
.kng-cart-toggle:hover .kng-svg path {
  fill: none;
  stroke: var(--primary-color);
}
.bars:hover > svg {
  fill: none;
  stroke: var(--primary-color);
}
.woocommerce-page .kng-main {
  padding-top: 0;
}
.col2-set {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.col2-set .col-1, .col2-set .col-2 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 15px;
}
@media (min-width: 769px) {
  .col2-set .col-1, .col2-set .col-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.woocommerce-notices-wrapper {
  margin-top: 15px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f2f2f2;
}
.woocommerce-notices-wrapper:empty {
  display: none;
}
.woocommerce-notices-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .woocommerce-notices-wrapper .woocommerce-error li {
    position: relative;
    padding-right: 165px;
  }
}
@media (max-width: 767px) {
  .woocommerce-notices-wrapper .woocommerce-error li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .woocommerce-notices-wrapper .woocommerce-error li a {
    position: absolute;
    top: 50%;
    right: 0;
    width: 150px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .woocommerce-notices-wrapper .woocommerce-error li a {
    order: 2;
  }
}
@media (min-width: 768px) {
  .woocommerce-notices-wrapper .woocommerce-message {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .woocommerce-notices-wrapper .woocommerce-message a {
    margin-top: 5px;
  }
}
.woocommerce-error {
  color: #d62a28;
}
.woocommerce-info {
  color: #ffb237;
}
.woocommerce-message {
  color: #27ae60;
}
.kng-shop-topbar-wrap {
  margin-bottom: 9px;
}
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering {
  margin-bottom: 0;
  float: none;
}
select.orderby {
  height: 40px;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -khtml-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  line-height: 40px;
  padding: 0 20px;
}
@media (min-width: 1200px) {
  select.orderby {
    width: 245px;
  }
}
@media (max-width: 575px) {
  .kng-view-layout-wrap {
    display: none;
  }
}
.kng-view-layout {
  list-style: none;
  margin: 0 -2px;
}
.kng-view-layout li {
  padding: 0 2px;
}
.kng-view-layout li.lbl {
  padding-right: 11px;
}
.kng-view-layout li a {
  color: #d7d7d7;
  font-size: 16px;
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #d7d7d7;
  padding: 9px 12px;
}
.kng-view-layout li a:hover {
  color: var(--heading-color);
  border-color: var(--heading-color);
}
.kng-view-layout li a i {
  line-height: 1;
}
.kng-view-layout li.active a {
  color: var(--heading-color);
  border-color: var(--heading-color);
}
@media (max-width: 1599px) {
  .kng-view-layout li.view-6 {
    display: none;
  }
}
@media (max-width: 767px) {
  .number-result {
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 0 !important;
  }
}
.products {
  list-style: none;
  margin: -15px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.products > .product {
  float: none;
  padding: 17px 15px;
  position: relative;
}
.products > .product .price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 12px 0 0 0;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  clear: both;
  white-space: pre-wrap;
}
.products > .product .price del {
  order: 2;
  padding-left: 6px;
  font-size: 14px;
  line-height: 32px;
  color: #828282;
}
[dir="rtl"] .products > .product .price del {
  padding-left: 0;
  padding-right: 6px;
}
.products > .product .price ins {
  font-weight: inherit;
  text-decoration: none;
}
.products.columns-1 > li.product {
  max-width: 100%;
  width: 100%;
  flex: 0 0 100%;
}
.products.columns-2 > li.product {
  max-width: 50%;
  width: 50%;
  flex: 0 0 50%;
}
.products.columns-3 > li.product {
  max-width: 33.3333%;
  width: 33.3333%;
  flex: 0 0 33.3333%;
}
.products.columns-4 > li.product {
  max-width: 25%;
  width: 25%;
  flex: 0 0 25%;
}
.products.columns-5 > li.product {
  max-width: 20%;
  width: 20%;
  flex: 0 0 20%;
}
.products.columns-6 > li.product {
  max-width: 16.6666%;
  width: 16.6666%;
  flex: 0 0 16.6666%;
}
@media (max-width: 1599px) {
  .products.columns-5 > li.product {
    max-width: 25%;
    width: 25%;
    flex: 0 0 25%;
  }
  .products.columns-6 > li.product {
    max-width: 25%;
    width: 25%;
    flex: 0 0 25%;
  }
}
@media (max-width: 1279px) {
  .products.columns-4 > li.product {
    max-width: 33.3333%;
    width: 33.3333%;
    flex: 0 0 33.3333%;
  }
  .products.columns-5 > li.product {
    max-width: 33.3333%;
    width: 33.3333%;
    flex: 0 0 33.3333%;
  }
  .products.columns-6 > li.product {
    max-width: 33.3333%;
    width: 33.3333%;
    flex: 0 0 33.3333%;
  }
}
@media (max-width: 1024px) {
  .products.columns-3 > li.product {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }
  .products.columns-4 > li.product {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }
  .products.columns-5 > li.product {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }
  .products.columns-6 > li.product {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .products.columns-2 > li.product, .products.columns-3 > li.product, .products.columns-4 > li.product, .products.columns-5 > li.product, .products.columns-6 > li.product {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }
}
@media (max-width: 575px) {
  .products.columns-2 > li.product, .products.columns-3 > li.product, .products.columns-4 > li.product, .products.columns-5 > li.product, .products.columns-6 > li.product {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }
}
.products .kng-products-content {
  padding-top: 16px;
}
.products .kng-products-content .woocommerce-loop-product__link {
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
}
.products .kng-loop-product-cat {
  line-height: 17px;
  margin-top: 4px;
}
.products .kng-loop-product-cat a {
  font-size: 14px;
  color: #828282;
}
.products .kng-loop-product-cat a:hover {
  color: var(--link-color);
}
.woocommerce.columns-1 > .products > li.product {
  max-width: 100%;
  width: 100%;
  flex: 0 0 100%;
}
.woocommerce.columns-2 > .products > li.product {
  max-width: 50%;
  width: 50%;
  flex: 0 0 50%;
}
.woocommerce.columns-3 > .products > li.product {
  max-width: 33.3333%;
  width: 33.3333%;
  flex: 0 0 33.3333%;
}
.woocommerce.columns-4 > .products > li.product {
  max-width: 25%;
  width: 25%;
  flex: 0 0 25%;
}
.woocommerce.columns-5 > .products > li.product {
  max-width: 20%;
  width: 20%;
  flex: 0 0 20%;
}
.woocommerce.columns-6 > .products > li.product {
  max-width: 16.6666%;
  width: 16.6666%;
  flex: 0 0 16.6666%;
}
@media (max-width: 1599px) {
  .woocommerce.columns-5 > .products > li.product {
    max-width: 25%;
    width: 25%;
    flex: 0 0 25%;
  }
  .woocommerce.columns-6 > .products > li.product {
    max-width: 25%;
    width: 25%;
    flex: 0 0 25%;
  }
}
@media (max-width: 1279px) {
  .woocommerce.columns-4 > .products > li.product {
    max-width: 33.3333%;
    width: 33.3333%;
    flex: 0 0 33.3333%;
  }
  .woocommerce.columns-5 > .products > li.product {
    max-width: 33.3333%;
    width: 33.3333%;
    flex: 0 0 33.3333%;
  }
  .woocommerce.columns-6 > .products > li.product {
    max-width: 33.3333%;
    width: 33.3333%;
    flex: 0 0 33.3333%;
  }
}
@media (max-width: 1024px) {
  .woocommerce.columns-3 > .products > li.product {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }
  .woocommerce.columns-4 > .products > li.product {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }
  .woocommerce.columns-5 > .products > li.product {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }
  .woocommerce.columns-6 > .products > li.product {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .woocommerce.columns-2 > .products > li.product, .woocommerce.columns-3 > .products > li.product, .woocommerce.columns-4 > .products > li.product, .woocommerce.columns-5 > .products > li.product, .woocommerce.columns-6 > .products > li.product {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
  }
}
@media (max-width: 575px) {
  .woocommerce.columns-2 > .products > li.product, .woocommerce.columns-3 > .products > li.product, .woocommerce.columns-4 > .products > li.product, .woocommerce.columns-5 > .products > li.product, .woocommerce.columns-6 > .products > li.product {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 1600px) {
  .kng-content-area.has-sidebar .products.columns-6 > li.product .kng-after-product-thumb {
    left: 10px;
    right: 10px;
  }
  .kng-content-area.has-sidebar .products.columns-6 > li.product .kng-after-product-thumb > .btn {
    padding-left: 5px;
    padding-right: 5px;
  }
  .kng-content-area.has-sidebar .products.columns-6 > li.product .kng-after-product-thumb .product_type_variable.add_to_cart_button .kng-btn-icon {
    display: none;
  }
  .kng-content-area.has-sidebar .products.columns-6 > li.product .review-num {
    display: none;
  }
  .kng-content-area.has-sidebar .products.columns-6 > li.product .price {
    font-size: 16px;
  }
}
.woocommerce-loop-product__link {
  display: block;
}
.kng-badge {
  position: absolute;
  top: 50px;
  left: -100%;
  z-index: 2;
  transition: left 0.3s ease-in-out;
  -webkit-transition: left 0.3s ease-in-out;
  -khtml-transition: left 0.3s ease-in-out;
  -moz-transition: left 0.3s ease-in-out;
  -ms-transition: left 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .kng-badge {
    top: 80px;
  }
}
@media (max-width: 480px) {
  .kng-badge {
    top: 60px;
  }
}
.kng-badge span + span {
  margin-top: 5px;
}
.kng-badge span {
  display: block;
}
.kng-overlay-wrap:hover .kng-badge {
  left: 0;
}
.kng-hot {
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.2em;
  color: #fff;
  background-color: var(--second-color);
  padding: 6px 12px;
  height: 29px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.kng-onsale {
  background-color: #d62a28;
  color: #fff;
  min-width: 56px;
  height: 29px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.kng-onsale.single {
  left: 20px;
  right: auto;
}
[dir="rtl"] .kng-onsale {
  right: auto;
  left: 16px;
}
[dir="rtl"] .kng-onsale.single {
  left: auto;
  right: 16px;
}
.add_to_cart_button, .button.product_type_grouped, .added_to_cart {
  min-width: 100%;
}
.add_to_cart_button .kng-btn-icon, .button.product_type_grouped .kng-btn-icon, .added_to_cart .kng-btn-icon {
  font-size: 12px;
}
.add_to_cart_button.loading .kng-addtocart-icon, .product_type_grouped.loading .kng-addtocart-icon, .product_type_external.loading .kng-addtocart-icon {
  display: inline-block;
  animation: kng-spin 2s linear infinite;
  -webkit-animation: kng-spin 2s linear infinite;
  -khtml-animation: kng-spin 2s linear infinite;
  -moz-animation: kng-spin 2s linear infinite;
  -ms-animation: kng-spin 2s linear infinite;
  -o-animation: kng-spin 2s linear infinite;
}
.add_to_cart_button.loading .kng-addtocart-icon:before, .product_type_grouped.loading .kng-addtocart-icon:before, .product_type_external.loading .kng-addtocart-icon:before {
  content: "\e95b";
  font-family: 'kngi';
}
.add_to_cart_button.added + .added_to_cart, .product_type_grouped.added + .added_to_cart, .product_type_external.added + .added_to_cart {
  display: block;
}
.add_to_cart_button + .added_to_cart, .product_type_grouped + .added_to_cart, .product_type_external + .added_to_cart {
  display: none;
}
.woocommerce-pagination {
  margin-top: 66px;
  justify-content: center;
}
.kng-products-thumb {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.kng-products-thumb img {
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  position: relative;
  z-index: 1;
}
.kng-products-thumb .kng-overlay-content-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -15px;
}
.kng-products-thumb .kng-overlay-content-end > * {
  margin: 15px;
  flex: 0 0 auto;
}
.kng-after-product-thumb {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
}
@media (max-width: 575px) {
  .kng-after-product-thumb {
    display: none;
  }
}
.kng-after-product-thumb > .btn {
  font-weight: 500;
  font-size: 12px;
  line-height: 32px;
  letter-spacing: 0.12em;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.kng-after-product-thumb > .btn.added {
  margin-bottom: 5px;
}
.kng-after-product-thumb .product_type_grouped {
  transform: translateY(48px);
  -webkit-transform: translateY(48px);
  -khtml-transform: translateY(48px);
  -moz-transform: translateY(48px);
  -ms-transform: translateY(48px);
  -o-transform: translateY(48px);
}
.kng-after-product-thumb .add_to_cart_button {
  transform: translateY(48px);
  -webkit-transform: translateY(48px);
  -khtml-transform: translateY(48px);
  -moz-transform: translateY(48px);
  -ms-transform: translateY(48px);
  -o-transform: translateY(48px);
}
.kng-after-product-thumb .kng-addtocart-icon {
  margin-left: 5px;
}
.add_to_cart_inline > .btn.added {
  margin-bottom: 5px;
}
.add_to_cart_inline .kng-addtocart-icon {
  margin-left: 5px;
}
.products .kng-overlay-wrap .kng-overlay-content {
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
}
.products .kng-overlay-wrap:hover .kng-overlay-content {
  background: rgba(var(--primary-color-rgb), 0.06);
}
.products .kng-overlay-wrap:hover .kng-after-product-thumb {
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
}
.products .kng-overlay-wrap:hover .kng-after-product-thumb .product_type_grouped {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -khtml-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.products .kng-overlay-wrap:hover .kng-after-product-thumb .add_to_cart_button {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -khtml-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.woosw-btn {
  font-size: 0;
}
.woosw-btn:before {
  width: 16px;
  height: 16px;
  font-family: "kngi";
  content: '\e970';
  font-size: 16px;
  text-indent: 0;
  line-height: 1;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -khtml-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.woosw-btn.woosw-adding:before {
  content: "\e95b";
  font-family: 'kngi';
  animation: kng-spin 2s linear infinite;
  -webkit-animation: kng-spin 2s linear infinite;
  -khtml-animation: kng-spin 2s linear infinite;
  -moz-animation: kng-spin 2s linear infinite;
  -ms-animation: kng-spin 2s linear infinite;
  -o-animation: kng-spin 2s linear infinite;
}
.woosc-btn {
  font-size: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
}
.woosc-btn:before {
  width: 16px;
  height: 16px;
  content: '\f080';
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  text-indent: 0;
  line-height: 1;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -khtml-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.woosc-btn:hover, .woosc-btn:active, .woosc-btn:focus {
  background-color: transparent;
}
.products .woosw-btn {
  /* none list view */
}
.products .woosw-btn:before {
  position: absolute;
  top: 22px;
  right: 16px;
  color: #fff;
}
.products .woosw-btn:hover:before {
  color: var(--primary-color);
}
.kng-products-content-inner .kng-loop-product-cat-rating {
  display: none;
}
.kng-products-content-inner .kng-loop-product-excerpt {
  display: none;
}
.kng-products-content-inner .kng-loop-product-attribute {
  display: none;
}
.kng-products-content-list-view {
  display: none;
  /* end none list view */
}
@media (max-width: 575px) {
  .kng-products-content-list-view {
    display: block;
  }
  .kng-products-content-list-view .kng-atc-btn-ext {
    display: none;
  }
}
@media (max-width: 575px) {
  .kng-products-content-list-view .price {
    display: none !important;
  }
}
.kng-products-content-list-view .add_to_cart_button {
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  text-transform: inherit;
  letter-spacing: 0.12em;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .kng-products-content-list-view .add_to_cart_button {
    margin-bottom: 10px;
  }
}
.kng-products-content-list-view .btn.product_type_grouped {
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  text-transform: inherit;
  letter-spacing: 0.12em;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .kng-products-content-list-view .btn.product_type_grouped {
    margin-bottom: 10px;
  }
}
.kng-products-content-list-view .kng-addtocart-icon {
  margin-left: 8px;
}
.products.shop-view-list {
  margin: -12px 0;
}
.products.shop-view-list > .product {
  max-width: 100%;
  width: 100%;
  flex: 0 0 100%;
  margin: 12px 0;
  padding: 24px;
  background-color: rgba(242, 242, 242, 0.6);
}
@media (max-width: 1199px) {
  .products.shop-view-list > .product {
    padding: 0 0 38px 0;
    background-color: transparent;
  }
}
.products.shop-view-list .kng-shop-item-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: -27px;
  margin-right: -27px;
}
@media (max-width: 1599px) {
  .products.shop-view-list .kng-shop-item-wrap {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 575px) {
  .products.shop-view-list .kng-shop-item-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
.products.shop-view-list .kng-shop-item-wrap > div {
  margin-left: 27px;
  margin-right: 27px;
}
@media (max-width: 1599px) {
  .products.shop-view-list .kng-shop-item-wrap > div {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 575px) {
  .products.shop-view-list .kng-shop-item-wrap > div {
    margin-left: 0;
    margin-right: 0;
  }
}
.products.shop-view-list .kng-shop-item-wrap .kng-products-thumb {
  flex: 0 0 210px;
  max-width: 210px;
  align-self: flex-start;
}
@media (max-width: 575px) {
  .products.shop-view-list .kng-shop-item-wrap .kng-products-thumb {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.products.shop-view-list .kng-shop-item-wrap .kng-products-content {
  flex: 0 0 calc(100% - (210px + 108px));
  max-width: calc(100% - (210px + 108px));
}
@media (max-width: 1599px) {
  .products.shop-view-list .kng-shop-item-wrap .kng-products-content {
    flex: 0 0 calc(100% - (210px + 60px));
    max-width: calc(100% - (210px + 60px));
  }
}
@media (max-width: 575px) {
  .products.shop-view-list .kng-shop-item-wrap .kng-products-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.products.shop-view-list .kng-products-thumb .kng-after-product-thumb {
  display: none;
}
.products.shop-view-list .kng-products-content-inner .kng-rating-wrap {
  display: none;
}
.products.shop-view-list .kng-products-content-inner .kng-loop-product-cat {
  display: none;
}
.products.shop-view-list .kng-products-content-inner span.price {
  display: none;
}
.products.shop-view-list .kng-products-content-inner .kng-loop-product-cat-rating {
  display: block;
}
.products.shop-view-list .kng-products-content-inner .kng-loop-product-excerpt {
  display: block;
}
.products.shop-view-list .kng-products-content-inner .kng-loop-product-attribute {
  display: block;
}
.products.shop-view-list .kng-products-content-list-view {
  display: block;
}
.products.shop-view-list .kng-overlay-wrap:hover .kng-overlay-content {
  background-color: transparent;
}
.products.shop-view-list .kng-products-content-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.products.shop-view-list .kng-products-content-wrap .kng-products-content-inner {
  flex: 0 0 calc(100% - 234px);
  max-width: calc(100% - 234px);
  padding-right: 30px;
}
@media (max-width: 1599px) {
  .products.shop-view-list .kng-products-content-wrap .kng-products-content-inner {
    flex: 0 0 calc(100% - 180px);
    max-width: calc(100% - 180px);
  }
}
@media (max-width: 1199px) {
  .products.shop-view-list .kng-products-content-wrap .kng-products-content-inner {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
}
.products.shop-view-list .kng-products-content-wrap .kng-products-content-list-view {
  flex: 0 0 234px;
  max-width: 234px;
}
@media (max-width: 1599px) {
  .products.shop-view-list .kng-products-content-wrap .kng-products-content-list-view {
    flex: 0 0 180px;
    max-width: 180px;
  }
}
@media (max-width: 1199px) {
  .products.shop-view-list .kng-products-content-wrap .kng-products-content-list-view {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.products.shop-view-list .kng-products-content .woocommerce-loop-product__link {
  margin-bottom: 7px;
}
.products.shop-view-list .kng-products-content .kng-loop-product-cat-rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 17px;
  color: #828282;
  align-items: center;
}
.products.shop-view-list .kng-products-content .kng-loop-product-cat-rating a {
  color: inherit;
}
.products.shop-view-list .kng-products-content .kng-loop-product-cat-rating a:hover {
  color: var(--link-color-hover);
}
.products.shop-view-list .kng-products-content .kng-loop-product-cat-rating .kng-loop-product-category {
  margin-right: 12px;
}
.products.shop-view-list .kng-products-content .kng-loop-product-cat-rating .kng-rating-wraps {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.products.shop-view-list .kng-products-content .kng-loop-product-excerpt {
  color: #828282;
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .products.shop-view-list .kng-products-content .kng-loop-product-excerpt {
    display: none;
  }
}
.products.shop-view-list .kng-products-content .kng-loop-product-attribute {
  margin-top: 16px;
  list-style: disc;
}
@media (max-width: 767px) {
  .products.shop-view-list .kng-products-content .kng-loop-product-attribute {
    display: none;
  }
}
.products.shop-view-list .kng-products-content .kng-loop-product-attribute li .lbl {
  color: #828282;
  margin-right: 4px;
}
.products.shop-view-list .kng-products-content .kng-loop-product-attribute li .value {
  color: var(--heading-color);
}
.products.shop-view-list .kng-products-content .kng-loop-product-attribute li .value p {
  display: inline-block;
}
.products.shop-view-list .kng-products-content-list-view .add_to_cart_button {
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  text-transform: inherit;
  letter-spacing: 0.12em;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .products.shop-view-list .kng-products-content-list-view .add_to_cart_button {
    margin-bottom: 10px;
  }
}
.products.shop-view-list .kng-products-content-list-view .added_to_cart {
  margin-bottom: 20px;
  text-transform: inherit;
}
.products.shop-view-list .kng-products-content-list-view .kng-addtocart-icon {
  margin-left: 8px;
}
@media (max-width: 1199px) {
  .products.shop-view-list .kng-products-content-list-view .kng-atc-btn-ext {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .products.shop-view-list .kng-products-content-list-view .kng-atc-btn-ext button + button {
    margin-left: 30px;
  }
}
.products.shop-view-list .kng-products-content-list-view .kng-atc-btn-ext button {
  font-size: 15px;
  line-height: 32px;
  color: #828282;
  margin: 0;
  padding: 0;
  font-weight: 400;
  border: 0;
  background-color: transparent;
  text-transform: inherit;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.products.shop-view-list .kng-products-content-list-view .kng-atc-btn-ext button:before {
  position: relative;
  top: 0;
  left: 0;
  margin-right: 4px;
  color: #828282;
}
.products.shop-view-list .kng-products-content-list-view .kng-atc-btn-ext button:hover {
  color: var(--heading-color);
}
.products.shop-view-list .kng-products-content-list-view .kng-atc-btn-ext button:hover:before {
  color: var(--heading-color);
}
@media (min-width: 992px) {
  .kng-content-woo-single .kng-content-area.col-lg-10 {
    -ms-flex: 0 0 calc(100% - 232px);
    flex: 0 0 calc(100% - 232px);
    max-width: calc(100% - 232px);
  }
  .kng-content-woo-single .kng-sidebar-area.col-lg-2 {
    -ms-flex: 0 0 232px;
    flex: 0 0 232px;
    max-width: 232px;
  }
}
@media (min-width: 1200px) {
  .kng-content-woo-single {
    margin-left: -28px;
    margin-right: -28px;
  }
  .kng-content-woo-single > div {
    padding-left: 28px;
    padding-right: 28px;
  }
  .kng-content-woo-single .kng-content-area.col-lg-10 {
    -ms-flex: 0 0 calc(100% - 288px);
    flex: 0 0 calc(100% - 288px);
    max-width: calc(100% - 288px);
  }
  .kng-content-woo-single .kng-sidebar-area.col-lg-2 {
    -ms-flex: 0 0 288px;
    flex: 0 0 288px;
    max-width: 288px;
  }
}
@media (min-width: 992px) {
  .kng-content-woo-page .kng-content-area.col-lg-10 {
    -ms-flex: 0 0 calc(100% - 258px);
    flex: 0 0 calc(100% - 258px);
    max-width: calc(100% - 258px);
  }
  .kng-content-woo-page .kng-sidebar-area.col-lg-2 {
    -ms-flex: 0 0 258px;
    flex: 0 0 258px;
    max-width: 258px;
  }
}
@media (min-width: 1200px) {
  .kng-content-woo-page .kng-content-area.col-lg-10 {
    -ms-flex: 0 0 calc(100% - 288px);
    flex: 0 0 calc(100% - 288px);
    max-width: calc(100% - 288px);
  }
  .kng-content-woo-page .kng-sidebar-area.col-lg-2 {
    -ms-flex: 0 0 288px;
    flex: 0 0 288px;
    max-width: 288px;
  }
}
.kng-sidebar-shop {
  /**
 * Price filter widget
 */
}
.kng-sidebar-shop .kng-sidebar-area-inner {
  background-color: #f9f9f9;
  padding: 24px;
}
@media (max-width: 1365px) {
  .kng-sidebar-shop .kng-sidebar-area-inner {
    padding: 24px 15px;
  }
}
.kng-sidebar-shop .woocommerce-product-search {
  position: relative;
}
.kng-sidebar-shop .woocommerce-product-search [type="search"] {
  padding-right: 25px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  box-shadow: none;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
}
[dir="rtl"] .kng-sidebar-shop .woocommerce-product-search [type="search"] {
  padding-right: 20px;
  padding-left: 48px;
}
.kng-sidebar-shop .woocommerce-product-search [type="submit"] {
  width: 40px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  border: 0;
  font-size: 0;
  text-indent: -9999;
  color: #333;
}
[dir="rtl"] .kng-sidebar-shop .woocommerce-product-search [type="submit"] {
  right: auto;
  left: 0;
}
.kng-sidebar-shop .woocommerce-product-search [type="submit"]:before {
  font-family: 'Font Awesome 5 Pro';
  content: "\f002";
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-indent: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.kng-sidebar-shop .woocommerce-product-search [type="submit"]:hover {
  color: var(--primary-color);
}
.kng-sidebar-shop .widget_product_categories .kng-list-item {
  position: relative;
}
.kng-sidebar-shop .widget_product_categories ul.children {
  display: none;
}
.widget_price_filter .price_slider {
  margin-bottom: 1em;
}
.widget_price_filter .price_slider_amount .price_label {
  display: inline-block;
  color: var(--heading-color);
}
.widget_price_filter .price_slider_amount button {
  background: none;
  color: var(--primary-color);
  font-weight: 500;
  padding: 8px 20px 8px 5px;
  margin: 0;
  float: right;
  border: none;
  font-size: 13px;
  line-height: normal;
  text-transform: capitalize;
  letter-spacing: 0.12em;
  position: relative;
  transition: padding 0.3s ease;
  -webkit-transition: padding 0.3s ease;
  -khtml-transition: padding 0.3s ease;
  -moz-transition: padding 0.3s ease;
  -ms-transition: padding 0.3s ease;
  -o-transition: padding 0.3s ease;
}
.widget_price_filter .price_slider_amount button:before {
  content: "\f061";
  font-family: 'Font Awesome 5 Pro';
  display: inline-block;
  position: absolute;
  right: 0;
  top: 10px;
}
.widget_price_filter .price_slider_amount button:hover {
  color: var(--heading-color);
}
.widget_price_filter .ui-slider {
  position: relative;
  text-align: start;
}
.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  cursor: ew-resize;
  outline: none;
  top: -4px;
}
.widget_price_filter .ui-slider .ui-slider-handle + .ui-slider-handle {
  margin-left: -12px;
}
.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  border-radius: 5px;
  background-color: var(--primary-color);
}
.widget_price_filter .price_slider_wrapper .ui-widget-content:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #d7d7d7;
}
.widget_price_filter .ui-slider-horizontal {
  height: 4px;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
  left: 0px;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
  right: 0px;
}
.widget_rating_filter li.wc-layered-nav-rating > a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #828282;
}
@media screen and (max-width: 991px) {
  .kng-wg-products {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
  }
}
.kng-wg-products .product {
  position: relative;
  margin-bottom: 42px;
}
@media screen and (max-width: 991px) {
  .kng-wg-products .product {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 575px) {
  .kng-wg-products .product {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.kng-wg-products .product:last-child {
  margin-bottom: 0;
}
.kng-wg-products .kng-onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  height: auto;
  padding: 3px 8px;
  min-width: auto;
}
.kng-wg-products .product-img {
  margin-bottom: 12px;
  display: block;
}
@media (max-width: 575px) {
  .kng-wg-products .product-img img {
    width: 100%;
  }
}
.kng-wg-products .product-title {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 4px;
}
.kng-wg-products .product-cat a {
  font-size: 14px;
  line-height: 17px;
  color: #828282;
}
.kng-wg-products .product-cat a:hover {
  color: var(--link-color);
}
.kng-wg-products .price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 12px 0 0 0;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  clear: both;
}
.kng-wg-products .price del {
  order: 2;
  padding-left: 6px;
  font-size: 14px;
  line-height: 32px;
  color: #828282;
}
[dir="rtl"] .kng-wg-products .price del {
  padding-left: 0;
  padding-right: 6px;
}
.kng-wg-products .price ins {
  font-weight: inherit;
  text-decoration: none;
}
.rating-container {
  display: inline-block;
  height: 24px;
  /* remove inline-block whitespace */
  vertical-align: top;
  /* flip the order so we can use the + and ~ combinators */
  font-size: 0;
  unicode-bidi: bidi-override;
  direction: rtl;
}
.rating-container * {
  font-size: 20px;
}
.rating-container > input {
  display: none;
}
.rating-container > input + label {
  font-family: 'Font Awesome 5 Pro';
  line-height: 1;
}
.rating-container > input + label:before {
  display: inline-block;
  content: "\f005";
  color: #ffb237;
}
.rating-container > input:checked ~ label:before, .rating-container > input + label:hover ~ label:before, .rating-container > input + label:hover:before, .kng-rating-icon-filled:before {
  content: "\f005";
  color: #ffb237;
}
.rating-container:hover > input + label:before, .kng-rating-icon-empty:before {
  content: "\f005";
  color: #ffb237;
  text-shadow: none;
}
.rating-container:hover > input + label:hover ~ label:before, .rating-container:hover > input + label:hover:before {
  content: "\f005";
  color: #ffb237;
}
.kng-rating-icon-filled, .kng-rating-icon-empty {
  font-family: 'Font Awesome 5 Pro';
  display: inline-block;
  overflow: hidden;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}
.kng-rating-icon-empty {
  z-index: -1;
}
.kng-star-rating {
  width: 90px;
  height: 14px;
  display: inline-block;
  letter-spacing: 3px;
  color: #ffb237;
}
.kng-star-rating:before {
  font-family: 'Font Awesome 5 Pro';
  content: '\e948\e948\e948\e948\e948';
}
.kng-star-rating .kng-star-rated {
  top: 0;
}
.kng-star-rating .kng-star-rated:before {
  font-family: 'Font Awesome 5 Pro';
  content: '\e949\e949\e949\e949\e949';
}
.kng-star-rated {
  color: #ffb237;
}
.woocommerce-product-rating {
  display: flex;
  flex-wrap: wrap;
  line-height: normal;
  margin: 0;
  align-items: center;
}
p.stars {
  margin: 0;
}
p.stars > span {
  margin-bottom: -15px;
  display: block;
}
.star-rating {
  font-family: 'Font Awesome 5 Pro';
  color: #ffb237;
  font-size: 10px;
  letter-spacing: 6px;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  width: 82px;
  height: 32px;
  line-height: 32px;
  overflow: hidden;
}
.star-rating:before, .star-rating > span:before, .star-rating .kng-star-rated:before {
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
  display: block;
  overflow: hidden;
}
.star-rating > span:before, .star-rating .kng-star-rated:before, .star-rating[aria-label="Rated 0 out of 5"]:before {
  color: #ffb237;
  font-weight: 900;
}
.star-rating .kng-star-rated, .star-rating > span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 32px;
}
[dir="rtl"] .star-rating .kng-star-rated, [dir="rtl"] .star-rating > span {
  left: auto;
  right: 0;
}
.star-rating + .woocommerce-review-link {
  font-size: 13px;
  color: ;
}
.star-rating + .woocommerce-review-link:hover {
  color: var(--primary-color);
}
[dir="rtl"] .star-rating + .woocommerce-review-link {
  margin-left: 0;
  margin-right: 30px;
}
.kng-rating-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.review-num {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: #828282;
  line-height: 32px;
  padding-left: 3px;
  /**
 * Star ratings
 */
}
p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  color: #ffb237;
}
p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: 'Font Awesome 5 Pro';
  content: "\f005";
  text-indent: 0;
}
p.stars a:hover ~ a::before {
  content: "\f005";
  font-weight: 300;
}
p.stars:hover a::before {
  content: "\f005";
  font-weight: 900;
}
p.stars.selected a.active::before {
  content: "\f005";
  font-weight: 900;
}
p.stars.selected a.active ~ a::before {
  content: "\f005";
  font-weight: 300;
}
p.stars.selected a:not(.active)::before {
  content: "\f005";
  font-weight: 900;
}
.single-product .kng-main {
  padding-top: 0;
}
.kng-single-product-gallery-summary-wraps {
  margin: -15px;
}
.kng-single-product-gallery-summary-wraps > div {
  padding: 15px;
}
.kng-single-product-gallery-summary-wraps > div.kng-single-product-gallery-wraps {
  text-align: center;
}
.kng-single-product-gallery-summary-wraps > div > .kng-single-product-gallery-wraps-inner {
  display: inline-block;
}
.woocommerce-product-gallery {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 30px;
  height: 30px;
  color: var(--primary-color);
  z-index: 1;
  text-align: center;
  line-height: 26px;
  font-size: 0;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {
  font-family: 'Font Awesome 5 Pro';
  content: "\f002";
  font-size: 16px;
  line-height: 30px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
  color: var(--second-color);
}
[dir="rtl"] .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  left: 20px;
  right: auto;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  padding: 0;
  margin: 0;
  position: relative;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image {
  border-radius: 8px;
  background: #f9f9f9;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image .wp-post-image {
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.06);
  -khtml-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.06);
  -ms-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
.woocommerce-product-gallery.kng-product-gallery-simple {
  position: relative;
}
.woocommerce-product-gallery.kng-product-gallery-simple .flex-viewport {
  position: relative;
}
.woocommerce-product-gallery.kng-product-gallery-simple .flex-viewport:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
}
.woocommerce-product-gallery .flex-control-thumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
  padding: 0;
}
.woocommerce-product-gallery .flex-control-thumbs li {
  flex: 0 0 auto;
  max-width: auto;
  padding: 8px;
}
.woocommerce-product-gallery .flex-control-thumbs li img {
  overflow: hidden;
  max-width: 72px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
@media (max-width: 1199px) {
  .woocommerce-product-gallery .flex-control-thumbs li img {
    max-width: 70px;
  }
}
.woocommerce-product-gallery .flex-direction-nav {
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
}
.woocommerce-product-gallery:hover .flex-direction-nav {
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
}
.wc-gallery-sync {
  position: relative;
  margin-top: 10px;
}
.wc-gallery-sync .flex-control-thumb {
  position: relative;
}
.wc-gallery-sync .flex-control-thumb:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  z-index: 2;
}
.wc-gallery-sync .flex-control-thumb:hover:after, .wc-gallery-sync .flex-control-thumb.flex-active-slide:after {
  border-color: var(--primary-color);
}
.flex-direction-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.flex-direction-nav > li {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.flex-direction-nav > li span {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: #fff;
  line-height: 30px;
  text-align: center;
  display: block;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.flex-direction-nav > li.flex-nav-prev {
  left: 0;
}
.flex-direction-nav > li.flex-nav-prev .flex-prev-icon:before {
  font-family: "kngi";
  content: "\f104";
  font-size: 900;
}
.flex-direction-nav > li.flex-nav-next {
  right: 0;
}
.flex-direction-nav > li.flex-nav-next .flex-next-icon:before {
  font-family: "kngi";
  content: "\f105";
  font-size: 900;
}
.flex-direction-nav > li:hover span {
  background: var(--primary-color);
}
.flex-control-nav {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.flex-control-nav.flex-control-paging {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex-control-nav.flex-control-paging li {
  flex: 0 0 auto;
}
.flex-control-nav.flex-control-paging a {
  width: 13px;
  height: 13px;
  margin: 5px 7px;
  background: #bbb;
  font-size: 0;
  text-indent: -999px;
  display: block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: opacity 200ms ease;
  -webkit-transition: opacity 200ms ease;
  -khtml-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
}
.flex-control-nav.flex-control-paging a:hover, .flex-control-nav.flex-control-paging a.flex-active {
  background: var(--primary-color);
}
.kng-product-gallery-default.kng-product-gallery-bottom .flex-control-nav {
  margin-top: 8px;
}
.single-product-title {
  font-size: 40px;
  line-height: 52px;
  font-family: 'Gilda Display', sans-serif;
  color: var(--heading-color);
  margin-bottom: 4px;
}
.product-single-summary-meta-top-wrap {
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #f2f2f2;
}
.product-single-summary-meta-top > div {
  position: relative;
}
.product-single-summary-meta-top > div + div:before {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #e0e0e0;
  margin-left: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
}
.product-single-summary-meta-top .product-single-author {
  color: #828282;
}
.product-single-summary-meta-top .product-single-author .lbl {
  margin-right: 4px;
}
.product-single-summary-meta-top .product-single-author a {
  font-weight: 500;
}
.product-single-summary-meta-top .woocommerce-product-rating .woocommerce-review-link {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: #828282;
  margin-left: 3px;
}
@media (max-width: 1599px) {
  .product-single-summary-meta-top .product-single-cat {
    display: none;
  }
}
.product-single-summary-meta-top .product-single-cat a {
  font-weight: 500;
}
.kng-product-single-price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  color: var(--primary-color);
}
.kng-product-single-price del {
  order: 2;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: #828282;
  margin-left: 10px;
}
.kng-product-single-price ins {
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  color: var(--primary-color);
}
.sold-by-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -4px;
  /* margin-bottom: 19px; */
  margin-right: -4px;
}
.sold-by-wrap > * {
  padding-left: 4px;
  padding-right: 4px;
}
.sold-by-wrap .lbl {
  color: #828282;
}
.sold-by-wrap .pub-item {
  font-weight: 500;
  color: var(--heading-color);
}
.woocommerce-product-details__short-description {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: #828282;
  margin-top: 19px;
}
.cetara-variation-quantity-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: flex-end;
}
.cetara-variation-quantity-wrap .variations {
  border: 0;
}
@media (max-width: 1439px) {
  .cetara-variation-quantity-wrap .variations {
    margin-bottom: 10px;
  }
}
.cetara-variation-quantity-wrap .variations td, .cetara-variation-quantity-wrap .variations th {
  border: 0;
  vertical-align: middle;
}
.cetara-variation-quantity-wrap .woocommerce-variation-description p {
  margin-bottom: 1em;
}
.cetara-variation-quantity-wrap .reset_variations {
  visibility: hidden;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  color: red;
  padding-top: 10px;
  text-align: end;
}
.cetara-variation-quantity-wrap .reset_variations[style="visibility: visible; display: inline;"] {
  display: none !important;
}
.cetara-variation-quantity-wrap .wc-no-matching-variations {
  display: none;
}
.cetara-variation-quantity-wrap .single_variation_wrap {
  margin-top: 0;
}
@media (max-width: 1599px) {
  .cetara-variation-quantity-wrap.style-dropdown {
    margin-left: -4px;
    margin-right: -4px;
  }
}
.cetara-variation-quantity-wrap.style-dropdown > * {
  flex: 0 0 auto;
  width: auto;
}
@media (max-width: 1599px) {
  .cetara-variation-quantity-wrap.style-dropdown > * {
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (max-width: 1439px) {
  .cetara-variation-quantity-wrap.style-dropdown > * {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .cetara-variation-quantity-wrap.style-dropdown {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cetara-variation-quantity-wrap.style-dropdown .variations, .cetara-variation-quantity-wrap.style-dropdown .single_variation_wrap {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cetara-variation-quantity-wrap.style-list select {
  display: none;
}
.cetara-variation-quantity-wrap.style-list .cetara-variation-att-terms {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 0;
}
.cetara-variation-quantity-wrap.style-list .cetara-variation-att-terms > li {
  flex: 0 0 auto;
  width: auto;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}
.cetara-variation-quantity-wrap.style-list a.pro-variation-select {
  border: 1px solid #828282;
  border-radius: 4px;
  padding: 4px 15px;
  display: inline-block;
  line-height: 28px;
  min-width: 120px;
}
@media (max-width: 1599px) {
  .cetara-variation-quantity-wrap.style-list a.pro-variation-select {
    min-width: 132px;
  }
}
.cetara-variation-quantity-wrap.style-list a.pro-variation-select .lbl {
  color: var(--heading-color);
  display: block;
}
.cetara-variation-quantity-wrap.style-list a.pro-variation-select .price {
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.cetara-variation-quantity-wrap.style-list a.pro-variation-select .price del {
  order: 2;
  color: #828282;
  font-size: 11px;
  margin-left: 5px;
}
.cetara-variation-quantity-wrap.style-list a.pro-variation-select:hover {
  border-color: var(--primary-color);
}
.cetara-variation-quantity-wrap.style-list a.pro-variation-select:hover .lbl {
  color: var(--primary-color);
}
.cetara-variation-quantity-wrap.style-list a.pro-variation-select:hover .price {
  color: var(--primary-color);
}
.cetara-variation-quantity-wrap.style-list li.active a {
  border-color: var(--primary-color);
}
.cetara-variation-quantity-wrap.style-list li.active a .lbl {
  color: var(--primary-color);
}
.cetara-variation-quantity-wrap.style-list li.active a .price {
  color: var(--primary-color);
}
.kng-variation-results {
  padding-top: 10px;
}
.kng-variation-results .woocommerce-variation-price .price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  clear: both;
}
.kng-variation-results .woocommerce-variation-price .price del {
  order: 2;
  padding-left: 6px;
  font-size: 14px;
  line-height: 32px;
  color: #828282;
}
[dir="rtl"] .kng-variation-results .woocommerce-variation-price .price del {
  padding-left: 0;
  padding-right: 6px;
}
.kng-variation-results .woocommerce-variation-price .price ins {
  font-weight: inherit;
  text-decoration: none;
}
.kng-variation-results .woocommerce-variation-availability {
  display: none;
}
.cetara-addtocart-btn-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cetara-addtocart-btn-wrap > * {
  flex: 0 0 auto;
  width: auto;
}
.kng-single-product-btns > p.stock {
  display: none;
}
form.cart .cetara-addtocart-btn-wrap {
  margin-top: 28px;
}
.stock {
  color: #27ae60;
}
.stock span {
  margin-right: 4px;
}
.stock.top {
  margin-top: 10px;
  display: none;
}
@media (max-width: 1599px) {
  .stock.top {
    display: block;
  }
}
@media (max-width: 1599px) {
  .stock.bottom {
    display: none;
  }
}
form.cart {
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid #f2f2f2;
  width: 100%;
}
form.cart .quantity {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
form.cart .quantity .stock {
  padding-left: 16px;
}
form.cart.grouped_form .woocommerce-grouped-product-list-item {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
form.cart.grouped_form .woocommerce-grouped-product-list-item__quantity {
  order: 2;
  flex-grow: 1;
}
form.cart.grouped_form .woocommerce-grouped-product-list-item__label {
  order: 1;
}
@media (max-width: 1599px) {
  form.cart.grouped_form .woocommerce-grouped-product-list-item__label {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
form.cart.grouped_form .woocommerce-grouped-product-list-item__label label {
  margin-bottom: 0;
}
form.cart.grouped_form .woocommerce-grouped-product-list-item__label a {
  font-size: 16px;
  font-weight: 400;
}
form.cart.grouped_form .woocommerce-grouped-product-list-item__price {
  margin: 0;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  clear: both;
  order: 3;
}
form.cart.grouped_form .woocommerce-grouped-product-list-item__price del {
  order: 2;
  padding-left: 6px;
  font-size: 14px;
  line-height: 32px;
  color: #828282;
}
[dir="rtl"] form.cart.grouped_form .woocommerce-grouped-product-list-item__price del {
  padding-left: 0;
  padding-right: 6px;
}
form.cart.grouped_form .woocommerce-grouped-product-list-item__price ins {
  font-weight: inherit;
  text-decoration: none;
}
@media (max-width: 1599px) {
  .kng-variation-row {
    margin-left: -4px;
    margin-right: -4px;
  }
}
@media (max-width: 1599px) {
  .kng-variation-row > * {
    padding-left: 4px;
    padding-right: 4px;
  }
}
.kng-variation-row .label {
  color: #828282;
  margin-bottom: 4px;
}
@media (min-width: 1600px) {
  .kng-variation-row .label span span {
    color: var(--heading-color);
    font-weight: 500;
  }
}
.kng-variation-row .label span span.lbl {
  color: #828282;
  font-weight: 400;
}
@media (max-width: 1599px) {
  .kng-variation-row .label span span.lbl {
    display: none;
  }
}
.quantity-lbl {
  color: #828282;
  margin-bottom: 4px;
}
.kng-quantity {
  position: relative;
  display: inline-block;
}
.kng-quantity .quantity-button {
  position: absolute;
  top: 0;
  width: 52px;
  height: 48px;
  line-height: 48px;
  text-align: start;
  font-size: 13px;
  font-weight: 900;
  border: 0;
  color: #828282;
  cursor: pointer;
  text-align: center;
}
.kng-quantity .quantity-up {
  right: 0;
}
.kng-quantity .quantity-up:before, .kng-quantity .quantity-up:after {
  content: '';
  width: 13px;
  height: 1.7px;
  display: block;
  background-color: #828282;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -khtml-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
}
.kng-quantity .quantity-up:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.kng-quantity .quantity-up:hover:before, .kng-quantity .quantity-up:hover:after {
  background-color: #333;
}
.kng-quantity .quantity-down {
  left: 0;
  z-index: 1;
}
.kng-quantity .quantity-down:before {
  content: '';
  width: 13px;
  height: 1.7px;
  display: block;
  background-color: #828282;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -khtml-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
}
.kng-quantity .quantity-down:hover:before {
  background-color: #333;
}
input.qty[type="number"] {
  width: 144px !important;
  height: 48px !important;
  line-height: 48px !important;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 52px;
  padding-left: 52px;
  text-align: center;
  font-size: 15px;
  color: #333;
  background: #fff !important;
  -moz-appearance: textfield;
}
input.qty[type="number"]::-webkit-outer-spin-button, input.qty[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cetara-addtocart-btn-wrap {
  margin-top: 28px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -4px;
  margin-right: -4px;
}
.cetara-addtocart-btn-wrap > * {
  margin: 0 4px;
}
.cetara-addtocart-btn-wrap .kng-atc-btn {
  flex-grow: 1;
}
.cetara-addtocart-btn-wrap .kng-atc-btn-ext button + button {
  margin-left: 8px;
}
.cetara-addtocart-btn-wrap .woosw-btn, .cetara-addtocart-btn-wrap .woosc-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #d7d7d7;
  color: var(--heading-color);
  display: inline-block;
  text-align: center;
  background-color: transparent;
  padding: 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.cetara-addtocart-btn-wrap .woosw-btn:hover, .cetara-addtocart-btn-wrap .woosc-btn:hover {
  color: #fff;
  border-color: var(--heading-color);
  background-color: var(--heading-color);
}
.cetara-addtocart-btn-wrap .woosw-btn:before {
  content: "\f004";
  font-family: 'Font Awesome 5 Pro';
}
.single_add_to_cart_button {
  clear: both;
  min-width: 170px;
  width: 100%;
  text-align: center;
  height: 48px;
  padding: 7px 20px;
  background-color: var(--heading-color);
  border: 1px solid var(--heading-color);
  text-transform: inherit;
}
.single_add_to_cart_button:after {
  margin-left: 8px;
  content: '\f290';
  font-family: 'Font Awesome 5 Pro';
  font-size: 15px;
  line-height: 1;
}
.single_add_to_cart_button:hover, .single_add_to_cart_button:active, .single_add_to_cart_button:focus {
  color: var(--heading-color);
  border-color: #d7d7d7;
  background-color: transparent;
}
.cart.grouped_form .stock {
  display: none;
}
table.shop_attributes {
  border: none;
}
table.shop_attributes td, table.shop_attributes th {
  vertical-align: top;
  font-style: normal;
  padding: 2px 0;
  border: 0;
  width: unset;
  background: transparent !important;
}
table.shop_attributes td p, table.shop_attributes th p {
  padding: 0;
}
table.shop_attributes th {
  font-weight: 500;
  color: var(--heading-color);
  min-width: 60px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  table.shop_attributes th {
    min-width: 80px;
  }
}
table.shop_attributes th:after {
  content: ":";
  margin-left: 3px;
}
table.shop_attributes td {
  color: #828282;
  padding-left: 16px;
}
.group_table {
  border: 0;
}
.group_table th, .group_table td {
  border: 0;
}
.group_table .wc-grouped-product-add-to-cart-checkbox {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  transform: scale(1.5, 1.5);
}
.product_meta {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #f2f2f2;
}
.product_meta > span {
  display: block;
  clear: both;
  padding-bottom: 4px;
}
.product_meta > span:last-child {
  padding-bottom: 0;
}
.product_meta .posted_in {
  display: none;
}
@media (max-width: 1599px) {
  .product_meta .posted_in {
    display: block;
  }
}
.product_meta .meta-title {
  color: #828282;
  display: inline-block;
}
.product_meta a {
  color: var(--body-color);
}
.product_meta a:hover {
  color: var(--primary-color);
}
.kng-post-share {
  margin-top: 4px;
  color: #828282;
}
.kng-post-share a {
  color: inherit;
}
.kng-post-share a:hover {
  color: var(--link-color-hover);
}
.wc-tabs {
  list-style: none;
  margin: 50px -20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 767px) {
  .wc-tabs {
    margin: 50px -15px 0;
    padding-bottom: 15px;
  }
}
.wc-tabs:after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: #f2f2f2;
}
@media (max-width: 767px) {
  .wc-tabs:after {
    left: 15px;
    right: 15px;
  }
}
.wc-tabs li {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: 0 20px;
  z-index: 1;
}
@media (max-width: 767px) {
  .wc-tabs li {
    padding: 0 15px;
  }
}
.wc-tabs li a {
  display: block;
  color: #828282;
  font-family: 'Gilda Display', sans-serif;
  font-size: 24px;
  line-height: 36px;
  padding: 0 0 16px 0;
  position: relative;
}
@media (max-width: 767px) {
  .wc-tabs li a {
    padding: 0;
  }
}
.wc-tabs li a:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--heading-color);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
  -khtml-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -ms-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
}
@media (max-width: 767px) {
  .wc-tabs li a:after {
    display: none;
  }
}
.wc-tabs li:hover a, .wc-tabs li.active a {
  color: var(--heading-color);
}
.wc-tabs li:hover a:after, .wc-tabs li.active a:after {
  width: 16px;
}
.wc-tab {
  margin-top: 32px;
}
.wc-tab #respond .comment-form-cookies-consent {
  display: none;
}
.woocommerce-Tabs-panel--description h1, .woocommerce-Tabs-panel--description h2, .woocommerce-Tabs-panel--description h3, .woocommerce-Tabs-panel--description h4, .woocommerce-Tabs-panel--description h5, .woocommerce-Tabs-panel--description h6 {
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.woocommerce-Tabs-panel--additional_information {
  padding: 32px;
  background: #f9f9f9;
}
@media (max-width: 575px) {
  .woocommerce-Tabs-panel--additional_information {
    padding: 0;
    background-color: transparent;
  }
}
@media (min-width: 1200px) {
  .woocommerce-Tabs-panel table tbody {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  .woocommerce-Tabs-panel table tbody tr {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.product-tab-author-content .author-info {
  flex: 0 0 288px;
  max-width: 288px;
}
@media (max-width: 767px) {
  .product-tab-author-content .author-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.product-tab-author-content .author-desc {
  flex: 0 0 calc(100% - 288px);
  max-width: calc(100% - 288px);
}
@media (max-width: 767px) {
  .product-tab-author-content .author-desc {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.product-tab-author-content .author-info-inner {
  padding: 24px;
  background-color: #f9f9f9;
}
.product-tab-author-content .author-info-inner img {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.product-tab-author-content .author-info-inner h4 {
  margin-top: 16px;
  margin-bottom: 0;
}
.product-tab-author-content .author-info-inner .rol-extra {
  font-size: 14px;
  margin-bottom: 8px;
}
.product-tab-author-content .author-info-inner .kng-meta-separator {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #828282;
  display: block;
}
.product-tab-author-content .author-text {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: #828282;
}
.product-tab-author-content .author-text blockquote {
  display: none;
}
.product-tab-author-content .author-text .kng-heading {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
}
.related.products {
  display: block;
  margin: 0;
}
.products.related, .products.upsells, .cross-sells {
  padding-top: 20px;
  /* .woocommerce-grouped-product-list-item{
	.woocommerce-grouped-product-list-item__label,
	.woocommerce-Price-amount{
		font-size: 18px;
		font-weight: 700;
	}
	.woocommerce-Price-amount{
		color: $secondary-color;
	}
} */
  /* product layout 1 */
}
.products.related > h2, .products.upsells > h2, .cross-sells > h2 {
  position: relative;
  margin: 15px 0 40px;
  font-size: 21px;
  font-size: 32px;
  line-height: 1.375;
  padding-bottom: 12px;
  border-bottom: 1px solid #f2f2f2;
}
@media screen and (max-width: 575px) {
  .products.related > h2, .products.upsells > h2, .cross-sells > h2 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .kng-content-woo-single.layout-1 {
    margin-left: -9px;
    margin-right: -9px;
  }
  .kng-content-woo-single.layout-1 > div {
    padding-left: 9px;
    padding-right: 9px;
  }
}
.kng-content-woo-single.layout-1 .entry-summary table.shop_attributes {
  width: auto;
  margin-top: 16px;
}
.kng-content-woo-single.layout-1 .product_meta {
  margin-top: 24px;
}
.kng-content-woo-single.layout-1 .kng-price-side.normal {
  position: relative;
}
.kng-content-woo-single.layout-1 .kng-price-side.normal .sale-price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  color: var(--primary-color);
}
.kng-content-woo-single.layout-1 .kng-price-side.normal .sale-price > * {
  flex: 0 0 100%;
  max-width: 100%;
}
.kng-content-woo-single.layout-1 .kng-price-side.normal .sale-price ins {
  margin-bottom: 4px;
}
.kng-content-woo-single.layout-1 .kng-price-side.normal .sale-price del {
  order: 2;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: #828282;
  text-decoration: none;
}
.kng-content-woo-single.layout-1 .kng-price-side.normal .kng-on-sale {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  position: absolute;
  bottom: 1px;
  right: 0;
}
.kng-content-woo-single.layout-1 .kng-price-side.normal .kng-on-sale.lbl {
  background: var(--primary-color);
  color: #fff;
  padding: 3px 12px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 300;
}
.kng-content-woo-single.layout-1 .kng-price-side.grouped .sale-price, .kng-content-woo-single.layout-1 .kng-price-side.variable .sale-price {
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  color: var(--primary-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .kng-content-woo-single.layout-1 .kng-price-side.grouped .sale-price, .kng-content-woo-single.layout-1 .kng-price-side.variable .sale-price {
    font-size: 20px;
  }
}
.kng-content-woo-single.layout-1 .kng-price-side.grouped .kng-on-sale, .kng-content-woo-single.layout-1 .kng-price-side.variable .kng-on-sale {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.08em;
  color: var(--primary-color);
}
.kng-content-woo-single.layout-1 .kng-price-side.grouped .kng-on-sale.lbl, .kng-content-woo-single.layout-1 .kng-price-side.variable .kng-on-sale.lbl {
  background: var(--primary-color);
  color: #fff;
  padding: 3px 12px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 300;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner form.cart {
  margin-bottom: 50px;
  border-top-color: #d7d7d7;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner form.cart .quantity {
  display: block;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner form.cart .quantity .stock {
  padding-left: 0;
  margin-top: 12px;
}
@media (min-width: 1440px) {
  .kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-variation-quantity-wrap.style-dropdown {
    margin-left: 0;
    margin-right: 0;
  }
  .kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-variation-quantity-wrap.style-dropdown .variations, .kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-variation-quantity-wrap.style-dropdown .single_variation_wrap {
    padding-left: 0;
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-variation-quantity-wrap.style-dropdown .variations {
  margin-bottom: 12px;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .kng-quantity {
  display: block;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner input.qty[type="number"] {
  width: 100% !important;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner form.cart .cetara-addtocart-btn-wrap {
  margin-top: 14px;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-addtocart-btn-wrap {
  margin-left: 0;
  margin-right: 0;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-addtocart-btn-wrap > * {
  margin-left: 0;
  margin-right: 0;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-addtocart-btn-wrap .woosw-btn, .kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-addtocart-btn-wrap .woosc-btn {
    width: auto;
    height: auto;
    font-size: 14px;
    text-transform: inherit;
    border: 0;
    background: none;
  }
  .kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-addtocart-btn-wrap .woosw-btn:before, .kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-addtocart-btn-wrap .woosc-btn:before {
    margin-right: 6px;
  }
  .kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-addtocart-btn-wrap .woosw-btn:hover, .kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-addtocart-btn-wrap .woosc-btn:hover {
    color: var(--primary-color);
  }
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-addtocart-btn-wrap .kng-atc-btn-ext {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}
@media (min-width: 1200px) {
  .kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-addtocart-btn-wrap .kng-atc-btn-ext > * {
    flex: 0 0 auto;
    width: auto;
  }
  .kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-addtocart-btn-wrap .kng-atc-btn-ext button + button {
    margin-left: 16px;
  }
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .grouped_form .stock {
  display: none;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .grouped_form .kng-quantity {
  display: inline-block;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .grouped_form .woocommerce-grouped-product-list-item__price del {
  display: none;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .grouped_form input.qty[type="number"] {
  width: 144px !important;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-variation-quantity-wrap.style-list .cetara-variation-att-terms > li {
  flex: 0 0 100%;
  width: 100%;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-variation-quantity-wrap.style-list a.pro-variation-select {
  display: block;
  text-align: center;
}
.kng-content-woo-single.layout-1 .kng-sidebar-area-inner .cetara-variation-quantity-wrap.style-list a.pro-variation-select .price {
  justify-content: center;
}
.woocommerce-cart .kng-main {
  padding-bottom: 32px;
}
label[for="coupon_code"] {
  display: none;
}
table.cart {
  border: 0;
}
table.cart thead {
  background-color: #f2f2f2;
}
table.cart th {
  font-weight: 500;
  text-transform: uppercase;
  color: var(--heading-color);
  padding: 16px 24px;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid #e0e0e0;
}
table.cart th:first-child {
  border-left: 1px solid #e0e0e0;
}
table.cart th:last-child {
  border-right: 1px solid #e0e0e0;
}
@media (max-width: 991px) {
  table.cart th {
    display: none;
  }
}
table.cart td {
  padding: 24px;
  border-left: 0;
  border-right: 0;
}
@media (max-width: 1199px) {
  table.cart td {
    padding: 24px 15px;
  }
}
table.cart td:first-child {
  border-left: 1px solid #e0e0e0;
}
table.cart td:last-child {
  border-right: 1px solid #e0e0e0;
}
table.cart td.product-thumbnail {
  padding-right: 0;
  width: 94px;
}
table.cart td.product-name {
  padding-left: 16px;
}
@media (min-width: 1600px) {
  table.cart td.product-name {
    width: 458px;
  }
}
@media (max-width: 1199px) {
  table.cart td.product-name {
    max-width: 300px;
  }
}
table.cart td.product-name > div > a {
  font-weight: 700;
  margin: 0 10px;
}
table.cart td.product-name > div > a.remove {
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #fff;
  background-color: black;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
table.cart td.product-name > div > a.remove:hover {
  background-color: red;
}
table.cart td.product-name > div > a:last-child {
  flex-basis: 0;
  flex-grow: 1;
  text-align: start;
}
table.cart td.product-price {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
}
table.cart td.product-subtotal {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
}
table.cart td.product-remove {
  text-align: center;
}
@media (min-width: 1200px) {
  table.cart td.product-remove {
    width: 120px;
  }
}
table.cart td.product-remove a {
  font-size: 0;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #e0e0e0;
  color: #e0e0e0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
table.cart td.product-remove a:before, table.cart td.product-remove a:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 20px;
  top: 50%;
  background-color: #828282;
  transform-origin: 50% 50%;
  opacity: 1;
  font-size: 20px;
  transition: transform ease 0.25s;
  -webkit-transition: transform ease 0.25s;
  -khtml-transition: transform ease 0.25s;
  -moz-transition: transform ease 0.25s;
  -ms-transition: transform ease 0.25s;
  -o-transition: transform ease 0.25s;
}
table.cart td.product-remove a:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
table.cart td.product-remove a:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
table.cart td.product-remove a:hover {
  border-color: var(--primary-color);
}
table.cart td.product-remove a:hover:before, table.cart td.product-remove a:hover:after {
  background-color: var(--primary-color);
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
table.cart td.actions {
  border-left: 0;
  border-right: 0;
  padding: 32px 0 32px 0;
}
@media (max-width: 991px) {
  table.cart td {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    justify-content: space-between;
  }
  table.cart td:before, table.cart td a.remove:before {
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--heading-color);
    font-weight: 600;
  }
  table.cart td.product-thumbnail, table.cart td.product-name {
    width: 100%;
    max-width: 100%;
  }
  table.cart td.product-name:before, table.cart td.product-price:before, table.cart td.product-quantity:before, table.cart td.product-subtotal:before {
    content: attr(data-title) ':\00a0\00a0\00a0\00a0';
  }
}
@media (max-width: 991px) {
  table.cart tbody > tr:first-child > td:first-child {
    border-top: 1px solid #e0e0e0;
  }
  table.cart tbody > tr {
    position: relative;
  }
  table.cart td.product-thumbnail {
    background-color: #f2f2f2;
  }
  table.cart td.product-remove {
    padding: 0;
    border-bottom: 0;
  }
  table.cart td.product-remove a {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  table.cart td.product-remove a:before, table.cart td.product-remove a:after {
    background-color: var(--primary-color);
  }
}
table.cart .product-name {
  font-weight: 500;
  color: var(--heading-color);
}
table.cart .size-woocommerce_thumbnail {
  max-width: 70px;
  width: 70px;
}
table.cart .coupon:not(.kng-coupon) {
  display: none;
}
table.cart .coupon .kng-coupon-wrap {
  position: relative;
  width: 450px;
  border-bottom: 1px solid rgba(79, 79, 79, 0.3);
  transition: border-color 0.3s ease;
  -webkit-transition: border-color 0.3s ease;
  -khtml-transition: border-color 0.3s ease;
  -moz-transition: border-color 0.3s ease;
  -ms-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
}
table.cart .coupon .kng-coupon-wrap:hover {
  border-color: #333;
}
@media (max-width: 991px) {
  table.cart .coupon .kng-coupon-wrap {
    width: 370px;
  }
}
@media (max-width: 991px) {
  table.cart .coupon .kng-coupon-wrap {
    width: 270px;
  }
}
@media (max-width: 767px) {
  table.cart .coupon .kng-coupon-wrap {
    width: 100%;
  }
}
table.cart .coupon .input-text {
  width: 100%;
  border: 0;
  height: 48px;
  padding: 0;
  border-radius: 0;
}
table.cart .coupon button {
  font-size: 0;
  background: transparent;
  color: #333;
  border: 0;
  height: 48px;
  width: 56px;
  margin-right: -20px;
}
table.cart .coupon button:before {
  content: '\f06b';
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  display: inline-block;
  line-height: 1;
}
table.cart .coupon button:hover {
  color: var(--primary-color);
}
table.cart td.actions button[name="update_cart"]:not(.kng-update-cart) {
  display: none;
}
@media (max-width: 991px) {
  table.cart td.actions {
    display: table-cell;
  }
}
table.cart button:disabled {
  background: rgba(var(--heading-color-rgb), 0.3);
  border-color: rgba(var(--heading-color-rgb), 0.1);
  cursor: not-allowed;
}
table.cart button:disabled:active, table.cart button:disabled:hover, table.cart button:disabled:focus {
  border-color: rgba(var(--heading-color-rgb), 0.3);
  color: rgba(var(--heading-color-rgb), 0.3);
}
table.cart .kng-btns-continue-update .btn, table.cart .kng-btns-continue-update button {
  text-transform: inherit;
}
@media (min-width: 992px) {
  table.cart .kng-btns-continue-update .btn, table.cart .kng-btns-continue-update button {
    min-width: 204px;
  }
}
@media (max-width: 575px) {
  table.cart .kng-btns-continue-update .btn, table.cart .kng-btns-continue-update button {
    width: 100%;
  }
}
.cart-collaterals {
  padding-top: 30px;
}
@media (min-width: 1025px) {
  .cart-collaterals {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  .cart-collaterals .cart_totals {
    width: 40%;
  }
}
@media (max-width: 1199px) {
  .cart-collaterals .cart_totals {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .cart-collaterals .cart_totals {
    width: 100%;
  }
}
.cart-collaterals .cart_totals {
  display: inline-block;
}
.cart-collaterals .cart_totals > h2 {
  font-size: 32px;
  line-height: 44px;
  margin: 0;
  padding: 24px 24px 30px 24px;
  background: #f2f2f2;
  position: relative;
}
.cart-collaterals .cart_totals > h2:after {
  content: "";
  width: calc(100% - 48px);
  height: 1px;
  background-color: #e0e0e0;
  position: absolute;
  left: 24px;
  bottom: 10px;
}
.cart-collaterals .cart_totals table {
  border: none !important;
  background: #f2f2f2;
  border-radius: 0;
}
.cart-collaterals .cart_totals th, .cart-collaterals .cart_totals td {
  border: none !important;
}
.cart-collaterals .cart_totals th {
  text-align: start;
  padding: 5px 5px 5px 24px;
  font-weight: 400;
  vertical-align: top;
}
[dir="rtl"] .cart-collaterals .cart_totals th {
  padding: 5px 0 5px 30px;
}
@media (min-width: 768px) {
  .cart-collaterals .cart_totals th {
    min-width: 160px;
  }
}
.cart-collaterals .cart_totals td {
  padding: 5px 24px 5px 5px;
  text-align: right;
}
.cart-collaterals .cart_totals tr.order-total th, .cart-collaterals .cart_totals tr.order-total td {
  padding-bottom: 26px;
}
.cart-collaterals .cart_totals tr.order-total td {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: var(--primary-color);
}
.cart-collaterals .cart_totals .woocommerce-Price-amount {
  font-weight: 500;
}
.cart-collaterals .cart_totals .woocommerce-shipping-destination {
  margin-bottom: 0;
}
.woocommerce-shipping-methods {
  list-style: none;
}
.woocommerce-shipping-methods li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.woocommerce-shipping-methods input[type="radio"] {
  margin-right: 8px;
  margin-top: -4px;
}
.woocommerce-shipping-methods label {
  cursor: default;
  margin: 0;
}
.woocommerce-shipping-calculator .form-row {
  margin-left: 0;
  margin-right: 0;
}
.woocommerce-shipping-calculator select {
  width: 100%;
}
.woocommerce-shipping-calculator .shipping-calculator-form {
  margin-top: 5px;
}
.woocommerce-shipping-calculator .shipping-calculator-form button {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: #fff;
  text-transform: inherit;
}
.woocommerce-shipping-calculator .shipping-calculator-form button:active, .woocommerce-shipping-calculator .shipping-calculator-form button:hover, .woocommerce-shipping-calculator .shipping-calculator-form button:focus {
  border-width: 1px;
  background-color: transparent;
  border-color: var(--heading-color);
  color: var(--heading-color);
}
.wc-proceed-to-checkout {
  /* cart empty */
}
.wc-proceed-to-checkout .btn {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: #fff;
  text-transform: inherit;
  width: 100%;
  display: block;
}
.wc-proceed-to-checkout .btn:active, .wc-proceed-to-checkout .btn:hover, .wc-proceed-to-checkout .btn:focus {
  border-width: 1px;
  background-color: transparent;
  border-color: var(--heading-color);
  color: var(--heading-color);
}
.cart-empty.woocommerce-info {
  display: none;
}
.kng-cart-empty-wrap img.img-bag {
  max-width: 112px;
  margin-bottom: 20px;
}
.kng-cart-empty-wrap h2 {
  margin-bottom: 12px;
}
.kng-cart-empty-wrap p.desc {
  margin-bottom: 20px;
  color: #828282;
}
.return-to-shop {
  text-align: center;
}
.woocommerce-checkout .kng-main {
  padding-bottom: 32px;
}
.woocommerce-form-coupon-toggle {
  margin-bottom: 12px;
}
.woocommerce-form-coupon-toggle .woocommerce-info {
  color: var(--heading-color);
}
.woocommerce-form-coupon-toggle .woocommerce-info a {
  color: var(--link-color-hover);
}
.woocommerce-form-coupon-toggle .woocommerce-info a:hover {
  color: var(--link-color);
}
.checkout_coupon.woocommerce-form-coupon {
  margin-bottom: 50px;
}
form.woocommerce-checkout {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  align-items: self-start;
}
form.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  flex: 0 0 100%;
  margin: 0 0 30px;
  max-width: 100%;
  padding: 15px;
}
form.woocommerce-checkout .col2-set {
  flex: 0 0 50%;
  max-width: 50%;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 1024px) {
  form.woocommerce-checkout .col2-set {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
form.woocommerce-checkout .col2-set > div {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
form.woocommerce-checkout .woocommerce-billing-fields > h3, form.woocommerce-checkout .woocommerce-shipping-fields > h3, form.woocommerce-checkout .woocommerce-additional-fields > h3 {
  margin-top: 0;
  margin-bottom: 15px;
}
form.woocommerce-checkout .woocommerce-billing-fields label, form.woocommerce-checkout .woocommerce-shipping-fields label, form.woocommerce-checkout .woocommerce-additional-fields label {
  margin-bottom: 8px;
}
form.woocommerce-checkout .woocommerce-billing-fields .form-row, form.woocommerce-checkout .woocommerce-shipping-fields .form-row, form.woocommerce-checkout .woocommerce-additional-fields .form-row {
  margin-bottom: 24px;
}
form.woocommerce-checkout .woocommerce-billing-fields .form-row:last-child, form.woocommerce-checkout .woocommerce-shipping-fields .form-row:last-child, form.woocommerce-checkout .woocommerce-additional-fields .form-row:last-child {
  margin-bottom: 0;
}
form.woocommerce-checkout .woocommerce-shipping-fields {
  margin-top: 50px;
}
form.woocommerce-checkout .woocommerce-shipping-fields h3 .woocommerce-form__label-for-checkbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
form.woocommerce-checkout .woocommerce-shipping-fields h3 .woocommerce-form__label-for-checkbox input[type="checkbox"] {
  margin-top: -5px;
}
form.woocommerce-checkout .woocommerce-checkout-review-order {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1024px) {
  form.woocommerce-checkout .woocommerce-checkout-review-order {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
form.woocommerce-checkout .woocommerce-checkout-review-order h3 {
  margin-top: 0;
  margin-bottom: 15px;
}
form.woocommerce-checkout #order_review_heading {
  display: none;
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #f2f2f2;
  border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead {
  display: none;
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table th, form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td {
  padding: 16px 24px;
}
@media (max-width: 575px) {
  form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table th, form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td {
    padding: 16px 15px;
  }
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td:last-child {
  text-align: end;
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td {
  border-color: transparent;
  padding: 8px 24px;
}
@media (max-width: 575px) {
  form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td {
    padding: 8px 15px;
  }
  form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td + td {
    width: 100px;
  }
}
@media (min-width: 576px) {
  form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody tr:first-child td {
    padding-top: 24px;
  }
  form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody tr:last-child td {
    padding-bottom: 24px;
  }
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody strong {
  font-weight: 400;
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot th, form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot td {
  /* border-top: 1px solid rgba(#D7D7D7,0.3); */
  border-color: transparent;
  position: relative;
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot th:after, form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot td:after {
  position: absolute;
  content: "";
  height: 1px;
  width: calc(100% - 24px);
  top: 0;
  background-color: rgba(215, 215, 215, 0.3);
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot th {
  font-weight: 600;
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot th:after {
  left: 24px;
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot td:after {
  right: 24px;
}
@media (max-width: 575px) {
  form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals th, form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals td {
    display: block;
  }
  form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals .woocommerce-shipping-methods li {
    justify-content: flex-start;
  }
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table .cart-subtotal td, form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table .order-total td {
  font-weight: 600;
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table .cart-subtotal td strong, form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table .order-total td strong {
  font-weight: 600;
}
form.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table .order-total td {
  color: var(--primary-color);
}
textarea[name="order_comments"] {
  height: 240px;
}
.form-row {
  width: 100%;
  margin: 0 0 15px;
}
.form-row span.woocommerce-input-wrapper {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
#payment {
  margin-top: 0px;
}
#payment ul.payment_methods {
  padding: 50px 0 0;
  margin: 0;
  list-style: none outside;
  background: #fff;
}
#payment ul.payment_methods li {
  line-height: 2;
  margin: 0;
}
#payment ul.payment_methods li input {
  margin: 6px 10px 0 0;
  float: left;
}
#payment ul.payment_methods li img {
  vertical-align: middle;
  padding: 0;
  position: relative;
  max-width: 150px;
}
#payment ul.payment_methods li img + img {
  margin-left: 2px;
}
#payment div.form-row {
  padding: 20px 0;
  margin-top: 0;
}
#payment div.form-row .kng-checkout-place-order {
  flex: 0 0 100%;
  max-width: 100%;
}
#payment div.form-row #place_order {
  margin-top: 16px;
  display: block;
  width: 100%;
}
#payment div.payment_box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: 0.92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #f2f2f2;
}
#payment div.payment_box .woocommerce-SavedPaymentMethods {
  list-style: none outside;
  margin: 0;
}
#payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token, #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new {
  margin: 0 0 0.5em;
}
#payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label, #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label {
  cursor: pointer;
}
#payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput {
  vertical-align: middle;
  margin: -3px 1em 0 0;
  position: relative;
}
#payment div.payment_box .wc-credit-card-form {
  border: 0;
  padding: 0;
  margin: 1em 0 0;
}
#payment div.payment_box .wc-credit-card-form-card-number, #payment div.payment_box .wc-credit-card-form-card-expiry, #payment div.payment_box .wc-credit-card-form-card-cvc {
  font-size: 1.5em;
  padding: 8px;
  background-repeat: no-repeat;
  background-position: right 0.618em center;
  background-size: 32px 20px;
}
#payment div.payment_box .wc-credit-card-form-card-number.visa, #payment div.payment_box .wc-credit-card-form-card-expiry.visa, #payment div.payment_box .wc-credit-card-form-card-cvc.visa {
  background-image: url("../images/credit-cards/visa.svg");
}
#payment div.payment_box .wc-credit-card-form-card-number.mastercard, #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard, #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard {
  background-image: url("../images/credit-cards/mastercard.svg");
}
#payment div.payment_box .wc-credit-card-form-card-number.laser, #payment div.payment_box .wc-credit-card-form-card-expiry.laser, #payment div.payment_box .wc-credit-card-form-card-cvc.laser {
  background-image: url("../images/credit-cards/laser.svg");
}
#payment div.payment_box .wc-credit-card-form-card-number.dinersclub, #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub, #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub {
  background-image: url("../images/credit-cards/diners.svg");
}
#payment div.payment_box .wc-credit-card-form-card-number.maestro, #payment div.payment_box .wc-credit-card-form-card-expiry.maestro, #payment div.payment_box .wc-credit-card-form-card-cvc.maestro {
  background-image: url("../images/credit-cards/maestro.svg");
}
#payment div.payment_box .wc-credit-card-form-card-number.jcb, #payment div.payment_box .wc-credit-card-form-card-expiry.jcb, #payment div.payment_box .wc-credit-card-form-card-cvc.jcb {
  background-image: url("../images/credit-cards/jcb.svg");
}
#payment div.payment_box .wc-credit-card-form-card-number.amex, #payment div.payment_box .wc-credit-card-form-card-expiry.amex, #payment div.payment_box .wc-credit-card-form-card-cvc.amex {
  background-image: url("../images/credit-cards/amex.svg");
}
#payment div.payment_box .wc-credit-card-form-card-number.discover, #payment div.payment_box .wc-credit-card-form-card-expiry.discover, #payment div.payment_box .wc-credit-card-form-card-cvc.discover {
  background-image: url("../images/credit-cards/discover.svg");
}
#payment div.payment_box span.help {
  font-size: 0.857em;
  color: var(--primary-color);
  font-weight: normal;
}
#payment div.payment_box .form-row {
  margin: 0 0 1em;
}
#payment div.payment_box p:last-child {
  margin-bottom: 0;
}
#payment div.payment_box::before {
  content: "";
  display: block;
  border: 1em solid #f2f2f2;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -0.75em;
  left: 0;
  margin: -1em 0 0 2em;
}
#payment .payment_method_paypal .about_paypal {
  display: block;
}
#payment .payment_method_paypal img {
  max-height: 52px;
  margin-top: -18px;
  margin-left: 8px;
  top: 5px;
}
ul.order_details {
  list-style: none;
  margin-bottom: 45px;
}
ul.order_details::after, ul.order_details::before {
  display: block;
  clear: both;
  content: "";
}
ul.order_details li {
  float: left;
  margin-right: 2em;
  text-transform: uppercase;
  font-size: 0.715em;
  line-height: 1;
  border-right: 1px dashed #828282;
  padding-right: 2em;
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}
@media (max-width: 1024px) {
  ul.order_details li {
    border: 0;
    float: none;
    margin-bottom: 15px;
  }
}
ul.order_details li:last-child {
  margin-right: 0;
  padding-right: 0;
}
ul.order_details li strong {
  display: block;
  font-size: 1.4em;
  text-transform: none;
  line-height: 1.5;
  margin-top: 5px;
}
@media (max-width: 1024px) {
  ul.order_details li strong {
    font-weight: 400;
  }
}
ul.order_details li:last-of-type {
  border: none;
}
.wc-bacs-bank-details-account-name {
  font-weight: bold;
}
.woocommerce-order-downloads, .woocommerce-order-details {
  margin-bottom: 45px;
}
.woocommerce-order-downloads *:last-child, .woocommerce-order-details *:last-child {
  margin-bottom: 0;
}
.woocommerce-order-details table strong {
  font-weight: 400;
}
.woocommerce-customer-details address {
  font-style: normal;
  margin-bottom: 0;
  border: 1px solid #d7d7d7;
  text-align: left;
  width: 100%;
  border-radius: 4px;
  padding: 8px 16px;
}
.woocommerce-customer-details .woocommerce-customer-details--phone, .woocommerce-customer-details .woocommerce-customer-details--email {
  margin-bottom: 0;
}
.woocommerce-customer-details .woocommerce-customer-details--phone::before {
  font-family: "kngi";
  content: "\e037";
  margin-left: -1.5em;
  line-height: 1.75;
  position: absolute;
}
.woocommerce-customer-details .woocommerce-customer-details--email::before {
  font-family: "kngi";
  content: "\e02d";
  margin-left: -1.5em;
  line-height: 1.75;
  position: absolute;
}
@media (max-width: 767px) {
  table.woosw-content-items tr.woosw-content-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
table.woosw-content-items tr.woosw-content-item td {
  padding: 24px;
  border-left: 0;
  border-right: 0;
}
@media (max-width: 767px) {
  table.woosw-content-items tr.woosw-content-item td {
    flex: 0 0 100%;
    width: 100%;
    padding: 15px;
  }
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove {
  text-align: center;
}
@media (min-width: 1200px) {
  table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove {
    width: 88px;
  }
}
@media (max-width: 767px) {
  table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove {
    position: relative;
    border-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span {
  font-size: 0;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #e0e0e0;
  color: #e0e0e0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:before, table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 20px;
  top: 50%;
  background-color: #828282;
  transform-origin: 50% 50%;
  opacity: 1;
  font-size: 20px;
  transition: transform ease 0.25s;
  -webkit-transition: transform ease 0.25s;
  -khtml-transition: transform ease 0.25s;
  -moz-transition: transform ease 0.25s;
  -ms-transition: transform ease 0.25s;
  -o-transition: transform ease 0.25s;
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:hover {
  border-color: var(--primary-color);
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:hover:before, table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:hover:after {
  background-color: var(--primary-color);
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
@media (max-width: 767px) {
  table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span {
    position: absolute;
    top: 15px;
    right: 15px;
  }
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--image {
  padding-left: 0;
  padding-right: 0;
  width: 72px;
}
@media (max-width: 767px) {
  table.woosw-content-items tr.woosw-content-item td.woosw-content-item--image {
    padding-left: 15px;
  }
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--image img {
  width: 72px;
}
@media (min-width: 992px) {
  table.woosw-content-items tr.woosw-content-item .woosw-content-item--title {
    width: 332px;
    float: left;
  }
}
@media (min-width: 1200px) {
  table.woosw-content-items tr.woosw-content-item .woosw-content-item--title {
    width: 420px;
    float: left;
  }
}
@media (min-width: 1600px) {
  table.woosw-content-items tr.woosw-content-item .woosw-content-item--title {
    width: 465px;
    float: left;
  }
}
table.woosw-content-items tr.woosw-content-item .woosw-content-item--title a {
  font-weight: 500;
  color: var(--heading-color);
}
table.woosw-content-items tr.woosw-content-item .woosw-content-item--title a:hover {
  color: var(--link-color-hover);
}
table.woosw-content-items tr.woosw-content-item .woosw-content-item--price {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}
table.woosw-content-items tr.woosw-content-item .woosw-content-item--price del {
  order: 2;
  padding-left: 6px;
  font-size: 14px;
  line-height: 32px;
  color: #828282;
}
[dir="rtl"] table.woosw-content-items tr.woosw-content-item .woosw-content-item--price del {
  padding-left: 0;
  padding-right: 6px;
}
table.woosw-content-items tr.woosw-content-item .woosw-content-item--price ins {
  font-weight: inherit;
  text-decoration: none;
}
@media (min-width: 992px) {
  table.woosw-content-items tr.woosw-content-item .woosw-content-item--price {
    width: 160px;
    float: left;
  }
}
@media (min-width: 1200px) {
  table.woosw-content-items tr.woosw-content-item .woosw-content-item--price {
    width: 180px;
    float: left;
  }
}
@media (min-width: 1600px) {
  table.woosw-content-items tr.woosw-content-item .woosw-content-item--price {
    width: 288px;
    float: left;
  }
}
table.woosw-content-items tr.woosw-content-item .woosw-content-item--time {
  display: none;
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--actions {
  text-align: right;
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--actions .woosw-content-item--stock {
  display: none;
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--actions .btn {
  text-transform: inherit;
  min-width: 180px;
}
@media (max-width: 575px) {
  table.woosw-content-items tr.woosw-content-item td.woosw-content-item--actions .btn {
    width: 100%;
  }
}
table.woosw-content-items tr.woosw-content-item td.woosw-content-item--actions .kng-btn-icon {
  font-size: 14px;
  margin-left: 4px;
}
.woosw-area .woosw-inner .woosw-content .woosw-content-mid table.woosw-content-items .woosw-content-item .woosw-content-item--remove span, .woosw-list table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span {
  font-size: 0;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #e0e0e0;
  color: #e0e0e0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.woosw-area .woosw-inner .woosw-content .woosw-content-mid table.woosw-content-items .woosw-content-item .woosw-content-item--remove span:before, .woosw-list table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:before, .woosw-area .woosw-inner .woosw-content .woosw-content-mid table.woosw-content-items .woosw-content-item .woosw-content-item--remove span:after, .woosw-list table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 20px;
  top: 50%;
  background-color: #828282;
  transform-origin: 50% 50%;
  opacity: 1;
  font-size: 20px;
  transition: transform ease 0.25s;
  -webkit-transition: transform ease 0.25s;
  -khtml-transition: transform ease 0.25s;
  -moz-transition: transform ease 0.25s;
  -ms-transition: transform ease 0.25s;
  -o-transition: transform ease 0.25s;
}
.woosw-area .woosw-inner .woosw-content .woosw-content-mid table.woosw-content-items .woosw-content-item .woosw-content-item--remove span:before, .woosw-list table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.woosw-area .woosw-inner .woosw-content .woosw-content-mid table.woosw-content-items .woosw-content-item .woosw-content-item--remove span:after, .woosw-list table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.woosw-area .woosw-inner .woosw-content .woosw-content-mid table.woosw-content-items .woosw-content-item .woosw-content-item--remove span:hover, .woosw-list table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:hover {
  border-color: var(--primary-color);
}
.woosw-area .woosw-inner .woosw-content .woosw-content-mid table.woosw-content-items .woosw-content-item .woosw-content-item--remove span:hover:before, .woosw-list table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:hover:before, .woosw-area .woosw-inner .woosw-content .woosw-content-mid table.woosw-content-items .woosw-content-item .woosw-content-item--remove span:hover:after, .woosw-list table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span:hover:after {
  background-color: var(--primary-color);
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
@media (max-width: 767px) {
  .woosw-area .woosw-inner .woosw-content .woosw-content-mid table.woosw-content-items .woosw-content-item .woosw-content-item--remove span, .woosw-list table.woosw-content-items tr.woosw-content-item td.woosw-content-item--remove span {
    position: absolute;
    top: 15px;
    right: 15px;
  }
}
.woosw-actions:empty {
  display: none;
}
.kng-wishlist-page .kng-content-area {
  margin-bottom: 0;
}
.woosw-list table.woosw-content-items tr:nth-child(2n) td {
  background-color: transparent;
}
.woosw-list table.woosw-content-items tr:hover td {
  background-color: transparent;
}
@media (min-width: 768px) {
  .woosw-area .woosw-inner .woosw-content {
    width: 100%;
    max-width: 738px;
  }
}
@media (min-width: 992px) {
  .woosw-area .woosw-inner .woosw-content {
    width: 100%;
    max-width: 995px;
  }
}
@media (min-width: 1200px) {
  .woosw-area .woosw-inner .woosw-content {
    width: 100%;
    max-width: 1250px;
  }
}
@media (min-width: 1440px) {
  .woosw-area .woosw-inner .woosw-content {
    width: 100%;
    max-width: 1410px;
  }
}
.woosw-area .woosw-inner .woosw-content .woosw-content-top {
  color: var(--heading-color);
  background-color: #f2f2f2;
}
.woosw-area .woosw-inner .woosw-content .woosw-content-bot {
  color: var(--heading-color);
  background-color: #f2f2f2;
}
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr:hover td {
  background-color: transparent;
}
.woosc-table-items .tr-content td img {
  margin: 15px 0;
}
.woocommerce-account .kng-content-area {
  margin-bottom: 0;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 -15px 15px;
}
.woocommerce-MyAccount-navigation ul li {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: 0 15px 15px;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 5px 15px;
  border: 3px solid var(--primary-color);
  background: var(--primary-color);
  color: #fff;
  letter-spacing: 0.08em;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -khtml-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  border-color: var(--second-color);
  background: var(--second-color);
  color: #fff;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  border-color: var(--second-color);
  background: var(--second-color);
  color: #fff;
}
.woocommerce-orders-table th, .woocommerce-orders-table td {
  border-left: 0;
  border-right: 0;
}
@media (min-width: 768px) {
  .woocommerce-orders-table .woocommerce-orders-table__header-order-actions {
    width: 196px;
  }
}
@media (max-width: 767px) {
  .woocommerce-orders-table {
    border: 0;
  }
  .woocommerce-orders-table thead {
    display: none;
  }
  .woocommerce-orders-table tr td {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #e0e0e0;
  }
  .woocommerce-orders-table tr td:before {
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--heading-color);
    font-weight: 600;
    content: attr(data-title) ':\00a0\00a0\00a0\00a0';
  }
  .woocommerce-orders-table tr td:first-child {
    background-color: #f2f2f2;
    border: 0;
  }
  .woocommerce-orders-table tr td:last-child {
    border-top: 0;
    border-bottom: 0;
    padding: 30px 0 50px 0;
  }
  .woocommerce-orders-table tr td:last-child:before {
    display: none;
  }
  .woocommerce-orders-table tbody tr:last-child td {
    border-bottom: 1px solid #e0e0e0;
  }
  .woocommerce-orders-table tbody tr:last-child td:first-child {
    border-top: 0;
    border-bottom: 0;
  }
  .woocommerce-orders-table tbody tr:last-child td:last-child {
    border-top: 0;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.woocommerce-MyAccount-content {
  margin-top: 50px;
}
.woocommerce-MyAccount-content .woocommerce-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
}
.woocommerce-MyAccount-content .woocommerce-info > * {
  margin-left: 15px;
  margin-right: 15px;
}
.woocommerce-MyAccount-content table .button {
  display: block;
  width: 180px;
}
.woocommerce-MyAccount-content fieldset {
  padding: 0;
}
.woocommerce-MyAccount-content .form-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-MyAccount-content .form-row > * {
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce-MyAccount-content .edit-account fieldset .input-text {
  max-width: 270px;
}
.woocommerce-MyAccount-content .edit-account .button {
  margin-top: 30px;
}
.wp-block-button {
  margin-bottom: 20px;
}
.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}
.wp-block-cover {
  color: #fff;
}
.single-post p[class], .single-post p[style] {
  line-height: normal;
  clear: both;
  overflow: hidden;
}
[class*="wp-block-"] {
  margin-bottom: 30px;
}
[class*="wp-block-"]:first-child {
  margin-top: 0;
}
[class*="wp-block-"]:last-child {
  margin-bottom: 0;
}
.kng-sidebar-area [class*="wp-block-"] {
  margin-top: 0;
  margin-bottom: 0;
}
.kng-sidebar-area [class*="wp-block-"]:first-child {
  margin-top: 0;
}
.kng-sidebar-area [class*="wp-block-"]:last-child {
  margin-bottom: 0;
}
.kng-sidebar-area .wp-block-latest-comments [class*="wp-block-"] {
  padding-top: 3px;
  padding-bottom: 3px;
  line-height: 1.5;
}
.kng-sidebar-area .widget_block ul {
  margin: 0;
}
.kng-sidebar-area .widget_block li > a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.wp-block-group.has-background {
  padding: 15px 20px;
}
.wp-block-group .wp-block-button + * {
  padding-top: 15px;
}
.wp-block-rss {
  list-style: none;
}
.wp-block-table .has-fixed-layout {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.blocks-gallery-caption {
  margin-bottom: 30px;
}
.wp-caption.alignright {
  margin-bottom: 0 !important;
}
.wp-block-quote br {
  display: none;
}
.kng-sidebar-area-inner h2 {
  font-size: 32px;
  line-height: 1.375;
  margin-top: 0;
  margin-bottom: 25px;
}
.kng-sidebar-area .widget_block ul > li, .kng-sidebar-area .widget_block ol > li {
  padding-top: 4px;
  padding-bottom: 4px;
}
.kng-sidebar-area .wp-block-latest-comments li {
  margin-bottom: 18px;
}
.kng-sidebar-area .wp-block-latest-comments li:last-child {
  margin-bottom: 0;
}
.kng-sidebar-area .wp-block-latest-comments [class*="wp-block-"] {
  padding-top: 0;
  padding-bottom: 0;
}
.kng-sidebar-area .wp-block-search__label {
  margin-top: 0;
  margin-bottom: 20px;
  position: relative;
  font-size: 32px;
  line-height: 1.375;
  font-family: 'Gilda Display', sans-serif;
}
.wp-block-search__inside-wrapper {
  position: relative;
}
.wp-block-search__inside-wrapper [type="search"] {
  padding-right: 48px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  box-shadow: none;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  border: 1px solid #d7d7d7;
}
.wp-block-search__inside-wrapper [type="submit"] {
  width: 48px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  border: 0;
  color: var(--primary-color);
}
[dir="rtl"] .wp-block-search__inside-wrapper [type="submit"] {
  right: auto;
  left: 0;
}
.wp-block-search__inside-wrapper .wp-block-search__button {
  font-size: 0;
}
.wp-block-search__inside-wrapper .wp-block-search__button:before {
  content: "\f002";
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  font-weight: 300;
  color: var(--heading-color);
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.wp-block-search__inside-wrapper .wp-block-search__button:hover:before {
  color: var(--primary-color);
}
