/* TheGem Heading */

.thegem-heading {
    position: relative;
}

.thegem-heading.thegem-heading-animate:not(.thegem-heading-animated ) {
    opacity: 0 !important;
}

.thegem-heading .thegem-heading-line-wrap {
    display: block;
    overflow: hidden;
}

.thegem-heading .thegem-heading-word-wrap,
.thegem-heading .thegem-heading-letter-wrap {
    display: inline-flex;
    overflow: hidden;
}

.thegem-heading .thegem-heading-word {
    display: inline-flex;
    white-space: nowrap;
}

/* Lines Slide Up  */
.thegem-heading.lines-slide-up.thegem-heading-animated .thegem-heading-line {
    animation-name: thegemHeadingLinesSlideUp;
    transform: translateY(100%);
    display: inline-block;
    animation-fill-mode: forwards;
    animation-duration: 1200ms;
    animation-timing-function: cubic-bezier(0,1,0.3,1);
}

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

    to {
        transform: translateX(0);
    }
}


/* Lines Slide Up Random */
.thegem-heading.lines-slide-up-random.thegem-heading-animated .thegem-heading-word {
    animation-name: thegemHeadingLinesSlideUpRandom;
    transform: translateY(100%);
    animation-fill-mode: forwards;
    animation-duration: 1200ms;
    animation-timing-function: cubic-bezier(0.3, 0, 0, 1);
}

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

    to {
        transform: translateX(0);
    }
}


/* Words Slide Up */
.thegem-heading.words-slide-up.thegem-heading-animated .thegem-heading-word {
    animation-name: thegemHeadingWordsSlideUp;
    transform: translateY(100%);
    animation-fill-mode: forwards;
    animation-duration: 1000ms;
    animation-timing-function: cubic-bezier(0.3, 1.7, 0.4, 1);
}

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

    to {
        transform: translateX(0);
    }
}

/* Words Slide Left */
.thegem-heading.words-slide-left.thegem-heading-animated .thegem-heading-word {
    animation-name: thegemHeadingWordsSlideLeft;
    transform: translateX(100%);
    animation-fill-mode: forwards;
    animation-duration: 1200ms;
    animation-timing-function: cubic-bezier(0.25,1,0.5,1);
}

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

    to {
        transform: translateX(0);
    }
}

/* Words Slide Right */
.thegem-heading.words-slide-right.thegem-heading-animated .thegem-heading-word {
    animation-name: thegemHeadingWordsSlideRight;
    transform: translateX(-100%);
    animation-fill-mode: forwards;
    animation-duration: 1200ms;
    animation-timing-function: cubic-bezier(0.25,1,0.5,1);
}

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

    to {
        transform: translateX(0);
    }
}

/* Letters Slide Up */
.thegem-heading.letters-slide-up.thegem-heading-animated .thegem-heading-letter {
    animation-name: thegemHeadingLettersSlideUp;
    position: relative;
    transform: translateY(100%);
    display: inline-flex;
    animation-fill-mode: forwards;
    animation-duration: 350ms;
    animation-timing-function: cubic-bezier(0.3, 1.7, 0.4, 1);
}

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

    to {
        transform: translateY(0);
    }
}

/* Typewriter */
.thegem-heading.typewriter.thegem-heading-animated .thegem-heading-letter {
    animation-name: thegemHeadingTypewriter;
    position: relative;
    opacity: 0;
    display: inline-flex;
    animation-fill-mode: forwards;
    animation-duration: 0ms;
    animation-timing-function: inherit;
}

@keyframes thegemHeadingTypewriter {
    from { opacity: 1; }
    to { opacity: 1; }
}

/* Letters Scale Out */
.thegem-heading.letters-scale-out.thegem-heading-animated .thegem-heading-letter {
    animation-name: thegemHeadingLettersScaleOut;
    position: relative;
    transform: scale(1.5);
    opacity: 0;
    display: inline-flex;
    animation-fill-mode: forwards;
    animation-duration: 500ms;
    animation-timing-function: cubic-bezier(0.3, 4, 0.4, 1);
}

@keyframes thegemHeadingLettersScaleOut {
    from {
        opacity: 0;
        transform: scale(1.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Background Sliding */
.thegem-heading-wrap {
    position: relative;
    display: inline-flex;
}

.thegem-heading.background-sliding {
    display: inline-flex;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.thegem-heading.background-sliding:before {
    content: '';
    transform-origin: left;
    transform: scale(0, 1);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.thegem-heading.background-sliding.thegem-heading-animated:before {
    animation-name: thegemHeadingBackgroundSliding;
    animation-duration: 700ms;
    animation-fill-mode: forwards;
}


@keyframes thegemHeadingBackgroundSliding{
    from {
        transform: scale(0, 1);
    }

    to {
        transform: scale(1, 1);
    }
}

.thegem-heading.background-sliding .thegem-heading-text-wrap {
    overflow: hidden;
    transform: translateX(-105%);
    position: relative;
    z-index: 2;
}

.thegem-heading.thegem-heading-animated .thegem-heading-text-wrap {
    transform: translateX(0%);
    transition-property: transform;
    transition-duration: 700ms;
}

.thegem-heading.background-sliding .thegem-heading-text {
    transform: translateX(105%);
    display: block;
    position: relative;
    z-index: 2;
}

.thegem-heading.thegem-heading-animated .thegem-heading-text {
    transform: translateX(0%);
    transition-property: transform;
    transition-duration: inherit;
    transition-delay: inherit;
    transition-timing-function: inherit;
}

/* Rotating */
.thegem-heading-rotating {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    transition-property: width, color;
    transition-timing-function: ease;
    transition-duration: 500ms, 300ms;
}

.thegem-heading-rotating:before {
    content: '\200b';
}

.thegem-heading-rotating-text {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
    overflow: hidden;
    display: inline-flex;
    white-space: nowrap;
    transition-property: width, opacity;
    transition-timing-function: ease;
    transition-duration: 500ms;
}

.thegem-heading-rotating[data-animation="fade"] .thegem-heading-rotating-text {
    display: inline-block;
}

/* Fade top to bottom */
.thegem-heading.thegem-heading-animated.fade-tb {
    animation-duration: .7s;
    animation-fill-mode: both;
    animation-name: thegemHeadingFadeTB;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

@keyframes thegemHeadingFadeTB {
    from {
        transform: translate(0, -10%);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}


/* Fade bottom to top */
.thegem-heading.thegem-heading-animated.fade-bt {
    animation-duration: .7s;
    animation-fill-mode: both;
    animation-name: thegemHeadingFadeBT;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

@keyframes thegemHeadingFadeBT {
    from {
        transform: translate(0, 10%);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}


/* Fade left to right */
.thegem-heading.thegem-heading-animated.fade-lr {
    animation-duration: .7s;
    animation-fill-mode: both;
    animation-name: thegemHeadingFadeLR;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

@keyframes thegemHeadingFadeLR {
    from {
        transform: translate(-10%, 0);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}


/* Fade right to left */
.thegem-heading.thegem-heading-animated.fade-rl {
    animation-duration: .7s;
    animation-fill-mode: both;
    animation-name: thegemHeadingFadeRL;
    animation-timing-function: cubic-bezier(.175,.885,.32,1.275);
}

@keyframes thegemHeadingFadeRL {
    from {
        transform: translate(10%, 0);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/* Simple fade */
.thegem-heading.thegem-heading-animated.fade-simple {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: thegemHeadingFadeSimple;
}

@keyframes thegemHeadingFadeSimple {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen and (min-width: 1024px) {
    .thegem-heading.thegem-heading-animate-disable-desktop,
    .thegem-heading.thegem-heading-animate-disable-desktop .thegem-heading-line,
    .thegem-heading.thegem-heading-animate-disable-desktop .thegem-heading-word,
    .thegem-heading.thegem-heading-animate-disable-desktop .thegem-heading-letter,
    .thegem-heading.thegem-heading-animate-disable-desktop .thegem-heading-text-wrap,
    .thegem-heading.thegem-heading-animate-disable-desktop .thegem-heading-text,
    .thegem-heading.thegem-heading-animate-disable-desktop:before {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .thegem-heading.thegem-heading-animate-disable-tablet,
    .thegem-heading.thegem-heading-animate-disable-tablet .thegem-heading-line,
    .thegem-heading.thegem-heading-animate-disable-tablet .thegem-heading-word,
    .thegem-heading.thegem-heading-animate-disable-tablet .thegem-heading-letter,
    .thegem-heading.thegem-heading-animate-disable-tablet .thegem-heading-text-wrap,
    .thegem-heading.thegem-heading-animate-disable-tablet .thegem-heading-text,
    .thegem-heading.thegem-heading-animate-disable-tablet:before {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

@media screen and (max-width: 767px) {
    .thegem-heading.thegem-heading-animate-disable-mobile,
    .thegem-heading.thegem-heading-animate-disable-mobile .thegem-heading-line,
    .thegem-heading.thegem-heading-animate-disable-mobile .thegem-heading-word,
    .thegem-heading.thegem-heading-animate-disable-mobile .thegem-heading-letter,
    .thegem-heading.thegem-heading-animate-disable-mobile .thegem-heading-text-wrap,
    .thegem-heading.thegem-heading-animate-disable-mobile .thegem-heading-text,
    .thegem-heading.thegem-heading-animate-disable-mobile:before {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

.thegem-heading .text-underline {
	text-decoration: underline;
}
.thegem-heading .text-stroke {
	text-decoration: line-through;
}
.thegem-heading .text-underline.text-stroke{
	text-decoration: underline line-through;
}


/*
	* Style settings of LayerSlider
	*
	* (c) 2011-2026 George Krupa, John Gera & Kreatura Media
	*
	* LayerSlider home:		https://layerslider.com/
	* Licensing:			https://layerslider.com/licensing/
*/



/* Slider */

	.ls-container,
	.ls-wp-container {
		visibility: hidden;
		position: relative;
		max-width: 100%;
		user-select: none;
		-ms-user-select: none;
		-moz-user-select: none;
		-webkit-user-select: none;
	}

	.ls-inner {
		position: relative;
		width: 100%;
		height: 100%;
		background-position: center center;
		z-index: 30;
	}

	.ls-wp-fullwidth-container {
		width: 100%;
		position: relative;
	}

	.ls-wp-fullwidth-helper {
		position: absolute;
	}



/* Wrappers */

	ls-scene-wrapper {
		width: 100%;
		margin: 0 auto;
		display: block !important;
		position: relative !important;
		--ls-progress: min( var(--ls-duration), var(--ls-stickduration, var(--ls-duration)) );
	}

	ls-scene-wrapper:not(.ls-layout-fixedsize) {
		--ls-ratio-base: calc(100% / var(--ls-ratio, 999999999));
	}

	ls-scene-wrapper.ls-layout-fixedsize {
		--ls-ratio-base: var(--ls-height);
	}

	ls-scene-wrapper {
		--ls-offset-full: calc(100vh - var(--ls-ratio-base));
		--ls-offset-half: calc(var(--ls-offset-full) / 2);
		--ls-p-minus-50: calc(var(--ls-progress) - 50vh);
		--ls-p-minus-100: calc(var(--ls-progress) - 100vh);
	}


	/* Scroll Scene Wrapper Height Calculation */

	/* Stick to Center */
	ls-scene-wrapper.ls-stickto-center.ls-playfrom-stick:after {
		--ls-padding: var(--ls-progress);
	}

	ls-scene-wrapper.ls-stickto-center.ls-playfrom-top:after {
		--ls-padding: calc(var(--ls-progress) + var(--ls-offset-half));
	}

	ls-scene-wrapper.ls-stickto-center.ls-playfrom-center:after {
		--ls-padding: calc(var(--ls-p-minus-50) + var(--ls-offset-half));
	}

	ls-scene-wrapper.ls-stickto-center.ls-playfrom-bottom:after {
		--ls-padding: calc(var(--ls-p-minus-100) + var(--ls-offset-half));
	}

	/* Stick to Top */
	ls-scene-wrapper.ls-stickto-top.ls-playfrom-stick:after,
	ls-scene-wrapper.ls-stickto-top.ls-playfrom-top:after {
		--ls-padding: var(--ls-progress);
	}

	ls-scene-wrapper.ls-stickto-top.ls-playfrom-center:after {
		--ls-padding: var(--ls-p-minus-50);
	}

	ls-scene-wrapper.ls-stickto-top.ls-playfrom-bottom:after {
		--ls-padding: var(--ls-p-minus-100);
	}

	/* Stick to Bottom */
	ls-scene-wrapper.ls-stickto-bottom.ls-playfrom-stick:after {
		--ls-padding: var(--ls-progress);
	}

	ls-scene-wrapper.ls-stickto-bottom.ls-playfrom-top:after {
		--ls-padding: calc(var(--ls-progress) + var(--ls-offset-full));
	}

	ls-scene-wrapper.ls-stickto-bottom.ls-playfrom-center:after {
		--ls-padding: calc(var(--ls-p-minus-50) + var(--ls-offset-full));
	}

	ls-scene-wrapper.ls-stickto-bottom.ls-playfrom-bottom:after {
		--ls-padding: calc(var(--ls-p-minus-100) + var(--ls-offset-full));
	}

	/* Full Size Layout */
	ls-scene-wrapper.ls-playfrom-stick.ls-layout-fullsize:after,
	ls-scene-wrapper.ls-playfrom-top.ls-layout-fullsize:after {
		--ls-padding: var(--ls-progress);
	}

	ls-scene-wrapper.ls-playfrom-center.ls-layout-fullsize:after {
		--ls-padding: var(--ls-p-minus-50);
	}

	ls-scene-wrapper.ls-playfrom-bottom.ls-layout-fullsize:after {
		--ls-padding: var(--ls-p-minus-100);
	}

	ls-scene-wrapper:after {
		content: '';
		display: block;
		width: 100%;
		padding-bottom: var(--ls-padding,0px);
	}

	ls-scene-wrapper .ls-container {
		position: sticky !important;
		top: 0;
	}

	ls-silent-wrapper {
		width: 100vw;
		height: 100vh;
		z-index: -1 !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
		position: fixed !important;
		left:  -200vw;
		top: -200vh;
	}

	ls-scene-wrapper[data-disabled-scene] {
		height: auto !important;
	}

	ls-scene-wrapper[data-disabled-scene]:after {
		display: none !important;
	}



/* Layers */

	.ls-slide-bgcolor,
	.ls-slide-backgrounds,
	.ls-mask,
	.ls-slide-effects,
	.ls-background-videos,
	.ls-bg-video-overlay {
		-o-transform: translateZ(0);
		-ms-transform: translateZ(0);
		-moz-transform: translateZ(0);
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	.ls-layers,
	.ls-slide-bgcolor,
	.ls-slide-backgrounds,
	.ls-mask,
	.ls-slide-effects,
	.ls-background-videos,
	.ls-bg-video-overlay {
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		overflow: hidden;
	}

	.ls-text-layer .ls-ch .ls-grad-bg-overflow {
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: -1;
	}

	.ls-wrapper {
		padding: 0 !important;
		visibility: visible !important;
		border: 0 !important;
		z-index: 1;
	}

	.ls-wrapper.ls-fix-textnodes .ls-ln,
	.ls-wrapper.ls-fix-textnodes .ls-wd,
	.ls-wrapper.ls-fix-textnodes .ls-ch {
		position: static !important;
		transform: none !important;
	}

	.ls-wrapper .ls-ln {
		white-space: nowrap;
	}

	.ls-layer.ls-has-chars .ls-wd {
		position: static !important;
	}

	.ls-layer.ls-has-chars .ls-ch {
		position: relative !important;
	}

	.ls-layer.ls-has-words .ls-wd {
		position: relative !important;
	}

	.ls-layer.ls-has-lines .ls-ln {
		position: relative !important;
	}

	.ls-layer .ls-ch,
	.ls-layer .ls-wd,
	.ls-layer .ls-ln {
		text-decoration: inherit;
	}

	.ls-layer[data-ls-text-animating-in][data-ls-mask-text-in] .ls-ch,
	.ls-layer[data-ls-text-animating-in][data-ls-mask-text-in] .ls-wd,
	.ls-layer[data-ls-text-animating-in][data-ls-mask-text-in] .ls-ln,
	.ls-layer[data-ls-text-animating-out][data-ls-mask-text-out] .ls-ch,
	.ls-layer[data-ls-text-animating-out][data-ls-mask-text-out] .ls-wd,
	.ls-layer[data-ls-text-animating-out][data-ls-mask-text-out] .ls-ln {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}

	.ls-textnode-dummy {
		display: inline-block !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	.ls-textnode-bgclip-wrap {
		left: 0;
		top: 0;
		position: absolute;
		background-clip: text;
		-webkit-background-clip: text;
		text-fill-color: transparent;
		-webkit-text-fill-color: transparent;
		text-align: left !important;
		pointer-events: none !important;
	}

	.ls-textnode {
		color: transparent;
		text-fill-color: transparent;
		-webkit-text-fill-color: transparent;
	}

	.ls-wrapper.ls-force-display-block {
		display: block !important;
	}

	.ls-wrapper.ls-force-visibility-hidden {
		visibility: hidden !important;
	}

	.ls-wrapper.ls-force-left-0 {
		left: 0 !important;
	}

	.ls-wrapper.ls-force-width-auto {
		width: auto !important;
	}

	.ls-force-height-auto {
		height: auto !important;
	}

	.ls-wrapper.ls-force-full-size {
		width: 100% !important;
		height: 100% !important;
	}

	.ls-layer.ls-force-no-transform,
	.ls-wrapper.ls-force-no-transform {
		transform: none !important;
	}

	.ls-wrapper.ls-capturing-frame {
		display: block !important;
		position: fixed !important;
		left: -200vw !important;
		top: -200vh !important;
	}

	.ls-force-no-transform .ls-ln,
	.ls-force-no-transform .ls-wd,
	.ls-force-no-transform .ls-ch {
		transform: none !important;
	}

	.ls-background-videos {
		z-index: 1;
	}

	.ls-bg-video-overlay {
		z-index: 21;
		background-repeat: repeat;
		background-position: center center;
	}

	.ls-slide-backgrounds {
		z-index: 2;
	}

	.ls-slide-backgrounds .ls-wrapper.ls-z {
		overflow: hidden !important;
	}

	.ls-mask {
		z-index: 4;
	}

	.ls-mask {
		display: none;
	}

	.ls-mask.ls-white {
		mix-blend-mode: screen;
		background-color: white !important;
	}

	.ls-mask.ls-black {
		mix-blend-mode: multiply;
		background-color: black !important;
	}

	.ls-mask .ls-wrapper.ls-z,
	.ls-mask .ls-wrapper.ls-z ls-layer {
		overflow: hidden !important;
	}

	.ls-slide-effects {
		z-index: 5;
	}

	.ls-slide-bgcolor {
		z-index: 1;
	}

	.ls-layers {
		z-index: 35;
	}

	.ls-z,
	.ls-parallax,
	.ls-in-out,
	.ls-scroll,
	.ls-scroll-transform,
	.ls-loop,
	.ls-clip {
		position: absolute !important;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	}

	.ls-clip,
	.ls-m-layers-clip {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}

	.ls-layers-clip {
		clip: rect( 0px, var( --sw ), var( --sh ), 0px );
	}

	.ls-z {
		width: 100% !important;
		height: 100% !important;
		top: 0 !important;
		left: 0 !important;
		bottom: auto !important;
		right: auto !important;
		display: block !important;
		overflow: visible !important;
		pointer-events: none !important;
	}

	.ls-z.ls-wrapper.ls-pinned {
		position: fixed !important;
	}

	.ls-inner-wrapper {
		pointer-events: auto;
	}

	.ls-inner-wrapper * {
		pointer-events: inherit;
	}

	.ls-in-out {
		display: none;
	}

	.ls-loop, .ls-clip {
		display: block !important;
	}

	.ls-parallax,
	.ls-in-out,
	.ls-scroll,
	.ls-scroll-transform,
	.ls-loop,
	.ls-z {
		background: none !important;
	}

	.ls-bg-wrap,
	.ls-loop {
		margin: 0 !important;
	}

	.ls-wrapper > .ls-layer,
	.ls-wrapper > a > .ls-layer
	.ls-wrapper > .ls-bg {
		line-height: normal;
		white-space: nowrap;
		word-wrap: normal;
		margin-right: 0 !important;
		margin-bottom: 0 !important;
	}

	.ls-wrapper > .ls-layer,
	ls-liquify-wrapper > ls-layer,
	.ls-wrapper > a > .ls-layer {
		position: static !important;
		display: block !important;
		transform: translateZ(0);
	}

	.ls-bg-wrap,
	.ls-bg-outer {
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}

	.ls-bg-wrap {
		display: none;
	}

	.ls-bg-outer {
		overflow: hidden !important;
	}

	.ls-wrapper > a.ls-layer-link,
	ls-liquify-wrapper > a.ls-layer-link {
		cursor: pointer !important;
		display: block !important;
		position: absolute !important;
		left: 0 !important;
		top: 0 !important;
		width: 100% !important;
		height: 100% !important;
		z-index: 10;
		-o-transform: translateZ(100px);
		-ms-transform: translateZ(100px);
		-moz-transform: translateZ(100px);
		-webkit-transform: translateZ(100px);
		transform: translateZ(100px);
		background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7) !important;
	}

	/* Countdown */

	.ls-l[data-prefix]:before,
	.ls-layer[data-prefix]:before {
		position: relative;
		display: inline-block;
		content: attr(data-prefix);
	}

	.ls-l[data-suffix]:after,
	.ls-layer[data-suffix]:after {
		position: relative;
		display: inline-block;
		content: attr(data-suffix);
	}

	.ls-l[data-prefix]:before,
	.ls-layer[data-prefix]:before,
	.ls-l[data-suffix]:after,
	.ls-layer[data-suffix]:after {
		color: var( --ls-affix-color, currentColor );
		transform: translateY( var( --ls-affix-va, 0em ) );
		font-size: var( --ls-affix-fs, 1em );
		font-family: var( --ls-affix-ff, inherit );
		font-weight: var( --ls-affix-fw, inherit );
	}

	.ls-l[data-prefix]:before,
	.ls-layer[data-prefix]:before,
	.ls-l[data-suffix]:after,
	.ls-layer[data-suffix]:after {
		display: var( --ls-affix-nl, inline-block );
	}

	.ls-l[data-prefix].ls-affix-float:before,
	.ls-layer[data-prefix].ls-affix-float:before,
	.ls-l[data-suffix].ls-affix-float:after,
	.ls-layer[data-suffix].ls-affix-float:after {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate( calc( -50% + var( --ls-affix-ha, 0em ) ) , calc( -50% + var( --ls-affix-va, 0em ) ) );
	}

	.ls-l[data-prefix]:before,
	.ls-layer[data-prefix]:before {
		margin-right: var( --ls-affix-ha, 0em );
	}

	.ls-l[data-suffix]:after,
	.ls-layer[data-suffix]:after {
		margin-left: var( --ls-affix-ha, 0em );
	}



/* GUI */



	/* Common */

	.ls-gui-element {
		z-index: 40;
		text-decoration: none !important;
	}

	.ls-loading-container {
		position: absolute !important;
		display: none;
		left: 50% !important;
		top: 50% !important;
	}

	.ls-loading-indicator {
		margin: 0 auto;
	}



	/* Media */

	.ls-media-unmute {
		visibility: hidden;
		position: absolute;
		left: 16px;
		top: 16px;
		width: 30px;
		height: 30px;
		cursor: pointer;
		opacity: .65;
	}

	.ls-media-unmute-active {
		visibility: visible;
	}

	.ls-media-unmute-bg {
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		border-radius: 30px;
		border: 0 solid white;
		transform: scale(0.1);
		background: rgba(0,0,0,.25);
		box-shadow: 0 3px 10px rgba(0,0,0,.2);
	}

	.ls-icon-muted, .ls-icon-unmuted {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 20px;
		transform: scale(0.1);
	}

	.ls-media-unmute-active .ls-media-unmute-bg {
		border: 2px solid white;
	}

	.ls-media-unmute-active .ls-icon-muted,
	.ls-media-unmute-active .ls-icon-unmuted,
	.ls-media-unmute-active .ls-media-unmute-bg {
		transform: scale(1) !important;
	}

	.ls-icon-muted {
		background-image: url(https://shop.ariservices.co/wp-content/plugins/LayerSlider/assets/static/layerslider/css/../img/icon-muted-white.png);
		opacity: 1;
	}

	.ls-icon-unmuted {
		background-image: url(https://shop.ariservices.co/wp-content/plugins/LayerSlider/assets/static/layerslider/css/../img/icon-unmuted-white.png);
		opacity: 0;
	}

	.ls-media-unmute:hover {
		opacity: 1;
	}

	.ls-media-unmute:hover .ls-icon-muted {
		opacity: 0;
	}

	.ls-media-unmute:hover .ls-icon-unmuted {
		opacity: 1;
	}

	.ls-media-unmute-bg,
	.ls-icon-unmuted,
	.ls-media-unmute,
	.ls-icon-muted {
		transition: all .3s ease-in-out !important;
	}



	/* Navigation */

		.ls-bottom-slidebuttons {
			text-align: left;
		}

		.ls-bottom-nav-wrapper,
		.ls-below-thumbnails {
			height: 0;
			position: relative;
			text-align: center;
			margin: 0 auto;
		}

		.ls-below-thumbnails {
			display: none;
		}

		.ls-bottom-nav-wrapper a,
		.ls-nav-prev,
		.ls-nav-next {
			outline: none;
		}

		.ls-bottom-slidebuttons {
			position: relative;
		}

		.ls-bottom-slidebuttons,
		.ls-nav-start,
		.ls-nav-stop,
		.ls-nav-sides {
			position: relative;
		}

		.ls-nothumb {
			text-align: center !important;
		}

		.ls-link,
		.ls-link:hover {
			position: absolute !important;
			width: 100% !important;
			height: 100% !important;
			left: 0 !important;
			top: 0 !important;
		}

		.ls-link {
			display: none;
		}

		.ls-link-on-top {
			z-index: 999999 !important;
		}

		.ls-link, .ls-wrapper > a > * {
			background-image: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');
		}

		.ls-bottom-nav-wrapper,
		.ls-thumbnail-wrapper,
		.ls-nav-prev,
		.ls-nav-next {
			visibility: hidden;
		}



	/* Timers */

		.ls-bar-timer {
			position: absolute;
			width: 0;
			height: 2px;
			background: white;
			border-bottom: 2px solid #555;
			opacity: .55;
			top: 0;
		}

		.ls-circle-timer {
			width: 16px;
			height: 16px;
			position: absolute;
			right: 10px;
			top: 10px;
			opacity: .65;
			display: none;
		}

		.ls-container .ls-circle-timer,
		.ls-container .ls-circle-timer * {
			box-sizing: border-box !important;
		}

		.ls-ct-half {
			border: 4px solid white;
		}

		.ls-ct-left,
		.ls-ct-right {
			width: 50%;
			height: 100%;
			overflow: hidden;
		}

		.ls-ct-left,
		.ls-ct-right {
			position: absolute;
		}

		.ls-ct-left {
			left: 0;
		}

		.ls-ct-right {
			left: 50%;
		}

		.ls-ct-rotate {
			width: 200%;
			height: 100%;
			position: absolute;
			top: 0;
		}

		.ls-ct-left .ls-ct-rotate,
		.ls-ct-right .ls-ct-hider,
		.ls-ct-right .ls-ct-half {
			left: 0;
		}

		.ls-ct-right .ls-ct-rotate,
		.ls-ct-left .ls-ct-hider,
		.ls-ct-left .ls-ct-half {
			right: 0;
		}

		.ls-ct-hider,
		.ls-ct-half {
			position: absolute;
			top: 0;
		}

		.ls-ct-hider {
			width: 50%;
			height: 100%;
			overflow: hidden;
		}

		.ls-ct-half {
			width: 200%;
			height: 100%;
		}

		.ls-ct-center {
			width: 100%;
			height: 100%;
			left: 0;
			top: 0;
			position: absolute;
			border: 4px solid black;
			opacity: 0.2;
		}

		.ls-ct-half,
		.ls-ct-center {
			border-radius: 100px;
			-moz-border-radius: 100px;
			-webkit-border-radius: 100px;
		}

		.ls-slidebar-container {
			margin: 10px auto;
		}

		.ls-slidebar-container,
		.ls-slidebar {
			position: relative;
		}

		.ls-progressbar,
		.ls-slidebar-slider-container {
			position: absolute;
			left: 0;
			top: 0;
		}

		.ls-progressbar {
			width: 0;
			height: 100%;
			z-index: 1;
		}

		.ls-slidebar-slider-container {
			z-index: 2;
		}

		.ls-slidebar-slider {
			position: static !important;
			cursor: pointer;
		}

		/* slidebar default dark skin */

		.ls-slidebar {
			height: 10px;
			background-color: #ddd;
		}

		.ls-slidebar,
		.ls-progressbar {
			border-radius: 10px;
		}

		.ls-progressbar {
			background-color: #bbb;
		}

		.ls-slidebar-slider-container {
			top: 50%;
		}

		.ls-slidebar-slider {
			width: 20px;
			height: 20px;
			border-radius: 20px;
			background-color: #999;
		}

		/* slidebar default light skin */

		.ls-slidebar-light .ls-slidebar {
			height: 8px;
			background-color: white;
			border: 1px solid #ddd;
			border-top: 1px solid #ccc;
		}

		.ls-slidebar-light .ls-slidebar,
		.ls-slidebar-light .ls-progressbar {
			border-radius: 10px;
		}

		.ls-slidebar-light .ls-progressbar {
			background-color: #eee;
		}

		.ls-slidebar-light .ls-slidebar-slider-container {
			top: 50%;
		}

		.ls-slidebar-light .ls-slidebar-slider {
			width: 18px;
			height: 18px;
			border-radius: 20px;
			background-color: #eee;
			border: 1px solid #bbb;
			border-top: 1px solid #ccc;
			border-bottom: 1px solid #999;
		}




	/* Thumbnails */

		.ls-tn {
			display: none !important;
		}

		.ls-thumbnail-hover {
			display: none;
			position: absolute;
			left: 0;
		}

		.ls-thumbnail-hover-inner {
			width: 100%;
			height: 100%;
			position: absolute;
			left: 0;
			top: 0;
			display: none;
		}

		.ls-thumbnail-hover-bg {
			position: absolute;
			width: 100%;
			height: 100%;
			left: 0;
			top: 0;
		}

		.ls-thumbnail-hover-img {
			position: absolute;
			overflow: hidden;
		}

		.ls-thumbnail-hover img {
			max-width: none !important;
			position: absolute;
			display: inline-block;
			visibility: visible !important;
			left: 50%;
			top: 0;
		}

		.ls-thumbnail-hover span {
			left: 50%;
			top: 100%;
			width: 0;
			height: 0;
			display: block;
			position: absolute;
			border-left-color: transparent !important;
			border-right-color: transparent !important;
			border-bottom-color: transparent !important;
		}

		.ls-thumbnail-wrapper {
			position: relative;
			width: 100%;
			margin: 0 auto;
		}

		.ls-thumbnail-wrapper.ls-thumbnail-fill  a img {
			width: 100%;
		}

		.ls-thumbnail {
			position: relative;
			margin: 0 auto;
		}

		.ls-thumbnail-inner,
		.ls-thumbnail-slide-container {
			width: 100%;
		}

		.ls-thumbnail-slide-container {
			overflow: hidden !important;
			position: relative;
		}

		.ls-thumbnail-slide {
			text-align: center;
			white-space: nowrap;
			float: left;
			position: relative;
		}

		.ls-thumbnail-slide a {
			overflow: hidden;
			display: inline-block;
			width: 0;
			height: 0;
			position: relative;
		}

		.ls-thumbnail-slide img {
			max-width: none !important;
			max-height: 100% !important;
			height: 100%;
			visibility: visible !important;
			background-position: center !important;
		}

		.ls-touchscroll {
			overflow-x: auto !important;
		}



	/* Shadow */

		.ls-shadow {
			display: none;
			position: absolute;
			z-index: 10 !important;
			top: 100%;
			width: 100%;
			left: 0;
			overflow: hidden !important;
			visibility: hidden;
		}

		.ls-shadow img {
			width: 100% !important;
			height: auto !important;
			position: absolute !important;
			left: 0 !important;
			bottom: 0 !important;
		}



/* Media */

	.ls-media-layer {
		overflow: hidden;
	}

	.ls-vpcontainer,
	.ls-videopreview {
		width : 100%;
		height : 100%;
		position : absolute;
		left : 0;
		top : 0;
		cursor : pointer;
	}

	.ls-videopreview {
		background-size: cover;
		background-position: center center;
	}

	.ls-videopreview {
		z-index: 1;
	}

	.ls-playvideo {
		position: absolute;
		left: 50%;
		top: 50%;
		cursor: pointer;
		z-index: 2;
	}

	.ls-autoplay .ls-playvideo,
	.ls-instant-autoplay .ls-playvideo {
		display: none !important;
	}



/* Mobile features */

	.ls-forcehide {
		display: none !important;
	}



/* Slide transitions */

	/* .ls-lt-container */
	.ls-slide-transition-wrapper {
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 3;
	}

	.ls-slide-transition-wrapper,
	.ls-slide-transition-wrapper * {
		text-align: left !important;
	}

	.ls-slide-transition-tile {
		position: relative;
		float: left;
	}

	.ls-slide-transition-tile img {
		visibility: visible;
		margin: 0 !important;
	}

	.ls-curtiles {
		overflow: hidden;
	}

	.ls-curtiles,
	.ls-nexttiles {
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
	}

	.ls-curtile, .ls-nexttile {
		overflow: hidden;
		width: 100% !important;
		height: 100% !important;
		-o-transform: translateZ(0);
		-ms-transform: translateZ(0);
		-moz-transform: translateZ(0);
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	.ls-nexttile {
		display: none;
	}

	.ls-3d-container {
		position: relative;
		overflow: visible !important;
		-ms-perspective: none !important;
		-moz-perspective: none !important;
		-webkit-perspective: none !important;
		perspective: none !important;
	}

	.ls-3d-box {
		position: absolute;
	}

	.ls-3d-box > div {
		overflow: hidden;
		margin: 0;
		padding: 0;
		position: absolute;
		background-color: #888;
	}

	.ls-3d-box .ls-3d-top,
	.ls-3d-box .ls-3d-bottom {
		background-color: #555;
	}

	.ls-slide-transition-wrapper,
	.ls-slide-transition-tile {
		-ms-perspective: 1500px;
		-moz-perspective: 1500px;
		-webkit-perspective: 1500px;
		perspective: 1500px;
	}

	.ls-slide-transition-tile,
	.ls-3d-box,
	.ls-curtiles,
	.ls-nexttiles {
		-ms-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
		-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
	}

	.ls-curtile,
	.ls-nexttile,
	.ls-3d-box {
		-ms-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}




/* Misc. */

	html body .ls-container.ls-wp-container.ls-fullsize:not(.ls-hidden),
	html body .ls-container.ls-wp-container.ls-fullwidth:not(.ls-hidden),
	html body .ls-container.ls-wp-container.ls-responsive:not(.ls-hidden),
	html body .ls-container.ls-wp-container.ls-fixedsize:not(.ls-hidden),
	#ls-global .ls-container.ls-wp-container.ls-fullsize:not(.ls-hidden),
	#ls-global .ls-container.ls-wp-container.ls-fullwidth:not(.ls-hidden),
	#ls-global .ls-container.ls-wp-container.ls-responsive:not(.ls-hidden),
	#ls-global .ls-container.ls-wp-container.ls-fixedsize:not(.ls-hidden) {
		max-width: 100%;
	}

	html body .ls-container.ls-hidden,
	#ls-global .ls-container.ls-hidden {
		width: 0px !important;
		height: 0px !important;
		position: absolute;
		left: -5000px;
		top: -5000px;
		z-index: -1;
		overflow: hidden !important;
		visibility: hidden !important;
		display: block !important;
	}

	.ls-selectable {
		user-select: text;
		-ms-user-select: text;
		-moz-user-select: text;
		-webkit-user-select: text;
	}

	.ls-unselectable {
		user-select: none;
		-ms-user-select: none;
		-moz-user-select: none;
		-webkit-user-select: none;
	}

	.ls-visible {
		overflow: visible !important;
		clip: auto !important;
		clip-path: none !important;
	}

	.ls-unselectable {
		user-select: none;
		-o-user-select: none;
		-ms-user-select: none;
		-moz-user-select: none;
		-webkit-user-select: none;
	}

	.ls-overflow-hidden {
		overflow: hidden;
	}

	.ls-overflowx-hidden {
		overflow-x: hidden;
	}

	html body .ls-overflow-visible,
	html#ls-global .ls-overflow-visible,
	body#ls-global .ls-overflow-visible,
	#ls-global .ls-overflow-visible,
	.ls-overflow-visible {
		overflow: visible !important;
	}

	.ls-overflowy-hidden {
		overflow-y: hidden;
	}

	.ls-slide {
		display: block !important;
		visibility: hidden !important;
		position: absolute !important;
		overflow: hidden;
		top: 0 !important;
		left: 0 !important;
		bottom: auto !important;
		right: auto !important;
		background: none;
		border: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.ls-slide > .ls-layer,
	.ls-slide > .ls-l,
	.ls-slide > .ls-bg,
	.ls-slide > a > .ls-layer,
	.ls-slide > a > .ls-l,
	.ls-slide > a > .ls-bg {
		position: absolute !important;
		white-space: nowrap;
	}

	.ls-fullscreen {
		margin: 0 !important;
		padding: 0 !important;
		width: auto !important;
		height: auto !important;
	}

	.ls-fullscreen .ls-container {
		background-color: black;
		margin: 0 auto !important;
	}

	.ls-fullscreen .ls-fullscreen-wrapper {
		width: 100% !important;
		height: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		background-color: black;
		overflow: hidden !important;
		position: relative !important;
	}

	.ls-fullscreen .ls-fullscreen-wrapper .ls-container,
	.ls-fullscreen .ls-fullscreen-wrapper .ls-wp-container {
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%,-50%) !important;
	}

	.ls-layer .split-item {
		font-weight: inherit !important;
		font-family: inherit !important;
		font-size: inherit;
		color: inherit;
	}

	html body .ls-container .ls-layer,
	#ls-global .ls-container .ls-layer,
	html body .ls-container .ls-l,
	#ls-global .ls-container .ls-l {
		border-width: 0;
		border-style: solid;
		border-color: #000;
		color: #000;
		/* The default font-size value must also be changed in the layerslider.js file! */
		font-size: 36px;
		font-family: Arial, sans-serif;
		background-repeat: no-repeat;

		stroke: #000;
		text-align: left;
		font-style: normal;
		text-decoration: none;
		text-transform: none;
		font-weight: 400;
		letter-spacing: 0;
		background-position: 0% 0%;
		background-clip: border-box;
		opacity: 1;
		mix-blend-mode: unset;
	}

	.ls-container .ls-layer svg,
	.ls-container .ls-l svg {
		width: 1em;
		height: 1em;
		display: block;
	}

	.ls-container .ls-layer:not(.ls-html-layer),
	.ls-container .ls-l:not(.ls-html-layer) {
		stroke-width: 0;
	}

	.ls-container .ls-layer:not(.ls-html-layer) svg,
	.ls-container .ls-l:not(.ls-html-layer) svg {
		fill: currentColor;
	}

	.ls-container .ls-layer.ls-shape-layer svg,
	.ls-container .ls-layer.ls-svg-layer svg,
	.ls-container .ls-l.ls-shape-layer svg,
	.ls-container .ls-l.ls-svg-layer svg {
		width: 100%;
		height: 100%;
	}

	.ls-container .ls-layer.ls-icon-layer .fa,
	.ls-container .ls-l.ls-icon-layer .fa {
		display: block;
		line-height: inherit;
	}

	.ls-container .ls-layer.ls-ib-icon svg,
	.ls-container .ls-l.ls-ib-icon svg,
	.ls-container .ls-layer.ls-ib-icon .fa,
	.ls-container .ls-l.ls-ib-icon .fa {
		display: inline-block;
		vertical-align: middle;
	}

	.ls-container .ls-layer.ls-html-layer svg,
	.ls-container .ls-l.ls-html-layer svg {
		display: inline;
		width: auto;
		height: auto;
	}

	.ls-container .ls-button-layer {
		cursor: pointer;
	}

	.ls-container:not(.ls-hidden) .ls-wrapper:not(.ls-force-display-block) picture.ls-layer img,
	.ls-container:not(.ls-hidden) .ls-wrapper:not(.ls-force-display-block) picture.ls-l img {
		width: inherit !important;
		height: inherit !important;
	}

	.ls-container.ls-hidden picture {
		display: flex !important;
	}

	.ls-container.ls-hidden picture.ls-layer img,
	.ls-container.ls-hidden picture.ls-l img {
		width: auto;
		height: auto;
	}

	.ls-container .ls-lottie-layer canvas {
		width: 100% !important;
		height: 100% !important;
		display: block;
	}

/* Smart BG */

	.ls-l[data-ls-smart-bg],
	.ls-layer[data-ls-smart-bg],
	ls-layer[data-ls-smart-bg] {
		overflow: hidden !important;
		background-size: 0 0 !important;
	}

	.ls-l[data-ls-smart-bg]:before,
	.ls-layer[data-ls-smart-bg]:before,
	ls-layer[data-ls-smart-bg]:before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		width: var(--sw);
		height: var(--sh);
		transform: translate( calc( var( --x, 0px ) + var( --lx, 0px )  + var( --rx, 0px ) ), calc( var( --y, 0px ) + var( --ly, 0px ) + var( --ry, 0px ) ) );
		background-image: inherit;
		background-size: var( --bgs, inherit );
		background-position: inherit;
		background-repeat: inherit;
	}

/* Removing all default global styles of WordPress themes */

	html body .ls-nav-prev,
	#ls-global .ls-nav-prev,
	html body .ls-nav-next,
	#ls-global .ls-nav-next,
	html body .ls-bottom-nav-wrapper a,
	#ls-global .ls-bottom-nav-wrapper a,
	html body .ls-container .ls-fullscreen,
	#ls-global .ls-container .ls-fullscreen,
	html body .ls-thumbnail a,
	#ls-global .ls-thumbnail a {
		transition: none;
		-ms-transition: none;
		-webkit-transition: none;
		line-height: normal;
		outline: none;
		padding: 0;
		border: 0;
	}

	html body .ls-wrapper > a,
	#ls-global .ls-wrapper > a,
	html body .ls-wrapper > p,
	#ls-global .ls-wrapper > p,
	html body .ls-wrapper > h1,
	#ls-global .ls-wrapper > h1,
	html body .ls-wrapper > h2,
	#ls-global .ls-wrapper > h2,
	html body .ls-wrapper > h3,
	#ls-global .ls-wrapper > h3,
	html body .ls-wrapper > h4,
	#ls-global .ls-wrapper > h4,
	html body .ls-wrapper > h5,
	#ls-global .ls-wrapper > h5,
	html body .ls-wrapper > img,
	#ls-global .ls-wrapper > img,
	html body .ls-wrapper > div,
	#ls-global .ls-wrapper > div,
	html body .ls-wrapper > span,
	#ls-global .ls-wrapper > span,
	html body .ls-wrapper .ls-bg,
	#ls-global .ls-wrapper .ls-bg,
	html body .ls-wrapper .ls-layer,
	#ls-global .ls-wrapper .ls-layer,
	html body .ls-slide .ls-layer,
	#ls-global .ls-slide .ls-layer,
	 html body .ls-slide a .ls-layer,
	#ls-global .ls-slide a .ls-layer {
		transition: none;
		-ms-transition: none;
		-webkit-transition: none;
		line-height: normal;
		outline: none;
		padding: 0;
		margin: 0;
		border-width: 0;
	}

	html body .ls-container img,
	#ls-global .ls-container img {
		transition: none;
		-ms-transition: none;
		-webkit-transition: none;
		line-height: normal;
		outline: none;
		background: none;
		min-width: 0;
		max-width: none;
		border-radius: 0;
		box-shadow: none;
		border-width: 0;
		padding: 0;
	}

	html body .ls-wp-container .ls-wrapper > a > *,
	#ls-global .ls-wp-container .ls-wrapper > a > * {
		margin: 0;
	}

	html body .ls-wp-container .ls-wrapper > a,
	#ls-global .ls-wp-container .ls-wrapper > a {
		text-decoration: none;
	}

	.ls-wp-fullwidth-container,
	.ls-wp-fullwidth-helper,
	.ls-gui-element *,
	.ls-gui-element,
	.ls-container,
	.ls-slide > *,
	.ls-slide,
	.ls-wrapper,
	.ls-layer {
		box-sizing: content-box !important;
	}

	html body .ls-tn,
	#ls-global .ls-tn {
		display: none;
	}

	.ls-bottom-nav-wrapper,
	.ls-bottom-nav-wrapper span,
	.ls-bottom-nav-wrapper a {
		line-height: 0;
		font-size: 0;
	}

	html body .ls-container video,
	#ls-global .ls-container video {
		max-width: none !important;
		object-fit: cover !important;
	}

	html body .ls-container.ls-wp-container,
	#ls-global .ls-container.ls-wp-container,
	html body .ls-fullscreen-wrapper,
	#ls-global .ls-fullscreen-wrapper {
		max-width: none;
	}

	/* direction: ltr */

	html body .ls-container,
	#ls-global .ls-container,
	html body .ls-container .ls-slide-transition-wrapper,
	#ls-global .ls-container .ls-slide-transition-wrapper,
	html body .ls-container .ls-slide-transition-wrapper *,
	#ls-global .ls-container .ls-slide-transition-wrapper *,
	html body .ls-container .ls-bottom-nav-wrapper,
	#ls-global .ls-container .ls-bottom-nav-wrapper,
	html body .ls-container .ls-bottom-nav-wrapper *,
	#ls-global .ls-container .ls-bottom-nav-wrapper *,
	html body .ls-container .ls-bottom-nav-wrapper span *,
	#ls-global .ls-container .ls-bottom-nav-wrapper span *,
	html body .ls-direction-fix,
	#ls-global .ls-direction-fix {
		direction: ltr !important;
	}

	/* float: none */

	html body .ls-container,
	#ls-global .ls-container {
		float: none !important;
	}



/* Notification */

	.ls-slider-notification {
		position: relative;
		margin: 10px auto;
		padding: 10px 10px 15px 88px;
		border-radius: 5px;
		min-height: 60px;
		background: #de4528;
		color: white !important;
		font-family: 'Open Sans', arial, sans-serif !important;
	}

	.ls-slider-notification a {
		color: white !important;
		text-decoration: underline !important;
	}

	.ls-slider-notification-logo {
		position: absolute;
		top: 16px;
		left: 17px;
		width: 56px;
		height: 56px;
		font-size: 49px;
		line-height: 53px;
		border-radius: 56px;
		background-color: white;
		color: #de4528;
		font-style: normal;
		font-weight: 800;
		text-align: center;
	}

	.ls-slider-notification strong {
		color: white !important;
		display: block;
		font-size: 20px;
		line-height: 26px;
		font-weight: normal !important;
	}

	.ls-slider-notification span {
		display: block;
		font-size: 13px;
		line-height: 16px;
		text-align: justify !important;
	}



/* Device Responsiveness */

@media screen and (max-width: 767px) {
	.ls-container .ls-layers > .ls-hide-on-phone,
	.ls-container .ls-background-videos .ls-hide-on-phone video,
	.ls-container .ls-background-videos .ls-hide-on-phone audio,
	.ls-container .ls-background-videos .ls-hide-on-phone iframe {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.ls-container .ls-layers > .ls-hide-on-tablet,
	.ls-container .ls-background-videos .ls-hide-on-tablet video,
	.ls-container .ls-background-videos .ls-hide-on-tablet audio,
	.ls-container .ls-background-videos .ls-hide-on-tablet iframe {
		display: none !important;
	}
}

@media screen and (min-width: 1025px) {
	.ls-container .ls-layers > .ls-hide-on-desktop,
	.ls-container .ls-background-videos .ls-hide-on-desktop video,
	.ls-container .ls-background-videos .ls-hide-on-desktop audio,
	.ls-container .ls-background-videos .ls-hide-on-desktop iframe {
		display: none !important;
	}
}

.ls-container .ls-background-videos .ls-vpcontainer {
	z-index: 10;
}

.ls-container .ls-background-videos .ls-videopreview {
	background-size: cover !important;
}

.ls-container .ls-background-videos video,
.ls-container .ls-background-videos audio,
.ls-container .ls-background-videos iframe {
	position: relative;
	z-index: 20;
}



/* Hacks, Optimization */

	@media (transform-3d), (-ms-transform-3d), (-webkit-transform-3d) {
		#ls-test3d {
			position: absolute;
			left: 9px;
			height: 3px;
		}
	}

	.ls-z[data-ls-animating-in] .ls-wrapper.ls-in-out,
	.ls-z[data-ls-animating-out] .ls-wrapper.ls-in-out,
	.ls-curtile,
	.ls-nexttile {
		will-change: transform;
	}

	.ls-z[data-ls-animating-in] .ls-layer,
	.ls-z[data-ls-animating-out] .ls-layer,
	.ls-curtile,
	.ls-nexttile {
		will-change: opacity;
	}

	.ls-layer[data-ls-animating-in],
	.ls-layer[data-ls-animating-out] {
		will-change: filter;
	}

	.ls-layer[data-ls-text-animating-in] .ls-ln,
	.ls-layer[data-ls-text-animating-in] .ls-wd,
	.ls-layer[data-ls-text-animating-in] .ls-ch,
	.ls-layer[data-ls-text-animating-out] .ls-ln,
	.ls-layer[data-ls-text-animating-out] .ls-wd,
	.ls-layer[data-ls-text-animating-out] .ls-ch {
		will-change: transform;
	}

	.ls-z:not([data-ls-hidden]),
	.ls-z:not([data-ls-hidden]) .ls-wrapper.ls-loop,
	.ls-z:not([data-ls-hidden]) .ls-wrapper.ls-parallax,
	.ls-z:not([data-ls-hidden]) .ls-wrapper.ls-scroll-transform,
	.ls-z:not([data-ls-hidden]) .ls-wrapper.ls-scroll {
		will-change: transform;
	}
#page-preloader {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999999;
	opacity: 0.98;
	background: #2c2e3d;
}
.block-preloader.preloader,
.block-preloader {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	height: auto;
}
.block-preloader + * {
	overflow: visible !important;
}
.block-preloader.preloader + *:not(iframe) {
	height: auto !important;
}
.block-preloader:after {
	display: none;
}
#page-preloader.preloader-loaded .page-preloader-spin,
.block-preloader.preloader-loaded .page-preloader-spin {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
#page-preloader.preloader-loaded,
.block-preloader.preloader-loaded {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.no-js #page-preloader,
.no-js .block-preloader {
	display: none;
}
#page-preloader .page-preloader-spin,
.block-preloader .page-preloader-spin,
.preloader-spin {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1001;
	width: 80px;
	height: 80px;
	margin: -40px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: #b9b7ff;
	-webkit-animation: PreloaderSpin 2s linear infinite;
	animation: PreloaderSpin 2s linear infinite;
}
.preloader-spin {
	border-top-color: #b9b7ff;
}
.block-preloader .page-preloader-spin {
	top: 100px;
	margin-top: 0;
}
#page-preloader .page-preloader-spin:before,
.block-preloader .page-preloader-spin:before,
.preloader-spin:before {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	right: 4px;
	bottom: 4px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: #00bcd4;
	-webkit-animation: PreloaderSpin 3s linear infinite;
	animation: PreloaderSpin 3s linear infinite;
}
.preloader-spin:before {
	border-top-color: #00bcd4;
}
#page-preloader .page-preloader-spin:after,
.block-preloader .page-preloader-spin:after,
.preloader-spin:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: #a3e7f0;
	-webkit-animation: PreloaderSpin 1.5s linear infinite;
	animation: PreloaderSpin 1.5s linear infinite;
}
.gem-fancybox-preloader .preloader-spin:after {
	border-top-color: #a3e7f0;
}
.preloader-spin:after {
	border-top-color: #7b97ab;
}
.fancybox-slide .gem-fancybox-preloader {
	width: 150px;
	height: 150px;
	background: transparent;
	margin: 0;
	margin-top: -75px;
	margin-left: -75px;
	padding: 0;
}
@-webkit-keyframes PreloaderSpin {
	0%   {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes PreloaderSpin {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.portfolio-scroll-pagination .preloader-spin {
	margin-top: -10px;
}
.blog-load-more-style-timeline-new .preloader-spin {
	margin-top: -10px;
}
.gem-product-scroll-pagination .preloader-spin {
	margin-top: -10px;
}
.preloader-spin-new {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1001;
	width: 50px;
	height: 50px;
	margin: -25px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 2px solid #00bcd4;
	border-top-color: transparent !important;
	-webkit-animation: PreloaderSpin 1.3s linear infinite;
	animation: PreloaderSpin 1.3s linear infinite;
}

.preloader.fullwidth-preloader:before {
	content: '';
	position: absolute;
	width: 200%;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: inherit;
}

.gem-blog-slider-preloader {
	padding-bottom: 165%;
}

@media (min-width: 768px) {
	.gem-blog-slider-preloader {
		padding-bottom: 90%;
	}
}

@media (min-width: 992px) {
	.gem-blog-slider-preloader {
		padding-bottom: 44.87%;
	}
}
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden],
template {
	display: none;
}
a {
	background: transparent;
}
a:active,
a:hover {
	outline: 0 none;
}
abbr[title] {
	border-bottom: 1px dotted;
}
b,
strong {
	font-weight: bold;
}
dfn {
	font-style: italic;
}
mark {
	background: #ff0;
	color: #000;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img {
	border: 0;
}
svg:not(:root) {
	overflow: hidden;
}
figure {
	margin: 1em 40px;
}
hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}
pre {
	overflow: auto;
}
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	outline: 0 none;
}
button {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}
legend {
	border: 0;
	padding: 0;
}
textarea {
	overflow: auto;
}
optgroup {
	font-weight: bold;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td,
th {
	padding: 0;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.421;
	color: #333333;
	background-color: #ffffff;
}
input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
a {
	color: #428bca;
	text-decoration: none;
}
a:hover {
	color: #2a6496;
	text-decoration: none;
}
a:focus {
	outline: 0 none;
	outline: 0 none;
	outline-offset: 0;
}
figure {
	margin: 0;
}
img {
	vertical-align: middle;
}
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}
.img-rounded {
	border-radius: 6px;
}
.img-thumbnail {
	padding: 4px;
	line-height: 1.42857143;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 4px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	display: inline-block;
	max-width: 100%;
	height: auto;
}
.img-circle {
	border-radius: 50%;
}
hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid #eeeeee;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}
.clearfix:after {
	clear: both;
}

.container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 21px;
	padding-right: 21px;
}
@media (min-width: 1212px) {
	.container {
		width: 1212px;
	}
}
.container-fluid {
	margin-right: auto;
	margin-left: auto;
	padding-left: 21px;
	padding-right: 21px;
}
.row {
	margin-left: -21px;
	margin-right: -21px;
}
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
	display: table;
	content: " ";
}
.container:after,
.container-fluid:after,
.row:after {
	clear: both;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
	position: relative;
	min-height: 1px;
	padding-left: 21px;
	padding-right: 21px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
	float: left;
}
.col-xs-12 {
	width: 100%;
}
.col-xs-11 {
	width: 91.66666667%;
}
.col-xs-10 {
	width: 83.33333333%;
}
.col-xs-9 {
	width: 75%;
}
.col-xs-8 {
	width: 66.66666667%;
}
.col-xs-7 {
	width: 58.33333333%;
}
.col-xs-6 {
	width: 50%;
}
.col-xs-5 {
	width: 41.66666667%;
}
.col-xs-4 {
	width: 33.33333333%;
}
.col-xs-3 {
	width: 25%;
}
.col-xs-2 {
	width: 16.66666667%;
}
.col-xs-1 {
	width: 8.33333333%;
}
.col-xs-1-5 {
	width: 20%;
}
.col-xs-pull-12 {
	right: 100%;
}
.col-xs-pull-11 {
	right: 91.66666667%;
}
.col-xs-pull-10 {
	right: 83.33333333%;
}
.col-xs-pull-9 {
	right: 75%;
}
.col-xs-pull-8 {
	right: 66.66666667%;
}
.col-xs-pull-7 {
	right: 58.33333333%;
}
.col-xs-pull-6 {
	right: 50%;
}
.col-xs-pull-5 {
	right: 41.66666667%;
}
.col-xs-pull-4 {
	right: 33.33333333%;
}
.col-xs-pull-3 {
	right: 25%;
}
.col-xs-pull-2 {
	right: 16.66666667%;
}
.col-xs-pull-1 {
	right: 8.33333333%;
}
.col-xs-pull-0 {
	right: 0%;
}
.col-xs-push-12 {
	left: 100%;
}
.col-xs-push-11 {
	left: 91.66666667%;
}
.col-xs-push-10 {
	left: 83.33333333%;
}
.col-xs-push-9 {
	left: 75%;
}
.col-xs-push-8 {
	left: 66.66666667%;
}
.col-xs-push-7 {
	left: 58.33333333%;
}
.col-xs-push-6 {
	left: 50%;
}
.col-xs-push-5 {
	left: 41.66666667%;
}
.col-xs-push-4 {
	left: 33.33333333%;
}
.col-xs-push-3 {
	left: 25%;
}
.col-xs-push-2 {
	left: 16.66666667%;
}
.col-xs-push-1 {
	left: 8.33333333%;
}
.col-xs-push-0 {
	left: 0%;
}
.col-xs-offset-12 {
	margin-left: 100%;
}
.col-xs-offset-11 {
	margin-left: 91.66666667%;
}
.col-xs-offset-10 {
	margin-left: 83.33333333%;
}
.col-xs-offset-9 {
	margin-left: 75%;
}
.col-xs-offset-8 {
	margin-left: 66.66666667%;
}
.col-xs-offset-7 {
	margin-left: 58.33333333%;
}
.col-xs-offset-6 {
	margin-left: 50%;
}
.col-xs-offset-5 {
	margin-left: 41.66666667%;
}
.col-xs-offset-4 {
	margin-left: 33.33333333%;
}
.col-xs-offset-3 {
	margin-left: 25%;
}
.col-xs-offset-2 {
	margin-left: 16.66666667%;
}
.col-xs-offset-1 {
	margin-left: 8.33333333%;
}
.col-xs-offset-0 {
	margin-left: 0%;
}
@media (min-width: 768px) {
	.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
		float: left;
	}
	.col-sm-12 {
		width: 100%;
	}
	.col-sm-11 {
		width: 91.66666667%;
	}
	.col-sm-10 {
		width: 83.33333333%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-8 {
		width: 66.66666667%;
	}
	.col-sm-7 {
		width: 58.33333333%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-5 {
		width: 41.66666667%;
	}
	.col-sm-4 {
		width: 33.33333333%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-2 {
		width: 16.66666667%;
	}
	.col-sm-1 {
		width: 8.33333333%;
	}
	.col-sm-1-5 {
		width: 20%;
	}
	.col-sm-pull-12 {
		right: 100%;
	}
	.col-sm-pull-11 {
		right: 91.66666667%;
	}
	.col-sm-pull-10 {
		right: 83.33333333%;
	}
	.col-sm-pull-9 {
		right: 75%;
	}
	.col-sm-pull-8 {
		right: 66.66666667%;
	}
	.col-sm-pull-7 {
		right: 58.33333333%;
	}
	.col-sm-pull-6 {
		right: 50%;
	}
	.col-sm-pull-5 {
		right: 41.66666667%;
	}
	.col-sm-pull-4 {
		right: 33.33333333%;
	}
	.col-sm-pull-3 {
		right: 25%;
	}
	.col-sm-pull-2 {
		right: 16.66666667%;
	}
	.col-sm-pull-1 {
		right: 8.33333333%;
	}
	.col-sm-pull-0 {
		right: 0%;
	}
	.col-sm-push-12 {
		left: 100%;
	}
	.col-sm-push-11 {
		left: 91.66666667%;
	}
	.col-sm-push-10 {
		left: 83.33333333%;
	}
	.col-sm-push-9 {
		left: 75%;
	}
	.col-sm-push-8 {
		left: 66.66666667%;
	}
	.col-sm-push-7 {
		left: 58.33333333%;
	}
	.col-sm-push-6 {
		left: 50%;
	}
	.col-sm-push-5 {
		left: 41.66666667%;
	}
	.col-sm-push-4 {
		left: 33.33333333%;
	}
	.col-sm-push-3 {
		left: 25%;
	}
	.col-sm-push-2 {
		left: 16.66666667%;
	}
	.col-sm-push-1 {
		left: 8.33333333%;
	}
	.col-sm-push-0 {
		left: 0%;
	}
	.col-sm-offset-12 {
		margin-left: 100%;
	}
	.col-sm-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-sm-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-sm-offset-9 {
		margin-left: 75%;
	}
	.col-sm-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-sm-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-sm-offset-6 {
		margin-left: 50%;
	}
	.col-sm-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-sm-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-sm-offset-3 {
		margin-left: 25%;
	}
	.col-sm-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-sm-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-sm-offset-0 {
		margin-left: 0%;
	}
}
@media (min-width: 992px) {
	.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
		float: left;
	}
	.col-md-12 {
		width: 100%;
	}
	.col-md-11 {
		width: 91.66666667%;
	}
	.col-md-10 {
		width: 83.33333333%;
	}
	.col-md-9 {
		width: 75%;
	}
	.col-md-8 {
		width: 66.66666667%;
	}
	.col-md-7 {
		width: 58.33333333%;
	}
	.col-md-6 {
		width: 50%;
	}
	.col-md-5 {
		width: 41.66666667%;
	}
	.col-md-4 {
		width: 33.33333333%;
	}
	.col-md-3 {
		width: 25%;
	}
	.col-md-2 {
		width: 16.66666667%;
	}
	.col-md-1 {
		width: 8.33333333%;
	}
	.col-md-1-5 {
		width: 20%;
	}
	.col-md-pull-12 {
		right: 100%;
	}
	.col-md-pull-11 {
		right: 91.66666667%;
	}
	.col-md-pull-10 {
		right: 83.33333333%;
	}
	.col-md-pull-9 {
		right: 75%;
	}
	.col-md-pull-8 {
		right: 66.66666667%;
	}
	.col-md-pull-7 {
		right: 58.33333333%;
	}
	.col-md-pull-6 {
		right: 50%;
	}
	.col-md-pull-5 {
		right: 41.66666667%;
	}
	.col-md-pull-4 {
		right: 33.33333333%;
	}
	.col-md-pull-3 {
		right: 25%;
	}
	.col-md-pull-2 {
		right: 16.66666667%;
	}
	.col-md-pull-1 {
		right: 8.33333333%;
	}
	.col-md-pull-0 {
		right: 0%;
	}
	.col-md-push-12 {
		left: 100%;
	}
	.col-md-push-11 {
		left: 91.66666667%;
	}
	.col-md-push-10 {
		left: 83.33333333%;
	}
	.col-md-push-9 {
		left: 75%;
	}
	.col-md-push-8 {
		left: 66.66666667%;
	}
	.col-md-push-7 {
		left: 58.33333333%;
	}
	.col-md-push-6 {
		left: 50%;
	}
	.col-md-push-5 {
		left: 41.66666667%;
	}
	.col-md-push-4 {
		left: 33.33333333%;
	}
	.col-md-push-3 {
		left: 25%;
	}
	.col-md-push-2 {
		left: 16.66666667%;
	}
	.col-md-push-1 {
		left: 8.33333333%;
	}
	.col-md-push-0 {
		left: 0%;
	}
	.col-md-offset-12 {
		margin-left: 100%;
	}
	.col-md-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-md-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-md-offset-9 {
		margin-left: 75%;
	}
	.col-md-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-md-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-md-offset-6 {
		margin-left: 50%;
	}
	.col-md-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-md-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-md-offset-3 {
		margin-left: 25%;
	}
	.col-md-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-md-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-md-offset-0 {
		margin-left: 0%;
	}
}
@media (min-width: 1212px) {
	.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
		float: left;
	}
	.col-lg-12 {
		width: 100%;
	}
	.col-lg-11 {
		width: 91.66666667%;
	}
	.col-lg-10 {
		width: 83.33333333%;
	}
	.col-lg-9 {
		width: 75%;
	}
	.col-lg-8 {
		width: 66.66666667%;
	}
	.col-lg-7 {
		width: 58.33333333%;
	}
	.col-lg-6 {
		width: 50%;
	}
	.col-lg-5 {
		width: 41.66666667%;
	}
	.col-lg-4 {
		width: 33.33333333%;
	}
	.col-lg-3 {
		width: 25%;
	}
	.col-lg-2 {
		width: 16.66666667%;
	}
	.col-lg-1 {
		width: 8.33333333%;
	}
	.col-lg-1-5 {
		width: 20%;
	}
	.col-lg-pull-12 {
		right: 100%;
	}
	.col-lg-pull-11 {
		right: 91.66666667%;
	}
	.col-lg-pull-10 {
		right: 83.33333333%;
	}
	.col-lg-pull-9 {
		right: 75%;
	}
	.col-lg-pull-8 {
		right: 66.66666667%;
	}
	.col-lg-pull-7 {
		right: 58.33333333%;
	}
	.col-lg-pull-6 {
		right: 50%;
	}
	.col-lg-pull-5 {
		right: 41.66666667%;
	}
	.col-lg-pull-4 {
		right: 33.33333333%;
	}
	.col-lg-pull-3 {
		right: 25%;
	}
	.col-lg-pull-2 {
		right: 16.66666667%;
	}
	.col-lg-pull-1 {
		right: 8.33333333%;
	}
	.col-lg-pull-0 {
		right: 0%;
	}
	.col-lg-push-12 {
		left: 100%;
	}
	.col-lg-push-11 {
		left: 91.66666667%;
	}
	.col-lg-push-10 {
		left: 83.33333333%;
	}
	.col-lg-push-9 {
		left: 75%;
	}
	.col-lg-push-8 {
		left: 66.66666667%;
	}
	.col-lg-push-7 {
		left: 58.33333333%;
	}
	.col-lg-push-6 {
		left: 50%;
	}
	.col-lg-push-5 {
		left: 41.66666667%;
	}
	.col-lg-push-4 {
		left: 33.33333333%;
	}
	.col-lg-push-3 {
		left: 25%;
	}
	.col-lg-push-2 {
		left: 16.66666667%;
	}
	.col-lg-push-1 {
		left: 8.33333333%;
	}
	.col-lg-push-0 {
		left: 0%;
	}
	.col-lg-offset-12 {
		margin-left: 100%;
	}
	.col-lg-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-lg-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-lg-offset-9 {
		margin-left: 75%;
	}
	.col-lg-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-lg-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-lg-offset-6 {
		margin-left: 50%;
	}
	.col-lg-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-lg-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-lg-offset-3 {
		margin-left: 25%;
	}
	.col-lg-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-lg-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-lg-offset-0 {
		margin-left: 0%;
	}
}

.header-wrapper{
	position: relative;
	top: 0;
	right: 0;
	left: 0;
	z-index: 390;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.header-with-sticky-template {
	position: relative;
	z-index: 392;
}
.header-sticky-template{
	position: fixed;
	z-index: 391;
	visibility: hidden;
	opacity: 0;
	transition: opacity .1s ease, visibility .1s ease, transform .3s ease;
	animation: header-fadeOutUpBig .1s ease;
	pointer-events: none;
}
.header-sticky-template.header-sticked{
	visibility: visible;
	opacity: 1;
	/*transform: translateZ(0);*/
	animation: header-fadeInDownBig .3s ease;
	pointer-events: visible;
	pointer-events: unset;
}
@media (min-width: 992px) {
	.header-sticky-template.header-hide-on-scroll-desktop {
		transform: translateY(-100%);
		animation: none;
	}
	.header-sticky-template.header-hide-on-scroll-desktop.header-scroll-up {
		transform: none;
	}
}
@media (max-width: 991px) {
	.header-sticky-template.header-hide-on-scroll-mobile {
		transform: translateY(-100%);
		animation: none;
	}
	.header-sticky-template.header-hide-on-scroll-mobile.header-scroll-up {
		transform: none;
	}
}
.header-sticky-prepared .header-wrapper{
	position: absolute;
}
@media (min-width: 768px) {
	.header-transparent .header-wrapper{
		position: absolute;
	}
}
@media (max-width: 767px) {
	.header-transparent-mobile .header-wrapper{
		position: absolute;
	}
}
.header-scroll-stick .whb-flex-row{
	transition: height .2s ease;
}
.header-scroll-stick.header-sticked .whb-flex-row{
	transition-duration: .3s;
}
.header-scroll-stick.header-scroll-down .header-wrapper,
.header-scroll-stick.header-scroll-up .header-wrapper{
	transition: transform .3s ease;
}
.header-scroll-stick.header-scroll-down .header-wrapper{
	transform: translateY(-100%);
}
.header-scroll-stick.header-scroll-up .header-wrapper{
	transform: none;
}
.header-scroll-slide.header-sticked .header-wrapper{
	animation: header-fadeInDownBig .4s ease;
}
.header-scroll-slide.header-scroll-down .header-wrapper,
.header-scroll-slide.header-scroll-up .header-wrapper{
	transition: transform .3s ease;
}
.header-scroll-slide.whb-hide-on-scroll.header-sticked .header-wrapper{
	transform: translateY(-100%);
	animation: none;
}
.header-scroll-slide.whb-hide-on-scroll.header-scroll-up .header-wrapper{
	transform: none;
}
.header-sticked .header-wrapper{
	position: fixed;
	/*transform: translateZ(0);*/
}
.header-sticked .vc_row{
	transition: background-color .3s ease;
}
.header-sticked:not(.header-sticky-template) .vc_row:not(.header-sticky-row) {
	display: none;
}
@keyframes header-fadeInDownBig{
	from{
		transform: translate3d(0, -100%, 0);
	}
	to{
		transform: none;
	}
}
@keyframes header-fadeOutUpBig{
	from{
		transform: none;
	}
	to{
		transform: translate3d(0, -100%, 0);
	}
}
.header-background{
	position: relative;
}
.header-background:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.header-sticked .header-background:before{
	opacity: 0.95;
}
.admin-bar .header-sticked .header-wrapper,
.admin-bar .header-sticky-template{
	top: 32px;
}
@media (max-width: 767px){
	.admin-bar .header-sticked .header-wrapper,
	.admin-bar .header-sticky-template{
		top: 46px;
	}
}
@media (max-width: 599px){
	.admin-bar .header-sticked .header-wrapper,
	.admin-bar .header-sticky-template{
		top: 0;
	}
}

/* Reset vc default styles*/
.thegem-template-header .wpb_wrapper{
	position: relative;
}
.thegem-template-header .wpb_content_element{
	margin: 0;
}
.thegem-template-header .vc_column-inner .wpb_wrapper > div {
	order: 100;
}
body.vc_editor .ui-sortable-placeholder {
	width: auto !important;
	max-width: fit-content !important;
	min-width: 90px !important;
}
.compose-mode .thegem-template-header .vc_vc_column_text {
	min-height: 0;
}


/*.thegem-template-header .vc_row:not([data-vc-full-width]) {
	width: 1212px;
	max-width: 100%;
	margin: 0 auto;
}*/

.thegem-template-header {
	position: relative;
}
.thegem-template-header .vc_row {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 10px;
	padding-bottom: 10px;
}
.thegem-template-header .megamenu-template .vc_row {
	padding-top: 0;
	padding-bottom: 0;
}
.thegem-template-header .vc_row.header-sticky-row.header-shrink-row {
	transition: padding 0.3s;
}
.site-header.header-sticked .thegem-template-header .vc_row.header-sticky-row.header-shrink-row {
	padding-top: 5px;
	padding-bottom: 5px;
}
.thegem-template-header .vc_row > * {
	margin-top: 0;
}
.thegem-template-header .vc_row[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
	overflow: visible;
}
body.single-thegem_templates.compose-mode .thegem-template-header .vc_row[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-header .vc_row[data-vc-full-width] .container:not(.megamenu-template-container) {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-header .vc_row[data-vc-full-width] .container:not(.megamenu-template-container) {
		width: 100%;
	}
}
.thegem-template-header > .vc_row > .container > .vc_column_container > .vc_column-inner,
.thegem-template-header > .container > .vc_row > .vc_column_container > .vc_column-inner,
.thegem-template-header > .vc_row > .vc_column_container > .vc_column-inner,
.thegem-template-header > .wpb-content-wrapper > .vc_row > .container > .vc_column_container > .vc_column-inner,
.thegem-template-header > .wpb-content-wrapper > .container > .vc_row > .vc_column_container > .vc_column-inner,
.thegem-template-header > .wpb-content-wrapper > .vc_row > .vc_column_container > .vc_column-inner,
.compose-mode .thegem-template-header .vc_row .vc_vc_column > .vc_column_container > .vc_column-inner {
	padding-top: 0;
}

/*Use light color for elements*/

#site-header.header-light .thegem-vc-text .wpb_wrapper p,
#site-header.header-light .thegem-vc-text .wpb_wrapper span,
#site-header.header-light .thegem-template-wrapper .wpb-content-wrapper > .thegem-te-heading > .thegem-heading > span{
	color: var(--header-builder-light-color) !important;
}
#site-header.header-light .thegem-template-wrapper .wpb-content-wrapper > .thegem-te-heading > .thegem-heading > a:hover > span{
	color: var(--header-builder-light-color-hover) !important;
}
#site-header.header-light .vc_row,
#site-header.header-light .vc_row .vc_column-inner{
	border-color: var(--header-builder-light-color) !important;
}

/* Show elements z-index */
body.menu-scroll-locked,
body.cart-scroll-locked{
	overflow: hidden;
}
body.menu-scroll-locked.is-no-sticky .header-sticky-template,
body.cart-scroll-locked.is-no-sticky .header-sticky-template{
	opacity: 0;
}
body.menu-scroll-locked .thegem-template-header .vc_row,
body.cart-scroll-locked .thegem-template-header .vc_row{
	z-index: auto !important;
}
body.menu-scroll-locked .thegem-template-header .vc_row.set-index,
body.cart-scroll-locked .thegem-template-header .vc_row.set-index{
	z-index: 1000 !important;
}
body.menu-scroll-locked .thegem-template-header .thegem-te-menu,
body.cart-scroll-locked .thegem-template-header .thegem-te-cart{
	z-index: auto !important;
}
body.menu-scroll-locked .thegem-template-header .thegem-te-menu .thegem-te-menu__hamburger .hamburger-menu-back.active,
body.menu-scroll-locked .thegem-template-header .thegem-te-menu .overlay-menu-back.active {
	z-index: 999 !important;
}
body.menu-scroll-locked .thegem-template-header .thegem-te-menu .thegem-te-menu__hamburger .nav-menu,
body.menu-scroll-locked .thegem-template-header .thegem-te-menu .overlay-menu-wrapper.active{
	z-index: 1000 !important;
}

/* Disable hide-on-scroll if body locked */
body.menu-scroll-locked:not(.is-no-sticky) .header-sticky-template.header-hide-on-scroll-mobile,
body.cart-scroll-locked:not(.is-no-sticky) .header-sticky-template.header-hide-on-scroll-mobile {
	transform: none !important;
}
body.menu-scroll-locked:not(.is-no-sticky) .header-sticky-template,
body.cart-scroll-locked:not(.is-no-sticky) .header-sticky-template {
	z-index: 391 !important;
	opacity: 1!important;
	visibility: visible !important;
	pointer-events: auto !important;
}

/* Icons huck */
body:not(.compose-mode) .thegem-template-header .gem-icon-style-gradient.gem-icon-pack-thegem-header span,
body:not(.compose-mode) .thegem-template-header .gem-icon.gem-icon-pack-thegem-header .gem-icon-half-1,
body:not(.compose-mode) .thegem-template-header .gem-icon.gem-icon-pack-thegem-header .gem-icon-half-2 {
	opacity: 1 !important;
}

/* Heading/Text Shortcode custom text style */
.thegem-te-heading .thegem-heading.text-body-tiny{
	font-family: var(--thegem-to-body-tiny-font-family);
	font-style: var(--thegem-to-body-tiny-font-style);
	font-weight: var(--thegem-to-body-tiny-font-weight);
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	letter-spacing: var(--thegem-to-body-tiny-letter-spacing);
	text-transform: var(--thegem-to-body-tiny-text-transform);
}

/*
Theme Name: TheGem
Description: Multi-Purpose Wordpress Theme
Author: Codex Themes.
Theme URI: http://codex-themes.com/thegem/
Version: 5.12.3.1
Tags: one-column, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, featured-images, flexible-header, full-width-template, theme-options, translation-ready
License: GNU General Public License
License URI: license.txt
Text Domain: thegem
*/

@font-face {
	font-family: 'thegem-icons';
	src:url('https://shop.ariservices.co/wp-content/themes/thegem/fonts/thegem-icons.eot');
	src:url('https://shop.ariservices.co/wp-content/themes/thegem/fonts/thegem-icons.eot?#iefix') format('embedded-opentype'),
		url('https://shop.ariservices.co/wp-content/themes/thegem/fonts/thegem-icons.woff') format('woff'),
		url('https://shop.ariservices.co/wp-content/themes/thegem/fonts/thegem-icons.ttf') format('truetype'),
		url('https://shop.ariservices.co/wp-content/themes/thegem/fonts/thegem-icons.svg#thegem-icons') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

@font-face {
	font-family: 'thegem-socials';
	src:url('https://shop.ariservices.co/wp-content/themes/thegem/fonts/thegem-socials.eot');
	src:url('https://shop.ariservices.co/wp-content/themes/thegem/fonts/thegem-socials.eot?#iefix') format('embedded-opentype'),
		url('https://shop.ariservices.co/wp-content/themes/thegem/fonts/thegem-socials.woff') format('woff'),
		url('https://shop.ariservices.co/wp-content/themes/thegem/fonts/thegem-socials.ttf') format('truetype'),
		url('https://shop.ariservices.co/wp-content/themes/thegem/fonts/thegem-socials.svg#thegem-socials') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

/* BASIC */
body {
	background-attachment: fixed;
}

p {
	margin: 0 0 1.1em;
}

a {
	-o-transition: color 0.3s, background-color 0.3s;
	-webkit-transition: color 0.3s, background-color 0.3s;
	transition: color 0.3s, background-color 0.3s;
}
a:focus-visible {
	outline: 5px auto Highlight;
	outline: 5px auto -webkit-focus-ring-color;
}

::placeholder {
	opacity: 1;
}

.row {
	margin-bottom: 1.1em;
}
.row:last-of-type {
	margin-bottom: 0;
}
button {
	outline: none;
}
button:focus-visible {
	outline: 5px auto Highlight;
	outline: 5px auto -webkit-focus-ring-color;
}

@media (max-width: 1199px) {
	#footer-nav .row {
		margin-top: -3em;
	}
	#footer-nav .row > * {
		margin-top: 3em;
	}
}

h1:first-child {
	margin-top: -10px;
}
h1,
.title-h1 {
	margin: 1.4em 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
h2,
.title-h2 {
	text-transform: uppercase;
	margin: 1.2em 0;
	letter-spacing: 0.05em;
}
h3,
.title-h3 {
	text-transform: uppercase;
	margin: 1.13em 0;
	letter-spacing: 0.05em;
}
h4,
.title-h4 {
	text-transform: uppercase;
	margin: 1em 0;
	letter-spacing: 0.05em;
}
h5,
.title-h5 {
	text-transform: uppercase;
	margin: 0.5em 0;
	letter-spacing: 0.05em;
}
h6,
.title-h6 {
	text-transform: uppercase;
	margin: 1.19em 0;
	letter-spacing: 0.05em;
}
.title-xlarge {
	margin: 1.4em 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

h1 .light,
h2 .light,
h3 .light,
h4 .light,
h5 .light,
h6 .light,
.title-h1 .light,
.title-h2 .light,
.title-h3 .light,
.title-h4 .light,
.title-h5 .light,
.title-h6 .light,
.title-xlarge .light {
	text-transform: uppercase;
	font-size: inherit;
	line-height: inherit;
}

.letter-spacing {
	letter-spacing: 0.05em;
}
.page-title-block .title-xlarge,
.page-title-block h1,
.page-title-block h2,
.page-title-block h3,
.page-title-block h4,
.page-title-block h5,
.page-title-block h6,
.page-title-block .title-h1,
.page-title-block .title-h2,
.page-title-block .title-h3,
.page-title-block .title-h4,
.page-title-block .title-h5,
.page-title-block .title-h6 {
	margin: 0 auto;
}


.small-body {
	font-size: 85%;
	line-height: inherit;
	display: block;
	line-height: 23px;
}


.centered-box {
	text-align: center;
}

.gem-dummy {
	display: inline-block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.grayscale,
.grayscale-image img {
	filter: url('https://shop.ariservices.co/wp-content/themes/thegem/css/grayscale.svg#greyscale');
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}
.gscale img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: 0.3s linear;
	transition: 0.3s linear;
}
.gscale:hover img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.grayscale-hover:hover,
.grayscale-image a:hover img,
.grayscale-image .hover img {
	-webkit-filter: none;
	-moz-filter: none;
	-ms-filter: none;
	-o-filter: none;
	filter: none;
}
.disable-grayscale .grayscale-hover,
.disable-grayscale .grayscale-image a img,
.disable-grayscale .grayscale-image  img {
	-webkit-filter: none;
	-moz-filter: none;
	-ms-filter: none;
	-o-filter: none;
	filter: none;
}
.inline-row {
	font-size: 0;
	margin-bottom: -42px;
}
.inline-row-center {
	text-align: center;
}
.inline-column {
	float: none;
	display: inline-block;
	text-align: left;
	vertical-align: top;
	margin-bottom: 42px;
}
.inline-inside {
	font-size: 0;
	line-height: 0;
}
.z-index {
	z-index: 1000;
	position: relative;
}
body .description {
	display: block;
}
/* STYLED LISTS */

ul.styled,
ol.styled,
ul.product_list_widget {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* CONTAINERS MARGIN */

.fullwidth-block-inner > :last-child,
.fullwidth-block-inner > .container > :last-child,
.centered-box > :last-child,
.gem-textbox-content > :last-child,
.gem-icon-with-text-text > :last-child,
.gem-icon-with-text-content > :last-child,
.gem-alert-box-content > :last-child,
.gem-map-with-text-content > :last-child,
.gem-map-with-text-content > .container > :last-child,
blockquote > :last-child,
.comment-text > :last-child,
.entry-content.post-content > :last-child {
	margin-bottom: 0;
}

.entry-content.post-content > .wpb_row:last-child,
.entry-content.post-content > .wpb-content-wrapper > .wpb_row:last-child,
.gem-textbox-content > .wpb_row:last-child {
	margin-bottom: 0;
}

.fullwidth-block-inner > :first-child,
.fullwidth-block-inner > .container > :first-child,
.centered-box > :first-child,
.gem-textbox-content > :first-child,
.gem-icon-with-text-text > :first-child,
.gem-icon-with-text-content > :first-child,
.gem-map-with-text-content > :first-child,
.gem-map-with-text-content > .container > :first-child,
.gem_tab > :first-child,
blockquote > :first-child,
.comment-text > :first-child,
.wpb_wrapper > :first-child {
	margin-top: 0;
}


/* NAVIGATION */

/* Prev & Next */
.gem-prev,
.gem-next,
.ls-thegem a.ls-nav-prev,
.ls-thegem a.ls-nav-next {
	position: absolute;
	width: 40px;
	top: 0;
	bottom: 0;
	font-size: 0;
	line-height: 0;
	text-indent: 100%;
	overflow: hidden;
	display: block;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.gem-prev:focus,
.gem-next:focus,
.ls-thegem a.ls-nav-prev:focus,
.ls-thegem a.ls-nav-next:focus {
	outline: 0 none;
}
.nivo-directionNav .gem-prev,
.nivo-directionNav .gem-next,
.ls-thegem a.ls-nav-prev,
.ls-thegem a.ls-nav-next,
.related-products-carousel.fullwidth-block .gem-prev,
.related-products-carousel.fullwidth-block .gem-next {
	width: 10%;
	z-index: 10;
}
.gem-prev,
.ls-thegem a.ls-nav-prev {
	left: 0;
}
.gem-next,
.ls-thegem a.ls-nav-next {
	right: 0;
}
.gem-prev:after,
.gem-next:after,
.ls-thegem a.ls-nav-prev:after,
.ls-thegem a.ls-nav-next:after {
	position: absolute;
	font-family: 'thegem-icons';
	font-style: normal;
	top: 50%;
	margin-top: -20px;
	left:50%;
	margin-left: -20px;
	font-size: 24px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	text-indent: 0;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.gem-prev:after,
.ls-thegem a.ls-nav-prev:after {
	content: '\e636';
}
.gem-next:after,
.ls-thegem a.ls-nav-next:after {
	content: '\e634';
}
.gem-prev.disabled,
.gem-next.disabled {
	visibility: hidden;
}

/* PAGINATION */

.gem-pagination {
	text-align: left;
	margin-top: 75px;
}
.gem-pagination.centered-box {
	text-align: center;
}
.gem-pagination-links {
	margin: 0 -8px;
}
.gem-pagination a,
.gem-pagination .current,
.gem-pagination .dots {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 2px;
	width: 36px;
	height: 36px;
	line-height: 26px;
	text-align: center;
	vertical-align: top;
	text-decoration: none;
	font-size: 14px;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.gem-pagination .prev,
.gem-pagination .next {
	font-size: 0;
}
.gem-pagination .prev {
	margin-right: 2px;
}
.gem-pagination .next {
	margin-left: 2px;
}
.gem-pagination .prev:before,
.gem-pagination .next:before {
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
}
.gem-pagination .prev:before {
	content: '\e636';
}
.gem-pagination .next:before {
	content: '\e634';
}

/* Mini-pagination */

.gem-mini-pagination {
	text-align: center;
	padding-top: 15px;
}
.gem-mini-pagination a {
	display: inline-block;
	width: 17px;
	height: 17px;
	font-size: 0;
	line-height: 0;
	text-indent: 100%;
	overflow: hidden;
	margin: 0 7px;
	border-radius: 17px;
	-moz-border-radius: 17px;
	-webkit-border-radius: 17px;
}
.gem-mini-pagination a:focus {
	outline: 0 none;
}

.vc_pagination.vc_pagination-style-thegem.vc_pagination-shape-circle .vc_pagination-trigger {
	width: 16px;
	height: 16px;
	background-color: #b6c6c9;
	border-radius: 50%;
}
.vc_pagination.vc_pagination-style-thegem.vc_pagination-shape-circle .vc_pagination-trigger:hover {
	background-color: #b6c6c9;
}
.vc_pagination.vc_pagination-style-thegem.vc_pagination-shape-circle .vc_active .vc_pagination-trigger {
	background-color: #00bcd4;
}
.vc_pagination.vc_pagination-style-thegem.vc_pagination-shape-square .vc_pagination-trigger {
	width: 16px;
	height: 16px;
	background-color: #3c3950;
	border-radius: 3px;
}
.vc_pagination.vc_pagination-style-thegem.vc_pagination-shape-square .vc_pagination-trigger:hover {
	background-color: #3c3950;
}
.vc_pagination.vc_pagination-style-thegem.vc_pagination-shape-square .vc_active .vc_pagination-trigger {
	background-color: #00bcd4;
}


/* ICONS */

.gem-print-icon {
	display: inline-block;
	font-family: 'thegem-user-icons';
	font-feature-settings: normal;
	font-kerning: auto;
	font-language-override: normal;
	font-size: inherit;
	font-size-adjust: none;
	font-stretch: normal;
	font-style: normal;
	font-synthesis: weight style;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	text-rendering: auto;
	text-align: center;
	vertical-align: middle;
}
.gem-print-icon.gem-icon-pack-elegant {
	font-family: 'ElegantIcons';
	font-size: 16px;
}
.gem-print-icon.gem-icon-pack-material {
	font-family: 'MaterialDesignIcons';
	font-size: 24px;
}
.gem-print-icon.thegemdemo {
	font-family: 'TheGemDemoIcons';
	font-size: 24px;
}
.gem-print-icon.gem-icon-pack-fontawesome {
	font-family: 'FontAwesome';
	font-size: 14px;
}
.gem-print-icon.gem-icon-pack-userpack {
	font-family: 'UserPack';
	font-size: 16px;
}
.gem-print-icon.gem-icon-pack-thegem-header {
	font-family: 'TheGem Header';
	font-size: 16px;
}
.gem-print-icon.gem-icon-pack-thegem-icons::before {
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 16px;
	vertical-align: top;
}
.gem-print-icon.gem-icon-pack-thegem-icons.gem-icon-share::before {
	content: '\e60d';
}
.gem-print-icon.gem-icon-pack-thegem-icons.gem-icon-prev::before {
	content: '\e636';
	font-size: 24px;
}
.gem-print-icon.gem-icon-pack-thegem-icons.gem-icon-next::before {
	content: '\e634';
	font-size: 24px;
}
.gem-print-icon.gem-icon-pack-thegem-icons.gem-icon-hamburger::before {
	content: '\e620';
}
.gem-icon {
	position: relative;
	font-weight: normal;
	font-family: 'ElegantIcons';
	font-size: 24px;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	border-style: solid;
	border-width: 3px;
	font-style: normal;
}
.gem-icon.gem-icon-pack-material {
	font-family: 'MaterialDesignIcons';
}
.gem-icon.gem-icon-pack-fontawesome {
	font-family: 'FontAwesome';
}
.gem-icon.gem-icon-pack-thegemdemo {
	font-family: 'TheGemDemoIcons';
}
.gem-icon.gem-icon-pack-userpack {
	font-family: 'UserPack';
}
.gem-icon.gem-icon-pack-thegem-header {
	font-family: 'TheGem Header';
}
.gem-icon-centered {
	display: block;
	margin: 0 auto;
}
.gem-icon-inner {
	position: relative;
	height: 100%;
	border-radius: 50%;
	width: 46px;
	height: 46px;
	line-height: 46px;
	margin: -1px;
}
.gem-icon-size-small {
	font-size: 24px;
	border-style: solid;
	border-width: 3px;
	height: 50px;
}
.gem-icon-size-small .gem-icon-inner {
	width: 46px;
	height: 46px;
	line-height: 46px;
}
.gem-icon.gem-simple-icon {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	width: 24px;
	height: 24px;
	line-height: 24px;
	border: 0 none;
}
.gem-icon.gem-simple-icon .gem-icon-inner {
	width: 100%;
	height: 100%;
	line-height: inherit;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.gem-icon-shape-square,
.gem-simple-icon {
	border-radius: 3px;
}
.gem-icon-shape-square .gem-icon-inner {
	border-radius: 0;
}
.gem-icon-size-medium {
	font-size: 48px;
	border-width: 4px;
	height: 80px;
}
.gem-icon-size-medium .gem-icon-inner {
	width: 74px;
	height: 74px;
	line-height: 74px;
}
.gem-icon-size-medium.gem-simple-icon {
	width: 48px;
	height: 48px;
	line-height: 48px;
}
.gem-icon-size-medium.gem-icon-shape-square,
.gem-icon-size-medium.gem-simple-icon {
	border-radius: 3px;
}
.gem-icon-size-large {
	font-size: 96px;
	border-width: 7px;
	height: 160px;
}
.gem-icon-size-large .gem-icon-inner {
	width: 148px;
	height: 148px;
	line-height: 148px;
}
.gem-icon-size-large.gem-simple-icon {
	width: 96px;
	height: 96px;
	line-height: 96px;
}
.gem-icon-size-large.gem-icon-shape-square,
.gem-icon-size-large.gem-simple-icon {
	border-radius: 6px;
}
.gem-icon-size-xlarge {
	font-size: 144px;
	border-width: 13px;
	height: 240px;
}
.gem-icon-size-xlarge .gem-icon-inner {
	width: 216px;
	height: 216px;
	line-height: 216px;
}
.gem-icon-size-xlarge.gem-simple-icon {
	width: 144px;
	height: 144px;
	line-height: 144px;
}
.gem-icon-size-xlarge.gem-icon-shape-square,
.gem-icon-size-xlarge.gem-simple-icon {
	border-radius:9px;
}
.gem-icon .gem-icon-half-1,
.gem-icon .gem-icon-half-2 {
	float: left;
	width: 99.999%;
	height: 100%;
	overflow: hidden;
	text-align: center;
}
.gem-icon .gem-icon-half-1 {
	margin-left: -50%;
}
.gem-icon .gem-icon-half-2 {
	margin-right: -50%;
}
.gem-icon.angle-45deg-l .gem-icon-half-1,
.gem-icon.angle-45deg-l .gem-icon-half-2 {
	transform: skew(45deg, 0);
	-o-transform: skew(45deg, 0);
	-ms-transform: skew(45deg, 0);
	-moz-transform: skew(45deg, 0);
	-webkit-transform: skew(45deg, 0);
}
.gem-icon.angle-45deg-r .gem-icon-half-1,
.gem-icon.angle-45deg-r .gem-icon-half-2 {
	transform: skew(-45deg, 0);
	-o-transform: skew(-45deg, 0);
	-ms-transform: skew(-45deg, 0);
	-moz-transform: skew(-45deg, 0);
	-webkit-transform: skew(-45deg, 0);
}
.gem-icon .back-angle {
	display: block;
	position: relative;
	width: 200%;
	height: 100%;
}
.gem-icon .gem-icon-half-2 .back-angle {
	left: -100%;
}
.gem-icon.angle-45deg-l .back-angle {
	transform: skew(-45deg, 0);
	-o-transform: skew(-45deg, 0);
	-ms-transform: skew(-45deg, 0);
	-moz-transform: skew(-45deg, 0);
	-webkit-transform: skew(-45deg, 0);
}
.gem-icon.angle-45deg-r .back-angle {
	transform: skew(45deg, 0);
	-o-transform: skew(45deg, 0);
	-ms-transform: skew(45deg, 0);
	-moz-transform: skew(45deg, 0);
	-webkit-transform: skew(45deg, 0);
}
.gem-icon-use-image img {
	width: 1em;
	height: 1em;
	object-fit: contain;
}
.gem-icon-use-image .back-angle {
	display: flex;
	align-items: center;
	justify-content: center;
}
.gem-icon.gem-icon-size-custom {
	width: auto;
	height: auto;
	box-sizing: content-box;
	overflow: hidden;
	border-style: solid;
}
.gem-icon.gem-icon-size-custom .gem-icon-inner {
	width: 1em;
	height: 1em;
	line-height: 1em;
	height: 1em;
	box-sizing: content-box;
}
.gem-icon-use-svg svg {
	width: 1em;
	height: 1em;
}
.gem-icon a {
	transition: opacity 0.3s;
}
.gem-icon a:hover {
	opacity: 0.6;
}

/* BUTTON */

.gem-button,
input[type='submit'] {
	position: relative;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	border: 0 none;
	vertical-align: middle;
	height: 40px;
	line-height: 40px;
	padding: 0 17px;
	font-size: 14px;
	margin: 25px;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 3px;
}
.gem-button.gem-button-no-uppercase,
.gem-button.gem-button-no-uppercase.gem-button-text-weight-thin {
	text-transform: none;
}
.gem-button:hover {
	text-decoration: none;
}
.gem-button-position-inline {
	display: inline-block;
	vertical-align: top;
}
.gem-button-position-left {
	float: left;
}
.gem-button-position-right {
	float: right;
}
.gem-button-position-center {
	clear: both;
	text-align: center;
	display: block;
}
.gem-button-position-fullwidth .gem-button {
	width: 100%;
	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
}
.gem-button-size-tiny,
input.gem-button-size-tiny {
	height: 30px;
	line-height: 30px;
	padding: 0 14px;
	font-size: 14px;
	margin: 20px;
}
.gem-button-size-small,
input.gem-button-size-small {
	height: 40px;
	line-height: 40px;
	padding: 0 17px;
	font-size: 14px;
	margin: 25px;
}
.gem-button-size-medium,
input.gem-button-size-medium {
	height: 50px;
	line-height: 50px;
	padding: 0 25px;
	font-size: 19px;
	margin: 30px;
}
.gem-button-size-large,
input.gem-button-size-large {
	height: 80px;
	line-height: 80px;
	padding: 0 37px;
	font-size: 24px;
	margin: 40px;
}
.gem-button-size-giant,
input.gem-button-size-giant {
	height: 100px;
	line-height: 100px;
	padding: 0 53px;
	font-size: 36px;
	margin: 50px;
}
.gem-button-size-custom,
input.gem-button-size-custom {
	height: auto;
	white-space: wrap;
}
@media (max-width: 992px) {
	.gem-button-tablet-size-tiny,
	input.gem-button-tablet-size-tiny {
		height: 30px;
		line-height: 30px;
		padding: 0 14px;
		font-size: 14px;
		margin: 20px;
	}
	.gem-button-tablet-size-small,
	input.gem-button-tablet-size-small {
		height: 40px;
		line-height: 40px;
		padding: 0 17px;
		font-size: 14px;
		margin: 25px;
	}
	.gem-button-tablet-size-medium,
	input.gem-button-tablet-size-medium {
		height: 50px;
		line-height: 50px;
		padding: 0 25px;
		font-size: 19px;
		margin: 30px;
	}
	.gem-button-tablet-size-large,
	input.gem-button-tablet-size-large {
		height: 80px;
		line-height: 80px;
		padding: 0 37px;
		font-size: 24px;
		margin: 40px;
	}
	.gem-button-tablet-size-giant,
	input.gem-button-tablet-size-giant {
		height: 100px;
		line-height: 100px;
		padding: 0 53px;
		font-size: 36px;
		margin: 50px;
	}
}
@media (max-width: 767px) {

	.gem-button-size-large {
		height: 50px;
		line-height: 50px;
		padding: 0 25px;
		font-size: 19px;
		margin: 30px;
	}
	.gem-button-size-giant {
		height: 80px;
		line-height: 80px;
		padding: 0 37px;
		font-size: 24px;
		margin: 40px;
	}

	.gem-button-mobile-size-tiny,
	input.gem-button-mobile-size-tiny {
		height: 30px;
		line-height: 30px;
		padding: 0 14px;
		font-size: 14px;
		margin: 20px;
	}
	.gem-button-mobile-size-small,
	input.gem-button-mobile-size-small {
		height: 40px;
		line-height: 40px;
		padding: 0 17px;
		font-size: 14px;
		margin: 25px;
	}
	.gem-button-mobile-size-medium,
	input.gem-button-mobile-size-medium {
		height: 50px;
		line-height: 50px;
		padding: 0 25px;
		font-size: 19px;
		margin: 30px;
	}
	.gem-button-mobile-size-large,
	input.gem-button-mobile-size-large {
		height: 80px;
		line-height: 80px;
		padding: 0 37px;
		font-size: 24px;
		margin: 40px;
	}
	.gem-button-mobile-size-giant,
	input.gem-button-mobile-size-giant {
		height: 100px;
		line-height: 100px;
		padding: 0 53px;
		font-size: 36px;
		margin: 50px;
	}
}
.gem-button.gem-button-empty {
	padding-left: 0;
	padding-right: 0;
	width: 40px;
}
.gem-button.gem-button-empty.gem-button-size-tiny {
	width: 30px;
}
.gem-button.gem-button-empty.gem-button-size-small {
	width: 40px;
}
.gem-button.gem-button-empty.gem-button-size-medium {
	width: 50px;
}
.gem-button.gem-button-empty.gem-button-size-large {
	width: 80px;
}
.gem-button.gem-button-empty.gem-button-size-giant {
	width: 100px;
}
.gem-button.gem-button-size-custom {
	width: auto;
}
.gem-button.gem-button-style-outline {
	border-width: 2px;
	line-height: 36px;
	border-style: solid;
	background: transparent;
}
.gem-button.gem-button-style-outline {
	background: transparent;
}
.gem-button-style-outline.gem-button-border-1 {
	border-width: 1px;
	line-height: 38px;
}
.gem-button-style-outline.gem-button-border-3 {
	border-width: 3px;
	line-height: 34px;
}
.gem-button-style-outline.gem-button-border-4 {
	border-width: 4px;
	line-height: 32px;
}
.gem-button-style-outline.gem-button-border-5 {
	border-width: 5px;
	line-height: 30px;
}
.gem-button-style-outline.gem-button-border-6 {
	border-width: 6px;
	line-height: 28px;
}
.gem-button-size-tiny.gem-button-border-1 {
	line-height: 28px;
}
.gem-button-size-tiny.gem-button-style-outline {
	line-height: 26px;
}
.gem-button-size-tiny.gem-button-border-3 {
	line-height: 24px;
}
.gem-button-size-tiny.gem-button-border-4 {
	line-height: 22px;
}
.gem-button-size-tiny.gem-button-border-5 {
	line-height: 20px;
}
.gem-button-size-tiny.gem-button-border-6 {
	line-height: 18px;
}
.gem-button-size-medium.gem-button-border-1 {
	line-height: 48px;
}
.gem-button-size-medium.gem-button-style-outline {
	line-height: 46px;
}
.gem-button-size-medium.gem-button-border-3 {
	line-height: 44px;
}
.gem-button-size-medium.gem-button-border-4 {
	line-height: 42px;
}
.gem-button-size-medium.gem-button-border-5 {
	line-height: 40px;
}
.gem-button-size-medium.gem-button-border-6 {
	line-height: 38px;
}
.gem-button-size-large.gem-button-border-1 {
	line-height: 78px;
}
.gem-button-size-large.gem-button-style-outline {
	line-height: 76px;
}
.gem-button-size-large.gem-button-border-3 {
	line-height: 74px;
}
.gem-button-size-large.gem-button-border-4 {
	line-height: 72px;
}
.gem-button-size-large.gem-button-border-5 {
	line-height: 70px;
}
.gem-button-size-large.gem-button-border-6 {
	line-height: 68px;
}
.gem-button-size-giant.gem-button-border-1 {
	line-height: 98px;
}
.gem-button-size-giant.gem-button-style-outline {
	line-height: 96px;
}
.gem-button-size-giant.gem-button-border-3 {
	line-height: 94px;
}
.gem-button-size-giant.gem-button-border-4 {
	line-height: 92px;
}
.gem-button-size-giant.gem-button-border-5 {
	line-height: 90px;
}
.gem-button-size-giant.gem-button-border-6 {
	line-height: 88px;
}
@media (max-width: 992px) {
	.gem-button-tablet-size-small.gem-button-style-outline {
		border-width: 2px;
		line-height: 36px;
	}
	.gem-button-style-outline.gem-button-tablet-border-1 {
		border-width: 1px;
		line-height: 38px;
	}
	.gem-button-style-outline.gem-button-tablet-border-3 {
		border-width: 3px;
		line-height: 34px;
	}
	.gem-button-style-outline.gem-button-tablet-border-4 {
		border-width: 4px;
		line-height: 32px;
	}
	.gem-button-style-outline.gem-button-tablet-border-5 {
		border-width: 5px;
		line-height: 30px;
	}
	.gem-button-style-outline.gem-button-tablet-border-6 {
		border-width: 6px;
		line-height: 28px;
	}
	.gem-button-tablet-size-tiny.gem-button-tablet-border-1 {
		line-height: 28px;
	}
	.gem-button-tablet-size-tiny.gem-button-style-outline {
		line-height: 26px;
	}
	.gem-button-tablet-size-tiny.gem-button-tablet-border-3 {
		line-height: 24px;
	}
	.gem-button-tablet-size-tiny.gem-button-tablet-border-4 {
		line-height: 22px;
	}
	.gem-button-tablet-size-tiny.gem-button-tablet-border-5 {
		line-height: 20px;
	}
	.gem-button-tablet-size-tiny.gem-button-tablet-border-6 {
		line-height: 18px;
	}
	.gem-button-tablet-size-medium.gem-button-tablet-border-1 {
		line-height: 48px;
	}
	.gem-button-tablet-size-medium.gem-button-style-outline {
		line-height: 46px;
	}
	.gem-button-tablet-size-medium.gem-button-tablet-border-3 {
		line-height: 44px;
	}
	.gem-button-tablet-size-medium.gem-button-tablet-border-4 {
		line-height: 42px;
	}
	.gem-button-tablet-size-medium.gem-button-tablet-border-5 {
		line-height: 40px;
	}
	.gem-button-tablet-size-medium.gem-button-tablet-border-6 {
		line-height: 38px;
	}
	.gem-button-tablet-size-large.gem-button-tablet-border-1 {
		line-height: 78px;
	}
	.gem-button-tablet-size-large.gem-button-style-outline {
		line-height: 76px;
	}
	.gem-button-tablet-size-large.gem-button-tablet-border-3 {
		line-height: 74px;
	}
	.gem-button-tablet-size-large.gem-button-tablet-border-4 {
		line-height: 72px;
	}
	.gem-button-tablet-size-large.gem-button-tablet-border-5 {
		line-height: 70px;
	}
	.gem-button-tablet-size-large.gem-button-tablet-border-6 {
		line-height: 68px;
	}
	.gem-button-tablet-size-giant.gem-button-tablet-border-1 {
		line-height: 98px;
	}
	.gem-button-tablet-size-giant.gem-button-style-outline {
		line-height: 96px;
	}
	.gem-button-tablet-size-giant.gem-button-tablet-border-3 {
		line-height: 94px;
	}
	.gem-button-tablet-size-giant.gem-button-tablet-border-4 {
		line-height: 92px;
	}
	.gem-button-tablet-size-giant.gem-button-tablet-border-5 {
		line-height: 90px;
	}
	.gem-button-tablet-size-giant.gem-button-tablet-border-6 {
		line-height: 88px;
	}
}
@media (max-width: 767px) {
	.gem-button-size-large.gem-button-border-1 {
		line-height: 48px;
	}
	.gem-button-size-large.gem-button-style-outline {
		line-height: 46px;
	}
	.gem-button-size-large.gem-button-border-3 {
		line-height: 44px;
	}
	.gem-button-size-large.gem-button-border-4 {
		line-height: 42px;
	}
	.gem-button-size-large.gem-button-border-5 {
		line-height: 40px;
	}
	.gem-button-size-large.gem-button-border-6 {
		line-height: 38px;
	}
	.gem-button-size-giant.gem-button-border-1 {
		line-height: 78px;
	}
	.gem-button-size-giant.gem-button-style-outline {
		line-height: 76px;
	}
	.gem-button-size-giant.gem-button-border-3 {
		line-height: 74px;
	}
	.gem-button-size-giant.gem-button-border-4 {
		line-height: 72px;
	}
	.gem-button-size-giant.gem-button-border-5 {
		line-height: 70px;
	}
	.gem-button-size-giant.gem-button-border-6 {
		line-height: 68px;
	}

	.gem-button-mobile-size-small.gem-button-style-outline {
		border-width: 2px;
		line-height: 36px;
	}
	.gem-button-style-outline.gem-button-mobile-border-1 {
		border-width: 1px;
		line-height: 38px;
	}
	.gem-button-style-outline.gem-button-mobile-border-3 {
		border-width: 3px;
		line-height: 34px;
	}
	.gem-button-style-outline.gem-button-mobile-border-4 {
		border-width: 4px;
		line-height: 32px;
	}
	.gem-button-style-outline.gem-button-mobile-border-5 {
		border-width: 5px;
		line-height: 30px;
	}
	.gem-button-style-outline.gem-button-mobile-border-6 {
		border-width: 6px;
		line-height: 28px;
	}
	.gem-button-mobile-size-tiny.gem-button-mobile-border-1 {
		line-height: 28px;
	}
	.gem-button-mobile-size-tiny.gem-button-style-outline {
		line-height: 26px;
	}
	.gem-button-mobile-size-tiny.gem-button-mobile-border-3 {
		line-height: 24px;
	}
	.gem-button-mobile-size-tiny.gem-button-mobile-border-4 {
		line-height: 22px;
	}
	.gem-button-mobile-size-tiny.gem-button-mobile-border-5 {
		line-height: 20px;
	}
	.gem-button-mobile-size-tiny.gem-button-mobile-border-6 {
		line-height: 18px;
	}
	.gem-button-mobile-size-medium.gem-button-mobile-border-1 {
		line-height: 48px;
	}
	.gem-button-mobile-size-medium.gem-button-style-outline {
		line-height: 46px;
	}
	.gem-button-mobile-size-medium.gem-button-mobile-border-3 {
		line-height: 44px;
	}
	.gem-button-mobile-size-medium.gem-button-mobile-border-4 {
		line-height: 42px;
	}
	.gem-button-mobile-size-medium.gem-button-mobile-border-5 {
		line-height: 40px;
	}
	.gem-button-mobile-size-medium.gem-button-mobile-border-6 {
		line-height: 38px;
	}
	.gem-button-mobile-size-large.gem-button-mobile-border-1 {
		line-height: 78px;
	}
	.gem-button-mobile-size-large.gem-button-style-outline {
		line-height: 76px;
	}
	.gem-button-mobile-size-large.gem-button-mobile-border-3 {
		line-height: 74px;
	}
	.gem-button-mobile-size-large.gem-button-mobile-border-4 {
		line-height: 72px;
	}
	.gem-button-mobile-size-large.gem-button-mobile-border-5 {
		line-height: 70px;
	}
	.gem-button-mobile-size-large.gem-button-mobile-border-6 {
		line-height: 68px;
	}
	.gem-button-mobile-size-giant.gem-button-mobile-border-1 {
		line-height: 98px;
	}
	.gem-button-mobile-size-giant.gem-button-style-outline {
		line-height: 96px;
	}
	.gem-button-mobile-size-giant.gem-button-mobile-border-3 {
		line-height: 94px;
	}
	.gem-button-mobile-size-giant.gem-button-mobile-border-4 {
		line-height: 92px;
	}
	.gem-button-mobile-size-giant.gem-button-mobile-border-5 {
		line-height: 90px;
	}
	.gem-button-mobile-size-giant.gem-button-mobile-border-6 {
		line-height: 88px;
	}
}
.gem-button-position-inline .gem-button {
	margin-left: 0;
}
.gem-button-position-left .gem-button {
	margin-left: 0;
	margin-top: 0;
}
.gem-button-position-right .gem-button {
	margin-right: 0;
	margin-top: 0;
}
.gem-button-position-center .gem-button,
.gem-button-position-fullwidth .gem-button {
	margin-left: 0;
	margin-right: 0;
}
.gem-button-size-large .gem-print-icon.gem-icon-pack-elegant,
.gem-button-size-giant .gem-print-icon.gem-icon-pack-elegant {
	font-size: 32px;
}
.gem-button-size-large .gem-print-icon.gem-icon-pack-material,
.gem-button-size-giant .gem-print-icon.gem-icon-pack-material {
	font-size: 48px;
}
.gem-button-size-large .gem-print-icon.gem-icon-pack-fontawesome,
.gem-button-size-giant .gem-print-icon.gem-icon-pack-fontawesome {
	font-size: 28px;
}
.gem-button-size-large .gem-print-icon.gem-icon-pack-userpack,
.gem-button-size-giant .gem-print-icon.gem-icon-pack-userpack {
	font-size: 32px;
}
.gem-button-size-custom .gem-print-icon.gem-icon-pack-elegant,
.gem-button-size-custom .gem-print-icon.gem-icon-pack-material,
.gem-button-size-custom .gem-print-icon.gem-icon-pack-fontawesome,
.gem-button-size-custom .gem-print-icon.gem-icon-pack-userpack {
	font-size: inherit;
}
.gem-button i.gem-print-icon {
	line-height: inherit;
	vertical-align: top;
	height: 100%;
	line-height: inherit;
}
.gem-button-icon-position-left .gem-print-icon {
	margin-right: 6px;
}
.gem-button-icon-position-left.gem-button-size-tiny .gem-print-icon {
	margin-right: 6px;
}
.gem-button-icon-position-left.gem-button-size-medium .gem-print-icon {
	margin-right: 9px;
}
.gem-button-icon-position-left.gem-button-size-large .gem-print-icon {
	margin-right: 12px;
}
.gem-button-icon-position-left.gem-button-size-giant .gem-print-icon {
	margin-right: 16px;
}
.gem-button-icon-position-right .gem-print-icon {
	margin-left: 6px;
}
.gem-button-icon-position-right.gem-button-size-tiny .gem-print-icon {
	margin-left: 6px;
}
.gem-button-icon-position-right.gem-button-size-medium .gem-print-icon {
	margin-left: 9px;
}
.gem-button-icon-position-right.gem-button-size-large .gem-print-icon {
	margin-left: 12px;
}
.gem-button-icon-position-right.gem-button-size-giant .gem-print-icon {
	margin-left: 16px;
}
.blog-load-more {
	position: relative;
}
.blog-load-more .gem-button {
	margin: 0;
}
.portfolio-load-more .gem-button,
.gem-product-load-more .gem-button {
	margin-right: 0;
}
@media (max-width: 767px) {
	.gem-button.gem-button-empty.gem-button-size-large {
		width: 50px;
	}
	.gem-button-icon-position-left.gem-button-size-large .gem-print-icon {
		margin-right: 9px;
	}
	.gem-button-icon-position-right.gem-button-size-large .gem-print-icon {
		margin-left: 9px;
	}
	.gem-button.gem-button-empty.gem-button-size-giant {
		width: 80px;
	}
	.gem-button-icon-position-left.gem-button-size-giant .gem-print-icon {
		margin-right: 12px;
	}
	.gem-button-icon-position-right.gem-button-size-giant .gem-print-icon {
		margin-left: 12px;
	}
}
.gem-button img {
	width: 1em;
	height: 1em;
	object-fit: contain;
}
.gem-button svg {
	width: 1em;
	height: 1em;
	width: max(1em, 16px);
	height: max(1em, 16px);
	transition: all 0.3s;
}
.gem-button.gem-button-flex {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.gem-button .gem-button-text {
	margin: 0;
	color: inherit;
	line-height: 1em;
}

/* SOCIALS */

a.socials-item {
	display: inline-block;
	vertical-align: top;
	text-align: center;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	margin: 0 5px;
	line-height: 16px;
}
.socials-item-icon {
	display: inline-block;
	font-family: 'thegem-socials';
	font-weight: normal;
	width: 1em;
	height: 1em;
	line-height: 1;
	font-size: 16px;
	text-align: center;
	vertical-align: top;
	font-feature-settings: normal;
	font-kerning: auto;
	font-language-override: normal;
	font-size-adjust: none;
	font-stretch: normal;
	font-style: normal;
	font-synthesis: weight style;
	font-variant: normal;
	font-weight: normal;
	text-rendering: auto;
}
a .socials-item-icon {
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.socials-item-icon.facebook::before {
	content: '\e600';
}
.socials-colored a .socials-item-icon.facebook,
.socials-colored-hover a:hover .socials-item-icon.facebook {
	color: #4e64b5;
}
.socials-item-icon.twitter::before {
	content: '\e675';
}
.socials-colored a .socials-item-icon.twitter,
.socials-colored-hover a:hover .socials-item-icon.twitter {
	color: #99a9b5;
}
.socials-item-icon.pinterest::before {
	content: '\e602';
}
.socials-colored a .socials-item-icon.pinterest,
.socials-colored-hover a:hover .socials-item-icon.pinterest {
	color: #ff5757;
}
.socials-item-icon.google-plus::before,
.socials-item-icon.googleplus::before {
	content: '\e603';
}
.socials-colored a .socials-item-icon.google-plus,
.socials-colored a .socials-item-icon.googleplus,
.socials-colored-hover a:hover .socials-item-icon.google-plus,
.socials-colored-hover a:hover .socials-item-icon.googleplus {
	color: #f44336;
}
.socials-item-icon.tumblr::before {
	content: '\e604';
}
.socials-colored a .socials-item-icon.tumblr,
.socials-colored-hover a:hover .socials-item-icon.tumblr {
	color: #456988;
}
.socials-item-icon.stumbleupon::before {
	content: '\e605';
}
.socials-colored a .socials-item-icon.stumbleupon,
.socials-colored-hover a:hover .socials-item-icon.stumbleupon {
	color: #46485c;
}
.socials-item-icon.wordpress::before {
	content: '\e606';
}
.socials-colored a .socials-item-icon.wordpress,
.socials-colored-hover a:hover .socials-item-icon.wordpress {
	color: #0087be;
}
.socials-item-icon.instagram::before {
	content: '\e607';
}
.socials-colored a .socials-item-icon.instagram,
.socials-colored-hover a:hover .socials-item-icon.instagram {
	color: #9a8f62;
}
.socials-item-icon.dribbble::before {
	content: '\e608';
}
.socials-colored a .socials-item-icon.dribbble,
.socials-colored-hover a:hover .socials-item-icon.dribbble {
	color: #ec4a89;
}
.socials-item-icon.vimeo::before {
	content: '\e609';
}
.socials-colored a .socials-item-icon.vimeo,
.socials-colored-hover a:hover .socials-item-icon.vimeo {
	color: #1db3e3;
}
.socials-item-icon.linkedin::before {
	content: '\e60a';
}
.socials-colored a .socials-item-icon.linkedin,
.socials-colored-hover a:hover .socials-item-icon.linkedin {
	color: #0288d1;
}
.socials-item-icon.rss::before {
	content: '\e60b';
}
.socials-colored a .socials-item-icon.rss,
.socials-colored-hover a:hover .socials-item-icon.rss {
	color: #ef8321;
}
.socials-item-icon.deviantart::before {
	content: '\e60c';
}
.socials-colored a .socials-item-icon.deviantart,
.socials-colored-hover a:hover .socials-item-icon.deviantart {
	color: #00d13b;
}
.socials-item-icon.share::before {
	content: '\e60d';
}
.socials-colored a .socials-item-icon.share,
.socials-colored-hover a:hover .socials-item-icon.share {
	color: #ff694c;
}
.socials-item-icon.myspace::before {
	content: '\e60e';
}
.socials-colored a .socials-item-icon.myspace,
.socials-colored-hover a:hover .socials-item-icon.myspace {
	color: #003399;
}
.socials-item-icon.skype::before {
	content: '\e60f';
}
.socials-colored a .socials-item-icon.skype,
.socials-colored-hover a:hover .socials-item-icon.skype {
	color: #00aff0;
}
.socials-item-icon.youtube::before {
	content: '\e610';
}
.socials-colored a .socials-item-icon.youtube,
.socials-colored-hover a:hover .socials-item-icon.youtube {
	color: #c82929;
}
.socials-item-icon.picassa::before {
	content: '\e611';
}
.socials-colored a .socials-item-icon.picassa,
.socials-colored-hover a:hover .socials-item-icon.picassa {
	color: #9966cc;
}
.socials-item-icon.google-drive::before,
.socials-item-icon.googledrive::before {
	content: '\e612';
}
.socials-colored a .socials-item-icon.google-drive,
.socials-colored-hover a:hover .socials-item-icon.google-drive,
.socials-colored a .socials-item-icon.googledrive,
.socials-colored-hover a:hover .socials-item-icon.googledrive {
	color: #2db672;
}
.socials-item-icon.flickr::before {
	content: '\e613';
}
.socials-colored a .socials-item-icon.flickr,
.socials-colored-hover a:hover .socials-item-icon.flickr {
	color: #ff0084;
}
.socials-item-icon.blogger::before {
	content: '\e614';
}
.socials-colored a .socials-item-icon.blogger,
.socials-colored-hover a:hover .socials-item-icon.blogger {
	color: #f06a35;
}
.socials-item-icon.spotify::before {
	content: '\e615';
}
.socials-colored a .socials-item-icon.spotify,
.socials-colored-hover a:hover .socials-item-icon.spotify {
	color: #1ed760;
}
.socials-item-icon.delicious::before {
	content: '\e616';
}
.socials-colored a .socials-item-icon.delicious,
.socials-colored-hover a:hover .socials-item-icon.delicious {
	color: #229bf7;
}
.socials-item-icon.telegram::before {
	content: '\e645';
}
.socials-colored a .socials-item-icon.telegram,
.socials-colored-hover a:hover .socials-item-icon.telegram {
	color: #2ca5e0;
}
.socials-item-icon.vk::before {
	content: '\e648';
}
.socials-colored a .socials-item-icon.vk,
.socials-colored-hover a:hover .socials-item-icon.vk {
	color: #5181b8;
}
.socials-item-icon.whatsapp::before {
	content: '\e64b';
}
.socials-colored a .socials-item-icon.whatsapp,
.socials-colored-hover a:hover .socials-item-icon.whatsapp {
	color: #30b220;
}
.socials-item-icon.viber::before {
	content: '\e64e';
}
.socials-colored a .socials-item-icon.viber,
.socials-colored-hover a:hover .socials-item-icon.viber {
	color: #7a4e9d;
}
.socials-item-icon.ok::before {
	content: '\e651';
}
.socials-colored a .socials-item-icon.ok,
.socials-colored-hover a:hover .socials-item-icon.ok {
	color: #df8733;
}
.socials-item-icon.reddit::before {
	content: '\e654';
}
.socials-colored a .socials-item-icon.reddit,
.socials-colored-hover a:hover .socials-item-icon.reddit {
	color: #ff4500;
}
.socials-item-icon.slack::before {
	content: '\e657';
}
.socials-colored a .socials-item-icon.slack,
.socials-colored-hover a:hover .socials-item-icon.slack {
	color: #63c1a0;
}
.socials-item-icon.askfm::before {
	content: '\e65a';
}
.socials-colored a .socials-item-icon.askfm,
.socials-colored-hover a:hover .socials-item-icon.askfm {
	color: #ff6648;
}
.socials-item-icon.meetup::before {
	content: '\e65d';
}
.socials-colored a .socials-item-icon.meetup,
.socials-colored-hover a:hover .socials-item-icon.meetup {
	color: #e25063;
}
.socials-item-icon.weibo::before {
	content: '\e660';
}
.socials-colored a .socials-item-icon.weibo,
.socials-colored-hover a:hover .socials-item-icon.weibo {
	color: #d52b2a;
}
.socials-item-icon.qzone::before {
	content: '\e663';
}
.socials-colored a .socials-item-icon.qzone,
.socials-colored-hover a:hover .socials-item-icon.qzone {
	color: #fece00;
}
.socials-item-icon.tiktok::before {
	content: '\e666';
}
.socials-colored a .socials-item-icon.tiktok,
.socials-colored-hover a:hover .socials-item-icon.tiktok {
	color: #ff0050;
}
.socials-item-icon.soundcloud::before {
	content: '\e669';
}
.socials-colored a .socials-item-icon.soundcloud,
.socials-colored-hover a:hover .socials-item-icon.soundcloud {
	color: #ff3300;
}
.socials-item-icon.discord::before {
	content: '\e66c';
}
.socials-colored a .socials-item-icon.discord,
.socials-colored-hover a:hover .socials-item-icon.discord {
	color: #7289da;
}
.socials-item-icon.wechat::before {
	content: '\e66f';
}
.socials-colored a .socials-item-icon.wechat,
.socials-colored-hover a:hover .socials-item-icon.wechat {
	color: #00bf2c;
}
.socials-item-icon.xing::before {
	content: '\e672';
}
.socials-colored a .socials-item-icon.xing,
.socials-colored-hover a:hover .socials-item-icon.xing {
	color: #046064;
}
.socials-item-icon.twitter-old::before {
	content: '\e601';
}
.socials-colored a .socials-item-icon.twitter-old,
.socials-colored-hover a:hover .socials-item-icon.twitter-old {
	color: #00aced;
}
.socials-item-icon.threads::before {
	content: '\e678';
}
.socials-colored a .socials-item-icon.threads,
.socials-colored-hover a:hover .socials-item-icon.threads {
	color: #99a9b5;
}
.socials-item-icon.bluesky::before {
	content: '\e67b';
}
.socials-colored a .socials-item-icon.bluesky,
.socials-colored-hover a:hover .socials-item-icon.bluesky {
	color: #0085ff;
}
.socials-item-icon.houzz::before {
	content: '\e67e';
}
.socials-colored a .socials-item-icon.houzz,
.socials-colored-hover a:hover .socials-item-icon.houzz {
	color: #4bb714;
}

.social-item-rounded.socials-item-icon.facebook::before,
.socials-rounded .socials-item-icon.facebook::before {
	content: '\e617';
}
.social-item-rounded.socials-item-icon.twitter::before,
.socials-rounded .socials-item-icon.twitter::before {
	content: '\e676';
}
.social-item-rounded.socials-item-icon.pinterest::before,
.socials-rounded .socials-item-icon.pinterest::before {
	content: '\e619';
}
.social-item-rounded.socials-item-icon.google-plus::before,
.social-item-rounded.socials-item-icon.googleplus::before,
.socials-rounded .socials-item-icon.google-plus::before,
.socials-rounded .socials-item-icon.googleplus::before {
	content: '\e61a';
}
.social-item-rounded.socials-item-icon.tumblr::before,
.socials-rounded .socials-item-icon.tumblr::before {
	content: '\e61b';
}
.social-item-rounded.socials-item-icon.stumbleupon::before,
.socials-rounded .socials-item-icon.stumbleupon::before {
	content: '\e61c';
}
.social-item-rounded.socials-item-icon.wordpress::before,
.socials-rounded .socials-item-icon.wordpress::before {
	content: '\e61d';
}
.social-item-rounded.socials-item-icon.instagram::before,
.socials-rounded .socials-item-icon.instagram::before {
	content: '\e61e';
}
.social-item-rounded.socials-item-icon.dribbble::before,
.socials-rounded .socials-item-icon.dribbble::before {
	content: '\e61f';
}
.social-item-rounded.socials-item-icon.vimeo::before,
.socials-rounded .socials-item-icon.vimeo::before {
	content: '\e620';
}
.social-item-rounded.socials-item-icon.linkedin::before,
.socials-rounded .socials-item-icon.linkedin::before {
	content: '\e621';
}
.social-item-rounded.socials-item-icon.rss::before,
.socials-rounded .socials-item-icon.rss::before {
	content: '\e622';
}
.social-item-rounded.socials-item-icon.deviantart::before,
.socials-rounded .socials-item-icon.deviantart::before {
	content: '\e623';
}
.social-item-rounded.socials-item-icon.share::before,
.socials-rounded .socials-item-icon.share::before {
	content: '\e624';
}
.social-item-rounded.socials-item-icon.myspace::before,
.socials-rounded .socials-item-icon.myspace::before {
	content: '\e625';
}
.social-item-rounded.socials-item-icon.skype::before,
.socials-rounded .socials-item-icon.skype::before {
	content: '\e626';
}
.social-item-rounded.socials-item-icon.youtube::before,
.socials-rounded .socials-item-icon.youtube::before {
	content: '\e627';
}
.social-item-rounded.socials-item-icon.picassa::before,
.socials-rounded .socials-item-icon.picassa::before {
	content: '\e628';
}
.social-item-rounded.socials-item-icon.google-drive::before,
.social-item-rounded.socials-item-icon.googledrive::before,
.socials-rounded .socials-item-icon.google-drive::before,
.socials-rounded .socials-item-icon.googledrive::before {
	content: '\e629';
}
.social-item-rounded.socials-item-icon.flickr::before,
.socials-rounded .socials-item-icon.flickr::before {
	content: '\e62a';
}
.social-item-rounded.socials-item-icon.blogger::before,
.socials-rounded .socials-item-icon.blogger::before {
	content: '\e62b';
}
.social-item-rounded.socials-item-icon.spotify::before,
.socials-rounded .socials-item-icon.spotify::before {
	content: '\e62c';
}
.social-item-rounded.socials-item-icon.delicious::before,
.socials-rounded .socials-item-icon.delicious::before {
	content: '\e62d';
}
.social-item-rounded.socials-item-icon.telegram::before,
.socials-rounded .socials-item-icon.telegram::before {
	content: '\e646';
}
.social-item-rounded.socials-item-icon.vk::before,
.socials-rounded .socials-item-icon.vk::before {
	content: '\e649';
}
.social-item-rounded.socials-item-icon.whatsapp::before,
.socials-rounded .socials-item-icon.whatsapp::before {
	content: '\e64c';
}
.social-item-rounded.socials-item-icon.viber::before,
.socials-rounded .socials-item-icon.viber::before {
	content: '\e64f';
}
.social-item-rounded.socials-item-icon.ok::before,
.socials-rounded .socials-item-icon.ok::before {
	content: '\e652';
}
.social-item-rounded.socials-item-icon.reddit::before,
.socials-rounded .socials-item-icon.reddit::before {
	content: '\e655';
}
.social-item-rounded.socials-item-icon.slack::before,
.socials-rounded .socials-item-icon.slack::before {
	content: '\e658';
}
.social-item-rounded.socials-item-icon.askfm::before,
.socials-rounded .socials-item-icon.askfm::before {
	content: '\e65b';
}
.social-item-rounded.socials-item-icon.meetup::before,
.socials-rounded .socials-item-icon.meetup::before {
	content: '\e65e';
}
.social-item-rounded.socials-item-icon.weibo::before,
.socials-rounded .socials-item-icon.weibo::before {
	content: '\e661';
}
.social-item-rounded.socials-item-icon.qzone::before,
.socials-rounded .socials-item-icon.qzone::before {
	content: '\e664';
}
.social-item-rounded.socials-item-icon.tiktok::before,
.socials-rounded .socials-item-icon.tiktok::before {
	content: '\e667';
}
.social-item-rounded.socials-item-icon.soundcloud::before,
.socials-rounded .socials-item-icon.soundcloud::before {
	content: '\e66a';
}
.social-item-rounded.socials-item-icon.discord::before,
.socials-rounded .socials-item-icon.discord::before {
	content: '\e66d';
}
.social-item-rounded.socials-item-icon.wechat::before,
.socials-rounded .socials-item-icon.wechat::before {
	content: '\e670';
}
.social-item-rounded.socials-item-icon.xing::before,
.socials-rounded .socials-item-icon.xing::before {
	content: '\e673';
}
.social-item-rounded.socials-item-icon.twitter-old::before,
.socials-rounded .socials-item-icon.twitter-old::before {
	content: '\e618';
}
.social-item-rounded.socials-item-icon.threads::before,
.socials-rounded .socials-item-icon.threads::before {
	content: '\e679';
}
.social-item-rounded.socials-item-icon.bluesky::before,
.socials-rounded .socials-item-icon.bluesky::before {
	content: '\e67c';
}
.social-item-rounded.socials-item-icon.houzz::before,
.socials-rounded .socials-item-icon.houzz::before {
	content: '\e67f';
}

.social-item-square.socials-item-icon.facebook::before,
.socials-square .socials-item-icon.facebook::before {
	content: '\e62e';
}
.social-item-square.socials-item-icon.twitter::before,
.socials-square .socials-item-icon.twitter::before {
	content: '\e677';
}
.social-item-square.socials-item-icon.pinterest::before,
.socials-square .socials-item-icon.pinterest::before {
	content: '\e630';
}
.social-item-square.socials-item-icon.google-plus::before,
.social-item-square.socials-item-icon.googleplus::before,
.socials-square .socials-item-icon.google-plus::before,
.socials-square .socials-item-icon.googleplus::before {
	content: '\e631';
}
.social-item-square.socials-item-icon.tumblr::before,
.socials-square .socials-item-icon.tumblr::before {
	content: '\e632';
}
.social-item-square.socials-item-icon.stumbleupon::before,
.socials-square .socials-item-icon.stumbleupon::before {
	content: '\e633';
}
.social-item-square.socials-item-icon.wordpress::before,
.socials-square .socials-item-icon.wordpress::before {
	content: '\e634';
}
.social-item-square.socials-item-icon.instagram::before,
.socials-square .socials-item-icon.instagram::before {
	content: '\e635';
}
.social-item-square.socials-item-icon.dribbble::before,
.socials-square .socials-item-icon.dribbble::before {
	content: '\e636';
}
.social-item-square.socials-item-icon.vimeo::before,
.socials-square .socials-item-icon.vimeo::before {
	content: '\e637';
}
.social-item-square.socials-item-icon.linkedin::before,
.socials-square .socials-item-icon.linkedin::before {
	content: '\e638';
}
.social-item-square.socials-item-icon.rss::before,
.socials-square .socials-item-icon.rss::before {
	content: '\e639';
}
.social-item-square.socials-item-icon.deviantart::before,
.socials-square .socials-item-icon.deviantart::before {
	content: '\e63a';
}
.social-item-square.socials-item-icon.share::before,
.socials-square .socials-item-icon.share::before {
	content: '\e63b';
}
.social-item-square.socials-item-icon.myspace::before,
.socials-square .socials-item-icon.myspace::before {
	content: '\e63c';
}
.social-item-square.socials-item-icon.skype::before,
.socials-square .socials-item-icon.skype::before {
	content: '\e63d';
}
.social-item-square.socials-item-icon.youtube::before,
.socials-square .socials-item-icon.youtube::before {
	content: '\e63e';
}
.social-item-square.socials-item-icon.picassa::before,
.socials-square .socials-item-icon.picassa::before {
	content: '\e63f';
}
.social-item-square.socials-item-icon.google-drive::before,
.social-item-square.socials-item-icon.googledrive::before,
.socials-square .socials-item-icon.google-drive::before,
.socials-square .socials-item-icon.googledrive::before {
	content: '\e640';
}
.social-item-square.socials-item-icon.flickr::before,
.socials-square .socials-item-icon.flickr::before {
	content: '\e641';
}
.social-item-square.socials-item-icon.blogger::before,
.socials-square .socials-item-icon.blogger::before {
	content: '\e642';
}
.social-item-square.socials-item-icon.spotify::before,
.socials-square .socials-item-icon.spotify::before {
	content: '\e643';
}
.social-item-square.socials-item-icon.delicious::before,
.socials-square .socials-item-icon.delicious::before {
	content: '\e644';
}
.social-item-square.socials-item-icon.telegram::before,
.socials-square .socials-item-icon.telegram::before {
	content: '\e647';
}
.social-item-square.socials-item-icon.vk::before,
.socials-square .socials-item-icon.vk::before {
	content: '\e64a';
}
.social-item-square.socials-item-icon.whatsapp::before,
.socials-square .socials-item-icon.whatsapp::before {
	content: '\e64d';
}
.social-item-square.socials-item-icon.viber::before,
.socials-square .socials-item-icon.viber::before {
	content: '\e650';
}
.social-item-square.socials-item-icon.ok::before,
.socials-square .socials-item-icon.ok::before {
	content: '\e653';
}
.social-item-square.socials-item-icon.reddit::before,
.socials-square .socials-item-icon.reddit::before {
	content: '\e656';
}
.social-item-square.socials-item-icon.slack::before,
.socials-square .socials-item-icon.slack::before {
	content: '\e659';
}
.social-item-square.socials-item-icon.askfm::before,
.socials-square .socials-item-icon.askfm::before {
	content: '\e65c';
}
.social-item-square.socials-item-icon.meetup::before,
.socials-square .socials-item-icon.meetup::before {
	content: '\e65f';
}
.social-item-square.socials-item-icon.weibo::before,
.socials-square .socials-item-icon.weibo::before {
	content: '\e662';
}
.social-item-square.socials-item-icon.qzone::before,
.socials-square .socials-item-icon.qzone::before {
	content: '\e665';
}
.social-item-square.socials-item-icon.tiktok::before,
.socials-square .socials-item-icon.tiktok::before {
	content: '\e668';
}
.social-item-square.socials-item-icon.soundcloud::before,
.socials-square .socials-item-icon.soundcloud::before {
	content: '\e66b';
}
.social-item-square.socials-item-icon.discord::before,
.socials-square .socials-item-icon.discord::before {
	content: '\e66e';
}
.social-item-square.socials-item-icon.wechat::before,
.socials-square .socials-item-icon.wechat::before {
	content: '\e671';
}
.social-item-square.socials-item-icon.xing::before,
.socials-square .socials-item-icon.xing::before {
	content: '\e674';
}
.social-item-square.socials-item-icon.twitter-old::before,
.socials-square .socials-item-icon.twitter-old::before {
	content: '\e62f';
}
.social-item-square.socials-item-icon.threads::before,
.socials-square .socials-item-icon.threads::before {
	content: '\e67a';
}
.social-item-square.socials-item-icon.bluesky::before,
.socials-square .socials-item-icon.bluesky::before {
	content: '\e67d';
}
.social-item-square.socials-item-icon.houzz::before,
.socials-square .socials-item-icon.houzz::before {
	content: '\e680';
}

.socials-list {
	margin-left: -10px;
	margin-right: -10px;
}
.socials-list .socials-item {
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
}
.socials-list.socials-alignment-right {
	text-align: right;
}
.socials-list.socials-alignment-center {
	text-align: center;
}

#footer-socials .socials:not(.socials-colored-hover) a:hover .socials-item-icon {
	color: #ffffff;
}



/* PRELOADER */

.preloader {
	position: relative;
	height: 200px;
}
.slideshow-preloader {
	height: 400px;
}
.loading {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
}
.preloader:after,
.loading:after {
	content: '';
	position: absolute;
	height: 90px;
	width: 90px;
	background: #ffffff url('https://shop.ariservices.co/wp-content/themes/thegem/images/preloader-1.gif') no-repeat 50% 50%;
	top: 50%;
	left: 50%;
	margin-top: -45px;
	margin-left: -45px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.preloader + * {
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden !important;
	opacity: 0;
}
.preloader + *:not(iframe) {
	height: 0 !important;
}
.preloader + iframe {
	margin-top: -200px !important;
}
.loading + * {
	opacity: 0;
}
.preloader.save-space {
	margin-bottom: -200px;
}
.preloader.save-space + *:not(iframe) {
	position: relative;
	height: auto !important;
	z-index: -1;
}
.preloader .skeleton {
	height: auto;
	font-size: 0;
	position: absolute;
	width: 100%;
	left: 0;
}
.preloader .skeleton .with-filter-sidebar {
	display: flex;
}
.panel-sidebar-position-right .preloader .skeleton .with-filter-sidebar,
.preloader .skeleton.panel-sidebar-position-right .with-filter-sidebar {
	flex-direction: row-reverse;
}
.preloader .skeleton .with-filter-sidebar .filter-sidebar {
	width: 25%;
	max-width: 350px;
	padding-right: 42px;
}
.panel-sidebar-position-right .preloader .skeleton .with-filter-sidebar .filter-sidebar,
.preloader .skeleton.panel-sidebar-position-right .with-filter-sidebar .filter-sidebar {
	padding-right: 0;
	padding-left: 42px;
}
@media (max-width: 991px) {
	.preloader .skeleton .with-filter-sidebar .filter-sidebar {
		display: none;
	}
}
.preloader .skeleton .with-filter-sidebar .content {
	flex: 1;
}
.preloader .skeleton .widget {
	position: relative;
	overflow: hidden;
	margin-bottom: 35px;
	border-bottom: 2px solid #f0f3f2;
}
.preloader .skeleton .widget:before {
	content: "";
	display: block;
	height: 350px;
	background-repeat: no-repeat;
	background-image: linear-gradient(#f0f3f2 20px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0);
	background-size: 55% 20px, 30px 12px, 65% 12px, 30px 12px, 48% 12px, 30px 12px, 57% 12px, 30px 12px, 43% 12px, 30px 12px, 54% 12px, 30px 12px, 45% 12px, 30px 12px, 35% 12px, 30px 12px, 58% 12px;
	background-position: left 0, right 50px, left 50px, right 86px, left 86px, right 122px, left 122px, right 158px, left 158px, right 194px, left 194px, right 230px, left 230px, right 266px, left 266px, right 302px, left 302px;
}
.preloader .skeleton .portfolio-top-panel {
	text-align: right;
	margin-bottom: 35px;
}
.preloader .skeleton .skeleton-sorting {
	width: 140px;
	height: 25px;
	background-color: #f0f3f2;
	margin-left: auto;
	border-radius: 13px;
	position: relative;
	overflow: hidden;
}
.preloader .skeleton .portfolio-item,
.preloader .skeleton .products-category-item {
	position: relative;
	overflow: hidden;
	margin-top: 0;
}

@media (min-width: 992px) {
	.preloader .skeleton .portfolio-item.product.columns-desktop-5,
	.preloader .skeleton .products-category-item.columns-desktop-5 {
		width: 20%;
	}
}
.preloader .skeleton .portfolio-item:before {
	content: "";
	display: block;
	padding-top: calc(100% + 118px);
	background-repeat: no-repeat;
	background-image: linear-gradient(#f0f3f2 100%, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0);
	background-size: 100% 60%, 26% 12px, 65% 12px, 56% 12px, 38% 12px;
	background-position: center 0, center calc(60% + 20px), center calc(60% + 42px), center calc(60% + 64px), center calc(60% + 86px);
}
.preloader .skeleton .caption-position-image.aspect-ratio-portrait .products-category-item:before {
	content: "";
	display: block;
	padding-top: 125%;
	background-repeat: no-repeat;
	background-image: linear-gradient(#f0f3f2 100%, transparent 0);
	background-size: 100%;
	background-position: center 0;
}
.preloader .skeleton .caption-position-image.aspect-ratio-square .products-category-item:before {
	content: "";
	display: block;
	padding-top: 100%;
	background-repeat: no-repeat;
	background-image: linear-gradient(#f0f3f2 100%, transparent 0);
	background-size: 100%;
	background-position: center 0;
}
.preloader .skeleton .caption-position-below.aspect-ratio-portrait .products-category-item:before {
	content: "";
	display: block;
	padding-top: calc(125% + 70px);
	background-repeat: no-repeat;
	background-image: linear-gradient(#f0f3f2 100%, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0);
	background-size: 100% 75%, 65% 12px, 38% 12px;
	background-position: center 0, center calc(75% + 25px), center calc(75% + 50px);
}
.preloader .skeleton .caption-position-below.aspect-ratio-square .products-category-item:before {
	content: "";
	display: block;
	padding-top: calc(100% + 70px);
	background-repeat: no-repeat;
	background-image: linear-gradient(#f0f3f2 100%, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0), linear-gradient(#f0f3f2 12px, transparent 0);
	background-size: 100% 75%, 65% 12px, 38% 12px;
	background-position: center 0, center calc(75% + 25px), center calc(75% + 50px);
}
.preloader .skeleton .widget:after, .preloader .skeleton .portfolio-item:after, .preloader .skeleton .skeleton-sorting:after, .preloader .skeleton .products-category-item:after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	right: -50%;
	bottom: -50%;
	transform: rotate(45deg);
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 80%);
	background-size: 60% 100%;
	background-position: -100% 0;
	background-repeat: no-repeat;
	animation: skeletonloading 1.5s infinite 0.2s;
}
.preloader .skeleton .skeleton-sorting:after {
	top: -200%;
	bottom: -200%;
}
@keyframes skeletonloading {
	to {
		background-position: 200% 0;
	}
}
.preloader.skeleton-carousel {
	height: auto;
}
.preloader.skeleton-carousel .skeleton {
	position: relative;
}
.preloader.skeleton-carousel .skeleton-posts {
	display: flex;
	overflow: hidden;
}
.preloader.skeleton-carousel .skeleton-posts .portfolio-item,
.preloader.skeleton-carousel .skeleton-posts .products-category-item {
	flex: none;
}

/* PRODUCT SKELETON */
.preloader.skeleton.product-gallery-skeleton,
.preloader.skeleton.product-grid-gallery-skeleton,
.preloader.skeleton.product-right-column-skeleton,
.preloader.skeleton.product-tabs-skeleton {
	position: relative;
	overflow: hidden;
	padding: 0;
	background-repeat: no-repeat;
}
.preloader.skeleton.product-right-column-skeleton {
	position: absolute;
	left: 21px;
	right: 21px;
}
.preloader.skeleton.product-right-column-skeleton + * {
	position: relative;
	height: auto !important;
	opacity: 0;
}
.preloader.skeleton.product-gallery-skeleton {
	height: auto;
}

@media (min-width: 768px) {
	.preloader.skeleton.product-gallery-skeleton:not(.product-gallery-skeleton-single).product-gallery-skeleton-vertical {
		padding-bottom: calc(100% - 30px) !important;
	}
	.preloader.skeleton.product-gallery-skeleton:not(.product-gallery-skeleton-single).product-gallery-skeleton-vertical .product-gallery-skeleton-image {
		padding: 0 !important;
	}
	.preloader.skeleton.product-gallery-skeleton:not(.product-gallery-skeleton-single).product-gallery-skeleton-vertical-square {
		padding-bottom: 74.11% !important;
	}
}

.product-gallery-skeleton-thumbs.product-gallery-skeleton-thumbs-horizontal {
	position: relative;
	width: 100%;
	padding-bottom: calc(25% - 11px);
	margin-top: 15px;
	background-repeat: no-repeat;
	background-image: linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0);
	background-size: 23% 100%;
	background-position: 0 center, 33% center, 66% center, 100% center;
	overflow: hidden;
}
@media (width: 768px) and (orientation:portrait) {
	.product-gallery-skeleton-thumbs.product-gallery-skeleton-thumbs-horizontal {
		display: none;
	}
}
.product-gallery {
	position: relative;
}
.owl-carousel.product-gallery-slider:not(.owl-loaded) {
	display: block;
}
.owl-carousel.product-gallery-slider:not(.owl-loaded) .product-gallery-slider-item:not(:first-child) {
	display: none;
}
.product-gallery.is-vertical-inited .owl-carousel.product-gallery-slider:not(.owl-loaded) .product-gallery-slider-item:first-child {
	padding-left: 24.3%;
}
.product-gallery.is-vertical-inited-right .owl-carousel.product-gallery-slider:not(.owl-loaded) .product-gallery-slider-item:first-child {
	padding-right: 24.3%;
}

.product-gallery.is-vertical-inited .owl-carousel.product-gallery-slider:not(.owl-loaded) ~ .product-gallery-labels .product-labels {
	left: calc(24.3% + 10px);
}
.product-gallery.is-vertical-inited .product-gallery-skeleton-thumbs.product-gallery-skeleton-thumbs-vertical,
.product-gallery.is-vertical-inited-right .product-gallery-skeleton-thumbs.product-gallery-skeleton-thumbs-vertical{
	height: 100%;
	width: calc(24.3% - 15px);
	position: absolute;
	top: 0;
	background-repeat: no-repeat;
	background-image: linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0);
	background-size: 100% 23%;
	background-position: center 0, center 33%, center 66%, center 100%;
	overflow: hidden;
}
.product-gallery.is-vertical-inited .product-gallery-skeleton-thumbs.product-gallery-skeleton-thumbs-vertical{
	left: 0;
}
.product-gallery.is-vertical-inited-right .product-gallery-skeleton-thumbs.product-gallery-skeleton-thumbs-vertical {
	right: 0;
}
@media (max-width: 767px) {
	.product-gallery-skeleton-thumbs {
		display: none;
	}
}
.product-gallery-skeleton-image {
	width: 100%;
	background-color: var(--styled-bg-color, #f0f3f2);
}
@media (min-width: 768px) {
	.preloader.skeleton.product-gallery-skeleton:not(.product-gallery-skeleton-single).product-gallery-skeleton-vertical .product-gallery-skeleton-image {
		position: absolute;
		right: 0;
		top: 0;
		width: 75.7%;
		height: 100%;
	}
}
.preloader.skeleton.product-grid-gallery-skeleton {
	background-color: var(--styled-bg-color, #f0f3f2);
	padding-bottom: 125%;
	display: inline-block;
	vertical-align: top;
	width: 100%;
}
.preloader.skeleton.product-right-column-skeleton {
	padding-bottom: 510px;
}
.preloader.skeleton.product-tabs-skeleton {
	padding-bottom: 350px;
}
.product-gallery-skeleton-thumbs:after,
.product-gallery-skeleton-image:after,
.preloader.skeleton.product-grid-gallery-skeleton:after,
.preloader.skeleton.product-right-column-skeleton:after,
.preloader.skeleton.product-tabs-skeleton:after {
	content: "";
	position: absolute;
	display: block;
	height: auto;
	width: auto;
	background-color: transparent;
	top: -50%;
	left: -50%;
	right: -50%;
	bottom: -50%;
	transform: rotate(45deg);
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 20%, var(--main-bg-color-08, rgba(255, 255, 255, 0.8)) 50%, rgba(255, 255, 255, 0) 80%);
	background-size: 60% 100%;
	background-position: -100% 0;
	background-repeat: no-repeat;
	animation: skeletonloading 1.5s infinite 0.2s;
}
.product-gallery-skeleton-thumbs.product-gallery-skeleton-thumbs-horizontal:after {
	top: -200%;
	bottom: -200%;
}
.product-gallery-skeleton-thumbs.product-gallery-skeleton-thumbs-vertical:after {
	left: -200%;
	right: -200%;
}
.preloader.skeleton.product-tabs-skeleton:after {
	transform: none;
	background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0) 20%, var(--main-bg-color-08, rgba(255, 255, 255, 0.8)) 50%, rgba(255, 255, 255, 0) 80%);
}
.preloader.skeleton.product-right-column-skeleton {
	background-image: linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0);
	background-size: calc(100% - 180px) 30px, 55px 20px, 35% 20px, 100% 12px, 100% 12px, 100% 12px, 100% 12px, 50% 35px, 50% 35px, 20% 20px, 50% 20px, 65% 20px, 40% 20px;
	background-position: 0 0, 100% 0, 0 50px, 0 95px, 0 120px, 0 145px, 0 170px, 0 230px, 0 285px, 0 370px, 0 410px, 0 450px, 0 490px;
}
.preloader.skeleton.product-right-column-skeleton.centered-skeleton {
	padding-bottom: 530px;
	background-image: linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0);
	background-size: 45% 25px, 55px 20px, 30% 12px, 25% 20px, 65% 12px, 70% 12px, 50% 12px, 40px 12px, 45% 30px, 65% 40px, 80px 12px, 25% 20px;
	background-position: center 80px, 100% 0, center 130px, center 165px, center 210px, center 235px, center 260px, center 305px, center 335px, center 405px, center 465px, center 510px;
}
.preloader.skeleton.product-tabs-skeleton {
	background-image: linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0), linear-gradient(var(--styled-bg-color, #f0f3f2) 100%, transparent 0);
	background-size: 110px 30px, 110px 30px, 110px 30px, 100% 12px, 100% 12px, 100% 12px, 100% 12px, 100% 12px, 65% 20px, 60% 20px, 45% 20px;
	background-position: 0 0, 160px 0, 320px 0, 0 75px, 0 105px, 0 135px, 0 165px, 0 195px, 0 250px, 0 290px, 0 330px;
}

/* FORM ELEMENTS */

input[type="text"],
input[type="password"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="number"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="month"],
input[type="week"] {
	padding: 0 10px;
	max-width: 100%;
	vertical-align: middle;
}
textarea {
	padding: 10px;
	max-width: 100%;
	vertical-align: middle;
}
/* Combobox */
.dropdown_product_cat .select2-container {
	border-radius: 3px;
}
.combobox-wrapper,
#page .select2-container .select2-selection--single {
	position: relative;
	width: 100%;
	height: 38px;
	display: inline-block;
	vertical-align: middle;
	min-width: 140px;
	padding-right: 36px;
	border-radius: 3px;
}
#page .select2-container .select2-selection--single {
	display: block;
	width: auto;
	padding-right: 0;
	outline: none;
	box-shadow: none;
}
#page .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
#page .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
#page .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
#page .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.combobox-wrapper .combobox-text,
#page .select2-container--default .select2-selection--single .select2-selection__rendered {
	display: block;
	padding: 0 10px;
	line-height: 36px;
	overflow: hidden;
	text-align: left;
	white-space: nowrap;
}
#page .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-right: 36px;
	outline: none;
	box-shadow: none;
}
.woocommerce .combobox-wrapper .combobox-text,
#page .woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 18px;
}
.combobox-wrapper .combobox-button,
#page .select2-container--default .select2-selection--single .select2-selection__arrow {
	width: 36px;
	height: 36px;
	position: absolute;
	right: 0px;
	top: 0px;
	cursor: pointer;
}
#page .select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}
.combobox-wrapper .combobox-button:before,
#page .select2-container--default .select2-selection--single .select2-selection__arrow:before {
	content: '\e635';
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -12px;
	margin-top: -12px;
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
}
.combobox-wrapper select {
	width: 100%;
	cursor: pointer;
}

/* Checkbox */
.checkbox-sign,
.radio-sign {
	display: inline-block;
	width: 30px;
	height: 30px;
	cursor: pointer;
	position: relative;
	vertical-align: middle;
}
.radio-sign {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
#shipping_method .radio-sign {
	width: 12px;
	height: 12px;
}
.checkbox-sign.checked:before,
.radio-sign.checked:before {
	position: absolute;
	left: 50%;
	top: 50%;
}
.checkbox-sign.checked:before {
	content: '\e646';
	font-size: 24px;
	font-weight: normal;
	font-family: 'thegem-icons';
	font-style: normal;
	text-align: center;
	width: 14px;
	height: 14px;
	line-height: 14px;
	margin-top: -7px;
	margin-left: -11px;
}
.radio-sign.checked:before {
	content: '';
	font-size: 10px;
	width: 16px;
	height: 16px;
	line-height: 10px;
	margin-top: -8px;
	margin-left: -8px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
#shipping_method .radio-sign:before {
	width: 6px;
	height: 6px;
	margin-top: -3px;
	margin-left: -3px;
}

/* LAYOUT */

#page {
	position: relative;
	overflow: hidden;
}
#page.layout-boxed {
	max-width: 1260px;
	margin: 0 auto;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.11);
}

.page-title-block {
	text-align: center;
	background-position: 50% 0;
	background-size: cover;
	padding: 80px 0;
	position: relative;
}
.page-title-alignment-left {
	text-align: left;
}
.page-title-alignment-left .page-title-icon {
	float: right;
}
.page-title-alignment-right {
	text-align: right;
}
.page-title-alignment-right .page-title-icon {
	float: left;
}
.page-title-alignment-left .page-title-title h1,
.page-title-alignment-left .page-title-title h2,
.page-title-alignment-left .page-title-title .title-rich-content {
	margin-left: 0;
	margin-right: auto;
}
.page-title-alignment-right .page-title-title h1,
.page-title-alignment-right .page-title-title h2,
.page-title-alignment-right .page-title-title .title-rich-content {
	margin-left: auto;
	margin-right: 0;
}

.page-title-icon + .page-title-title {
	margin-top: 55px;
}
.page-title-alignment-right .page-title-icon + .page-title-title,
.page-title-alignment-left .page-title-icon + .page-title-title {
	margin-top: -7px;
}
.page-title-excerpt {
	margin-top: 18px;
	display: inline-block;
	width: 100%;
}
.page-title-block .breadcrumbs-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.page-title-block .breadcrumbs {
	display: inline-block;
}
.page-title-block .breadcrumbs > span {
	display: inline-block;
	vertical-align: top;
}

#main {
	position: relative;
	z-index: 5;
}

.container-fullwidth {
	padding: 0 40px;
}
@media (max-width: 767px) {
	.container-fullwidth {
		padding-left: 21px;
		padding-right: 21px;
	}
}

/* FOOTER NAV */

#footer-nav {
	padding: 40px 0;
	border-top: 1px solid #313646;
}
#footer-navigation {
	margin-bottom: 0;
}
#footer-menu {
	display: inline-block;
	margin: 0 -21px;
}
#footer-menu li {
	display: inline-block;
	padding: 0 21px;
	position: relative;
	line-height: 1;
}
#footer-menu li + li:before {
	content: '';
	width: 0;
	height: 100%;
	position: absolute;
	left: -1px;
	top: 0;
	font-size: 0;
	border-right: 1px solid #333146;
}
#footer-menu li a {
	font-size: 92.86%;
	display: block;
}

#footer-socials {
	text-align: right;
}
#footer-socials .socials {
	text-align: right;
	margin: 0 -7px;
	display: inline-block;
	vertical-align: middle;
}
.footer-socials-item {
	display: inline-block;
	vertical-align: top;
	padding: 0 7px;
}
.footer-socials-item a {
	display: block;
	position: relative;
	font-size: 0;
	width: 20px;
	line-height: inherit;
}
.footer-socials-item a:after {
	position: absolute;
	font-family: 'thegem-socials';
	display: block;
	font-size: 16px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-align: center;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
}
.footer-socials-item.twitter a:after {
	content: '\e603';
}
.footer-socials-item.facebook a:after {
	content: '\e601';
}
.footer-socials-item.linkedin a:after {
	content: '\e604';
}
.footer-socials-item.googleplus a:after {
	content: '\e602';
}
.footer-socials-item.stumbleupon a:after {
	content: '\e606';
}
.footer-socials-item.rss a:after {
	content: '\e608';
}
@media (max-width: 991px) {
	#footer-nav #footer-socials {
		text-align: center;
	}
	#footer-nav .footer-site-info {
		text-align: center;
	}
	#footer-navigation #footer-menu li {
		margin: 5px 0;
	}
}

/* FOOTER WIDGET AREA */

#colophon {
	position: relative;
	padding: 110px 0 45px;
	background-position: 50% 0;
	background-size: cover;
	background-repeat: no-repeat;
}

.footer-widget-area {
	margin-bottom: 1.421em;
}

/* FOOTER HTML */

.footer-site-info {
	font-size: 92.86%;
}

.footer-site-info a:hover {
	text-decoration: underline;
}

/* BLOCKS */

.block-content {
	padding: 135px 0 100px;
}
.block-content:last-of-type {
	padding-bottom: 110px;
}
.block-content.no-bottom-margin:last-of-type {
	padding-bottom: 0;
}
.page-title + .no-top-margin,
#page-title + .no-top-margin,
.gem-slideshow + .no-top-margin,
.no-top-margin:first-child {
	padding-top: 0;
}
.block-content + .block-content {
	padding-top: 0;
}

body.single-thegem_templates.template-type-single-product .block-content,
body.single-thegem_templates.template-type-product-archive .block-content,
body.single-thegem_templates.template-type-blog-archive .block-content,
body.single-thegem_templates.template-type-single-post .block-content,
body.single-thegem_templates.template-type-portfolio .block-content,
body.single-thegem_templates.template-type-cart .block-content,
body.single-thegem_templates.template-type-checkout .block-content {
	padding-top: 30px;
}
body.single-thegem_templates.template-type-megamenu .block-content {
	padding-top: 30px;
}
body.single-thegem_templates.template-type-content .block-content {
	padding-top: 30px;
}
body.single-thegem_templates.template-type-cart .block-content,
body.single-thegem_templates.template-type-checkout .block-content,
body.single-thegem_templates.template-type-product-archive .block-content,
body.single-thegem_templates.template-type-blog-archive .block-content,
body.single-thegem_templates.template-type-single-post .block-content,
body.single-thegem_templates.template-type-portfolio .block-content {
	padding-bottom: 0;
}
body.single-thegem_templates.template-type-cart:not(.compose-mode) .block-content,
body.single-thegem_templates.template-type-checkout:not(.compose-mode) .block-content,
body.single-thegem_templates.template-type-product-archive:not(.compose-mode) .block-content,
body.single-thegem_templates.template-type-blog-archive:not(.compose-mode) .block-content,
body.single-thegem_templates.template-type-single-post:not(.compose-mode) .block-content,
body.single-thegem_templates.template-type-portfolio:not(.compose-mode) .block-content {
	padding-top: 0;
}

/* SHORTCODES */

/* Fullwidth */
.fullwidth-block {
	position: relative;
}
.fullwidth-top-marker,
.fullwidth-bottom-marker {
	position: absolute;
	width: 140px;
	height: 70px;
	left: 50%;
	margin-left: -70px;
	z-index: 10;
}
.fullwidth-top-marker.marker-direction-inside {
	top: 0;
}
.fullwidth-top-marker.marker-direction-outside {
	top: -69px;
}
.fullwidth-bottom-marker.marker-direction-inside {
	bottom: 0;
}
.fullwidth-bottom-marker.marker-direction-outside {
	bottom: -69px;
}


/* Styled Image, Video */

.gem-youtube .gem-wrapbox-inner,
.gem-youtube .shadow-wrap,
.gem-youtube .gem-wrapbox-element,
.gem-vimeo .gem-wrapbox-inner,
.gem-vimeo .shadow-wrap,
.gem-vimeo .gem-wrapbox-element,
.gem-video .gem-wrapbox-inner,
.gem-video .shadow-wrap,
.gem-video .gem-wrapbox-element {
	width: 100%;
	height: 100%;
}
.wpb_wrapper > .gem-video:last-child {
	margin-bottom: 0;
}
.gem-wrapbox-inner.gem-ratio-style .gem-wrapbox-element,
.gem-wrapbox-inner.gem-ratio-style .shadow-wrap,
.gem-wrapbox-inner.gem-ratio-style .preloader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.gem-image-centered-box {
	margin-bottom: 1.421em;
}
.gem-image a,
.gem-textbox-picture a{
	position: relative;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
}
.gem-image a:has(img[src$=".svg"]),
.gem-image a:has(img[src*=".svg?"]),
.gem-image a:has(img[src*=".svg&"]),
.gem-image a:has(img[src*=".svg#"]) {
	width: 100%;
}
.gem-image img {
	transition: filter 0.5s;
}
.gem-image a:before,
.gem-textbox-picture a:before{
	content: '';
	position: absolute;
	top: -100%;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: opacity 0.5s, background-color 0.5s;
	transition: opacity 0.5s, background-color 0.5s;
	opacity: 0;
	z-index: 5;
}
.gem-image a:hover:before,
.gem-textbox-picture a:hover:before {
	opacity: 1;
	-webkit-transition: opacity 0.5s, background-color 0.5s;
	transition: opacity 0.5s, background-color 0.5s;
}
.gem-image a:after,
.gem-textbox-picture a:after{
	content: '\e60f';
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
	font-size: 40px;
	height: 40px;
	line-height: 40px;
	width: 40px;
	text-align: center;
	position: absolute;
	top: -20px;
	left: 50%;
	transition: opacity 0.3s, top 0.3s;
	-webkit-transition: opacity 0.3s, top 0.3s;
	margin-left: -20px;
	margin-top: -20px;
	z-index: 5;
	opacity: 0;
}
.gem-image a.custom-link:after {
	content: '\e65b';
}
.gem-image a:hover:after,
.gem-textbox-picture a:hover:after{
	top: 50%;
	opacity: 1;
	transition: opacity 0.5s, top 0.3s;
	-webkit-transition: opacity 0.5s, top 0.3s;
}

.gem-map-with-text .wpb_gmaps_widget .wpb_wrapper {
	padding: 0;
}
.gem-gmaps {
	display: inline-block;
	max-width: 100%;
}
.gem-gmaps .gem-gmaps-hide {
	overflow: hidden;
	width: 100%;
}
.gem-gmaps iframe {
	border: 0 none;
	vertical-align: top;
	margin-top: -60px;
	width: 100%;
}
.gem-gmaps .preloader + iframe {
	margin-top: -240px !important;
}
.gem-gmaps.gem-wrapbox-style-11 {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	overflow: hidden;
}
.gem-gmaps.gem-wrapbox-style-11 .gem-gmaps-hide {
	-webkit-mask-image: url('https://shop.ariservices.co/wp-content/themes/thegem/css/circle.svg');
}

.wpb_gmaps_widget .wpb_map_wraper.hide_title  iframe {
	margin-top: -60px;
}
.wpb_gmaps_widget  .wpb_map_wraper.hide_title {
	overflow: hidden;
}

.gem-gmaps.gem-wrapbox-style-11 .gem-wrapbox-inner:after {
	display: none;
}
.gem-gmaps.gem-wrapbox-style-11 .gem-wrapbox-inner  {
	padding: 12px;
	border: 2px solid;
}
.gem-gmaps.gem-wrapbox-style-8  .gem-wrapbox-inner {
	border-radius: 34px;
	overflow: hidden;
}

/* Text Box */
.gem-textbox {
	margin-bottom: 1.421em;
	position: relative;
}
.gem-textbox-title,
.gem-textbox-content {
	padding: 30px;
}
.gem-textbox-content * {
	position: relative;
	z-index: 1;
}
.gem-textbox-content  .gem-textbox-background-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}
.gem-textbox-title .gem-textbox-title-icon + .gem-textbox-title-text {
	margin-top: 30px;
}
.gem-textbox-picture img {
	display: inline-block;
	vertical-align: top;
}
.gem-textbox-inner {
	overflow: hidden;
}
.gem-textbox-top,
.gem-textbox-bottom {
	font-size: 0;
	line-height: 0;
	text-align: center;
}
.gem-textbox-top svg,
.gem-textbox-bottom svg {
	vertical-align: top;
}
.gem-textbox-after-image {
	border-top: 0 none !important;
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}
.gem-textbox-before-image {
	border-bottom: 0 none !important;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

/* Team */
.gem-team {
	margin-bottom: 1.421em;
}
.team-person {
	padding: 50px 30px;
	position: relative;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	border: 0 none;
}
.gem-team .team-person.loop-builder {
	padding: 0;
	border: 0 none;
}
.team-person-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.team-person a:not(.team-person-link) {
	position: relative;
	z-index: 2;
}
.team-person-image {
	display: inline-block;
	width: 240px;
	max-width: 100%;
	vertical-align: top;
	margin-bottom: 45px;
}
.team-person-image a,
.team-person-image span {
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	max-width: 100%;
	position: relative;
}
.team-person-image a:before,
.team-person-image span:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
}
.team-person-image a:hover:before,
.team-person:hover .team-person-image span:before {
	opacity: 1;
}
.team-person-image a,
.gem-team .team-person-image a:before,
.team-person-image span,
.gem-team .team-person-image span:before,
.team-person-image img {
	border-radius: 50%;
}
.team-person-info {
	margin: 0 0 20px;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.team-person-name {
	margin: 0 0 5px;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.team-person-position {
	margin: 0 0 28px;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.team-person .team-person-phone {
	color: inherit;
	margin: 0 0 7px;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.team-person .team-person-phone a {
	color: inherit;
}
.team-person .team-person-description {
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.team-person-socials .socials-item-icon {
	font-size: 32px;
}
.team-person-socials {
	margin: 0 -10px;
}
.team-person-socials .socials-item {
	margin: 20px 10px 0;
}
.team-person-email a:before {
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	content: '\e607';
	font-size: 16px;
	margin-right: 10px;
	color: inherit;
	vertical-align: top;
}
.gem-team-style-1 .team-person {
	border: 1px solid transparent;
}
.gem-team-style-2 .team-person {
	padding: 50px 50px;
	border-radius: 0 50px 50px 50px;
}
.gem-team-style-2 .team-person-box-columns .team-person-box-left {
	float: left;
	margin-right: -270px;
}
.gem-team-style-2 .team-person-box-columns .team-person-box-left + .team-person-box-right {
	float: left;
	width: 100%;
	padding-left: 270px;
}
.gem-team-style-2 .team-person-image {
	position: relative;
}
.gem-team-style-2 .team-person-image a,
.gem-team-style-2 .team-person-image a:before,
.gem-team-style-2 .team-person-image span,
.gem-team-style-2 .team-person-image span:before,
.gem-team-style-2 .team-person-image img {
	border-radius: 0;
}
.gem-team-style-2 .team-person-name {
	margin-top: -10px;
}
.gem-team-style-2 .team-person-socials .socials-item-icon {
	font-size: 20px;
}
.gem-team-style-2 .team-person-socials {
	margin: 0 -6px;
}
.gem-team-style-2 .team-person-socials .socials-item {
	margin: 12px 6px 0;
}
@media (max-width: 1211px) {
	.gem-team-style-2 .col-sm-6 .team-person-box-columns .team-person-box-left {
		float: none;
		margin-right: 0;
	}
	.gem-team-style-2 .col-sm-6 .team-person-box-columns .team-person-box-left + .team-person-box-right {
		float: none;
		padding-left: 0;
	}
}
@media (min-width: 1212px) {
	.gem-team-style-2 .col-sm-6 .team-person-box-columns .team-person-box-left .team-person-image {
		margin-bottom: 0;
	}
}
@media (max-width: 639px) {
	.gem-team-style-2 .team-person-box-columns .team-person-box-left {
		float: none;
		margin-right: 0;
	}
	.gem-team-style-2 .team-person-box-columns .team-person-box-left + .team-person-box-right {
		float: none;
		padding-left: 0;
	}
}

.gem-team-style-3 .team-person {
	border-radius: 180px 180px 0 0;
}
.gem-team-style-3 .team-person-image {
	padding-top: 15px;
	padding-left: 35px;
	padding-right: 35px;
	width: 310px;
}
.gem-team-style-3 .team-person-info {
	margin: 0 0 30px;
}
.gem-team-style-3 .team-person-name {
	margin: 0;
}
.gem-team-style-3 .team-person-position {
	font-size: 0.875em;
}
.gem-team-style-3 .team-person-socials .socials-item-icon {
	font-size: 20px;
}
.gem-team-style-3 .team-person-socials {
	margin: 0 -6px;
}
.gem-team-style-3 .team-person-socials .socials-item {
	margin: 12px 6px 0;
}
.gem-team-style-3 .team-person-email a:before {
	font-size: 32px;
	margin-right: 0;
}

.gem-team-style-4 .team-person {
	border-bottom: 6px solid #a3e7f0;
	padding-bottom: 10px;
	padding-left: 40px;
}
.gem-team-style-4 .team-person-image {
	width: 128px;
	margin-bottom: 30px;
}
.gem-team-style-4 .team-person-info {
	margin: 0;
}
.gem-team-style-4 .team-person-name {
	margin: 0 0 20px;
}
.gem-team-style-4 .team-person-position {
	font-size: 0.875em;
	margin-bottom: 3px;
}
.gem-team-style-4 .team-person-phone {
	margin: 0 0 2px;
}
.gem-team-style-4 .team-person-socials .socials-item-icon {
	font-size: 20px;
}
.gem-team-style-4 .team-person-socials {
	float: left;
	margin-left: -32px;
	margin-right: 0;
	padding-left: 26px;
	width: 100%;
	min-width: 240px;
	margin-bottom: 40px;
}
.gem-team-style-4 .team-person-socials .socials-item {
	margin: 12px 6px 0;
}
.gem-team-style-4 .team-person-email {
	float: left;
	margin-bottom: 40px;
	margin-top: 5px;
}
.gem-team-style-4 .team-person.centered-box .team-person-socials {
	float: none;
	padding-left: 0;
	margin-left: 0;
}
.gem-team-style-4 .team-person.centered-box .team-person-email {
	float: none;
}
.gem-team-style-4 .team-person-email a:before {
	font-size: 32px;
	margin-right: 0;
}

.gem-team-style-5 .inline-column {
	padding-left: 0;
	padding-right: 0;
}
.gem-team-style-5 .team-person,
.gem-team-style-5 .team-person-hover {
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.gem-team-style-5 .team-person {
	padding: 3px 0;
}
.gem-team-style-5 .team-person-image a,
.gem-team-style-5 .team-person-image span {
	overflow: visible;
}
.gem-team-style-5 .team-person-image a:before,
.gem-team-style-5 .team-person-image span:before {
	opacity: 0;
	left: 6px;
	right: 6px;
	top: 6px;
	bottom: 6px;
	width: auto;
	height: auto;
	background-color: rgba(70, 72, 92, 0.7);
}
.gem-team-style-5 .team-person-image a:hover:before,
.gem-team-style-5 .team-person:hover .team-person-image span:before {
	opacity: 1;
}
.gem-team-style-5 .team-person-image {
	padding-left: 40px;
	padding-right: 40px;
	width: 320px;
}
.gem-team-style-5 .team-person-image .image-hover {
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
	padding: 6px;
	border: 3px solid #dce1e4;
	margin: -9px;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	max-width: 100%;
}
.gem-team-style-5 .team-person:hover .image-hover {
	border-color: #00bcd4;
	background-color: #00bcd4;
}
.gem-team-style-5 .team-person-hover {
	padding: 47px 30px;
}
.gem-team-style-5 .team-person:hover {
	margin-top: -23px;
	margin-bottom: -23px;
}
.gem-team-style-5 .team-person:hover .team-person-hover {
	padding-top: 70px;
	padding-bottom: 70px;
}
.gem-team-style-5 .team-person-socials .socials-item-icon {
	font-size: 25px;
}
.gem-team-style-5 .team-person-socials .socials-item {
	margin: 12px 6px 0;
}

.gem-team-style-6 .team-person {
	border: 1px solid transparent;
	padding: 0;
}
.gem-team-style-6 .team-person-hover {
	padding: 43px 34px;
}
.gem-team-style-6 .team-person,
.gem-team-style-6 .team-person-hover {
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.gem-team-style-6 .team-person-box-left {
	float: left;
	margin-right: -100px;
}
.gem-team-style-6 .team-person-box-left + .team-person-box-right {
	float: left;
	width: 100%;
	padding-left: 100px;
}
.gem-team-style-6 .team-person-image {
	position: relative;
	width: 80px;
}
.gem-team-style-6 .team-person-socials .socials-item-icon {
	font-size: 20px;
}
.gem-team-style-6 .team-person-socials {
	margin: 0 -6px;
}
.gem-team-style-6 .team-person-socials .socials-item {
	margin: 12px 6px 0;
}
.gem-team-style-6 .team-person-position,
.gem-team-style-6 .team-person-email {
	font-size: 0.875em;
}
.gem-team-style-6 .team-person-position,
.gem-team-style-6 .team-person-phone,
.gem-team-style-6 .team-person-info {
	margin: 0;
}

.gem-team-equal-height {
	display: flex;
	flex-wrap: wrap;
}
.gem-team-equal-height .inline-column{
	min-height: 100%;
}
.gem-team-equal-height .inline-column .team-person{
	height: 100%;
}
.gem-team-equal-height .team-person > .thegem-template-loop-item,
.gem-team-equal-height .team-person > .thegem-template-loop-item > .vc_row {
	height: 100%;
}

/* Shapes for TTA
 * ========================== */
.vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title {
	line-height: 1.2;
}
.vc_tta.vc_general.vc_tta-tabs .vc_tta-panel-body {
	box-sizing: border-box;
}
.vc_tta.vc_general.vc_tta-shape-square .vc_tta-panel-body {
	min-height: 0px;
}
.vc_tta.vc_general.vc_tta-shape-square .vc_tta-panel-body,
.vc_tta.vc_general.vc_tta-shape-square .vc_tta-panel-heading {
	border-radius: 0px;
}
.vc_tta.vc_general.vc_tta-shape-square .vc_tta-tabs-container {
	margin: 0px;
}
.vc_tta.vc_general.vc_tta-shape-square .vc_tta-tab a {
	border-radius: 0px;
}
.vc_non_responsive .vc_tta.vc_general.vc_tta-shape-square.vc_tta-tabs .vc_tta-panels,
.vc_tta-o-non-responsive .vc_tta.vc_general.vc_tta-shape-square.vc_tta-tabs .vc_tta-panels {
	border-radius: 0px;
}
@media (min-width: 768px) {
	.vc_tta.vc_general.vc_tta-shape-square.vc_tta-tabs .vc_tta-panels {
		border-radius: 0px;
	}
}
.vc_tta.vc_general.vc_tta-shape-square.vc_tta-o-no-fill .vc_tta-panel-body {
	border-radius: 0;
}
.vc_tta.vc_general.vc_tta-shape-square.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel.vc_active + .vc_tta-panel:not(:first-child):not(:last-child) .vc_tta-panel-heading,
.vc_tta.vc_general.vc_tta-shape-square.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel.vc_active + .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-heading {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}
.vc_tta.vc_general.vc_tta-shape-rounded .vc_tta-panel-body {
	min-height: 6px;
}
.vc_tta.vc_general.vc_tta-shape-rounded .vc_tta-panel-body,
.vc_tta.vc_general.vc_tta-shape-rounded .vc_tta-panel-heading {
	border-radius: 3px;
}
.vc_tta.vc_general.vc_tta-shape-rounded .vc_tta-tabs-container {
	margin: 3px;
}
.vc_tta.vc_general.vc_tta-shape-rounded .vc_tta-tab a {
	border-radius: 3px;
}
.vc_non_responsive .vc_tta.vc_general.vc_tta-shape-rounded.vc_tta-tabs .vc_tta-panels,
.vc_tta-o-non-responsive .vc_tta.vc_general.vc_tta-shape-rounded.vc_tta-tabs .vc_tta-panels {
	border-radius: 3px;
}
@media (min-width: 768px) {
	.vc_tta.vc_general.vc_tta-shape-rounded.vc_tta-tabs .vc_tta-panels {
		border-radius: 3px;
	}
}
.vc_tta.vc_general.vc_tta-shape-rounded.vc_tta-o-no-fill .vc_tta-panel-body {
	border-radius: 0;
}
.vc_tta.vc_general.vc_tta-shape-rounded.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel.vc_active + .vc_tta-panel:not(:first-child):not(:last-child) .vc_tta-panel-heading,
.vc_tta.vc_general.vc_tta-shape-rounded.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel.vc_active + .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-heading {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.vc_tta.vc_general.vc_tta-shape-round .vc_tta-panel-body {
	min-height: 36px;
}
.vc_tta.vc_general.vc_tta-shape-round .vc_tta-panel-body,
.vc_tta.vc_general.vc_tta-shape-round .vc_tta-panel-heading {
	border-radius: 18px;
}
.vc_tta.vc_general.vc_tta-shape-round .vc_tta-tabs-container {
	margin: 18px;
}
.vc_tta.vc_general.vc_tta-shape-round .vc_tta-tab a {
	border-radius: 18px;
}
.vc_non_responsive .vc_tta.vc_general.vc_tta-shape-round.vc_tta-tabs .vc_tta-panels,
.vc_tta-o-non-responsive .vc_tta.vc_general.vc_tta-shape-round.vc_tta-tabs .vc_tta-panels {
	border-radius: 18px;
}
@media (min-width: 768px) {
	.vc_tta.vc_general.vc_tta-shape-round.vc_tta-tabs .vc_tta-panels {
		border-radius: 18px;
	}
}
.vc_tta.vc_general.vc_tta-shape-round.vc_tta-o-no-fill .vc_tta-panel-body {
	border-radius: 0;
}
.vc_tta.vc_general.vc_tta-shape-round.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel.vc_active + .vc_tta-panel:not(:first-child):not(:last-child) .vc_tta-panel-heading,
.vc_tta.vc_general.vc_tta-shape-round.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel.vc_active + .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-heading {
	border-top-left-radius: 18px;
	border-top-right-radius: 18px;
}
.vc_tta.vc_general.vc_tta-pageable .vc_tta-panel-body {
	border: 0 none;
}
/* Adaptation for Shapes
 * ========================== */
.vc_tta-shape-rounded:not(.vc_tta-o-no-fill) .vc_tta-panel.vc_active .vc_tta-panel-heading {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.vc_tta-shape-rounded:not(.vc_tta-o-no-fill) .vc_tta-panel.vc_active .vc_tta-panel-body {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.vc_non_responsive .vc_tta-shape-rounded.vc_tta-tabs .vc_tta-panel-body::before,
.vc_tta-o-non-responsive .vc_tta-shape-rounded.vc_tta-tabs .vc_tta-panel-body::before,
.vc_non_responsive .vc_tta-shape-rounded.vc_tta-tabs .vc_tta-panel-body::after,
.vc_tta-o-non-responsive .vc_tta-shape-rounded.vc_tta-tabs .vc_tta-panel-body::after {
	box-sizing: border-box;
	content: '';
	display: none;
	position: absolute;
	width: 3px;
	height: 3px;
	border-radius: 3px;
	border-style: inherit;
	border-width: inherit;
}
@media (min-width: 768px) {
	.vc_tta-shape-rounded.vc_tta-tabs .vc_tta-panel-body::before,
	.vc_tta-shape-rounded.vc_tta-tabs .vc_tta-panel-body::after {
		box-sizing: border-box;
		content: '';
		display: none;
		position: absolute;
		width: 3px;
		height: 3px;
		border-radius: 3px;
		border-style: inherit;
		border-width: inherit;
	}
}
.vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:not(:first-child):not(:last-child) .vc_tta-panel-heading {
	border-radius: 0;
}
.vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:not(:first-child):not(:last-child) .vc_tta-panel-body {
	border-radius: 0;
}
.vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:first-child:not(:last-child) .vc_tta-panel-heading,
.vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:first-child:not(:last-child) .vc_tta-panel-body {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-heading,
.vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-body {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.vc_tta-shape-rounded.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:not(:first-child):not(:last-child):not(.vc_active) .vc_tta-panel-heading,
.vc_tta-shape-rounded.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:not(:first-child):not(:last-child):not(.vc_active) .vc_tta-panel-body {
	border-radius: 0;
}
.vc_tta-shape-rounded.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:not(:first-child):not(:last-child).vc_active .vc_tta-panel-heading {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.vc_tta-shape-rounded.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:first-child:not(:last-child):not(.vc_active) .vc_tta-panel-heading,
.vc_tta-shape-rounded.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:first-child:not(:last-child):not(.vc_active) .vc_tta-panel-body {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.vc_tta-shape-rounded.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-heading,
.vc_tta-shape-rounded.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-body {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.vc_tta-shape-round:not(.vc_tta-o-no-fill) .vc_tta-panel.vc_active .vc_tta-panel-heading {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.vc_tta-shape-round:not(.vc_tta-o-no-fill) .vc_tta-panel.vc_active .vc_tta-panel-body {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.vc_non_responsive .vc_tta-shape-round.vc_tta-tabs .vc_tta-panel-body::before,
.vc_tta-o-non-responsive .vc_tta-shape-round.vc_tta-tabs .vc_tta-panel-body::before,
.vc_non_responsive .vc_tta-shape-round.vc_tta-tabs .vc_tta-panel-body::after,
.vc_tta-o-non-responsive .vc_tta-shape-round.vc_tta-tabs .vc_tta-panel-body::after {
	box-sizing: border-box;
	content: '';
	display: none;
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 18px;
	border-style: inherit;
	border-width: inherit;
}
@media (min-width: 768px) {
	.vc_tta-shape-round.vc_tta-tabs .vc_tta-panel-body::before,
	.vc_tta-shape-round.vc_tta-tabs .vc_tta-panel-body::after {
		box-sizing: border-box;
		content: '';
		display: none;
		position: absolute;
		width: 18px;
		height: 18px;
		border-radius: 18px;
		border-style: inherit;
		border-width: inherit;
	}
	.vc_tta.vc_tta-shape-round.vc_tta-tabs .vc_tta-panel-body::before,
	.vc_tta.vc_tta-shape-round.vc_tta-tabs .vc_tta-panel-body::after {
		width: 18px;
		height: 18px;
		border-radius: 18px;
	}
}
.vc_tta-shape-round.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:not(:first-child):not(:last-child) .vc_tta-panel-heading {
	border-radius: 0;
}
.vc_tta-shape-round.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:not(:first-child):not(:last-child) .vc_tta-panel-body {
	border-radius: 0;
}
.vc_tta-shape-round.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:first-child:not(:last-child) .vc_tta-panel-heading,
.vc_tta-shape-round.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:first-child:not(:last-child) .vc_tta-panel-body {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.vc_tta-shape-round.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-heading,
.vc_tta-shape-round.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-body {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.vc_tta-shape-round.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:not(:first-child):not(:last-child):not(.vc_active) .vc_tta-panel-heading,
.vc_tta-shape-round.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:not(:first-child):not(:last-child):not(.vc_active) .vc_tta-panel-body {
	border-radius: 0;
}
.vc_tta-shape-round.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:not(:first-child):not(:last-child).vc_active .vc_tta-panel-heading {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.vc_tta-shape-round.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:first-child:not(:last-child):not(.vc_active) .vc_tta-panel-heading,
.vc_tta-shape-round.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:first-child:not(:last-child):not(.vc_active) .vc_tta-panel-body {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.vc_tta-shape-round.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-heading,
.vc_tta-shape-round.vc_tta-o-shape-group.vc_tta-o-no-fill .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-body {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.vc_general.vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tabs-container,
.vc_general.vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-tabs-container {
	margin-top: 0;
}

.vc_tta.vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-panel-body::before,
.vc_tta.vc_non_responsive .vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-panel-body::before,
.vc_tta.vc_tta-o-non-responsive .vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-panel-body::before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-right-width: 0;
  border-bottom-width: 0;
}
.vc_tta.vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-panel-body::after,
.vc_tta.vc_non_responsive .vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-panel-body::after,
.vc_tta.vc_tta-o-non-responsive .vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-panel-body::after {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-left-width: 0;
  border-bottom-width: 0;
}
.vc_tta.vc_tta-tabs.vc_tta-tabs-position-bottom .vc_tta-panel-body::before,
.vc_tta.vc_non_responsive .vc_tta-tabs.vc_tta-tabs-position-bottom .vc_tta-panel-body::before,
.vc_tta.vc_tta-o-non-responsive .vc_tta-tabs.vc_tta-tabs-position-bottom .vc_tta-panel-body::before {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-right-width: 0;
  border-top-width: 0;
}
.vc_tta.vc_tta-tabs.vc_tta-tabs-position-bottom .vc_tta-panel-body::after,
.vc_tta.vc_non_responsive .vc_tta-tabs.vc_tta-tabs-position-bottom .vc_tta-panel-body::after,
.vc_tta.vc_tta-o-non-responsive .vc_tta-tabs.vc_tta-tabs-position-bottom .vc_tta-panel-body::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-left-width: 0;
  border-top-width: 0;
}
.vc_tta.vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-panel-body::before,
.vc_tta.vc_non_responsive .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-panel-body::before,
.vc_tta.vc_tta-o-non-responsive .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-panel-body::before {
  right: auto;
  bottom: auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-right-width: 0;
  border-bottom-width: 0;
}
.vc_tta.vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-panel-body::after,
.vc_tta.vc_non_responsive .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-panel-body::after,
.vc_tta.vc_tta-o-non-responsive .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-panel-body::after {
  right: auto;
  top: auto;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right-width: 0;
  border-top-width: 0;
}
.vc_tta.vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-panel-body::before,
.vc_tta.vc_non_responsive .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-panel-body::before,
.vc_tta.vc_tta-o-non-responsive .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-panel-body::before {
  left: auto;
  bottom: auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-left-width: 0;
  border-bottom-width: 0;
}
.vc_tta.vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-panel-body::after,
.vc_tta.vc_non_responsive .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-panel-body::after,
.vc_tta.vc_tta-o-non-responsive .vc_tta-tabs.vc_tta-tabs-position-right .vc_tta-panel-body::after {
  left: auto;
  top: auto;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left-width: 0;
  border-top-width: 0;
}

/* TABS */
.vc_tta.vc_general.vc_tta-tabs .vc_tta-panel-body {
	overflow: visible;
}
.vc_tta.vc_general.vc_tta-tabs .vc_tta-title-text:not(:empty):not(:first-child),
.vc_tta.vc_general.vc_tta-tabs .vc_tta-title-text:not(:empty) ~ *,
.vc_tta.vc_general.vc_tta-accordion .vc_tta-title-text:not(:empty):not(:first-child),
.vc_tta.vc_general.vc_tta-accordion .vc_tta-title-text:not(:empty) ~ * {
	margin-left: 10px;
}
.vc_tta.vc_general.vc_tta-tabs .vc_tta-title-text:not(:empty) ~ .vc_tta-controls-icon,
.vc_tta.vc_general.vc_tta-accordion .vc_tta-title-text:not(:empty) ~ .vc_tta-controls-icon {
	margin-left: 0;
}
.vc_tta.vc_general .vc_tta-icon.gem-print-icon {
	display: inline-block;
	vertical-align: middle;
}
.vc_tta.vc_general .vc_tta-icon.gem-print-icon.gem-icon-pack-elegant {
	font-size: 16px;
}
.vc_tta.vc_general .vc_tta-icon.gem-print-icon.gem-icon-pack-material {
	font-size: 24px;
}
.vc_tta.vc_general .vc_tta-icon.gem-print-icon.gem-icon-pack-fontawesome {
	font-size: 14px;
}
.vc_tta.vc_general .vc_tta-icon.gem-print-icon.gem-icon-pack-userpack {
	font-size: 16px;
}
.vc_tta.vc_general .vc_tta-title-text {
	display: inline-block;
	vertical-align: middle;
}
.vc_tta.vc_general .vc_tta-tab {
	vertical-align: bottom;
}
.vc_tta.vc_general.vc_tta-tabs-position-bottom .vc_tta-tab {
	vertical-align: top;
}
.vc_tta.vc_tta-tabs .vc_tta-panel .vc_tta-panel-title,
.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-title {
	font-family: 'Montserrat UltraLight';
	font-weight: normal;
	text-transform: uppercase;
	font-size: 14px;
}
.vc_tta.vc_tta-tabs .vc_tta-panel.vc_active .vc_tta-panel-title,
.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-title,
.vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title,
.vc_tta.vc_tta-accordion.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title
.vc_tta.vc_tta-tabs .vc_tta-panel.vc_tta-style-modern .vc_tta-panel-title,
.vc_tta.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-title,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-panel .vc_tta-panel-title {
	font-family: 'Montserrat';
	font-weight: bold;
}
.vc_tta.vc_tta-tabs.vc_general .vc_tta-tab a {
	padding: 12px 25px;
}
.vc_tta.vc_general.vc_tta-tabs .vc_tta-panel-body {
	padding: 50px;
}
.vc_tta.vc_general.vc_tta-color-thegem .vc_tta-panel-heading .vc_tta-panel-title > a {
	padding-top: 16px;
	padding-bottom: 16px;
}
.vc_tta.vc_general.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel-heading .vc_tta-panel-title > a {
	padding-top: 17px;
	padding-bottom: 17px;
}
.vc_tta.vc_general.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel-heading .vc_tta-panel-title > a {
	padding-top: 16px;
	padding-bottom: 16px;
}
.vc_tta.vc_tta-tabs .vc_tta-tab a {
	font-family: 'Montserrat UltraLight';
	font-size: 14px;
	text-transform: uppercase;
	font-weight: normal;
}
.vc_tta.vc_tta-tabs .vc_tta-tab.vc_active a,
.vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-tab a,
.vc_tta.vc_tta-tabs.vc_tta-style-modern .vc_tta-tab a {
	font-family: 'Montserrat';
	font-weight: bold;
}
/* Widget */
.widget .vc_tta.vc_tta-tabs.vc_tta-color-thegem .vc_tta-tab .vc_tta-panel-title,
.widget .vc_tta.vc_tta-tabs.vc_tta-color-thegem .vc_tta-tab a,
.widget .vc_tta.vc_tta-tabs.vc_tta-color-thegem .vc_tta-tab.vc_active a,
.widget .vc_tta.vc_tta-tabs.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-tab a,
.widget .vc_tta.vc_tta-tabs.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-tab a {
	font-family: inherit;
	font-weight: inherit;
	text-transform: none;
}
.widget .vc_tta.vc_tta-tabs.vc_tta-color-thegem .vc_tta-tab .vc_tta-panel-title {
	line-height: inherit;
}
.widget .vc_tta.vc_tta-tabs.vc_tta-color-thegem.vc_general .vc_tta-tab a {
	padding: 2px 23px;
}
.widget .vc_tta.vc_general.vc_tta-color-thegem.vc_tta-tabs .vc_tta-panel-body {
	padding: 25px 40px;
}
.widget .vc_tta.vc_general.vc_tta-color-thegem .vc_tta-panel-heading .vc_tta-panel-title > a {
	padding-top: 13px;
	padding-bottom: 13px;
}
.widget .vc_tta.vc_general.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel-heading .vc_tta-panel-title > a {
	padding-top: 12px;
	padding-bottom: 12px;
}
.widget .vc_tta.vc_general.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel-heading .vc_tta-panel-title > a {
	padding-top: 11px;
	padding-bottom: 11px;
}

/* Classic */
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading {
	margin-bottom: -1px;
}
.widget .vc_tta.vc_tta-tabs.vc_tta-color-thegem.vc_general.vc_tta-style-classic:not([class*="vc_tta-gap"]) .vc_tta-tab.vc_active a,
.widget .vc_tta.vc_tta-tabs.vc_tta-color-thegem.vc_general.vc_tta-style-classic.vc_tta-gap-0 .vc_tta-tab.vc_active a {
	padding: 4px 23px;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
	border-color: #b6c6c9;
	background-color: #f4f6f7;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading:hover,
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading:focus {
	background-color: #f4f6f7;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title > a {
	color: #5f727f;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading {
	border-color: #b6c6c9;
	background-color: #ffffff;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a {
	color: #5f727f;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body {
	background-color: #ffffff;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body,
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body::after {
	border-color: #b6c6c9;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-controls-icon::after {
	border-color: #b6c6c9;
	color: #b6c6c9;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::after {
	border-color: #b6c6c9;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab a {
	border-color: #b6c6c9;
	background-color: #f4f6f7;
	color: #5f727f;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab a:hover,
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab a:focus {
	background-color: #f4f6f7;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab.vc_active a {
	border-color: #b6c6c9;
	background-color: #ffffff;
	color: #5f727f;
}
.widget .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab.vc_active a {
	color: #5f727f;
}
@media (min-width: 768px) {
	.vc_tta.vc_tta-color-thegem.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels {
		background-color: #ffffff;
	}
	.vc_tta.vc_tta-color-thegem.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels,
	.vc_tta.vc_tta-color-thegem.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels::before,
	.vc_tta.vc_tta-color-thegem.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels::after {
		border-color: #b6c6c9;
	}
	.vc_tta.vc_tta-color-thegem.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels .vc_tta-panel-body {
		border-color: transparent;
		background-color: transparent;
	}
}
/* Modern */
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel.vc_active .vc_tta-panel-heading {
	margin-bottom: -1px;
}
.vc_tta.vc_tta-color-thegem.vc_tta-tabs:not([class*="vc_tta-gap"]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-top.vc_tta-style-modern .vc_tta-tabs-container {
	margin-bottom: 0;
}
.vc_tta.vc_tta-color-thegem.vc_tta-tabs:not([class*="vc_tta-gap"]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-bottom.vc_tta-style-modern .vc_tta-tabs-container {
	margin-top: 0;
}
.vc_tta.vc_tta-color-thegem.vc_tta-tabs:not([class*="vc_tta-gap"]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-left.vc_tta-style-modern .vc_tta-tabs-container {
	margin-right: 0;
}
.vc_tta.vc_tta-color-thegem.vc_tta-tabs:not([class*="vc_tta-gap"]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-right.vc_tta-style-modern .vc_tta-tabs-container {
	margin-left: 0;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel-body,
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel-heading,
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-tab a {
	border-width: 0;
	background-image: none;
	filter: none;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-heading {
	border-color: transparent;
	background-color: #99a9b5;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-heading:hover,
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-heading:focus {
	background-color: #99a9b5;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-title > a {
	color: #dfe5e8;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel.vc_active .vc_tta-panel-heading {
	border-color: transparent;
	background-color: #3c3950;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel.vc_active .vc_tta-panel-title > a {
	color: #ffffff;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-body {
	background-color: #3c3950;
	color: #99a9b5;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-body,
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-body::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-body::after {
	border-color: transparent;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-controls-icon::after {
	border-color: #dfe5e8;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::after {
	border-color: #ffffff;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-tab a {
	border-color: transparent;
	background-color: #99a9b5;
	color: #dfe5e8;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-tab a:hover,
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-tab a:focus {
	background-color: #99a9b5;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-modern .vc_tta-tab.vc_active a {
	border-color: transparent;
	background-color: #3c3950;
	color: #ffffff;
}
@media (min-width: 768px) {
	.vc_tta.vc_tta-color-thegem.vc_tta-style-modern.vc_tta-tabs .vc_tta-panels {
		background-color: #3c3950;
	}
	.vc_tta.vc_tta-color-thegem.vc_tta-style-modern.vc_tta-tabs .vc_tta-panels,
	.vc_tta.vc_tta-color-thegem.vc_tta-style-modern.vc_tta-tabs .vc_tta-panels::before,
	.vc_tta.vc_tta-color-thegem.vc_tta-style-modern.vc_tta-tabs .vc_tta-panels::after {
		border-color: transparent;
	}
	.vc_tta.vc_tta-color-thegem.vc_tta-style-modern.vc_tta-tabs .vc_tta-panels .vc_tta-panel-body {
		border-color: transparent;
		background-color: transparent;
	}
}
/* Flat */
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-heading {
	margin-bottom: -1px;
}
.vc_tta.vc_tta-tabs.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-tab a {
	padding-top: 10px;
	padding-bottom: 10px;
}
.widget .vc_tta.vc_tta-tabs.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-tab a {
	padding-top: 0;
	padding-bottom: 0;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading {
	border-color: transparent;
	background-color: #dfe5e8;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading:hover,
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading:focus {
	background-color: #dfe5e8;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-title > a {
	color: #5f727f;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-heading {
	border-color: transparent;
	background-color: #f4f6f7;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-title > a {
	color: #5f727f;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-body {
	background-color: #f4f6f7;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-body,
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-body::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-body::after {
	border-color: transparent;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-controls-icon::after {
	border-color: #5f727f;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::after {
	border-color: #5f727f;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-tab a {
	border-color: transparent;
	background-color: #dfe5e8;
	color: #5f727f;
}
.widget .vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-tab a {
	color: #99a9b5;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-tab a:hover,
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-tab a:focus {
	background-color: #dfe5e8;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-flat .vc_tta-tab.vc_active a {
	border-color: transparent;
	background-color: #f4f6f7;
	color: #5f727f;
}
@media (min-width: 768px) {
	.vc_tta.vc_tta-color-thegem.vc_tta-style-flat.vc_tta-tabs .vc_tta-panels {
		background-color: #f4f6f7;
	}
	.vc_tta.vc_tta-color-thegem.vc_tta-style-flat.vc_tta-tabs .vc_tta-panels,
	.vc_tta.vc_tta-color-thegem.vc_tta-style-flat.vc_tta-tabs .vc_tta-panels::before,
	.vc_tta.vc_tta-color-thegem.vc_tta-style-flat.vc_tta-tabs .vc_tta-panels::after {
		border-color: transparent;
	}
	.vc_tta.vc_tta-color-thegem.vc_tta-style-flat.vc_tta-tabs .vc_tta-panels .vc_tta-panel-body {
		border-color: transparent;
		background-color: transparent;
	}
}
/* Outline */
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel.vc_active .vc_tta-panel-heading {
	margin-bottom: -2px;
}
.vc_tta.vc_tta-tabs.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-tab a {
	padding-top: 11px;
	padding-bottom: 11px;
}
.widget .vc_tta.vc_tta-tabs.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-tab a {
	padding-top: 1px;
	padding-bottom: 1px;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading {
	border-color: #99a9b5;
	background-color: #99a9b5;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:hover,
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:focus {
	background-color: #99a9b5;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title > a {
	color: #ffffff;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel.vc_active .vc_tta-panel-heading {
	border-color: #99a9b5;
	background-color: #ffffff;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel.vc_active .vc_tta-panel-title > a {
	color: #99a9b5;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-body {
	background-color: #ffffff;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-body,
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-body::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-body::after {
	border-color: #99a9b5;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-controls-icon::after {
	border-color: #ffffff;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::after {
	border-color: #99a9b5;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-tab a {
	border-color: #99a9b5;
	background-color: #99a9b5;
	color: #ffffff;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-tab a:hover,
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-tab a:focus {
	background-color: #99a9b5;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-outline .vc_tta-tab.vc_active a {
	border-color: #99a9b5;
	background-color: #ffffff;
	color: #99a9b5;
}
@media (min-width: 768px) {
	.vc_tta.vc_tta-color-thegem.vc_tta-style-outline.vc_tta-tabs .vc_tta-panels {
		background-color: #ffffff;
	}
	.vc_tta.vc_tta-color-thegem.vc_tta-style-outline.vc_tta-tabs .vc_tta-panels,
	.vc_tta.vc_tta-color-thegem.vc_tta-style-outline.vc_tta-tabs .vc_tta-panels::before,
	.vc_tta.vc_tta-color-thegem.vc_tta-style-outline.vc_tta-tabs .vc_tta-panels::after {
		border-color: #99a9b5;
	}
	.vc_tta.vc_tta-color-thegem.vc_tta-style-outline.vc_tta-tabs .vc_tta-panels .vc_tta-panel-body {
		border-color: transparent;
		background-color: transparent;
	}
}
.vc_tta.vc_tta-tabs.vc_tta-o-no-fill.vc_tta-color-thegem .vc_tta-panels,
.vc_tta.vc_tta-o-no-fill.vc_tta-color-thegem .vc_tta-panels .vc_tta-panel-body {
	border-color: transparent;
	background-color: transparent;
}

/* Gallery */
.gem-gallery {
	margin-bottom: 1.421em;
}
.gem-gallery-preview-carousel-wrap,
.gem-gallery-thumbs-carousel-wrap {
	position: relative;
}
.gem-gallery.no-thumbs .gem-gallery-thumbs-carousel-wrap {
	display: none;
}
.gem-gallery-preview-pagination {
	padding-top: 25px;
}
.gem-gallery .gem-gallery-item {
	float: left;
	position: relative;
	text-align: center;
}
.gem-gallery .gem-gallery-item a {
	display: inline-block;
	vertical-align: top;
}
.gem-gallery .gem-gallery-preview-carousel-wrap {
	overflow: hidden;
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap {
	padding: 0 80px;
}
.gem-gallery .gem-gallery-thumbs-navigation .gem-prev,
.gem-gallery .gem-gallery-thumbs-navigation .gem-next {
	width: 80px;
}
.gem-gallery .gem-gallery-thumbs-navigation .gem-prev:after,
.gem-gallery .gem-gallery-thumbs-navigation .gem-next:after {
	width: 80px;
	height: 80px;
	line-height: 80px;
	margin-top: -40px;
	margin-left: -40px;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.gem-gallery .gem-gallery-thumbs-navigation .gem-prev:not(:hover):after,
.gem-gallery .gem-gallery-thumbs-navigation .gem-next:not(:hover):after {
	background-color: #dfe5e8;
}
.gem-gallery .gem-gallery-thumbs-navigation .gem-prev:after {
	content: '\e637';
}
.gem-gallery .gem-gallery-thumbs-navigation .gem-next:after {
	content: '\e638';
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item {
	padding: 18px 0 0;
	margin: 0 9px;
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item a {
	position: relative;
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item.active a:before,
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item a:hover:before {
	opacity: 0.7;
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item a img {
	width: 80px;
	height: 80px;
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item.active a {
	position: relative;
	overflow: visible;
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item.active a img {
	opacity: 1;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-gallery-item svg {
	display: none;
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item svg {
	position: absolute;
	height: 10px;
	top: -10px;
	left: 50%;
	margin-left: -10px;
	width: 20px;
	opacity: 0;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item.active svg {
	opacity: 1;
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-prev,
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-next {
	top: 18px;
}
.gem-gallery-thumbs-carousel-wrap .gem-gallery-caption {
	display: none;
}
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-gallery-item a {
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-gallery-item img {
	display: inline-block;
	height: auto;
}
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-gallery-item a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.3s linear 0.4s;
	-moz-transition: all 0.3s linear 0.4s;
	-webkit-transition: all 0.3s linear 0.4s;
	opacity: 0;
	z-index: 5;
}
.gem-gallery .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item a:before {
	opacity: 1;
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-gallery-item a img {
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
.gem-gallery .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item a img {
	transition: all 0.3s linear 0.2s;
	-moz-transition: all 0.3s linear 0.2s;
	-webkit-transition: all 0.3s linear 0.2s;
}
.gem-gallery .gem-gallery-preview-carousel-wrap:hover .gem-prev,
.gem-gallery .gem-gallery-preview-carousel-wrap:hover .gem-next {
	z-index: 5;
}
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-prev:after,
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-next:after {
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	opacity: 0;
}
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-prev:after {
	transform: translateX(-100%);
	-o-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
}
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-next:after {
	transform: translateX(100%);
	-o-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-webkit-transform: translateX(100%);
}
.gem-gallery .gem-gallery-preview-carousel-wrap:hover .gem-prev:after,
.gem-gallery .gem-gallery-preview-carousel-wrap:hover .gem-next:after {
	transform: none;
	-o-transform: none;
	-ms-transform: none;
	-moz-transform: none;
	-webkit-transform: none;
	opacity: 1;
}

@media (max-width: 756px) {
	.gem-gallery .gem-gallery-thumbs-carousel-wrap {
		padding: 0 25px;
	}

	.gem-gallery .gem-gallery-thumbs-navigation .gem-prev,
	.gem-gallery .gem-gallery-thumbs-navigation .gem-next {
		width: 25px;
	}

	.gem-gallery .gem-gallery-thumbs-navigation .gem-prev:not(:hover):after,
	.gem-gallery .gem-gallery-thumbs-navigation .gem-next:not(:hover):after {
		background: transparent;
	}

	.gem-gallery .gem-gallery-thumbs-navigation .gem-prev:after {
		content: '\e636';
	}

	.gem-gallery .gem-gallery-thumbs-navigation .gem-next:after {
		content: '\e634';
	}

	.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item {
		margin: 0 7px;
	}
}
.panel.row {
	margin-bottom: 0;
}

body .fancybox-title-over-wrap {
	width: 100%;
}

.gem-simple-gallery .gem-gallery-items-carousel-wrap {
	position: relative;
}
.gem-simple-gallery .gem-gallery-item {
	float: left;
	position: relative;
	text-align: center;
	margin: 0 21px;
	overflow: hidden;
	max-width: 100%;
}
.gem-simple-gallery.responsive .gem-gallery-item {
	margin: 0;
}
.widget .gem-simple-gallery .gem-gallery-item {
	width: 261px;
}
.gem-simple-gallery .gem-gallery-item a {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
}
.gem-simple-gallery .gem-gallery-items-carousel-wrap {
	overflow: hidden;
}
.gem-simple-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item a {
	position: relative;
}
.gem-simple-gallery .gem-gallery-item a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.gem-simple-gallery .gem-gallery-item a:hover:before {
	opacity: 0.7;
}
.gem-simple-gallery .gem-gallery-caption {
	display: none;
}
.gem-simple-gallery .gem-gallery-item img {
	display: inline-block;
	height: auto;
}
.gem-simple-gallery .gem-gallery-item a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.3s linear 0.4s;
	-moz-transition: all 0.3s linear 0.4s;
	-webkit-transition: all 0.3s linear 0.4s;
	opacity: 0;
	z-index: 5;
}
.gem-simple-gallery .gem-gallery-item a:hover:before {
	opacity: 1;
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
.gem-simple-gallery .gem-gallery-item a img {
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
.gem-simple-gallery .gem-gallery-item a:hover img {
	transition: all 0.3s linear 0.2s;
	-moz-transition: all 0.3s linear 0.2s;
	-webkit-transition: all 0.3s linear 0.2s;
}
.gem-simple-gallery .gem-gallery-item a:after {
	content: '\e60f';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-style: normal;
	font-size: 63px;
	height: 63px;
	line-height: 63px;
	width: 63px;
	text-align: center;
	position: absolute;
	top: 0%;
	left: 50%;
	transition: all 0.2s ease 0.1s;
	-moz-transition: all 0.2s ease 0.1s;
	-webkit-transition: all 0.2s ease 0.1s;
	margin-left: -32px;
	margin-top: -32px;
	z-index: 5;
	opacity: 0;
}
.gem-simple-gallery .gem-gallery-item a:hover:after {
	transition: all 0.2s ease 0.1s;
	-moz-transition: all 0.2s ease 0.1s;
	-webkit-transition: all 0.2s ease 0.1s;
	top: 50%;
	opacity: 1;
}
.gem-simple-gallery .gem-prev,
.gem-simple-gallery .gem-next {
	z-index: 5;
}


/* Icons with title */

.gem-icon-with-title {
	margin-bottom: 1.421em;
}
.gem-icon-with-title > .gem-icon-with-title-icon {
	display: table-cell;
	padding-right: 10px;
	vertical-align: middle;
}
.gem-icon-with-title-icon-size-medium > .gem-icon-with-title-icon {
	padding-right: 20px;
}
.gem-icon-with-title-icon-size-big > .gem-icon-with-title-icon {
	padding-right: 30px;
}
.gem-iconed-title {
	display: table-cell;
	vertical-align: middle;
	text-transform: uppercase;
	width: 99%;
}
.gem-iconed-title > * {
	margin: 0;
}

/* Icons with text */

.gem-icon-with-text {
	margin-bottom: 1.421em;
}
.gem-icon-with-text > .gem-icon-with-text-icon {
	display: table-cell;
	padding-right: 10px;
	vertical-align: top;
}
.gem-icon-with-text-icon-size-medium > .gem-icon-with-text-icon {
	padding-right: 20px;
}
.gem-icon-with-text-icon-size-big > .gem-icon-with-text-icon {
	padding-right: 30px;
}
.gem-icon-with-text.gem-icon-with-text-flow > .gem-icon-with-text-icon {
	display: block;
	float: left;
	margin: 0 10px 0 0;
	padding-right: 0;
}
.gem-icon-with-text-icon-size-medium.gem-icon-with-text-flow > .gem-icon-with-text-icon {
	margin: 0 20px 0 0;
}
.gem-icon-with-text-icon-size-big.gem-icon-with-text-flow > .gem-icon-with-text-icon {
	margin: 0 30px 0 0;
}
.gem-icon-with-text > .gem-icon-with-text-content {
	display: table-cell;
	width: 99%;
	vertical-align: top;
}
.gem-icon-with-text.gem-icon-with-text-flow > .gem-icon-with-text-content {
	display: block;
	width: auto;
}
.gem-icon-with-text.centered-box > .gem-icon-with-title {
	display: block;
}
.gem-icon-with-text.centered-box > .gem-icon-with-text-icon,
.gem-icon-with-text.centered-box > .gem-icon-with-title > .gem-icon-with-title-icon {
	display: block;
	text-align: center;
	padding: 0 0 10px;
}
.gem-icon-with-text.centered-box > .gem-icon-with-title > .gem-iconed-title {
	display: block;
}
.gem-icon-with-text-icon-size-medium.centered-box > .gem-icon-with-text-icon,
.gem-icon-with-text-icon-size-medium.centered-box > .gem-icon-with-title > .gem-icon-with-title-icon {
	display: block;
	text-align: center;
	padding: 0 0 20px;
}
.gem-icon-with-text-icon-size-big.centered-box > .gem-icon-with-text-icon,
.gem-icon-with-text-icon-size-big.centered-box > .gem-icon-with-title > .gem-icon-with-title-icon {
	display: block;
	text-align: center;
	padding: 0 0 30px;
}
.gem-icon-with-text.gem-icon-with-text-flow.centered-box > .gem-icon-with-text-icon {
	float: none;
	margin: 0;
}
.gem-icon-with-text.centered-box > .gem-icon-with-text-content {
	display: block;
	width: auto;
}
.gem-icon-with-text > .gem-icon-with-title,
.gem-icon-with-text > .gem-icon-with-title + .gem-icon-with-text-content {
	display: table-row;
}
.gem-icon-with-text > .gem-icon-with-title + .gem-icon-with-text-content > .gem-icon-with-text-empty,
.gem-icon-with-text > .gem-icon-with-title + .gem-icon-with-text-content > .gem-icon-with-text-text {
	display: table-cell;
}
@media (max-width: 768px) {
	.gem-icon-with-text:not(.disable-mobile-centered) > .gem-icon-with-text-icon {
		display: block;
		text-align: center;
		padding: 0 0 10px;
		padding-right: 0 !important;
	}
	.gem-icon-with-text-icon-size-medium:not(.disable-mobile-centered) > .gem-icon-with-text-icon {
		display: block;
		text-align: center;
		padding: 0 0 20px;
	}
	.gem-icon-with-text-icon-size-big:not(.disable-mobile-centered) > .gem-icon-with-text-icon {
		display: block;
		text-align: center;
		padding: 0 0 30px;
	}
	.gem-icon-with-text.gem-icon-with-text-flow:not(.disable-mobile-centered) > .gem-icon-with-text-icon {
		float: none;
		margin: 0;
	}
	.gem-icon-with-text:not(.disable-mobile-centered) > .gem-icon-with-text-content,
	.gem-icon-with-text.centered-box > .gem-icon-with-title + .gem-icon-with-text-content {
		display: block;
		width: auto;
		text-align: center;
	}
	.gem-icon-with-text:not(.disable-mobile-centered) > .gem-icon-with-title + .gem-icon-with-text-content {
		text-align: left;
	}
}

/* Alert box */
.gem-alert-box:not(.centered-box) {
	display: table;
	width: 100%;
}
.gem-textbox-content .gem-alert-box {
	padding: 20px;
}
.gem-alert-box:not(.centered-box) .gem-alert-box-picture,
.gem-alert-box:not(.centered-box) .gem-alert-box-content,
.gem-alert-box:not(.centered-box) .gem-alert-box-buttons {
	display: table-cell;
	vertical-align: middle;
	width: 1%;
}
.gem-alert-box:not(.centered-box) .gem-alert-box-content {
	width: 99%;
	padding: 0 42px;
}
.gem-alert-box:not(.centered-box) .gem-alert-box-buttons .gem-button {
	margin: 15px 0;
}
.gem-alert-box-image {
	overflow: hidden;
	display: inline-block;
	vertical-align: top;
}
.gem-alert-box-image.image-size-small,
.gem-alert-box-image.image-size-small img,
.gem-alert-box-image.image-size-medium,
.gem-alert-box-image.image-size-medium img {
	border-radius: 3px;
}
.gem-alert-box-image.image-size-large,
.gem-alert-box-image.image-size-large img {
	border-radius: 6px;
}
.gem-alert-box-image.image-size-xlarge,
.gem-alert-box-image.image-size-xlarge img {
	border-radius: 9px;
}
.gem-alert-box-image.image-shape-circle,
.gem-alert-box-image.image-shape-circle img {
	border-radius: 50%;
}
.gem-alert-box-image.image-size-small {
	width: 50px;
}
.gem-alert-box-image.image-size-small.image-shape-circle,
.gem-alert-box-image.image-size-small.image-shape-circle img {
	height: 50px;
}
.gem-alert-box-image.image-size-medium {
	width: 80px;
}
.gem-alert-box-image.image-size-medium.image-shape-circle,
.gem-alert-box-image.image-size-medium.image-shape-circle img {
	height: 80px;
}
.gem-alert-box-image.image-size-large {
	width: 160px;
}
.gem-alert-box-image.image-size-large.image-shape-circle,
.gem-alert-box-image.image-size-large.image-shape-circle img {
	height: 160px;
}
.gem-alert-box-image.image-size-xlarge {
	width: 240px;
}
.gem-alert-box-image.image-size-xlarge.image-shape-circle,
.gem-alert-box-image.image-size-xlarge.image-shape-circle img {
	height: 240px;
}
.gem-alert-box.centered-box .gem-alert-box-content {
	padding: 40px 0 20px;
}
.gem-alert-box.centered-box .gem-alert-box-buttons .gem-button {
	margin: 20px 21px 0;
}

@media (max-width: 768px) {
	.gem-alert-box:not(.centered-box) {
		display: block;
		text-align: center;
	}
	.gem-alert-box:not(.centered-box) .gem-alert-box-picture,
	.gem-alert-box:not(.centered-box) .gem-alert-box-content,
	.gem-alert-box:not(.centered-box) .gem-alert-box-buttons {
		display: block;
		width: 100%;
	}
	.gem-alert-box:not(.centered-box) .gem-alert-box-content {
		width: 100%;
		padding: 40px 0 20px;
	}
	.gem-alert-box:not(.centered-box) .gem-alert-box-buttons .gem-button-container {
		display: inline-block;
	}
	.gem-alert-box:not(.centered-box) .gem-alert-box-buttons .gem-button {
		margin: 20px 21px 0;
	}
}

/* Button with separator */

.gem-button-separator-holder,
.gem-button-separator-button {
	display: table-cell;
	vertical-align: middle;
}
.gem-button-separator-holder {
	width: 50%;
}
.gem-button-separator-holder svg {
	display: block;
}
.gem-button-sep-button .gem-button {
	margin: 20px 0;
	vertical-align: middle;
}
.gem-button-separator-line {
	width: 100%;
}
.gem-button-separator-type-single .gem-button-separator-line {
	border-top: 2px solid;
	border-bottom: 2px solid;
	height: 0;
}
.gem-button-separator-type-square .gem-button-separator-button {
	padding: 0 20px;
}
.gem-button-separator-type-soft-double .gem-button-separator-line {
	border-top: 1px solid;
	border-bottom: 1px solid;
	height: 7px;
}
.gem-button-separator-type-square .gem-button-separator-button {
	padding: 0 40px;
}
.gem-button-separator-type-strong-double .gem-button-separator-line {
	border-top: 4px solid;
	border-bottom: 4px solid;
	height: 17px;
}
.gem-button-separator-type-load-more .gem-button-separator-button {
	padding: 0 20px;
}
.gem-button-separator-type-load-more .gem-button-separator-line {
	border-top: 1px solid;
	border-bottom: 1px solid;
	height: 4px;
}

/* Divider */

.clearboth {
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
}
.clear {
	height: 0;
	font-size: 0;
	line-height: 0;
	clear: both;
}
.gem-divider {
	position: relative;
	border-top: 1px solid transparent;
	height: 0;
	font-size: 0;
	line-height: 0;
}
.gem-divider.megamenu-divider,
.megamenu-template .gem-divider {
	margin-top: 14px;
	margin-bottom: 11px;
	width: 200px;
	display: block;
	border-color: var(--thegem-to-divider-color, #dfe5e8);
}
.gem-divider-style-1 {
	height: 1px;
	border: 0 none;
}
.gem-divider-style-2 {
	border-top: 3px solid transparent;
}
.gem-divider-style-3 {
	border-top: 7px solid transparent;
}
.gem-divider-style-4 {
	height: 8px;
	border: 0 none;
}
.gem-divider-style-5 {
	height: 6px;
	border: 0 none;
}
.gem-divider-style-6 {
	border-top: 0;
	height: 10px;
	background: url('https://shop.ariservices.co/wp-content/themes/thegem/images/divider-zigzag.png') repeat-x 50% 0;
}
.gem-divider-style-7 {
	border-top: 0;
	height: 8px;
	background: url('https://shop.ariservices.co/wp-content/themes/thegem/images/divider-wave.png') repeat-x 50% 0;
}

/* Dropcap */


.gem-dropcap .gem-dropcap-letter {
	float: left;
	position: relative;
	font-size: 127%;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	overflow: hidden;
	margin-right: 21px;
	text-align: center;
	width: 80px;
	height: 80px;
	line-height: 80px;
	margin-top: 7px;

}
.gem-dropcap.gem-dropcap-style-medium .gem-dropcap-letter{
	width: 50px;
	height: 50px;
	line-height: 48px;
}

.gem-dropcap.gem-dropcap-shape-square .gem-dropcap-letter {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}

/* Accordion */
.vc_tta.vc_tta-accordion .vc_tta-controls-icon.vc_tta-controls-icon-chevron::before,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon[data-vc-tta-controls-icon="chevron"]::before {
	-webkit-transform: rotate(-45deg) translate(-25%, -25%);
	-ms-transform: rotate(-45deg) translate(-25%, -25%);
	transform: rotate(-45deg) translate(-25%, -25%);
}
.vc_tta.vc_tta-accordion .vc_active .vc_tta-controls-icon.vc_tta-controls-icon-chevron::before,
.vc_tta.vc_tta-accordion .vc_active .vc_tta-controls-icon[data-vc-tta-controls-icon="chevron"]::before {
	-webkit-transform: rotate(45deg) translate(-25%, -25%);
	-ms-transform: rotate(45deg) translate(-25%, -25%);
	transform: rotate(45deg) translate(-25%, -25%);
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-controls-icon-position-left.vc_tta-panel-title > a,
.vc_tta.vc_general.vc_tta-accordion .vc_tta-controls-icon-position-right.vc_tta-panel-title > a,
.vc_tta.vc_general.vc_tta-accordion [data-vc-tta-controls-icon-position="left"].vc_tta-panel-title > a,
.vc_tta.vc_general.vc_tta-accordion [data-vc-tta-controls-icon-position="right"].vc_tta-panel-title > a {
	padding-left: 50px;
	padding-right: 50px;
}
.vc_tta.vc_tta-accordion.vc_tta-style-simple_solid .vc_tta-controls-icon-position-left.vc_tta-panel-title > a,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-controls-icon-position-left.vc_tta-panel-title > a,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon-position-left.vc_tta-panel-title > a,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_solid [data-vc-tta-controls-icon-position="left"].vc_tta-panel-title > a,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed [data-vc-tta-controls-icon-position="left"].vc_tta-panel-title > a,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_arrow [data-vc-tta-controls-icon-position="left"].vc_tta-panel-title > a {
	padding-left: 30px;
	padding-right: 0;
}
.vc_tta.vc_tta-accordion.vc_tta-style-simple_solid .vc_tta-controls-icon-position-right.vc_tta-panel-title > a,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-controls-icon-position-right.vc_tta-panel-title > a,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon-position-right.vc_tta-panel-title > a,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_solid [data-vc-tta-controls-icon-position="right"].vc_tta-panel-title > a,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed [data-vc-tta-controls-icon-position="right"].vc_tta-panel-title > a,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_arrow [data-vc-tta-controls-icon-position="right"].vc_tta-panel-title > a {
	padding-left: 0;
	padding-right: 30px;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-body {
	padding: 50px;
}
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_solid .vc_tta-panel-body,
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-panel-body,
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-panel-body {
	padding: 30px 0 50px;
}
.vc_tta.vc_tta-accordion.vc_tta-style-simple_solid .vc_tta-panel .vc_tta-panel-title,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-panel .vc_tta-panel-title,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-panel .vc_tta-panel-title {
	font-size: 16px;
}
.widget .vc_tta.vc_tta-accordion.vc_tta-style-simple_solid .vc_tta-panel .vc_tta-panel-title,
.widget .vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-panel .vc_tta-panel-title,
.widget .vc_tta.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-panel .vc_tta-panel-title {
	font-size: 14px;
}
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_solid .vc_tta-panel + .vc_tta-panel,
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-panel + .vc_tta-panel {
	border-top: 1px solid #b6c6c9;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-simple_solid .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-simple_solid .vc_tta-controls-icon::after,
.vc_tta.vc_tta-color-thegem.vc_tta-style-simple_arrow .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-simple_arrow .vc_tta-controls-icon::after {
	border-color: #b6c6c9;
	color: #b6c6c9;
}
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-panel + .vc_tta-panel {
	border-top: 1px dashed #3c3950;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-simple_dashed .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-simple_dashed .vc_tta-controls-icon::after {
	border-color: #00bcd4;
	color: #00bcd4;
}
.vc_tta.vc_tta-color-thegem.vc_tta-style-simple_dashed .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::before,
.vc_tta.vc_tta-color-thegem.vc_tta-style-simple_dashed .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::after {
	border-color: #3c3950;
	color: #3c3950;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon.vc_tta-controls-icon-solid_squared,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon.vc_tta-controls-icon-solid_rounded,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon.vc_tta-controls-icon-outlined_rounded,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_squared"],
.vc_tta.vc_tta-accordion .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_rounded"],
.vc_tta.vc_tta-accordion .vc_tta-controls-icon[data-vc-tta-controls-icon="outlined_rounded"] {
	width: 24px;
	height: 24px;
	line-height: 24px;
	font-size: 24px;
	text-align: center;
	font-style: normal;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon.vc_tta-controls-icon-solid_rounded,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon.vc_tta-controls-icon-outlined_rounded,
.vc_tta.vc_tta-accordion [data-vc-tta-controls-icon-position="left"] .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_rounded"],
.vc_tta.vc_tta-accordion [data-vc-tta-controls-icon-position="left"] .vc_tta-controls-icon[data-vc-tta-controls-icon="outlined_rounded"] {
	left: 17px;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon.vc_tta-controls-icon-solid_squared,
.vc_tta.vc_tta-accordion [data-vc-tta-controls-icon-position="left"] .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_squared"] {
	left: 20px;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon.vc_tta-controls-icon-chevron,
.vc_tta.vc_tta-accordion [data-vc-tta-controls-icon-position="left"] .vc_tta-controls-icon[data-vc-tta-controls-icon="chevron"] {
	left: 23px;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon.vc_tta-controls-icon-solid_rounded,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon.vc_tta-controls-icon-outlined_rounded,
.vc_tta.vc_tta-accordion [data-vc-tta-controls-icon-position="right"] .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_rounded"],
.vc_tta.vc_tta-accordion [data-vc-tta-controls-icon-position="right"] .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_rounded"] {
	right: 13px;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon.vc_tta-controls-icon-solid_squared,
.vc_tta.vc_tta-accordion [data-vc-tta-controls-icon-position="right"] .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_squared"] {
	right: 20px;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon.vc_tta-controls-icon-chevron,
.vc_tta.vc_tta-accordion [data-vc-tta-controls-icon-position="right"] .vc_tta-controls-icon[data-vc-tta-controls-icon="chevron"] {
	right: 23px;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon.vc_tta-controls-icon-solid_squared::before,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon.vc_tta-controls-icon-solid_rounded::before,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon.vc_tta-controls-icon-outlined_rounded::before,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_squared"]::before,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_rounded"]::before,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon[data-vc-tta-controls-icon="outlined_rounded"]::before {
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	border: 0 none !important;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon.vc_tta-controls-icon-solid_squared::before,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_squared"]::before {
	content: '\e62f';
}
.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-controls-icon.vc_tta-controls-icon-solid_squared::before,
.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_squared"]::before {
	content: '\e62e';
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon.vc_tta-controls-icon-solid_rounded::before,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_rounded"]::before {
	content: '\e60a';
}
.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-controls-icon.vc_tta-controls-icon-solid_rounded::before,
.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-controls-icon[data-vc-tta-controls-icon="solid_rounded"]::before {
	content: '\e609';
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon.vc_tta-controls-icon-outlined_rounded::before,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon[data-vc-tta-controls-icon="outlined_rounded"]::before {
	content: '\e62d';
}
.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-controls-icon.vc_tta-controls-icon-outlined_rounded::before,
.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-controls-icon[data-vc-tta-controls-icon="outlined_rounded"]::before {
	content: '\e62c';
}
.vc_tta.vc_tta-accordion.vc_tta-style-simple_solid .vc_tta-controls-icon-position-left .vc_tta-controls-icon,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-controls-icon-position-left .vc_tta-controls-icon,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
	left: 0;
}
.vc_tta.vc_tta-accordion.vc_tta-style-simple_solid .vc_tta-controls-icon-position-right .vc_tta-controls-icon,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-controls-icon-position-right .vc_tta-controls-icon,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon-position-right .vc_tta-controls-icon,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_solid [data-vc-tta-controls-icon-position="right"] .vc_tta-controls-icon,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed [data-vc-tta-controls-icon-position="right"] .vc_tta-controls-icon,
.vc_tta.vc_tta-accordion.vc_tta-style-simple_arrow [data-vc-tta-controls-icon-position="right"] .vc_tta-controls-icon {
	right: 0;
}
/* widget */
.widget .vc_tta.vc_general.vc_tta-accordion .vc_tta-controls-icon-position-left.vc_tta-panel-title > a,
.widget .vc_tta.vc_general.vc_tta-accordion .vc_tta-controls-icon-position-right.vc_tta-panel-title > a {
	padding-left: 35px;
	padding-right: 35px;
}
.widget .vc_tta.vc_tta-accordion.vc_tta-style-simple_solid .vc_tta-controls-icon-position-left.vc_tta-panel-title > a,
.widget .vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-controls-icon-position-left.vc_tta-panel-title > a,
.widget .vc_tta.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon-position-left.vc_tta-panel-title > a {
	padding-left: 30px;
	padding-right: 0;
}
.widget .vc_tta.vc_tta-accordion.vc_tta-style-simple_solid .vc_tta-controls-icon-position-right.vc_tta-panel-title > a,
.widget .vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-controls-icon-position-right.vc_tta-panel-title > a,
.widget .vc_tta.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon-position-right.vc_tta-panel-title > a {
	padding-left: 0;
	padding-right: 30px;
}
.widget .vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-body {
	padding: 35px;
}
.widget .vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_solid .vc_tta-panel-body,
.widget .vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-panel-body,
.widget .vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-panel-body {
	padding: 20px 0 35px;
}
.widget .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon.vc_tta-controls-icon-solid_squared,
.widget .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon.vc_tta-controls-icon-solid_rounded,
.widget .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon.vc_tta-controls-icon-outlined_rounded {
	left: 7px;
}
.widget .widget .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon.vc_tta-controls-icon-solid_squared,
.widget .widget .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon.vc_tta-controls-icon-solid_rounded,
.widget .widget .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right.vc_tta-controls-icon.vc_tta-controls-icon-outlined_rounded {
	right: 7px;
}
.widget .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon.vc_tta-controls-icon-chevron {
	left: 15px;
}
.widget .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon.vc_tta-controls-icon-chevron {
	left: 15px;
}
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon.vc_tta-controls-icon-plus,
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon[data-vc-tta-controls-icon="plus"] {
	width: 24px;
	height: 24px;
}
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon.vc_tta-controls-icon-plus::before,
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon[data-vc-tta-controls-icon="plus"]::before {
	content: '\e635';
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
	width: 24px;
	height: 24px;
	font-size: 24px;
	border: 0 none;
}
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_arrow .vc_active .vc_tta-controls-icon.vc_tta-controls-icon-plus::before,
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_arrow .vc_active .vc_tta-controls-icon[data-vc-tta-controls-icon="plus"]::before {
	content: '\e633';
}
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon.vc_tta-controls-icon-plus::after,
.vc_tta.vc_general.vc_tta-accordion.vc_tta-style-simple_arrow .vc_tta-controls-icon[data-vc-tta-controls-icon="plus"]::after {
	display: none;
}

/* News */
.gem-news {
	margin-bottom: 1.421em;
}
.gem-news .gem-news-item {
	float: left;
	width: 360px;
	padding: 0 15px;
	position: relative;
}
.gem-news-item-left {
	display: table-cell;
	padding-top: 7px;
}
.gem-news-item-right {
	display: table-cell;
	vertical-align: middle;
	padding-top: 4px;
	width: 100%;
	padding-left: 12px;
}
.gem-news-item-image {
	width: 72px;
	height: 72px;
}
.gem-news-item-excerpt {
	margin-top: 2px;
}
.gem-news-item-date {

	margin-top: 3px;
}
.gem-news-zilla-likes {
	position: absolute;
	right: 30px;
	bottom: 0px;
}
.gem-news .post-meta-likes {
	margin-right: 5px;
}
.gem-news_title-excerpt > p {
	max-height: 5em;
	overflow: hidden;
}
.gem-news_title-excerpt {
	max-height: 4.6em;
	overflow: hidden;
}
.gem-news-item-meta {
	position: relative;
}
.gem-news-item-right-conteiner {
	max-height: 3.1em;
	overflow: hidden;
}

/* Clients */
.gem-clients {
	margin-bottom: 1.421em;
}

.gem-clients-type-carousel-grid {
	position: relative;
}
.gem-clients-type-carousel-grid.show-arrows {
	padding: 0 10%;
}
.gem-clients-type-carousel-grid .gem-clients-slide {
	float: left;
	width: 100%;
}
.disable-grayscale.gem-clients-type-carousel-grid .gem-client-item a,
.disable-grayscale.gem-clients-type-carousel-grid .gem-client-item span {
	background-color: transparent;
}
.gem-clients-type-carousel-grid .gem-client-item {
	float: left;
	padding: 0 5px 10px 5px;
}
.gem-clients-slide-inner.clearfix {
	margin-left: -5px;
	margin-right: -5px;
}

.gem-clients-type-carousel-grid .gem-client-item a,
.gem-clients-type-carousel-grid .gem-client-item span:not(.caption, .text) {
	display: block;
	width: 100%;
	text-align: center;
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	position: relative;
}
.disable-grayscale.gem-clients-type-carousel-grid .gem-client-item a img,
.disable-grayscale.gem-clients-type-carousel-grid .gem-client-item span img {
	opacity: 1;
	-webkit-filter: none;
	-moz-filter: none;
	-ms-filter: none;
	-o-filter: none;
	filter: none;
}
.gem-clients-type-carousel-grid .gem-client-item a img,
.gem-clients-type-carousel-grid .gem-client-item span img {
	display: inline-block;
	opacity: 0.5;
}
.gem-clients-type-carousel-grid .gem-client-item a:hover img,
.gem-clients-type-carousel-grid .gem-client-item span:hover img {
	opacity: 1;
}
.gem-client-item .caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 100%;
	width: auto;
}
.gem-client-item .caption.caption-horizontal-left {
	left: 0;
	right: auto;
}
.gem-client-item .caption.caption-horizontal-right {
	left: auto;
	right: 0;
}
.gem-client-item .caption.caption-horizontal-stretch {
	left: 0;
	right: 0;
}
.gem-client-item .caption.caption-horizontal-center {
	left: 50%;
	right: auto;
	transform: translateX(-50%);
}
.gem-client-item .caption.caption-vertical-top {
	top: 0;
	bottom: auto;
}
.gem-client-item .caption.caption-vertical-middle {
	top: 50%;
	transform: translateY(-50%);
	bottom: auto;
}
.gem-client-item .caption.caption-horizontal-center.caption-vertical-middle {
	transform: translateX(-50%) translateY(-50%);
}
.gem-client-item .caption.caption-vertical-bottom {
	top: auto;
	bottom: 0;
}
.gem-client-item .caption .text {
	display: block;
	padding: 10px;
	background-color: #FFFFFFA1;
	color: var(--thegem-to-body-color);
	margin: 0;
	width: auto;
}
.gem-client-item .caption.show-on-hover {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s linear;
}
.gem-client-item > a:hover .caption.show-on-hover,
.gem-client-item > span:hover .caption.show-on-hover {
	opacity: 1;
	visibility: visible;
}

/* Diagrams */

.diagram-item {
	margin-bottom: 1.421em;
}
.skill-element + .skill-element {
	margin: 8px 0 0 0;
}
.skill-title {
	font-size: 89.5%;
	line-height: 1.421;
	margin: 0 0 5px 0;
}

.skill-amount {
	float: right;
	font-size: 126.3%;
	margin-top: -11px;
}
.skill-line {
	font-size: 0;
	line-height: 1;
	height: 10px;
	margin-right: 55px;
}
.skill-line div {
	display: inline-block;
	font-size: 0;
	line-height: 1;
	height: 10px;
}
.skill-line div.animation {
	-moz-transition: width 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	-ms-transition: width 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	-o-transition: width 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	-webkit-transition: width 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: width 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.diagram-summary {
	font-size: 89.5%;
	line-height: 1.471;
	margin: 0 0 0.766667em 0;
}
.widget .diagram-summary {
	font-size: 100%;
}
.diagram-summary-text {
	margin: 0 0 0.766667em 0;
}
.diagram-circle {
	text-align: center;
}
.diagram-circle {
	position: relative;
}
.diagram-circle .box-wrapper {
	max-width: 550px;
	position: relative;
	text-align: left;
}
.tab_wrapper .diagram-circle .box-wrapper {
	margin: 0 auto;
}
.diagram-circle .box {
	position: relative;
}
.diagram-circle .skills {
	display: none;
}
.diagram-circle .text {
	font-size: 89.5%;
	line-height: 1.471;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.widget .diagram-circle .text {
	font-size: 100%;
}
.diagram-circle .text div {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	line-height: 1.2;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.diagram-circle .text div span {
	display: block;
	text-align: center;
	padding: 0 0 0 5px;
	margin: 0;
}
.widget .diagram-circle .text div,
.widget .diagram-circle .text div span.title {
	font-size: inherit;
}
.diagram-legend {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 1;
	text-align: left;
}
.diagram-legend .legend-element {
	margin: 0 0 26px 0;
}
.diagram-legend .legend-element .color {
	display: block;
	float: left;
	width: 16px;
	height: 16px;
}
.sidebar .diagram-legend .legend-element .color {
	width: 12px;
	height: 12px;
}
.diagram-legend .legend-element .title {
	display: block;
	line-height: 1;
	margin: 0 0 0 46px;
	margin-left: 30px;
}
.widget .diagram-legend .legend-element .title {
	margin-left: 23px;
	margin-top: -2px;
}

/* Map */
.gem-map-with-text {
	position: relative;
	margin-bottom: 1.421em;
}
.gem-map-with-text.rounded-corners {
	-webkit-mask-image: url('https://shop.ariservices.co/wp-content/themes/thegem/css/rounded.svg');
}
.gem-map-with-text-content {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 15px;
}
.gem-map-with-text-map {
	overflow: hidden;
}
.gem-map-with-text-map .wpb_gmaps_widget {
	margin-top: 0;
	margin-bottom: 0;
}
@media (max-width: 992px) {
	.gem-map-with-text-content {
		position: relative;
		top: auto;
		left: auto;
		width: auto;
	}
}
.wpb_map_wraper iframe {
	vertical-align: top;
}

/* Counter */
.gem-counter-box {
	margin-bottom: 1.421em;
}
.gem-counter {
	position: relative;
	text-align: center;
}
@media (max-width: 549px) {
	.gem-counter {
		width: 100%;
	}
}
.gem-counter-inner {
	position: relative;
	padding: 40px 30px 30px;
}
.gem-counter .gem-counter-number .gem-counter-odometer,
.gem-counter-suffix {
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
}
.gem-counter-icon {
	margin-bottom: 30px;
}
.gem-counter-number {
	margin-bottom: 0;
}
.gem-counter-icon-circle-1 {
	display: inline-block;
	vertical-align: top;
	border-radius: 50%;
	border-width: 4px;
	border-style: solid;
	padding: 9px;
}
.gem-counter-icon-circle-2 {
	width: 146px;
	height: 146px;
	line-height: 146px;
	border-radius: 50%;
	text-align: center;
	border-width: 2px;
	border-style: solid;
}
.gem-counter-style-vertical .gem-counter,
.gem-counter-style-vertical .gem-counter-inner {
	position: relative;
}
.gem-counter-style-vertical .gem-counter {
	margin-top: 50px;
}
.gem-counter-style-vertical .gem-counter-connector {
	position: absolute;
	width: 3px;
	top: -50px;
	left: 50%;
	margin-left: -1px;
}
.gem-counter-style-vertical .gem-counters-list:first-child .gem-counter:first-child {
	margin-top: 0;
}
.gem-counter-style-vertical .gem-counters-list:first-child .gem-counter:first-child .gem-counter-connector {
	display: none;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-small {
	padding-top: 25px;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-small .gem-counter-inner {
	padding-top: 60px;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-small .gem-counter-connector {
	height: 75px;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-medium {
	padding-top: 40px;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-medium .gem-counter-inner {
	padding-top: 75px;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-medium .gem-counter-connector {
	height: 90px;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-large {
	padding-top: 80px;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-large .gem-counter-inner {
	padding-top: 115px;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-large .gem-counter-connector {
	height: 130px;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-xlarge {
	padding-top: 120px;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-xlarge .gem-counter-inner {
	padding-top: 170px;
}
.gem-counter-style-vertical .gem-counter.gem-counter-size-xlarge .gem-counter-connector {
	height: 185px;
}
.gem-counter-style-vertical .gem-counter-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.gem-counter-team .gem-team .inline-column {
	margin-bottom: 0;
}
.gem-counter-team .team-person .team-person-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
}
.gem-counter-team .team-person .team-person-image img {
	display: inline-block;
}
.gem-counter-team.image-size-small {
	padding-top: 25px;
}
.gem-counter-team.image-size-small .team-person {
	padding-top: 60px;
}
.gem-counter-team.image-size-small .team-person .team-person-image img {
	width: 50px;
	height: 50px;
}
.gem-counter-team.image-size-medium {
	padding-top: 40px;
}
.gem-counter-team.image-size-medium .team-person {
	padding-top: 60px;
}
.gem-counter-team.image-size-medium .team-person .team-person-image img {
	width: 80px;
	height: 80px;
}
.gem-counter-team.image-size-large {
	padding-top: 80px;
}
.gem-counter-team.image-size-large .team-person {
	padding-top: 115px;
}
.gem-counter-team.image-size-large .team-person .team-person-image img {
	width: 160px;
	height: 160px;
}
.gem-counter-team.image-size-xlarge {
	padding-top: 120px;
}
.gem-counter-team.image-size-xlarge .team-person {
	padding-top: 170px;
}
.gem-counter-team.image-size-xlarge .team-person .team-person-image img {
	width: 240px;
	height: 240px;
}
.gem-counter-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.gem-counter .gem-icon {
	overflow: visible;
}
.gem-counter .gem-counter-animation {
	position: absolute;
	left: -1px;
	right: -1px;
	top: -1px;
	bottom: -1px;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.gem-icon-shape-circle .gem-counter-animation {
	border-radius: 50%;
}
.gem-counter-effect-background-reverse .gem-counter-animation {
	transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
}
.gem-counter-effect-background-reverse.hover .gem-counter-animation {
	transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
}
.gem-counter-effect-border-reverse .gem-counter-animation {
	transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
}
.gem-counter-effect-border-reverse.hover .gem-counter-animation {
	transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
}
.gem-counter-bottom {
	position: absolute;
	bottom: -10px;
	height: 10px;
	left: 0;
	width: 100%;
}
.gem-counter-bottom-left,
.gem-counter-bottom-right,
.gem-counter-bottom svg {
	position: absolute;
	top: 0;
	height: 100%;
}
.gem-counter-bottom-left {
	left: 0;
	right: 50%;
	margin-right: 10px;
}
.gem-counter-bottom-right {
	right: 0;
	left: 50%;
	margin-left: 10px;
}
.gem-counter-bottom svg {
	left: 50%;
	margin-left: -10px;
}
.gem-counter .gem-counter-inner,
.gem-counter .gem-icon,
.gem-counter .gem-icon-inner,
.gem-counter .gem-icon-half-1,
.gem-counter .gem-icon-half-2,
.gem-counter .gem-counter-number,
.gem-counter .gem-counter-text,
.gem-counter-icon-circle-1,
.gem-counter-icon-circle-2,
.gem-counter-bottom-left,
.gem-counter-bottom-right,
.gem-counter-bottom svg {
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

/* Separator text */
.vc_separator .vc_sep_text {
	line-height: 1em;
	display: table-cell;
	white-space: pre;
}
.vc_separator.vc_separator_align_center .vc_sep_text {
	padding: 0 0.8em;
}
.vc_separator.vc_separator_align_left .vc_sep_text {
	padding: 0 0.8em 0 0;
}
.vc_separator.vc_separator_align_right .vc_sep_text {
	padding: 0 0 0 0.8em;
	margin: 0 !important;
}
.vc_separator.vc_sep_double .vc_sep_line {
	height: 4px !important;
	border-left: 0 none;
	border-right: 0 none;
}
@media (max-width: 768px) {
	.vc_separator .vc_sep_text {
		white-space: normal;
		text-align: center;
	}
}
.vc_separator.vc_sep_color_blue .vc_sep_text {
	color: #5472d2;
}
.vc_separator.vc_sep_color_turquoise .vc_sep_text {
	color: #00c1cf;
}
.vc_separator.vc_sep_color_pink .vc_sep_text {
	color: #fe6c61;
}
.vc_separator.vc_sep_color_violet .vc_sep_text {
	color: #8d6dc4;
}
.vc_separator.vc_sep_color_peacoc .vc_sep_text {
	color: #4cadc9;
}
.vc_separator.vc_sep_color_chino .vc_sep_text {
	color: #cec2ab;
}
.vc_separator.vc_sep_color_mulled_wine .vc_sep_text {
	color: #50485b;
}
.vc_separator.vc_sep_color_vista_blue .vc_sep_text {
	color: #75d69c;
}
.vc_separator.vc_sep_color_black .vc_sep_text {
	color: #2a2a2a;
}
.vc_separator.vc_sep_color_grey .vc_sep_text {
	color: #ebebeb;
}
.vc_separator.vc_sep_color_orange .vc_sep_text {
	color: #f7be68;
}
.vc_separator.vc_sep_color_sky .vc_sep_text {
	color: #5aa1e3;
}
.vc_separator.vc_sep_color_green .vc_sep_text {
	color: #6dab3c;
}
.vc_separator.vc_sep_color_juicy_pink .vc_sep_text {
	color: #f4524d;
}
.vc_separator.vc_sep_color_sandy_brown .vc_sep_text {
	color: #f79468;
}
.vc_separator.vc_sep_color_purple .vc_sep_text {
	color: #b97ebb;
}
.vc_separator.vc_sep_color_white .vc_sep_text {
	color: #ffffff;
}
.vc_separator.vc_sep_color_grace .vc_sep_text {
	color: #aed13b;
}

/* COMMENTS */
.comment {
	position: relative;
}
.comment .comment {
	margin-left: 45px;
}
.comment .comment:before {
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	border-left: 1px solid #dfe5e8;
	left: -45px;
}
.comment-inner {
	position: relative;
	margin-bottom: 40px;
}
.comment .comment >.comment-inner:before {
	content: '';
	position: absolute;
	top: 50%;
	border-top: 1px solid #dfe5e8;
	left: -45px;
	width: 45px;
}
.comments-title,
.comment-reply-title {
	text-transform: uppercase;
	margin-top: 0;
}
.comments-title:before {
	content: '\e63d';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 48px;
	margin-right: 30px;
	vertical-align: top;
	color: #d8e5e7;
}
.comment-reply-title:before {
content: '\e63e';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 48px;
	margin-right: 25px;
	vertical-align: top;
	color: #ff758f;
}
.comments-area {
	margin-top: 100px;
}
.comment-list {
	margin-bottom: 110px;
}
.comment-author a {
	color: inherit;
}
.comment-author .avatar {
	float: left;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.comment.depth-1 > .comment-inner .comment-author .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	margin-top: 0;
	margin-bottom: 0;
}
.comment-author .fn {
	margin: 10px 0 0;
}
.comment-meta {
	font-size: 89.5%;
	line-height: 1.421;
	display: inline-block;
}
.comment-text,
.comment-awaiting-moderation {
	padding-top: 20px;
}
.comment-inner {
	padding: 33px 40px 45px;
}
.comment-header {
	display: table;
	width: 100%;
}
.comment-header .comment-author,
.comment-header .reply {
	display: table-cell;
}
.comment-header .reply {
	text-align: right;
}
.comment-header .reply .gem-button {
	margin-right: 0;
}
.comment-form-fields {
	margin-bottom: 42px;
}
.comment-form label {
	display: block;
	margin-bottom: 15px;
}
.comment-form .comment-form-fields input[type="text"],
.comment-form .comment-form-fields input[type="email"] {
	width: 100%;
	line-height: 48px;
	height: 50px;
	padding: 0 50px 0 20px;
}
.comment-form .comment-author-input,
.comment-form .comment-email-input,
.comment-form .comment-url-input {
	position: relative;
}
.comment-form .comment-author-input:after,
.comment-form .comment-email-input:after,
.comment-form .comment-url-input:after {
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
	position: absolute;
	top: 0;
	right: 21px;
	font-size: 24px;
	width: 50px;
	height: 100%;
	line-height: 50px;
	text-align: center;
}
.comment-form .comment-author-input:after {
	content: '\e63b';
}
.comment-form .comment-email-input:after {
	content: '\e643';
}
.comment-form .comment-url-input:after {
	content: '\e623';
}
.comment-form #comment {
	width: 100%;
	padding: 15px 20px;
}

.comment-form .comment-form-cookies-consent {
	display: flex;
	margin-top: 36px;
	align-items: flex-start;
}

.comment-form .comment-form-cookies-consent label {
	margin: 0;
	line-height: 26px;
}

.comment-form .comment-form-cookies-consent .checkbox-sign {
	flex: 0 0 auto;
	margin-right: 10px;
	width: 26px;
	height: 26px;
	border: 1px solid #dfe5e8;
}

.comment-form .comment-form-cookies-consent .checkbox-sign.checked:before {
	font-size: 21px;
	margin-left: -10px;
}

/* BLOG POST */


.blog-post-image img {
	display: inline-block;
}

/* RELATED POSTS */
.post-related-posts h2 {
	padding-right: 100px;
}
.post-related-posts h2:before {
	content: '\e63c';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 48px;
	margin-right: 25px;
	vertical-align: top;
	color: #72cfce;
}

/* NIVO SLIDER */

.gem-nivoslider .nivo-directionNav a {
	top: 0;
}
.gem-mini-pagination.nivo-controlNav {
	bottom: 0;
	position: absolute;
	width: 100%;
	z-index: 10;
}
.gem-nivoslider .nivo-caption {
	padding: 0;
	overflow: visible;
	opacity: 1;
	position: relative;
	width: 1212px;
	margin: 0 auto;
}
.gem-nivoslider .caption-left,
.gem-nivoslider .caption-right {
	position: absolute;
	bottom: 50px;
	max-width: 70%;
}
.gem-nivoslider .caption-left {
	left: 20px;
}
.gem-nivoslider .caption-right {
	right: 20px;
}
@media only screen and (max-width:1439px) {
	.gem-nivoslider .nivo-caption {
		width: auto;
	}
	.gem-nivoslider .caption-left {
		left: 155px;
	}
	.gem-nivoslider .caption-right {
		right: 155px;
	}
}
@media only screen and (max-width:799px) {
	.gem-nivoslider .caption-left {
		left: 80px;
	}
	.gem-nivoslider .caption-right {
		right: 80px;
	}
	.gem-nivoslider .nivo-directionNav {
		display: none;
	}
	.gem-nivoslider .gem-mini-pagination.nivo-controlNav {
		display: none;
	}
}
.gem-nivoslider .caption-left .gem-nivoslider-title,
.gem-nivoslider .caption-left .gem-nivoslider-description {
	float: left;
	text-align: left;
}
.gem-nivoslider .caption-right .gem-nivoslider-title,
.gem-nivoslider .caption-right .gem-nivoslider-description {
	float: right;
	text-align: right;
}
.gem-nivoslider .nivo-caption .gem-nivoslider-title {
	background-color: rgba(56, 65, 84, 0.8);
	color: #ffffff;
	padding: 10px 15px;
}
.gem-nivoslider .nivo-caption .gem-nivoslider-description {
	background-color: rgba(0, 0, 0, 0.7);
	color: #ffffff;
	padding: 0 10px;
}

/* SCROLL TOP BUTTON */

.scroll-top-button {
	position: fixed;
	right: var(--thegem-scroll-top-button-right, 40px);
	bottom: var(--thegem-scroll-top-button-bottom, 35px);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	font-size: 0;
	line-height: 0;
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
.scroll-top-button.visible {
	opacity: 0.5;
	visibility: visible;
}
.scroll-top-button:before {
	font-family: var(--thegem-scroll-top-button-icon-pack, 'thegem-icons');
	font-style: normal;
	content: var(--thegem-scroll-top-button-icon, '\e633');
	font-size: var(--thegem-scroll-top-button-icon-size, 24px);
	font-weight: normal;
	display: inline-block;
	vertical-align: top;
	width: var(--thegem-scroll-top-button-size, 50px);
	height: var(--thegem-scroll-top-button-size, 50px);
	text-align: center;
	line-height: var(--thegem-scroll-top-button-size, 50px);
	background-color: var(--thegem-scroll-top-button-background-color, #06060f);
	color: var(--thegem-scroll-top-button-arrow-color, #99a9b5);
	border-style: var(--thegem-scroll-top-button-border-style, none);
	border-width: var(--thegem-scroll-top-button-border, 0);
	border-color: var(--thegem-scroll-top-button-border-color, transparent);
	border-radius: var(--thegem-scroll-top-button-border-radius, transparent);
	box-sizing: content-box;
}
.scroll-top-button:hover:before {
	background-color: var(--thegem-scroll-top-button-hover-background-color, #06060f);
	color: var(--thegem-scroll-top-button-hover-arrow-color, #99a9b5);
	border-color: var(--thegem-scroll-top-button-hover-border-color, transparent);
}
@media (max-width: 768px) {
	.scroll-top-button {
		right: 0;
		bottom: 35px;
	}
}

/* SCROLL TO CONTENT */

.scroll-to-content {
	position: fixed;
	left: 15px;
	top: -1000em;
	z-index: 1000;
	padding: 10px 20px;
	background: #ffffff;
	box-shadow: 0 0 5px #555555;
	color: #000000;
}
.scroll-to-content:focus-visible {
	top: 15px;
}

#page .wpb_start_animation.wpb_left-to-right,
#page .wpb_start_animation.wpb_right-to-left,
#page .wpb_start_animation.wpb_top-to-bottom,
#page .wpb_start_animation.wpb_bottom-to-top,
#page .wpb_start_animation.wpb_appear {
	-webkit-animation-duration: 1.4s;
	-moz-animation-duration: 1.4s;
	-o-animation-duration: 1.4s;
	animation-duration: 1.4s;
}

.wpb_text_column.wpb_animate_when_almost_visible.wpb_fade {
	opacity: 1;
}

body .wpb_text_column.wpb_animate_when_almost_visible.wpb_fade {
	opacity: 0;
}



body .lazy-loading .wpb_text_column.wpb_animate_when_almost_visible.wpb_fade {
	opacity: 1;
}

/* STICKY */

.gem-sticky-block > * {
	left: auto;
	right: auto;
}

.gem-sticky-block .sticky-fixed {
	position: fixed;
}

/* WP REQUIRED */

.wp-caption {
	margin-bottom: 1.6em;
	max-width: 100%;
}
.wp-caption-text {
	font-size: 89.5%;
	padding: 0.5em 0;
}
.sticky {}
.gallery-caption {
	font-size: 89.5%;
	padding: 0.5em 0;
}
.bypostauthor {}
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin-right: auto;
	margin-left: auto;
}
blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
	margin: 0 1.6em 1.6em 0;
}
blockquote.alignright,
.wp-caption.alignright,
img.alignright {
	margin: 0 0 1.6em 1.6em;
}
blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
	clear: both;
	margin-top: 0;
	margin-bottom: 1.6em;
}
.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.aligncenter {
	margin-bottom: 1.2em;
}

body .blog {
	margin-bottom: 20px;
	padding-bottom: 30px;
}

*:not(.gem-table):not(.cart_totals) > table:not(.shop_table):not(.group_table):not(.variations) td,
*:not(.gem-table):not(.cart_totals) > table:not(.shop_table):not(.group_table):not(.variations) th {
	padding: 5px 10px;
}

.page-links a {
	display: inline-block;
	position: relative;
}
.page-links span:not(.page-links-title) {
	display: inline-block;
	width: 1.421em;
	text-align: center;
}

/* WP Galleries */

.gallery {
	margin-bottom: 1.6em;
}
.gallery .gallery-item {
	display: inline-block;
	padding: 1.79104477%;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-icon img {
	margin: 0 auto;
}
.gallery-caption {
	display: block;
	padding: 0.5em 0;
}
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

.gem-slideshow.gem-slideshow-with-preloader > .rs-p-wp-fix + * {
	height: 400px;
}
.gem-slideshow {
	overflow: hidden;
}
.rs-p-wp-fix {
	margin: 0;
}

/* SEARCH */

.block-content .search-form-block .searchform #s {
	width: 100%;
}
.gem-search-form {
	margin: 50px 0;
}
.gem-search-form form {
	position: relative;
}
.gem-search-form .search-field {
	width: 100%;
	height: 50px;
	line-height: 50px;
	padding: 0 50px 0 25px;
	border-radius: 25px;
	border: 0 none;
	box-sizing: border-box;
	outline: 0 none;
}
.gem-search-form .search-submit {
	position: absolute;
	top: 0;
	height: 50px;
	line-height: 50px;
	width: 50px;
	text-align: center;
	right: 0;
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	background: transparent;
	border: 0 none;
}
.gem-search-form .search-submit:after {
	content: '\e612';

}

/* VIDEO BACKGROUND */

.gem-video-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.gem-video-background ~ * {
	position: relative;
	z-index: 1;
}
.gem-video-background-inner,
.gem-video-background-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.gem-video-background-inner iframe,
.gem-video-background-inner video {
	width: 100%;
	height: 100%;
}

/* LIKES */

.zilla-likes {
	margin-bottom: 0 !important;
	color: inherit;
	display: inline-block;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.zilla-likes:hover {
	color: #3c3950;
}
.zilla-likes:before {
	content: '\e641';
	display: inline-block;
	font-family: "thegem-icons";
	font-style: normal;
	font-size: 16px;
	font-weight: normal;
	line-height: inherit;
	margin-right: 6px;
	vertical-align: top;
}
.zilla-likes .zilla-likes-count {
	display: inline-block;
	vertical-align: top;
}

/* POST-FORMAT */
#fancybox-video {
	width: 80%;
	height: 80%;
	overflow: hidden;
	padding: 0;
}
#fancybox-video .mejs-container,
#fancybox-video .mejs-container video {
	width: 100% !important;
	height: 100% !important;
}
.video-block {
	position: relative;
	background-color: #e3ebe8;
}
.video-block > iframe,
.video-block > video,
.video-block > .preloader,
.video-block > .mejs-video {
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	left: 0;
	top: 0;
}
.fancybox-inner .video-block {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.fancybox-inner .video-block .mejs-video {
	width: 100% !important;
	height: 100% !important;
}
.audio-block audio {
	display: block;
	width: 100%;
}
.blog-style-timeline article.format-quote .post-featured-content {
	margin-bottom: 15px;
}
.post-featured-content blockquote {
	background: #212331;
	color: #ffffff;
	text-align: left;
	position: relative;
	padding: 40px 60px 35px;
}
.blog-style-4x .post-featured-content blockquote,
.blog-style-justified-4x .post-featured-content blockquote {
	padding-left: 30px;
	padding-right: 30px;
}
.post-featured-content blockquote:after {
	display: none;
}
.post-featured-content blockquote .quote-author {
	float: left;
	color: #ffffff;
	font-size: 13px;
}
.post-featured-content blockquote .quote-link {
	float: right;
	color: #ffffff;
}
.post-featured-content blockquote .quote-link a{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.post-featured-content blockquote .quote-link:after {
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	content: '\e632';
	font-size: 40px;
}

.fullwidth-block.fullwidth-block-parallax-fixed .fullwidth-block-background {
	background-attachment: fixed;
}

.fullwidth-block.fullwidth-block-parallax-horizontal .fullwidth-block-background {
	background-position: center center;
}

.fullwidth-block .fullwidth-block-background,
.page-title-parallax-background-wrap .page-title-parallax-background,
.page-title-background-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.page-title-background-overlay ~ * {
	position: relative;
	z-index: 1;
}

.fullwidth-block .fullwidth-block-parallax-overlay,
.fullwidth-block.fullwidth-block-parallax-vertical .fullwidth-block-parallax-overlay,
.fullwidth-block.fullwidth-block-parallax-horizontal .fullwidth-block-parallax-overlay,
.fullwidth-block.fullwidth-block-parallax-fixed .fullwidth-block-parallax-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
}

.fullwidth-block .fullwidth-block-inner {
	position: relative;
	z-index: 3;
}

.fullwidth-block.fullwidth-block-parallax-vertical,
.page-title-parallax-background-wrap {
	position: relative;
	overflow: hidden;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.fullwidth-block.fullwidth-block-parallax-vertical .fullwidth-block-background,
.page-title-parallax-background-wrap .page-title-parallax-background {
	background-repeat: no-repeat;
	background-size: cover;
	will-change: transform;
}

.page-title-parallax-background-wrap .page-title-title,
.page-title-parallax-background-wrap .container  {
	position: relative;
	z-index: 10;
}

.portfolio .item-animations-not-inited,
.gallery-set .item-animations-not-inited,
.blog:not(.home) .item-animations-not-inited,
.products-categories-widget .item-animations-not-inited {
	visibility: hidden !important;
	/*opacity: 0 !important;

	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	transition: none !important;

	transform: none !important;*/
}

@media (max-width: 767px) {
	.portfolio:not(.enable-animation-mobile) .item-animations-not-inited {
		visibility: visible !important;
	}

	.portfolio.extended-products-grid:not(.enable-animation-mobile) {
		opacity: 1 !important;
	}
}

.item-animation-flip .item-animations-inited {
	-webkit-transform-origin: 0% 0%;
	-moz-transform-origin: 0% 0%;
	transform-origin: 0% 0%;

	-webkit-transform-style: preserve-3d;
}

.item-animation-flip .portfolio-set,
.item-animation-flip .gallery-set,
.blog.item-animation-flip,
.item-animation-scale .portfolio-set,
.item-animation-scale .gallery-set,
.blog.item-animation-scale,
.item-animation-fall-perspective .portfolio-set,
.item-animation-fall-perspective .gallery-set,
.blog.item-animation-fall-perspective {
	webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

/* HALF WIDTH MAP */

@media (min-width: 1212px) {
	body:not(.compose-mode) #page .half-width-map {
		position: absolute;
		top: 0;
		height: 100%;
		left: 50%;
		right: 0;
		width: auto;
	}
	body:not(.compose-mode) #page .half-width-map *:not(.map-locker):not(.gem-map-with-text-content) {
		height: 100%;
	}
	body:not(.compose-mode) #page .half-width-map .vc_column-inner {
		padding: 0;
	}
	body:not(.compose-mode) #page .half-width-map .gem-map-with-text-map .wpb_gmaps_widget {
		margin-top: 0;
		top: -60px;
		position: absolute;
		height: auto;
		bottom: 0;
		width: 100%;
	}
	body:not(.compose-mode) #page .half-width-map .wpb_gmaps_widget.vc_map_responsive .wpb_map_wraper {
		padding: 0;
	}
	body:not(.compose-mode) #page .half-width-map iframe + .map-locker {
		position: absolute;
		right: 0;
		bottom: 15px;
	}
}

/* CUSTOM SHOP MAILCHIMP FORM */
.mailchimp-form-1 .yikes-easy-mc-email,
.mailchimp-form-3 .yikes-easy-mc-email{
	background: #fff !important;
	padding-left: 20px !important;
	border: 1px solid #dfe5e8 !important;
}
.mailchimp-form-1 .yikes-easy-mc-submit-button,
.mailchimp-form-3 .yikes-easy-mc-submit-button{
	border: none;
	color: #fff;
	font-family: 'Montserrat';
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}
.mailchimp-form-1 .yikes-easy-mc-submit-button{
	background: #9ccc65;
}
.mailchimp-form-3 .yikes-easy-mc-submit-button{
	background: #2c2e3d;
}

/* PAGE SCROLLER */
.scroller-block {
	height: 100vh;
}

.page-scroller #main {
	-o-transition: 1s ease;
	-webkit-transition: 1s ease;
	transition: 1s ease;
}
.page-scroller #main.page-scroller-no-animate {
	-o-transition: 0s ease;
	-webkit-transition: 0s ease;
	transition: 0s ease;
}

.page-scroller .scroller-block {
	height: 100vh;
	margin-top: 0;
	margin-bottom: 0;
	overflow: hidden;
}
.page-scroller-nav-pane {
	position: fixed;
	right: 50px;
	top: 50%;
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 10;
}
.page-scroller-nav-item {
	display: block;
	height: 10px;
	width: 10px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	margin: 10px 0;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.page-scroller-nav-item.active {
	background-color: #ffffff;
}

@media (min-width: 768px) {
	body.page-scroller:not(.compose-mode),
	body.page-scroller:not(.compose-mode) #page {
		height: 100vh;
		position: relative;
	}
	body.page-scroller:not(.page-scroller-mobile) #page #site-header.fixed.shrink {
		background-color: transparent;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
}

@media (max-width: 767px) {
	body.page-scroller.page-scroller-mobile:not(.compose-mode),
	body.page-scroller.page-scroller-mobile:not(.compose-mode) #page {
		height: 100vh;
		position: relative;
	}
	body.page-scroller:not(.page-scroller-mobile) {
		overflow: visible !important;
	}
	.page-scroller:not(.page-scroller-mobile) #main {
		-webkit-transform: none !important;
		transform: none !important;
		-o-transition: 0s ease;
		-webkit-transition: 0s ease;
		transition: 0s ease;
	}
	.page-scroller:not(.page-scroller-mobile) .scroller-block {
		height: auto;
	}
	.page-scroller:not(.page-scroller-mobile) .page-scroller-nav-pane {
		display: none;
	}
	.page-scroller-nav-pane {
		right: 15px;
	}
}

/* SEPARATOR WITH TEXT RESPONSIVE */
@media (max-width: 500px){

	.vc_sep_holder {
		display: none;
		text-align: left;
	}
	body .vc_separator.vc_separator_align_center h4 {
		padding: 0;
	}
}
.vc_separator.vc_separator_align_center > * {
	padding: 0 .7em;
}
/* SEPARATOR WITH TEXT RESPONSIVE */


/* NEWSLETTER FORM */
.yikes-easy-mc-form .yikes-easy-mc-submit-button.gem-button {
	padding: 0 10px;
	margin-left: 0;
	margin-right: 0;
}
form.yikes-easy-mc-form input[type="email"],
form.yikes-easy-mc-form input[type="number"],
form.yikes-easy-mc-form input[type="text"],
form.yikes-easy-mc-form input[type="url"],
form.yikes-easy-mc-form select,
form.yikes-easy-mc-form textarea {
	border-width: 1px;
	padding: 0 10px;
	height: 40px;
}

form.yikes-easy-mc-form input[type="email"]:focus,
form.yikes-easy-mc-form input[type="number"]:focus,
form.yikes-easy-mc-form input[type="text"]:focus,
form.yikes-easy-mc-form input[type="url"]:focus,
form.yikes-easy-mc-form select:focus,
form.yikes-easy-mc-form textarea:focus {
	outline: 0 none;
}

.yikes-easy-mc-form .yikes-easy-mc-form input[type="email"],
.yikes-easy-mc-form .yikes-easy-mc-form input[type="number"],
.yikes-easy-mc-form .yikes-easy-mc-form input[type="text"],
.yikes-easy-mc-form .yikes-easy-mc-form input[type="url"],
.yikes-easy-mc-form .yikes-easy-mc-form select {
	border-width: 1px;
}

form.mc4wp-form input[type='submit'] {
	position: relative;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	border: 0 none;
	vertical-align: middle;
	height: 40px;
	line-height: 40px;
	padding: 0 17px;
	font-size: 14px;
	margin: 0;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 3px;
}

form.mc4wp-form input[type="text"],
form.mc4wp-form input[type="email"],
form.mc4wp-form input[type="tel"],
form.mc4wp-form input[type="number"],
form.mc4wp-form input[type="url"],
form.mc4wp-form input[type="date"],
form.mc4wp-form textarea {
	line-height: inherit;
}
form.mc4wp-form input[type="text"],
form.mc4wp-form input[type="email"],
form.mc4wp-form input[type="tel"],
form.mc4wp-form input[type="number"],
form.mc4wp-form input[type="url"],
form.mc4wp-form input[type="date"] {
	height: 40px;
}
#mc4wp_email {
	height: 41px;
}

.agency-sparta-style.yikes-easy-mc-form label.label-inline{ width: 69%; padding-right: 5%; }
.agency-sparta-style.yikes-easy-mc-form label.label-inline > input{ background: #f0f3f2; height: 45px; border-radius: 3px; border: none; padding-left: 20px; }
.agency-sparta-style.yikes-easy-mc-form label.label-inline > input:focus{ outline: none !important; }
.yikes-mailchimp-container .agency-sparta-style .submit-button-inline-label{ width: 17%; min-width: 235px; }
.yikes-mailchimp-container .agency-sparta-style .submit-button-inline-label > span { display: none; }
.yikes-mailchimp-container .agency-sparta-style .submit-button-inline-label .yikes-easy-mc-submit-button{ background: #212331; color: #fff; height: 45px; border: none; border-radius: 3px; font-family: 'Montserrat';  font-weight: 700;  text-transform: uppercase; padding-left: 50px; position: relative; }
.yikes-mailchimp-container .agency-sparta-style .yikes-easy-mc-submit-button:before{ content: "\e626"; font-family: "thegem-icons"; font-style: normal; font-size: 24px; font-weight: normal;  color: #fff; position: absolute; left: 50%; margin-left: -69px; text-align: center; }
@media(max-width: 1200px){
	body .agency-sparta-style.yikes-easy-mc-form label.label-inline{ width: 100%; padding-right: 0; }
	body .yikes-mailchimp-container .agency-sparta-style .submit-button-inline-label{ width: 100%; }
}

.splash-shop-3-style.yikes-easy-mc-form label.label-inline{ width: 350px; padding-right: 20px;}
.splash-shop-3-style.yikes-easy-mc-form label.label-inline > input{ background: #f0f3f2; height: 45px; border: none; padding-left: 20px; }
.yikes-mailchimp-container .splash-shop-3-style.yikes-easy-mc-form label.label-inline > input:focus{ outline: none !important; }
.yikes-mailchimp-container .splash-shop-3-style .submit-button-inline-label{width: 155px; min-width: 155px; height: 45px; }
.yikes-mailchimp-container .splash-shop-3-style .submit-button-inline-label > span { display: none; }
.yikes-mailchimp-container .splash-shop-3-style .submit-button-inline-label .yikes-easy-mc-submit-button{ background: #d7b398; color: #fff; border: none; font-family: 'Montserrat';  font-weight: 700;  text-transform: uppercase; padding-right: 30px; padding-left: 30px; position: relative; border-radius: 0; height: 45px;}
.yikes-mailchimp-container .splash-shop-3-style button { transition: all 0.3s; -webkit-transition: all 0.3s;}
.yikes-mailchimp-container .splash-shop-3-style button:hover { background: #212121 !important; color: #fff !important; transition: all 0.3s; -webkit-transition: all 0.3s;}
@media(max-width: 1200px){
	body .splash-shop-3-style.yikes-easy-mc-form label.label-inline{ width: 100%; padding-right: 0; }
	body .yikes-mailchimp-container .splash-shop-3-style .submit-button-inline-label{ width: 100%; }
}

.splash-shop-4-style.yikes-easy-mc-form label.label-inline{ width: 350px; padding-right: 20px;}
.splash-shop-4-style.yikes-easy-mc-form label.label-inline > input{ color: #fff; background: transparent; height: 45px; border: none; padding-left: 0; border-bottom: 1px solid #575c6c;}
.yikes-mailchimp-container .splash-shop-4-style.yikes-easy-mc-form label.label-inline > input:focus{ outline: none !important; }
.yikes-mailchimp-container .splash-shop-4-style .submit-button-inline-label{width: 155px; min-width: 155px; height: 45px; }
.yikes-mailchimp-container .splash-shop-4-style .submit-button-inline-label > span { display: none; }
.yikes-mailchimp-container .splash-shop-4-style .submit-button-inline-label .yikes-easy-mc-submit-button{ background: #f44236; color: #fff; border: none; font-family: 'Montserrat';  font-weight: 700;  text-transform: uppercase; padding-right: 30px; padding-left: 30px; position: relative; border-radius: 0; height: 45px; }
.yikes-mailchimp-container .splash-shop-4-style button { transition: all 0.3s; -webkit-transition: all 0.3s;}
.yikes-mailchimp-container .splash-shop-4-style button:hover { background: #212121; color: #fff; transition: all 0.3s; -webkit-transition: all 0.3s;}
@media(max-width: 1200px){
	body .splash-shop-4-style.yikes-easy-mc-form label.label-inline{ width: 100%; padding-right: 0; }
	body .yikes-mailchimp-container .splash-shop-4-style .submit-button-inline-label{ width: 100%; }
}

.wpcf7 .contact-form-style-5 .wpcf7-form-control-wrap{
	width: 100%;
}
.wpcf7 .contact-form-style-5 input,
.wpcf7 .contact-form-style-5 textarea{
	width: 100%;
}
form .wpcf7-spinner {
	margin: 0 auto;
	height: 0;
}
form.submitting .wpcf7-spinner {
	height: 24px;
}

.yikes-easy-mc-form.app-sparta-style {
	position: relative;
}
.yikes-easy-mc-form.app-sparta-style.yikes-easy-mc-form   .yikes-easy-mc-submit-button {
	position: absolute;
	top: 11px;
	width: 164px;
	right: 11px;
	margin-top: 2px;
	padding: 13px;
	background-color: #008aff;
	border: medium none;
	border-radius: 10px;
	font-family: Montserrat;
	font-size: 16px;
	font-weight: 700;
	line-height: 26px;
	color: #ffffff;
	text-transform: uppercase;
}
.yikes-easy-mc-form.app-sparta-style.yikes-easy-mc-form .yikes-easy-mc-submit-button:hover {
	background-color: #00BCD4;
}
.yikes-easy-mc-form.app-sparta-style.yikes-easy-mc-form  .yikes-easy-mc-email {
	background: transparent;
	border: 1px solid #4f4f5b;
	border-radius: 12px;
	overflow: hidden;
	padding: 25px;
	margin-bottom: 0;
	color: #fff;
}

.scrolldown {
	position: absolute;
	left: 50%;
	margin-left: -2vw;
	z-index:9;
	bottom: 2vh;
	background-color: rgba(22,195,241,0.8);
	padding: 20px 30px !important;
	border-radius: 50%;
	text-align: center;
}

.scrolldown img{
	-webkit-animation: scrollmove 1s infinite ease;
	-moz-animation: scrollmove 1s infinite ease;
	animation: scrollmove 1s infinite ease;
	width: 1.5vw;
	margin-top: 7px !important;
}
.scrolldown .mouse-2 {
	-webkit-animation: scrollmove 1s infinite ease;
	-moz-animation: scrollmove 1s infinite ease;
	animation: scrollmove 1s infinite ease;
	width: 1.5vw;
	background-image: url("https://shop.ariservices.co/wp-content/themes/thegem/../images/mouse_icon.png");
	display: block;
	font-size: 0;
	height: 43px;
	background-repeat: no-repeat;
}


@-moz-keyframes scrollmove {
	0% {
		-moz-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
	50% {
		-moz-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-moz-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
}
@-webkit-keyframes scrollmove {
	0% {
		-moz-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
	50% {
		-moz-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-moz-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
}
@keyframes scrollmove {
	0% {
		-moz-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
	50% {
		-moz-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-moz-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
}


body div.wpcf7-response-output {
	margin: 2em 0 1em;

}

.thegem__footer-widget-class__thegem {
	width: 100%;
	padding: 0 21px;
}
@media (min-width: 768px) {
	.thegem__footer-widget-class__thegem {
		width: 50%;
	}
}
@media (min-width: 982px) {
	.thegem__footer-widget-class__thegem {
		width: 25%;
	}
}

img[class*='wp-image-'] {
	max-width: 100%;
	height: auto;
}

/* MIXED SEARCH */

h3.search-grid-title {
	display: flex;
	align-items: center;
	color: var(--thegem-to-body-color, #5f727f);
	margin-top: 2.26em;
}
h3.search-grid-title span {
	flex: none;
	margin: 0 20px;
}
h3.search-grid-title:before, h3.search-grid-title:after {
	content: '';
	width: 50%;
	height: 1px;
	background: var(--thegem-to-body-color, #5f727f);
}

/* SEACRH FORM NOTHING FOUND */

body.search .page-title-block {
	padding-top: 45px;
	padding-bottom: 20px;
}
body.search .page-title-block .page-title-icon {
	margin-top: -10px;
}
body.search .page-title-block:not(.with-excerpt) .page-title-title {
	padding-bottom: 60px;
}
body.search .page-title-block .page-title-icon + .page-title-title {
	padding-bottom: 0;
}

.page-content.content-none .searchform > table td {
	border: 0 none !important;
	padding: 0 !important;
}
.page-content.content-none .searchform > table td:first-child {
	width: 99%;
}
.page-content.content-none .searchform input {
	width: 100%;
	height: 50px;
	line-height: 48px;
	border-radius: 3px;
}

.page-content.content-none .searchform .searchform-submit .gem-button {
	margin-left: 30px;
	margin-right: 0;
}

.parallax-footer-inited {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: -1;
}
#page.layout-boxed .parallax-footer-inited {
	width: 1260px;
	max-width: 100%;
	left: auto;
}
/*@media (max-width: 768px) {
	body #site-header-wrapper.sticky-header-on-mobile {
		width: 100%;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 1000;
	}
}*/

.disable-hover {
	pointer-events: none !important;
}

.diagram-line-timer-element {
	font-size: 0;
	line-height: 1;
	height: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	opacity: 0;
	-moz-transition: opacity 0.15s;
	-ms-transition: opacity 0.15s;
	-o-transition: opacity 0.15s;
	-webkit-transition: opacity 0.15s;
	transition: opacity 0.15s;
}

.diagram-line-timer-element.start-timer {
	-webkit-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	opacity: 1;
}

body .fancybox-caption-wrap,
body .fancybox-caption {
	padding: 0;
	background: none;
}

body .fancybox-caption-wrap .fancybox-caption {
	border: 0;
}

.fancybox-slide.thegem-fancybox-video .fancybox-content {
	max-width: 80%;
	max-height: 80%;
	margin: 0;
}

.gem-instagram-gallery .overlay .links .caption {
	word-break: break-all;
}

.gem-instagram-gallery.portfolio.hover-default .portfolio-item .image .overlay .links a.icon {
	margin: 0 10px;
}

.vc_column-inner.sticky > .wpb_wrapper{
	position: fixed;
}
.vc_column-inner[data-sticky-offset] > .wpb_wrapper,
.thegem-template-wrapper .vc_column-inner[data-sticky-offset] > .wpb_wrapper {
	height: auto;
}

.fancybox-slide.fancybox-popup-wrapper {
	display: flex;
	overflow-x: hidden;
}

.fancybox-content.gem-popup {
	margin: auto;
	overflow: visible;
}

.thegem-template-popup .container {
	width: 100%;
}

.fancybox-container.popup-overlay .fancybox-bg {
	transition-timing-function: linear;
}

/* Give */
body:not(.vc_editor) .give-form-hidden {
	display: none;
}

body .give-modal .mfp-content {
	background: #edeef0;
	max-width: 763px;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

.give-modal [id*=give-form] fieldset {
	max-width: 390px;
	margin: 0 auto;
}

.give-modal form.give-form .form-row {
	float: none;
	width: 100%;
}

.give-modal form.give-form .form-row .give-label {
	display: none;
}

.give-modal form[id*=give-form] .form-row input[type="text"],
.give-modal form[id*=give-form] .form-row input[type="email"] {
	height: 50px;
	background: #ffffff;
	border: 0;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.page-additional-menu .page-additional-menu-close {
	position: fixed;
	right: 37px;
	top: 37px;
	z-index: 999999;
	opacity: 0;
	transition: opacity 0.5s;
	visibility: hidden;
}

body.admin-bar .page-additional-menu .page-additional-menu-close {
	top: 67px;
}

.page-additional-menu .primary-navigation.overlay-active .page-additional-menu-close {
	visibility: visible;
	opacity: 1;
}

.page-additional-menu .primary-navigation.overlay-active.close .page-additional-menu-close {
	opacity: 0;
}

@media (max-width: 768px) {
	.page-additional-menu .page-additional-menu-close {
		right: 37px;
		top: 17px;
	}

	body.admin-bar .page-additional-menu .page-additional-menu-close {
		top: 67px;
	}
}

.portfolio .caption {
	display: block;
}

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

.gem-icon .gem-icon-style-gradient .back-angle {
	width: 100%;
	text-align: center;
}
.gem-map-with-text{
	margin-bottom: 0;
}

/* GUTENBERG */
.wp-block-cover-image.alignleft {
	margin-right: 1.5em;
}
.wp-block-cover-image.alignright {
	margin-left: 1.5em;
}
.wp-block-image figure {
	margin-top: 1em;
	margin-bottom: 1em;
}
.wp-block-columns {
	margin: 0 -21px;
}
.wp-block-column {
	padding: 0 21px;
}
.wp-block-audio audio {
	width: 100%;
}
blockquote.wp-block-quote {
	padding: 50px 20px 50px 50px;
}
blockquote.wp-block-quote cite {
	font: inherit;
	font-size: 0.8em;
}
blockquote.wp-block-quote.is-large,
blockquote.wp-block-quote.is-style-large {
	padding: 50px 20px 50px 50px;
	margin: 20px 0;
	text-transform: uppercase;
}
blockquote.wp-block-quote.is-large cite,
blockquote.wp-block-quote.is-style-large cite,
blockquote.wp-block-quote.is-large p,
blockquote.wp-block-quote.is-style-large p,
.wp-block-pullquote blockquote cite,
.wp-block-pullquote blockquote p,
.wp-block-pullquote.alignleft blockquote cite,
.wp-block-pullquote.alignleft blockquote p,
.wp-block-pullquote.alignright blockquote cite,
.wp-block-pullquote.alignright blockquote p {
	font: inherit;
}
blockquote.wp-block-quote.is-large cite,
blockquote.wp-block-quote.is-style-large cite,
.wp-block-pullquote blockquote cite,
.wp-block-pullquote.alignleft blockquote cite,
.wp-block-pullquote.alignright blockquote cite {
	font-size: 0.85em;
}
figure.wp-block-pullquote {
	border: 1px solid #c9d2d9;
	padding: 0;
	overflow: hidden;
}
.wp-block-pullquote blockquote {
	background: transparent;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 45px;
	padding-bottom: 50px;
}
figure.wp-block-pullquote blockquote {
	font-size: 24px;
	line-height: 37px;
	font-weight: 100;
}
.wp-block-pullquote blockquote:after {
	color: #e7ebee;
}
.wp-block-pullquote.alignleft blockquote:after,
.wp-block-pullquote.alignright blockquote:after {
	right: 20px;
}
body .wp-block-button .wp-block-button__link {
	position: relative;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	border: 0 none;
	vertical-align: middle;
	height: 40px;
	line-height: 40px;
	padding: 0 17px;
	font-size: 14px;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 3px;
}
body .vc-hoverbox-wrapper .vc-hoverbox {
	cursor:pointer;
}
/*body  .vc-hoverbox-block, .vc-hoverbox-block-inner * {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}*/
#lazy-loading-point {
	font-size: 0;
	line-height: 1;
	height: 0;
	overflow: hidden;
}
.quickfinder-item-box {
	position: relative;
	padding: 50px;
}
.quickfinder-item.col-md-2 .quickfinder-item-box,
.quickfinder-item.col-md-3 .quickfinder-item-box {
	padding-left: 25px;
	padding-right: 25px;
}

/* CUSTOM TITLE */
.page-title-block.custom-page-title,
body.search .page-title-block.custom-page-title {
	padding: 0;
	text-align: left;
}

.custom-title-background.fullwidth-block-parallax-vertical .fullwidth-block-background {
	background-attachment: scroll;
}

.custom-title-background.fullwidth-block-parallax-fixed .fullwidth-block-background {
	background-attachment: fixed;
}

.custom-title-background.fullwidth-block-parallax-horizontal .fullwidth-block-background {
	background-position: center center;
}

.custom-title-background .fullwidth-block-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.custom-title-background .gem-video-background {
	z-index: 2;
}

.custom-title-background.fullwidth-block-parallax-vertical .fullwidth-block-parallax-overlay,
.custom-title-background.fullwidth-block-parallax-horizontal .fullwidth-block-parallax-overlay,
.custom-title-background.fullwidth-block-parallax-fixed .fullwidth-block-parallax-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
}

.custom-title-background .fullwidth-block-inner {
	position: relative;
	z-index: 3;
}

.custom-title-icon.custom-title-icon-alignment-center {
	text-align: center;
}
.custom-title-icon.custom-title-icon-alignment-left {
	float: left;
}
.custom-title-icon.custom-title-icon-alignment-right {
	float: right;
}
.page-title-block.custom-page-title .breadcrumbs-container {
	z-index: 3;
}
.page-title-block.custom-page-title .page-title-alignment-center {
	text-align: center;
}

.custom-page-title .vc_row[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
	overflow: visible;
}
.custom-page-title .vc_row.vc_row_thegem-ken-burns[data-vc-full-width] {
	overflow: hidden;
}
body.single-thegem_templates.compose-mode .custom-page-title .vc_row[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.custom-page-title .vc_row[data-vc-full-width] .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.custom-page-title .vc_row[data-vc-full-width] .container {
		width: 100%;
	}
}



body.thegem-effects-disabled #page .lazy-loading .wpb_text_column.wpb_animate_when_almost_visible.wpb_fade {
	opacity: 1;
}

body.thegem-effects-disabled #page .quickfinder-item-image .quickfinder-item-image-content.lazy-loading-item {
	transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
}
body.thegem-effects-disabled #page .lazy-loading,
body.thegem-effects-disabled #page .lazy-loading:not(.lazy-loading-not-hide) {
	visibility: visible;
}
body.thegem-effects-disabled #page .wpb_text_column.wpb_animate_when_almost_visible.wpb_fade {
	opacity: 1;
}

body.thegem-effects-disabled #page .wpb_start_animation.wpb_left-to-right,
body.thegem-effects-disabled #page .wpb_start_animation.wpb_right-to-left,
body.thegem-effects-disabled #page .wpb_start_animation.wpb_top-to-bottom,
body.thegem-effects-disabled #page .wpb_start_animation.wpb_bottom-to-top,
body.thegem-effects-disabled #page .wpb_start_animation.wpb_appear {
	-webkit-animation: none;
	-moz-animation: none;
	-o-animation: none;
	animation: none;
}

body.thegem-effects-disabled #page .wpb_animate_when_almost_visible.wpb_left-to-right,
body.thegem-effects-disabled #page .wpb_animate_when_almost_visible.wpb_right-to-left,
body.thegem-effects-disabled #page .wpb_animate_when_almost_visible.wpb_top-to-bottom,
body.thegem-effects-disabled #page .wpb_animate_when_almost_visible.wpb_bottom-to-top,
body.thegem-effects-disabled #page .wpb_animate_when_almost_visible.wpb_appear {
	opacity: 1;
}

body.thegem-fp:not(.vc_editor) {
	overflow: hidden;
}

.thegem-heading.main-menu-item {
	color: var(--thegem-to-h6-color);
}

.thegem-heading.with-label-icon a,
.thegem-heading.with-label-icon .label-icon-wrap {
	display: inline-flex;
	align-items: center;
}

.thegem-heading > span:not(.thegem-heading-rotating),
.thegem-heading > a,
.thegem-heading span.colored:not(.thegem-heading-rotating) {
	transition: color 0.3s;
}

.thegem-heading .icon {
	display: block;
	margin-right: 12px;
	text-align: center;
	flex: none;
	transition: color 0.3s;
}

.thegem-heading .icon i {
	display: block;
	font-size: inherit;
}

.thegem-heading .label {
	color: #ffffff;
	background-color: var(--thegem-to-styled-color1, #00BCD4);
	font-size: var(--thegem-to-h6-font-size-tiny, 7px);
	line-height: 1;
	padding: 0.3em 0.5em;
	margin: 0 0 0 10px;
	vertical-align: middle;
}

.megamenu-template.template-framing-border {
	border: 1px solid var(--thegem-to-box-border-color);
}

.megamenu-template.template-framing-border.template-width-fullwidth {
	border-left: none;
	border-right: none;
}

.megamenu-template.template-framing-small-shadow {
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
}

.megamenu-template.template-framing-big-shadow {
	box-shadow: 0px 12px 35px 0px rgba(0, 0, 0, 0.1);
}

.thegem-template-loop-item .gem-button {
	margin: 0;
}

.portfolio.loop-equal-height .portfolio-item > .thegem-template-loop-item,
.portfolio.loop-equal-height .portfolio-item > .thegem-template-loop-item > .vc_row {
	height: 100%;
}
.portfolio-item > .thegem-template-loop-item {
	text-align: left;
}

.thegem-wp-hook-alignment-left {
	text-align: left;
}
.thegem-wp-hook-alignment-center {
	text-align: center;
}
.thegem-wp-hook-alignment-right {
	text-align: right;
}

/*
Theme Name: TheGem Child
Description: Multi-Purpose Wordpress Theme
Author: Codex Themes.
Theme URI: http://codex-themes.com/thegem/
Author URI: http://codex-themes.com/thegem/
Template: thegem
Version: 1.0
Tags: one-column, two-columns, left-sidebar, right-sidebar, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-images, flexible-header, full-width-template, theme-options, translation-ready, dark, light
License: GNU General Public License
License URI: license.txt
*/


.widget-area .widget + .widget {
	margin-top: 68px;
}
.widget-area  .widget-title {
	margin-bottom: 28px;
}
.wpb_widgetised_column .widget + .widget {
	margin-top: 50px;
}
.sidebar .widget:first-child .widget-title {
	margin-top: 0px;
}
.wpb_widgetised_column .widget:first-child .widget-title {
	margin-top: 0px;
}

.img-responsive.img-circle.wp-post-image {
	margin: 0 auto;
}
.widget_contacts .widget-title {
	margin-bottom: 21px;
}
.widget .gem-dummy {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	width: 72px;
	height: 72px;
	float: left;
}
.widget  .gem-teams-image .gem-dummy {
	background-image:url("https://shop.ariservices.co/wp-content/themes/thegem/css/../images/default-avatar.png") ;
	background-size: 100%;
}
.widget  .gem-teams-image .gem-dummy:after {
	display: none;
}
.widget .gem-teams-image .gem-dummy {
	height: 128px;
	width: 128px;
	margin-left: 66px;
}
#colophon .widget .gem-dummy {
	background-color: #394050;
}
#colophon .widget .gem-dummy:after{
	color: #212331;
}
.widget .gem-dummy:after{
	content: '\e642';
	font-family: thegem-icons;
	font-style: normal;
	font-size: 24px;
	position: absolute;
	margin-top: 24px;
	margin-left: 25px;
	font-weight: normal;

}



.Custom_Popular_Posts  .widget-title,
.Custom_Recent_Posts .widget-title,
.widget_meta .widget-title,
.thegem_news .widget-title,
.widget_recent_entries .widget-title{
	margin-bottom: 17px;
}

/*Arhives*/
.widget_archive li{
	list-style: none;
	padding-top: 12px;
	padding-left: 16px;
	padding-bottom: 12px;
}
.widget_archive li:nth-child(odd){
	background-color: #f7f9f8;
}

.widget_archive ul{
	padding-left: 0px;
}

.widget_archive a {
	text-transform: capitalize;
}

/*Arhives*/



/*Categories*/
.widget_recent_comments ul,
.widget_pages ul,
.widget_meta ul,
.widget_rss ul,
.widget_archive ul,
.diagram-item {
	margin-bottom: 0px;
}

/*Categories*/

/*Contacts*/
.gem-contacts-icon {
	float: left;
	font-family: thegem-icons;
	font-style: normal;
	font-size: 20px;
}
.gem-contacts-item:before {
	vertical-align: top;
}
.gem-contacts-text {
	padding-left: 32px;
}
.sidebar .widget .gem-contacts-item,
.wpb_widgetised_column .gem-contacts-item {
	padding: 5px 0;
}
.sidebar .widget  .gem-contacts-item.gem-contacts-address {
	padding-bottom: 33px;
}
.sidebar .widget  .gem-contacts-item.gem-contacts-phone {
	padding-top: 28px;
}
.gem-contacts-item.gem-contacts-phone a,
#colophon .widget .gem-contacts-item.gem-contacts-phone a {
	color: inherit;
}
.site-footer .gem-contacts-email:before {
	font-family: thegem-icons;
	font-style: normal;
	content: '\e607';
	float: left;
	font-size: 20px;
	float: left;
	margin-top: 2px;
	padding-right: 15px;
	font-weight: normal;
}
.site-footer .gem-contacts-phone:before {
	font-family: thegem-icons;
	font-style: normal;
	content: '\e625';
	font-size: 20px;
	font-weight: normal;
}
.site-footer .gem-contacts-address:before {
	font-family: thegem-icons;
	font-style: normal;
	content: '\e604';
	font-size: 20px;
	font-weight: normal;
}
.site-footer .gem-contacts-fax:before {
	font-family: thegem-icons;
	font-style: normal;
	content: '\e606';
	float: left;
	font-size: 12px;
	padding-right: 15px;
	font-weight: normal;
}
.site-footer .gem-contacts-item {
	padding: 5px 0;
}
body .widget .gem-contacts-address:before,
body .wpb_widgetised_column .gem-contacts-address:before{
	font-family: thegem-icons;
	font-style: normal;
	content: '\e604';
	font-size: 16px;
	display: inline-block;
	padding-right: 8px;
	font-weight: normal;
}
body .widget .gem-contacts-phone:before,
body .wpb_widgetised_column .gem-contacts-phone:before{
	font-family: thegem-icons;
	font-style: normal;
	content: '\e625';
	font-size: 16px;
	display: inline-block;
	padding-right: 12px;
	font-weight: normal;
}
body .widget .gem-contacts-fax:before,
body .wpb_widgetised_column .gem-contacts-fax:before{
	font-family: thegem-icons;
	font-style: normal;
	content: '\e606';
	float: left;
	display: inline-block;
	padding-right: 12px;
	font-size: 16px;
	font-weight: normal;
}
body .widget .gem-contacts-email:before,
body .wpb_widgetised_column .gem-contacts-email:before{
	font-family: thegem-icons;
	font-style: normal;
	content: '\e607';
	float: left;
	display: inline-block;
	padding-right: 12px;
	font-size: 16px;
	margin-top: -1px;
	font-weight: normal;
}
body .widget .gem-contacts-website:before,
body .wpb_widgetised_column .gem-contacts-website:before {
	font-family: thegem-icons;
	font-style: normal;
	content: '\e608';
	float: left;
	display: inline-block;
	padding-right: 12px;
	font-size: 16px;
}

/*Contacts*/



/*Custom pp posts*/
.gem-pp-posts-image img {
	border-radius: 50%;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	width: 72px;
	height: 72px;
	max-width: none;
}

.gem-pp-posts-text {
	display: table-cell;
	vertical-align: middle;

}
.gem-pp-posts-date {
	padding-left: 12px;
	display: block;
	margin-top: -2px;
}
.gem-pp-posts-item {
	display: block;
	margin-left: 12px;
}
.gem-pp-posts-image {
	display: table-cell;
}
.gem-pp-posts-news {
	padding-top: 14px;
	padding-bottom: 14px;
}
.gem-pp-posts-item > a {
	display: block;
}
.gem-pp-posts {
	padding-bottom: 14px;
	padding-top: 14px;
}
.gem-post-thumb img{
	width: 71px;
	height: 71px;
	position: absolute;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius:  50%;
	left: 0px;
	top: 0;
}
.isotope-inner {
	padding-left: 90px;
}
.gem-post-thumb-gem-dummy {
	height: 71px;
	left: 0px;
	position: absolute;
	top: 0;
	width: 71px;
}

.footer-widget-area .gem-pp-posts-image a:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	opacity: 0;
}
.footer-widget-area .gem-pp-posts-image a:hover:after {
	opacity: 1;
}
.footer-widget-area .gem-pp-posts-image {
	position: relative;
}
.post-related-posts .gem-dummy:after {
	content: '\e642';
	font-family: thegem-icons;
	font-style: normal;
	font-size: 24px;
	position: absolute;
	margin-top: 24px;
	margin-left: 25px;
	font-weight: normal;
}

.post-related-posts .gem-dummy:after {
	content: '\e642';
	font-family: thegem-icons;
	font-style: normal;
	font-size: 24px;
	position: absolute;
	margin-top: 24px;
	margin-left: 25px;
	font-weight: normal;
}

/*Custom pp posts*/
.gem-post-thumb-conteiner {
	display: table-cell;
	vertical-align: middle;
}
.site-footer .gem-pp-posts {
	padding-bottom: 12px;
}

/*Custom rp posts*/
.footer-widget-area .posts {
	margin-top: -19px;
}
.Custom_Recent_Posts ul li:last-child,
.Custom_Popular_Posts ul li:last-child{
	border-bottom: none;
}


.widget_recent_entries li {
	padding-bottom: 25px;
	padding-top: 20px;
	list-style: none;
}
.widget_recent_entries li:last-child {
	border-bottom: none;
}
.widget_recent_entries ul {
	margin: 0;
	padding: 0;
}
.widget_recent_entries .post-date {
	clear: both;
	display: block;
}

.site-footer .Custom_Recent_Posts .gem-pp-posts:last-child{

	border-bottom: none;
}

/*Custom rp posts*/

/*Calendar*/
.widget_calendar td a {
	display: block;
	font-weight: normal;
}
.widget_calendar table {
	text-align: center;
	width: 100%;
}
.widget_calendar #prev > a {
	float: left;
	padding-left: 12px;
}
.widget_calendar #next > a {
	float: right;
	padding-right: 12px;
}
.widget_calendar a {
	font-weight: bold;
}
.calendar_wrap {
	padding-bottom: 20px;
}
.widget_calendar caption {
	padding-bottom: 1px;
	padding-top: 1px;
}
.widget_calendar table {
	margin-left: 9%;
	text-align: center;
	width: 83%;
}
.widget_calendar td {
	padding: 2px;
	padding-bottom: 4px;
	padding-top: 4px;
}
.widget_calendar tfoot td.pad {
	display: none;
}
#wp-calendar caption:after {
	position: absolute;
	content: '';
	height: 39px;
	width: 39px;
	top: 0;
	background-color: #b9c7ca;
	right: 0;
}
#wp-calendar #prev a {
	position: absolute;
	left: 0;
	height: 39px;
	width: 39px;
	top: 0;
	padding-top: 7px;
	padding-bottom: 7px;
}
#wp-calendar #prev a:after {
	content: '\e637';
	font-family: thegem-icons;
	font-style: normal;
	width: 38px;
	height: 38px;
	position: absolute;
	left: 0px;
	top: 0;
	line-height: 1.6;
	font-size: 24px;
}
#wp-calendar #next a:after {
	content:'\e638';
	font-family: thegem-icons;
	font-style: normal;
	top: 0px;
	position: absolute;
	right: 0px;
	width: 38px;
	line-height: 1.6;
	height: 38px;
	font-size: 24px;
}
#wp-calendar #next a {
	position: absolute;
	right: 0;
	top: 0;
	height: 39px;
	width: 39px;
	padding-top: 7px;
	padding-bottom: 7px;
}
#wp-calendar caption {
	margin-bottom: 34px;
	letter-spacing: 0.08em;
}
.calendar_wrap {
	position: relative;
}
.wp-calendar-nav{
	position: absolute;
	display: flex;
	justify-content: space-between;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 39px;
	font-size: 0;
}
.wp-calendar-nav .wp-calendar-nav-prev,
.wp-calendar-nav .wp-calendar-nav-next{
	position: relative;
	display: flex;
	width: 39px;
	height: 39px;
}
.wp-calendar-nav .wp-calendar-nav-prev{
	margin-right: auto;
	justify-content: flex-start;
}
.wp-calendar-nav .wp-calendar-nav-next{
	margin-left: auto;
	justify-content: flex-end;
}
.wp-calendar-nav .wp-calendar-nav-prev a,
.wp-calendar-nav .wp-calendar-nav-next a{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 39px;
	height: 39px;
	background-color: #b9c7ca;
}
.wp-calendar-nav .wp-calendar-nav-prev a:after,
.wp-calendar-nav .wp-calendar-nav-next a:after{
	content: '\e637';
	font-family: 'thegem-icons';
	position: absolute;
	font-size: 24px;
	font-weight: normal;
}
.wp-calendar-nav .wp-calendar-nav-next a:after{
	transform: scale(-1, 1);
}
/*calendar*/

/*Diagram*/
.widget_diagram .skill-line {
	margin-right: 0px;
}
.widget_diagram .skill-amount {
	margin-top: -29px;
	font-weight: bold;
}
.widget_diagram .skill-element + .skill-element {
	margin: 18px 0 0;
}
/*Diagram*/

/*Facebook*/
.widget.Facebook div {
	padding: 20px;
}
/*Facebook*/

/*Flikr*/
.flickr-item {
	float: left;
	padding: 0 10px 10px 0;
}
.flickr-item img {
	width: 80px;
	height: 80px;
}
.widget.Custom_Flickr .flickr {
	list-style: none outside none;
	margin: 0 -10px 0 0;
	padding: 0;
}
.widget .flickr-item a,
.wpb_widgetised_column .widget .flickr-item a{
	position: relative;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
}
.widget .flickr-item a:before,
.wpb_widgetised_column .widget .flickr-item a:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	z-index: 5;
}
.widget .flickr-item a:hover:before,
.wpb_widgetised_column .widget .flickr-item a:hover:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	z-index: 5;
}
.widget .flickr-item a img,
.wpb_widgetised_column .widget .flickr-item a img{
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
}
.widget .flickr-item a:hover img,
.wpb_widgetised_column .widget .flickr-item a:hover img{
}
/*Flikr*/



/*MC form*/
.mc-form {
	position: relative;
	padding-top: 5px;
}
.wpb_widgetised_column .mc4wp-form-fields {
	padding: 29px;
	margin-top: 29px;
}
.sidebar .mc4wp-form-fields {
	padding: 29px;
	margin-top: 29px;
}
.widget_mc4wp_widget form {
	padding: 25px 23px 10px 26px;
}
.widget_mc4wp_widget p {
	line-height: 1.6;
}
#mc4wp_submit {
	width: 40px;
	font-weight: normal;
	height: 41px;
	position: absolute;
	right: 0;
	padding: 0;
	top: -8px;
	margin: 13px 0 0 0;
	font-size: 24px;
	font-family: thegem-icons;
	font-style: normal;
	border-radius: 0px;
}


.mc4wp-alert {
	margin-top: 40px;
}
.gem-button-footer {
	border: medium none;
	margin-top: 21px;
}

.mc4wp-form input[type='email'] {
	padding: 7px 46px 7px 9px;
	width: 100%;
}



/*MC form*/

/*meta*/
.widget_meta li,
.widget_rss li {
	list-style: none;
	padding-top: 12px;
	padding-bottom: 12px;
	text-transform: capitalize;
}
.widget_meta li:last-child,
.widget_rss li:last-child,
.site-footer .widget_meta li:last-child,
.site-footer .widget_rss li:last-child{
	border-bottom: none;
}
.widget_meta ul,
.widget_rss ul{
	padding-left: 0px;
}
.widget_meta li:before,
.widget_rss li:before {
	content: '\e601';
	font-family: 'thegem-icons';
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	padding-right: 8px;
	vertical-align: middle;
	position: relative;
	top: -2px;
}
.widget_meta abbr,
.widget_rss abbr {
	border-bottom: none;
}
/*meta*/

/*News*/
.gem-latest-news-image img {
	height: 72px;
	width: 72px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	webkit-border-radius: 50%;
}
.gem-latest-news-image {
	display: table-cell;
}
.gem-latest-news-title {
	display: table-cell;
	padding-left: 15px;
	vertical-align: middle;
}
.gem-latest-news {
	display: inline-block;
	padding-bottom: 17px;
	padding-top: 11px;
	width: 100%;
}
.gem-latest-news-title > span {
	display: block;
	margin-top: -1px;
}
.gem-latest-news-title > a {
	display: block;
}
.gem-latest-news-image .gem-dummy {
	height: 72px;
	width: 72px;
}
.widget .thegem_news,
.wpb_widgetised_column .widget .thegem_news{
	line-height: 1.5;
}

.gem-latest-news:first-child {
	padding-bottom: 16px;
	padding-top: 16px;
}
.gem-latest-news-image .gem-dummy {
	display: block;
}
/*News*/

/*Picturebox*/
.gem-picturebox-text {
	padding-top: 11px;
}
.gem-picturebox p{
	padding: 12px 26px 30px;
}
.gem-picturebox-image {
	text-align: center;
}
/*Picturebox*/

/*Proect-info*/
.project_info-item-style-2 .project_info-item:last-child  .value {
	border-bottom: medium none;
}
.project_info-item-style-1 .project_info-item .icon{

	display: inline-block;
	font-size: 24px;
	border-radius: 0px;
	width: 50px;
	height: 50px;
	text-align: center;
	color: #FFFFFF !important;
	background-color: transparent;
	vertical-align: middle;
	line-height: 2.1;

}

.project_info-item-style-1 .project_info-item .title {
	text-transform: uppercase;
}
.project_info-item-style-1  .project_info-item-title {
	vertical-align: top;
	padding-left: 16px;
}
.project_info-item-style-1  .project_info-item.iconed {
	padding: 28px;
	padding-left: 0;
}
.project_info-item-style-1  .project_info-item.iconed:last-child {
	border-bottom: none;
}
.widget.project_info  .widget-title,
.widget.project_info  .widget-title {
	margin-bottom: 32px;
}

.project_info-item-style-1 .project_info-item .value {
	padding-top: 0;
	padding-right: 18px;
	margin-top: -22px;
	padding-left: 71px;
}


.project_info-item-style-2 {
	padding-bottom: 20px;
}
.project_info-item-style-2 .icon {
	font-size: 24px;
	margin-right:16px;
	float: left;
	margin-top: 2px;
}

.project_info-item-style-2 .project_info-item {
	padding: 28px;
	margin-bottom: 17px;
}

.project_info-item-style-2  .project_info-item.iconed:last-child {
	margin-bottom: -24px;
}
.project_info-item-style-2 .icon{
	background-color: transparent !important;
}
.project_info-item-style-2 .value {
	padding-left: 42px;
	padding-top: 18px;
}
/*Proect-info*/

/*Recent commets*/
.widget_recent_comments ul {
	padding-left: 0px;
	margin-top: 30px;
}
.widget_recent_comments li {
	list-style: none;
	border-radius: 60px;
	border-bottom-left-radius: 0;
	padding-top:  14px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;



}
.widget_recent_comments li:first-child {
	border-top: none;
}
.widget_recent_comments li:before {
	clear: both;
	content: '\e639';
	float: left;
	font-family: 'thegem-icons';
	font-size: 24px;
	font-weight: normal;
	font-style: normal;
	height: 100%;
	padding-right: 14px;
	position: relative;
	top: 0;
	padding-bottom: 7px;
	width: 100%;
	text-align: center;
	vertical-align: middle;
}

.widget_recent_entries .post-date {
	margin-left: 48px;
}
.site-footer .widget_recent_entries li:first-child {
	background: none;
}
/*Recent commets*/

/*search*/

.widget .searchform input,
.wpb_widgetised_column .widget .searchform input{
	padding: 6px 10px;
}

.widget .searchform,
.wpb_widgetised_column .widget .searchform{
	text-align: center;
	position: relative;
}
.searchform button
{
	border: none;
}

.widget.widget_search .gem-button {
	font-size: 0;
	position: absolute;
	top: 0;
	right: 0;
	width: 43px;
	height: 38px;
	margin: 0;
	background-color: transparent !important;
}

.widget.widget_search .gem-button:before {
	content: '\e612';
	position: absolute;
	font-size: 24px;
	font-family: thegem-icons;
	font-style: normal;
	left: 26%;
	font-weight: 100;
	margin-top: -3px;
	margin: 0;

}
.widget.widget_search input {
	width: 100%;
	padding-right: 50px;

}
/*search*/

/*tags*/
.tagcloud a:hover {
	text-decoration: none;
}
body .widget .tagcloud a {
	margin-right: 4px;
	text-decoration: none;
	margin-bottom: 6px;
	padding: 2px 9px;
	display: inline-block;
	font-size: 16px !important;
}
/*tags*/

/*teams*/
.gem-client-item {
	float: left;
	padding-right: 30px;
	padding-left: 30px;
}
.gem_client-carousel {
	position: relative;
}
.gem-client-prev {
	margin-left: 0%;
}
.gem-client-next {
	margin-right: 0%;
}
.clients_title {
	text-align: center;
}
.clients_description {
	text-align: center;
}
.gem_client-carousel {
	margin-top: 25px;
}
.gem-client-prev {
	width: 10%;
}
.gem-client-next {
	width: 10%;
}
.gem-client-carousel-item-wrap {
	padding: 0 10%;
}
.widget .gem-teams-item {
	text-align: center;
	padding-top: 11px;
	padding-bottom: 40px;
}
.widget .gem-teams-name {
	padding-top: 56px;
}
.widget .gem-teams-position {
	font-size: 89.5%;
}

.widget .gem-teams-phone {
	text-transform: uppercase;
	padding-top: 28px;
	padding-bottom: 16px;
}
.widget .gem-teams-image img {
	margin: 0 auto;
	text-align: center;
	width: 128px;
}
.widget .gem-teams-image {
	display: block;
	padding-top: 50px;
	padding-bottom: 7px;
	height: 160px;
}
.widget  .team-person-email a:before{
	font-size: 34px;
}

.widget-teams {
	border-top-right-radius: 122px;
	border-top-left-radius: 122px;
	overflow: hidden;
}




.widget .team-person-email {
	font-size: 0px;
}
.widget .gem-teams-mail {
	padding-top: 3px;
}
.widget .gem-teams-mail a:before {
	padding-right: 10px;
	content: '\e607';
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 22px;
	font-weight: normal;
	vertical-align: bottom;
}
.widget .gem-teams-name {
	padding-bottom: 8px;
}
.gem-team-style-horizontal .team-person-phone {
	padding-bottom: 0px;
	margin-bottom: -11px;
}
.gem-team-style-horizontal .team-person-phone:before {
	font-size: 22px;
}
.gem-team-style-horizontal .team-person-info {
	display: table-cell;
	vertical-align: middle;
	padding-left: 15px;
}
.gem-team-style-horizontal .team-person-image {
	display: table-cell;
	vertical-align: middle;
}
.gem-team-style-horizontal .team-person{
	padding-left: 30px;
	padding-top: 45px;
}

.gem-team-style-rounded .team-person-phone {
	padding-bottom: 8px;
	padding-top: 8px;
}
.gem-team-style-vertical .team-person-phone  {
	padding-bottom: 5px;
}
.fullwidth-block .container .gem-client-carousel-item-wrap {
	padding: 0 0%;
}
/*teams*/

/*twitter*/
.widget_tweets .twitter-box .jtwt_tweet {
	padding-bottom: 24px;
	padding-top: 27px;

}
body .widget_tweets .twitter-box  .jtwt_tweet:first-child {
	padding-top: 0px;
	background: none;
}
.jtwt_tweet:before {
	content: '\e611';
	float: left;
	font-family: thegem-icons;
	font-style: normal;
	font-size: 18px;
	padding-right: 8px;
	position: relative;
	top: 0px;

}
.jtwt_date {
	padding-bottom: 12px;
	font-weight: 300;
}
.twitter-box .jtwt_tweet {
	padding: 0 0 0 0px;
}


.tweets-container {
	padding-top: 14px;
}
.jtwt_tweet_text {
	margin-bottom: 0px;
}
/*twitter*/


/*text*/
.gem-textbox-content blockquote {
	font-size: 116%;
}
.gem-textbox-content > blockquote {
	padding: 14px;
}
/*text*/

/*woocommerece widgets*/
.widget-area .gem-products-image,
.shop-widget-area .gem-products-image{
	display: table-cell;
}
ul.product_list_widget .gem-products-image a {
	position: relative;
	float: left;
}
ul.product_list_widget .gem-products-image a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	opacity: 0;
	z-index: 1;
	background: rgba(0, 188, 212, 0.3);
}
ul.product_list_widget .gem-products-image a:hover:before {
	opacity: 1;
}
.widget-area .gem-products-content,
.shop-widget-area .gem-products-content {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

.shop-widget-area .product_list_widget > li {
	display: inline-block;
	width: 100%;
}
.woocommerce ul.product_list_widget li img,
.woocommerce-page ul.product_list_widget li img {
	height: auto;
	width: 80px;
	max-width: none;
}
.woocommerce .widget_recently_viewed_products ul.product_list_widget li img,
.woocommerce-page .widget_recently_viewed_products ul.product_list_widget li img {
	height: 70px;
	width: 70px;
}
.shop-widget-area .gem-products-content {
	border-image: none;
	padding-bottom: 11px;
	position: relative;
	margin-left: 70px;
	padding-left: 18px;
}
ul.product_list_widget li {
	margin-bottom: 15px;
	display: inline-block;
	padding: 0;
	width: 100%;
}
.widget ul.product_list_widget li,
.widget_shopping_cart_content ul.product_list_widget li {
	overflow: visible;
}
ul.product_list_widget li:last-child {
	margin-bottom: 0px;
}
.widget .gem-products-content{
	margin-left: 70px;
	min-height: 70px;
	padding-left: 18px;
}
.widget .catalog-view .gem-products-content {
	padding-bottom: 0;
}
.shop-widget-area .gem-products-title {
	padding-top: 5px;
}
.widget .catalog-view .gem-products-title {
	padding-top: 0;
}
.shop-widget-area .gem-products-price {
	margin-bottom: -5px;
}
.widget .gem-products-price {
	font-size: 20px;
	line-height: 1.5em;
}
.woocommerce ul.product_list_widget li img,
.woocommerce-page ul.product_list_widget li img {
	margin-left: 0;
	box-shadow: none;
}
.shop-widget-area .gem-products-title a {
	padding-right: 80px;
}
.product_list_widget del {
	display: none;
}

.shop-widget-area .gem-products-rating {
	display: block;
	position: absolute;
	top: 13px;
	right: 20px;
}
.widget .catalog-view .gem-products-rating {
	position: relative;
	margin-top: 5px;
	top: auto;
	right: auto;
}
.widget .product_list_widget .onsale,
.shop-widget-area .onsale {
	position: absolute;
	width: 24px;
	height: 24px;
	line-height: 26px;
	border-radius: 50%;
	top: 13px;
	left: 68px;
	font-size: 0;
	z-index: 1;
	text-align: center;
	font-weight: inherit;
}
.widget .product_list_widget .onsale:after,
.shop-widget-area .onsale:after {
	content: '%';
	font-size: 16px;
}
.woocommerce .gem-products-price ins {
	font-size: 20px;
	text-decoration: none;
}
.gem-products-price > span {
	font-size: 20px;
	text-decoration: none;
}

.widget_product_search .screen-reader-text{
	display: none;
}
.widget_product_search input.search-field {
	width: 100%;
	padding-right: 35px;
	padding-left: 10px;
	box-sizing: border-box;
	line-height: 36px;
	border-width: 2px;
	border-radius: 2px;
}
.widget_product_search form {
	position: relative;
}
.widget_product_search button {
	background-color: transparent;
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 24px;
	height: 36px;
	line-height: 36px;
	position: absolute;
	right: 2px;
	top: 2px;
	width: 36px;
	border: 0 none;
	background: transparent;

}

.widget_recent_reviews .product_list_widget li {
	padding-top: 5px;
}
.widget_recent_reviews .product_list_widget .attachment-woocommerce_thumbnail {
	float: left;
	margin-right: 10px;
	z-index: 100;
	margin-top: -5px;
}

.widget_black_studio_tinymce .wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required{
	width: 100%;
}
.widget_black_studio_tinymce .wpcf7-form-control.wpcf7-text {
	width: 100%;
}
.widget_black_studio_tinymce .wpcf7-form-control.wpcf7-textarea {
	width: 100%;
}
.widget_black_studio_tinymce div.wpcf7-mail-sent-ok {
	border: 2px solid #ACDD8B;
	margin: 0px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.widget_black_studio_tinymce div.wpcf7-validation-errors {
	border: 2px solid #D55271;
	margin: 0px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.widget_price_filter .price_label {
	float: right;
}
.widget_price_filter .price_slider_amount .button {
	float: left;
	margin: 0;
}
.widget_price_filter .price_slider_amount {
	padding-top: 15px;
}
.widget_price_filter .widget-title {
	padding-bottom: 15px;
}
.woocommerce .widget_price_filter .price_slider,
.woocommerce-page .widget_price_filter .price_slider {
	margin-bottom: 1em
}
.widget_price_filter .price_slider_wrapper .price_slider {
	height: 6px;
	overflow: visible;
	position: relative;
}
.widget_price_filter .price_slider .ui-slider-range {
	height: 100%;
	position: absolute;
}
.widget_price_filter .price_slider .ui-slider-handle {
	position: absolute;
	width: 14px;
	height: 14px;
	top: 50%;
	margin-top: -7px;
	margin-left: -7px;
	border-radius: 50%;
}
.widget-area .woocommerce .star-rating, .woocommerce-page .star-rating {
	float: none;
}
.widget-area .reviewer {
	display: block;
}
.widget-area .attachment-shop_thumbnail.wp-post-image,
.widget-area .attachment-woocommerce_thumbnail.wp-post-image {
	float: left;
}
.gem-products-content {
	margin-left: 80px;
}

.product_list_widget li{
	position: relative;
}
.widget-area .woocommerce-placeholder{
	float: left;
}
.widget_recent_entries ul li:last-child {
	border-bottom: 0 none;
}
.widget_recent_entries ul li:before {
	content: '\e63a';
	float: left;
	font-family: "thegem-icons";
	font-style: normal;
	font-size: 24px;
	padding-left: 22px;
	padding-right: 6px;
	position: absolute;
	padding-top: 11px;
}
.widget_recent_entries ul li a {
	display: block;
	margin-left: 66px;
	padding-top: 9px;
	padding-right: 24px;
}
.widget_shopping_cart .variation {
	display: none;
}
.attachment-shop_thumbnail {
	width: 70px;
	height: 70px;
}
.widget .product-dummy,
.wpb_widgetised_column .widget .product-dummy{
	background-size: cover;
	float: left;
	margin-left: -1px;
	margin-top: -1px;
	width: 100%;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
.widget .product-dummy-wrapper,
.wpb_widgetised_column .widget .product-dummy-wrapper{
	width: 70px;
	height: 70px;
	float: left;
}
.widget_recent_reviews .product-dummy-wrapper{
	margin-left: -1px;
	border-color: transparent;
}
.widget_shopping_cart .product_list_widget li a .product-dummy-wrapper {
	padding: 0px;

}

.shop-widget-area .widget .product-dummy {
	margin-left: -3px;
}
.widget_shopping_cart_content ul.product_list_widget > li img {
	margin: -1px;
}
/*.widget_product_search form {
	padding-top: 5px;
}*/
.customer_details > dt {
	font-weight: bold;
	float: left;
	padding-right: 10px;
}
.order-actions .gem-button {
	margin-top: 0px;
}
.widget_layered_nav .combobox-wrapper {
	height: 40px;
	border-width: 2px;
}
.widget_layered_nav .combobox-wrapper .combobox-text {
	line-height: 36px;
}
.widget_layered_nav .combobox-wrapper .combobox-button {
	width: 36px;
	height: 36px;
}
.widget_layered_nav ul{
	margin: 0;
	padding: 0;
}
.widget_layered_nav ul li {
	list-style: none;
	padding: 12px 0 12px 15px;
}
.widget_layered_nav ul li:first-child {
	border-top: 0 none;
}
.widget_layered_nav ul li a:before {
	content: '';
	font-family: "thegem-icons";
	font-style: normal;
	font-weight: normal;
	margin-right: 8px;
	position: relative;
	width: 14px;
	height: 14px;
	line-height: 12px;
	font-size: 12px;
	border: 1px solid currentColor;
	display: inline-block;
	vertical-align: middle;
}

.widget_layered_nav ul li.chosen a:before {
	content: '\e614';
}

.widget_layered_nav ul li small:before {
	content: "(";
}
.widget_layered_nav ul li small:after {
	content: ")";
}
.adress-button {
	margin-bottom: 30px;
}

/*woocommerece widgets*/

/*pricing tables*/


/*pricing tables*/



/*top-area*/
.top-area-contacts .gem-contacts {
	margin: 0 -17px;
}
.top-area-contacts .gem-contacts-item {
	display: inline-block;
	font-size: 14px;
	padding: 0 17px;
	line-height: 30px;
	vertical-align: top;
}
.top-area-contacts .gem-contacts-item.gem-contacts-phone a {
	color: inherit;
}
.top-area-contacts .gem-contacts-address:before,
.top-area-contacts .gem-contacts-phone:before,
.top-area-contacts .gem-contacts-fax:before,
.top-area-contacts .gem-contacts-email:before,
.top-area-contacts .gem-contacts-website:before {
	font-family: 'thegem-icons';
	font-style: normal;
	margin-right: 0.33em;
	vertical-align: top;
	display: inline-block;
	width: 16px;
	font-size: 16px;
	text-align: center;
}
.top-area-contacts .gem-contacts-address:before {
	content: '\e604';
}
.top-area-contacts .gem-contacts-phone:before {
	content: '\e625';
}
.top-area-contacts .gem-contacts-fax:before {
	content: '\e606';
}
.top-area-contacts .gem-contacts-email:before {
	content: '\e607';
}

/*top-area*/

/*styles*/
.gem_accordion_header {
	outline: none;
}
.gem-news-carousel-wrap .gem-news-pagination{
	padding-top: 35px;
}
.gem_accordion_header {
	cursor: pointer;
}
.gem_accordion_header a {
	text-transform: uppercase;
}

.post-author-block {
	display: block;
	padding: 40px;
}
.post-author-avatar {
	display: block;
	float: left;
}
a.post-author-avatar:after {
	display: block;
	text-align: center;
	content: '\e607';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 32px;
	padding-top: 25px;
}
.post-author-avatar img {
	border-radius: 50%;
	-webkit-border-radius:  50%;
	-moz-border-radius: 50%;

}
.post-author-info {
	margin-left: 135px;
	margin-top: 0;
}
.post-author-info .name {
	margin-top: 0;
}

.post-author-posts-link a:before {
	content: '\e601';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	vertical-align: top;
	margin-right: 5px;
	font-size: 16px;
}
@media (max-width: 599px) {
	.post-author-avatar {
		float: none;
		margin-bottom: 25px
	}
	.post-author-info {
		margin-left: 0;
		margin-top: 0;
	}
	.post-author-info .name {
		margin-top: 0;
	}
	a.post-author-avatar:after {
		display: inline-block;
		vertical-align: middle;
		padding-top: 0;
		padding-left: 25px;
		line-height: 1;
	}
}

.post-author-info .date {
	margin-left: 23px;
}
.post-author-description {
	margin-bottom: 20px;
}

.read-more-link {
	float: right;
}
.byline {
	padding: 0 5px;
}
.entry-meta {
	margin-bottom: 8px;
}
.sep {
	margin: 0 6px;
	border-left: 1px solid #d4dee1;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
}
.read-more-link:before {
	content: '\e601';
	font-family: thegem-icons;
	font-style: normal;
	padding-left: -20px;
	font-size: 14px;
}

/* DEFAULT BLOG */
.post-title a {
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.post-meta-right {
	float: right;
	font-size: 16px;
	white-space: nowrap;
}
.single-post-meta .post-meta-right {
	margin-left: 100px;
}
.post-meta-right > * {
	display: inline-block;
	vertical-align: top;
}
.post-meta-right > .sep {
	vertical-align: middle;
}
.comments-link a {
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.comments-link a:before {
	content: '\e61e';
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 14px;
	font-weight: normal;
	margin-right: 6px;
	display: inline-block;
	line-height: inherit;
}
.post-footer-sharing {
	display: inline-block;
	position: relative;
}
.sharing-popup {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	bottom: 50px;
	border-radius: 25px;
	height: 50px;
	line-height: 50px;
	padding: 0 25px;
	white-space: nowrap;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	left: -20px;
	margin-bottom: -10px;
}
.sharing-popup .socials {
	line-height: 16px;
	height: 16px;
	margin-top: 17px;
}
article.sticky .sharing-popup {
	bottom: 70px;
	left: -10px;
}
.sharing-popup .sharing-styled-arrow {
	position: absolute;
	bottom: -100px;
	height: 100px;
	width: 50px;
	left: -30px;
	-ms-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 100% 0;
	-o-transform: rotate(-90deg) scale(0.3);
	-ms-transform: rotate(-90deg) scale(0.3);
	-moz-transform: rotate(-90deg) scale(0.3);
	transform: rotate(-90deg) scale(0.3);
}
.sharing-popup.active {
	visibility: visible;
	opacity: 1;
	margin-bottom: 0;
}
.sharing-popup a.socials-item {
	vertical-align: top;
}
.post-footer-sharing .gem-button-container .gem-button {
	margin-right: 13px;
}
.post-footer .gem-button-container .gem-button {
	margin-bottom: 0;
}
article.sticky .post-footer-sharing .gem-button-container .gem-button {
	margin-right: 16px;
}
.post-read-more {
	display: inline-block;
}
.post-read-more .gem-button,
.comment-reply-link {
	padding: 0 24px;
	background: transparent;
}


.styled-blog-meta {
	display: inline-block;
	float: right;
}
.styled-blog-meta .comments {
	padding-right: 8px;
	float: left;
}
.styled-blog-meta .comments:after  {
	content: "|";
	padding-left: 8px;
	vertical-align: top;
}

.styled-blog-meta .tag-links {
	display: none;
}
.styled-blog-meta {
	bottom: 27px;
	position: absolute;
	right: 32px;
}


article:not(.type-page) > .entry-content.post-content {
	margin-bottom: 60px;
}
.post-content .post-meta {
	margin-bottom: 55px;
}

/* Post tags */
.post-tags-list {
	margin-bottom: 30px;
	margin-left: 10px;
}
.post-tags-list a {
	position: relative;
	display: inline-block;
	color: inherit;
	margin-right: 17px;
	margin-bottom: 10px;
	font-size: 13px;
	line-height: 21px;
	background-color: #e7edf0;
	z-index: 2;
	padding: 0 16px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-o-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.post-tags-list a:before {
	content: '';
	position: absolute;
	background-color: inherit;
	width: 12px;
	height: 12px;
	top: 5px;
	left: -5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	z-index: -1;
	transform: skew(-45deg, 45deg);
}
.post-tags-list a:after {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	top: 50%;
	margin-top: -3px;
	left: -5px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}



.block-tags .tags-links a{
	padding: 0 10px;
}
.block-tags {
	float: right;
	display: block;
	padding-top: 21px;
}
.block-date {
	float: left;
	font-size: 89.5%;
	margin-top: 2px;
	margin-right: 10px;
}

.post-meta-categories a {
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
@media (max-width: 755px) {
	.single-post-meta .post-meta-categories {
		display: block;
		clear: both;
	}
	.single-post-meta .post-meta-author + .sep,
	.single-post-meta .post-meta-categories + .sep {
		display: none;
	}
	.single-post-meta .post-meta-right {
		margin-left: 30px;
	}
}

.thegem_pf_item .post-meta-left .post-meta-date:before {
	content: '\e66e';
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 16px;
	font-weight: normal;
	margin-right: 8px;
}

.thegem_pf_item .post-meta-bottom{
	position: relative;
	width: 100%;
	margin-top: 20px;
}

.thegem_pf_item .post-meta-bottom .details{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.post-meta-navigation {
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	white-space: nowrap;
	vertical-align: top;
	margin-left: 10px;
}
.post-meta-navigation > span + span {
	margin-left: -7px;
}
.thegem_pf_item .post-meta-navigation > span + span {
	margin-left: -10px;
}
.post-meta-navigation a {
	color: inherit;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.thegem_pf_item .post-meta-navigation > .post-meta-category-link a {
	font-size: 16px;
	vertical-align: top;
}

.block-navigation {
	clear: both;
	display: inline-block;
	width: 100%;
}
.block-navigation-prev {
	float: left;
}
.block-navigation-prev a:before {
	content: '\e603';
	font-size: 15px;
	padding-right: 10px;
	font-family: thegem-icons;
	font-style: normal;
	display: block;
	float: left;
}
.block-navigation-next {
	float: right;
}
.block-navigation-next a:after {
	content: '\e601';
	font-size: 15px;
	padding-left: 10px;
	font-family: thegem-icons;
	font-style: normal;
	display: block;
	float: right;
}
.block-divider {
	margin-top: 50px;
	display: block;
	margin-bottom: 45px;
}
.block-thegem_socials_sharing {
	width: 100%;
	display: inline-block;
}
.portfolio-item-page-bottom .socials-sharing .socials-item-icon {
	font-size: 24px;
}
.portfolio-item-page-bottom .socials-sharing {
	margin-top: 42px;
	float: left;
}
.portfolio-item-page-bottom .centered-box .socials-sharing {
	float: none;
}

.portfolio-item-page-bottom .project-button .gem-button {
	margin-top: 40px;
}

.block-portfolio-navigation-prev .gem-button {
	padding-left: 3px;
	padding-right: 14px;
}
.block-portfolio-navigation-prev .gem-button .gem-print-icon {
	margin-right: 3px;
}
.block-portfolio-navigation-next .gem-button {
	padding-right: 3px;
	padding-left: 14px;
}
.block-portfolio-navigation-next .gem-button .gem-print-icon {
	margin-left: 3px;
}

.block-navigation.centered-box .block-portfolio-navigation-prev .gem-button,
.block-navigation.centered-box .block-portfolio-navigation-next .gem-button {
	margin-left: 30px;
	margin-right: 30px;
}

.post-related-posts {
	padding-bottom: 50px;
}
.post-related-posts-block {
	margin: 0 -21px;
}
.post-related-posts-block .related-element {
	float: left;
	padding: 0;
	width: 303px;
	padding: 0 21px;
}
.post-related-posts-block .related-element .entry-meta {
	margin-bottom: 0;
}

.related-posts-navigation {
	position: absolute;
	top: -85px;
	right: 21px;
}
.related-posts-navigation .related-posts-prev,
.related-posts-navigation .related-posts-next {
	height: 30px;
	width: 30px;
	padding: 0;
	border: 2px solid #00bcd4;
	background: transparent;
	margin-left: 15px;
}
.related-posts-navigation .gem-button.related-posts-prev:hover,
.related-posts-navigation .gem-button.related-posts-next:hover {
	background-color: #3c3950;
	border-color: #3c3950;
}
.related-posts-carousel {
	position: relative;
}
.related-element img,
.related-element .gem-dummy {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	height: 72px;
	width: 72px;
	max-width: none;
}
.related-element .post-meta-right {
	font: inherit;
}
.related-element > a {
	display: table-cell;
	padding-right: 14px;
}
.related-element .post-meta-right > * {
	display: inline-block;
	vertical-align: top;
}
.related-element .post-meta-right .zilla-likes:before {
	display: inline-block;
}
.related-element .post-meta-right .zilla-likes > * {
	display: inline-block;
	vertical-align: top;
}
.related-element .comments-link a {
	display: inline-block;
	vertical-align: top;
	padding-right: 5px;
}
.related-element .comments-link a:before {
	display: inline-block;
}
.related-element-info {
	display: table-cell;
	vertical-align: middle;
	width: 99%;
}
.related-element-info > a {
	margin-bottom: 3px;
}
.related-element-info .date {
	display: block;
	margin-top: -2px;
}
.related-element-info .comments-link a::before {
	content: '\e631';
}
.related-element-info-conteiner {
	max-height: 3.1em;
	overflow: hidden;
}

.post-related-posts-bloack {
	margin-top: 8px;
}
.post-related-posts h3 {
	text-transform: uppercase;
}
.related-element {
	padding: 30px 0 30px 30px;
}
.post-related-posts {
	margin-top: 75px;
}
.post-author-block {
	margin-top: 85px;
}
.wpb_wrapper .vc_progress_bar .vc_label {
	font-size: 89.5%;
}
.wpb_wrapper .vc_progress_bar .vc_label_units {
	font-size: 116%;
	padding-left: 8px;
}

.gem-btn-primary {
	color: #0088cc;
}
.gem-btn-warning {
	color: #ff9900;
}
.gem-btn-danger {
	color: #ff675b;
}
.gem-btn-success {
	color: #6ab165;
}
.gem-btn-info {
	color: #58b9da;
}
.gem-btn-inverse {
	color: #555555;
}

#customer_login .login label,
#customer_login .register label {
	display: block;
}
#customer_login .login,
#customer_login .register {
	padding: 33px;
	padding-right: 10px;
	width: 100%;
	display: inline-block;
}
#customer_login .login .input-text, #customer_login .register .input-text{
	width: 97%;
	margin-top: 5px;
	padding: 4px 10px;
}
#customer_login .login .inline {
	display: inline-block;
}
#customer_login .form-row.login-button {
	display: inline-block;
}
#customer_login .lost_password {
	display: inline-block;
}

.inline {
	display: block;
}

#customer_login .rememberme-label {
	padding-left: 9px;
}
#customer_login .lost_password {
	padding-left: 19px;
}
#customer_login .login-button button{
	top: 8px;
}
#customer_login .form-row.login-button {
	padding-left: 18px;
}
#customer_login .form-row.register_form_button {
	display: inline-block;
	float: right;
	margin-right: 15px;
}
#customer_login .form-row.register_form_button button{
	top: 8px;
}
#customer_login .login  .gem-button input[type="submit"] {
	padding: 0.6em 32px 0.6em 50px;
}
.account-tittle{
	text-transform: uppercase;
}
.lost_reset_password .input-text{
	margin-right: 20px;
	margin-top: 5px;
	padding-left: 10px;
	width: 36%;
}
.lost_reset_password .gem-button {
	margin-top: -5px;
}
.lost_reset_password .input-text {
	float: left;
}
.form-edit-adress label {
	display: block;
	padding-bottom: 5px;
}
.form-edit-adress abbr {
	border: 0 none;
}
.form-edit-adress input {
	width: 50%;
}
.form-edit-adress  .button  {
	width: auto;
}
.isotope-item {
	padding-bottom: 10px;
}
.gem-post-grid-item-image {
	display: table-cell;

}
.gem-post-grid-item-image img {
	width: 72px;
	height: 72px;
}
.gem-post-grid-item-info {
	display: table-cell;
	vertical-align: middle;
	padding-left: 20px;
}
.gem-post-griid-item.clearix {
	padding-bottom: 30px;
}
.gem-post-grid-item-date {
	font-size: 89.5%;
}
/*styles*/
@media (max-width: 768px) {
	.wpcf7-form td {
		float: left;
		width: 100%;
		text-align: center;
	}
}

/* MAIL CHIMP */
.site-footer .gem-custom-mailchimp input {
	border: none;
}
#colophon .gem-custom-mailchimp input[type="email"] {
	width: 50%;
	height: 54px;
	border-top-right-radius: 0;
	-moz-border-top-right-radius: 0;
	-webkit-border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	-moz-border-bottom-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	margin-top: 25px;
}
#colophon .gem-custom-mailchimp button {
	margin-top: 25px;
	border-top-left-radius: 0;
	-moz-border-top-left-radius: 0;
	-webkit-border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	-moz-border-bottom-left-radius: 0;
	-webkit-border-bottom-left-radius: 0;
}

#colophon .widget .gem-testimonial-position,
#colophon .widget .gem-pp-posts-date,
#colophon .widget .jtwt_date,
#colophon .widget .gem-latest-news-title > span,
#colophon .widget.widget_recent_entries .post-date {
	font-size: 89.5%;
}
.gem-latest-news:last-child{
	border-bottom: none;
}
/* MENU WIDGET */


.widget_nav_menu li li a:before,
.widget_submenu li li a:before
{
	content: '';
	width: 6px;
	display: block;
	height: 6px;
	position: absolute;
	margin-top: 10px;
	margin-left: -20px;
}
.widget_pages li li a:before,
.widget_categories li li a:before,
.widget_product_categories li li a:before{
	content: '';
	width: 6px;
	display: block;
	height: 6px;
	float: left;
	margin-top: 10px;
	margin-right: 12px;
}
.widget_pages a {
	display: block;
}
.widget_nav_menu ul,
.widget_categories ul,
.widget_product_categories ul,
.widget_pages ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget_nav_menu > ul > li > a,
.widget_categories > ul > li > a,
.widget_product_categories > ul > li > a,
.widget_pages > ul > li > a {
	padding-left: 18px;
}



.widget_nav_menu ul.menu li > a,
.widget_submenu > div > ul li > a {
	display: block;
	padding: 12px 12px 12px 20px;
}
.widget_categories > ul > li,
.widget_product_categories > ul > li,
.widget_pages > ul > li {
	padding: 12px 12px 12px 0;
}
.widget_categories > ul li > a,
.widget_product_categories > ul li > a,
.widget_pages > ul li > a {
}
.widget_categories > ul > li > a,
.widget_product_categories > ul > li > a,
.widget_pages > ul > li > a {
	text-transform: uppercase;
}



.widget_nav_menu ul.menu li > a:after,
.widget_submenu > div > ul li > a:after {
	content: '';
	display: inline-block;
	width: 30px;
	vertical-align: top;
	margin-left: -30px;
	text-align: center;
}

.widget_nav_menu ul.menu ul,
.widget_submenu > div > ul ul {
	display: none;
}
.widget_categories > ul > li > ul,
.widget_product_categories > ul > li > ul,
.widget_pages > ul > li > ul {
	margin: 12px -12px -12px 0;
}
.widget_nav_menu ul.menu li.menu-item-active > ul,
.widget_nav_menu ul.menu li.menu-item-current > ul,
.widget_submenu > div > ul li.menu-item-active > ul,
.widget_submenu > div > ul li.menu-item-current > ul {
	display: block;
}
.widget_nav_menu ul.menu li.menu-item-parent > a:after,
.widget_submenu > div > ul li.menu-item-parent > a:after,
.widget_categories > ul li.cat-parent:after,
.widget_product_categories > ul li.cat-parent:after,
.widget_pages > ul li.page_item_has_children:after {
	font-weight: normal;
}
.widget_nav_menu ul.menu li.menu-item-parent.menu-item-active > a:after,
.widget_nav_menu ul.menu li.menu-item-parent.menu-item-current > a:after,
.widget_submenu > div > ul li.menu-item-parent.menu-item-active > a:after,
.widget_submenu > div > ul li.menu-item-parent.menu-item-current > a:after,
.widget_product_categories > ul li.cat-parent.current-cat-ancestor:after,
.widget_product_categories > ul li.cat-parent.current-cat-parent:after,
.widget_product_categories > ul li.cat-parent.current-cat:after{

	content: '\e635';
	font-family: thegem-icons;
	font-style: normal;
	font-size: 16px;
	font-weight: normal;

}
.widget_nav_menu ul.menu li li.menu-item-parent.menu-item-active > a:after,
.widget_nav_menu ul.menu li li.menu-item-parent.menu-item-current > a:after,
.widget_submenu > div > ul li li.menu-item-parent.menu-item-active > a:after,
.widget_submenu > div > ul li li.menu-item-parent.menu-item-current > a:after,
.widget_categories > ul li li.cat-parent.current-cat-ancestor:after,
.widget_categories > ul li li.cat-parent.current-cat-parent:after,
.widget_categories > ul li li.cat-parent.current-cat:after,
.widget_product_categories > ul li li.cat-parent.current-cat-ancestor:after,
.widget_product_categories > ul li li.cat-parent.current-cat-parent:after,
.widget_product_categories > ul li li.cat-parent.current-cat:after {

	content: '\e635';
	font-family: thegem-icons;
	font-style: normal;
	font-size: 16px;
	font-weight: normal;

}
.widget .menu-item-has-children.menu-item-parent > a:after {
	content: '\e601';
	font-size: 16px;
	font-family: thegem-icons;
	font-style: normal;
	font-weight: normal;

}

.widget_nav_menu ul.menu > li.menu-item-parent.menu-item-active > a:after,
.widget_nav_menu ul.menu > li.menu-item-parent.menu-item-current > a:after,
.widget_submenu > div > ul > li.menu-item-parent.menu-item-active > a:after,
.widget_submenu > div > ul > li.menu-item-parent.menu-item-current > a:after,
.widget_product_categories > ul > li.cat-parent.current-cat-ancestor:after,
.widget_product_categories > ul > li.cat-parent.current-cat-parent:after,
.widget_product_categories > ul > li.cat-parent.current-cat:after {
	font-size: 24px;
}

.widget_categories > ul li.cat-parent.current-cat-ancestor:after,
.widget_categories > ul li.cat-parent.current-cat-parent:after,
.widget_categories > ul li.cat-parent.current-cat:after,
.widget_product_categories > ul li.cat-parent.current-cat-ancestor:after,
.widget_product_categories > ul li.cat-parent.current-cat-parent:after,
.widget_product_categories > ul li.cat-parent.current-cat:after {
	content: '\e602';
	font-family: thegem-icons;
	font-style: normal;
	font-size: 16px;
	top: 12px;
	right: 18px;
	position: absolute;
	font-weight: normal;

}
.widget_pages > ul li.page_item_has_children.current_page_ancestor,
.widget_pages > ul li.page_item_has_children.current_page_parent,
.widget_pages > ul li.current_page_item,
.widget_categories > ul li.cat-parent.current-cat-ancestor,
.widget_categories > ul li.cat-parent.current-cat-parent,
.widget_categories > ul li.cat-parent.current-cat,
.widget_product_categories > ul li.cat-parent.current-cat-ancestor,
.widget_product_categories > ul li.cat-parent.current-cat-parent,
.widget_product_categories > ul li.cat-parent.current-cat {
	position: relative;
}


.widget_pages > ul li.page_item_has_children.current_page_ancestor > a:after,
.widget_pages > ul li.page_item_has_children.current_page_parent > a:after,
.widget_pages > ul li.page_item_has_children.current_page_item > a:after {
	content: '\e602';
	font-family: thegem-icons;
	font-style: normal;
	font-size: 13px;
	top: 12px;
	right: 18px;
	position: absolute;
	font-weight: normal;

}
.widget_pages > ul li li.page_item_has_children.current_page_ancestor > a:after,
.widget_pages > ul li li.page_item_has_children.current_page_parent > a:after,
.widget_pages > ul li li.page_item_has_children.current_page_item > a:after {
	content: '\e602';
	font-family: thegem-icons;
	font-style: normal;
	font-size: 8px;
	top: 12px;
	right: 18px;
	position: absolute;
	font-weight: normal;

}

.widget_nav_menu ul.menu ul li.menu-item-active > a,
.widget_submenu > div > ul ul li.menu-item-active > a {
	border: 0 none !important;
}
.widget_nav_menu ul.menu > li li > a,
.widget_submenu > div > ul > li li > a {
	padding-left: 40px;
}
.widget_nav_menu ul.menu > li li li > a,
.widget_submenu > div > ul > li li li > a {
	padding-left: 60px;
}
.widget_nav_menu ul.menu > li li li li > a,
.widget_submenu > div > ul > li li li li > a {
	padding-left: 80px;
}
.widget_nav_menu ul.menu > li li li li li > a,
.widget_submenu > div > ul > li li li li li > a {
	padding-left: 100px;
}
.widget_categories > ul > li > ul > li,
.widget_product_categories > ul > li > ul > li,
.widget_pages > ul > li > ul > li {
	padding: 12px 12px 12px 20px;
}
.widget_categories > ul > li > ul > li > ul,
.widget_product_categories > ul > li > ul > li > ul,
.widget_pages > ul > li > ul > li > ul {
	margin: 12px -12px -12px -20px;
}
.widget_categories > ul > li > ul > li li,
.widget_product_categories > ul > li > ul > li li,
.widget_pages > ul > li > ul > li li {
	padding: 10px 15px 10px 40px;
}
.widget_categories > ul > li > ul > li > ul ul,
.widget_product_categories > ul > li > ul > li > ul ul,
.widget_pages > ul > li > ul > li > ul ul {
	margin: 10px -15px -10px -20px;
}
.widget_pages > ul > ul {
	padding-left: 30px;
}
#colophon .widget_submenu a,
#colophon .widget_nav_menu a {
	background: transparent;
}

/* Recently Viewed Products */
.widget_recently_viewed_products .product_list_widget a {
	clear: both;
}
.widget_recently_viewed_products ul.product_list_widget li {
	padding: 10px;
	margin-bottom: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-moz-box-shadow: none;
	display: flex;
}
.widget_recently_viewed_products ul.product_list_widget li + li {
	background-repeat: repeat-x;
}
.widget_recently_viewed_products ul.product_list_widget li .gem-products-image {
	display: block;
	align-self: start;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	overflow: hidden;
	min-width: 70px;
}
.widget_recently_viewed_products ul.product_list_widget li .gem-products-content {
	border: 0 none;
	display: block;
	margin-left: 0;
	width: auto;
	flex-grow: 1;
}
.widget_recently_viewed_products ul.product_list_widget li .product-dummy-wrapper {
	border: 0 none;
	width: 70px;
}



/* gem_client_carousel*/
.gem_client_carousel-items .gem-client-item .grayscale-hover {
	background: none repeat scroll 0 0 transparent !important;
}
.gem_client_carousel-items .gem-client-item > a,
.gem_client_carousel-items .gem-client-item > span {
	display: block;
	vertical-align: middle;
	position: relative;
}
.teaser_grid_container .gem-post-title {
	padding-right: 31px;
}
body .footer-contact-form .wpcf7-email {
	background-color: #2c2e3a;
	border: medium none;
	color: #ffffff;
	height: 54px;

}
body .footer-contact-form .wpcf7-textarea {
	background-color: #2c2e3a;
	border: medium none;
	color: #ffffff;
	height: 117px;

}
.footer-contact-form {
	padding-right: 30px;
}
.footer-contact-form .wpcf7-submit{
	background-color: #4c5867;
	float: left;
}
.footer-contact-form .wpcf7-submit:hover{
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.2);
}
.widget .wpcf7 .gem-sidebar-input {
	text-align: left;
}

.wpb_widgetised_column .gem-products-image {
	display: table-cell;
}
.wpb_widgetised_column .gem-products-content {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}
.widget .blog {
	padding-bottom: 0px;
}


.widget-title:after{
	font-family: thegem-icons;
	font-style: normal;
	content: '\e630';
	font-size: 8px;
	padding-left: 8px;
	font-weight: normal;
	display: none;
}
#colophon .gem-latest-news:last-child,
#colophon .Custom_Recent_Posts .gem-pp-posts:first-child,
#colophon .widget_meta li:first-child,
#colophon .widget_rss li:first-child,
#colophon .widget_recent_entries li:first-child,
#colophon .Custom_Recent_Posts ul li:first-child {
	background: none;
}
.digram-line-box {
	padding-right: 40px;
}

/* Gem icon hexagon*/
.gem-icon-shape-hexagon {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border: 0;
	position: relative;
}

.gem-icon-shape-hexagon .gem-icon-shape-hexagon-back {
	display: block;
	-webkit-transform: rotate(-30deg) skewX(30deg);
	-ms-transform: rotate(-30deg) skewX(30deg);
	-o-transform: rotate(-30deg) skewX(30deg);
	transform: rotate(-30deg) skewX(30deg);
	overflow: hidden;
	position: relative;
	z-index: 1;
	font-size: 0;
	line-height: 1;
}
.gem-icon-shape-hexagon .gem-icon-shape-hexagon-back .gem-icon-shape-hexagon-back-inner,
.gem-icon-shape-hexagon .gem-icon-shape-hexagon-back .gem-icon-shape-hexagon-back-inner-before {
	display: block;
	width: inherit;
	height: inherit;
	-webkit-border-radius: inherit;
	-moz-border-radius: inherit;
	border-radius: inherit;
	overflow: hidden;
}

.gem-icon-shape-hexagon .gem-icon-shape-hexagon-back .gem-icon-shape-hexagon-back-inner {
	-webkit-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	-ms-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	-o-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	transform: skewX(-30deg) rotate(60deg) skewX(30deg);
}

.gem-icon-shape-hexagon .gem-icon-shape-hexagon-back .gem-icon-shape-hexagon-back-inner-before {
	-webkit-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	-ms-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	-o-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	transform: skewX(-30deg) rotate(60deg) skewX(30deg);
}

.gem-icon-shape-hexagon .gem-icon-shape-hexagon-top {
	display: block;
	-webkit-transform: rotate(-30deg) skewX(30deg);
	-ms-transform: rotate(-30deg) skewX(30deg);
	-o-transform: rotate(-30deg) skewX(30deg);
	transform: rotate(-30deg) skewX(30deg);
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	font-size: 0;
	line-height: 1;
}

.gem-icon-shape-hexagon .gem-icon-shape-hexagon-top .gem-icon-shape-hexagon-top-inner,
.gem-icon-shape-hexagon .gem-icon-shape-hexagon-top .gem-icon-shape-hexagon-top-inner-before {
	display: block;
	width: inherit;
	height: inherit;
	-webkit-border-radius: inherit;
	-moz-border-radius: inherit;
	border-radius: inherit;
	overflow: hidden;
}

.gem-icon-shape-hexagon .gem-icon-shape-hexagon-top .gem-icon-shape-hexagon-top-inner {
	-webkit-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	-ms-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	-o-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	transform: skewX(-30deg) rotate(60deg) skewX(30deg);
}

.gem-icon-shape-hexagon .gem-icon-shape-hexagon-top .gem-icon-shape-hexagon-top-inner-before {
	-webkit-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	-ms-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	-o-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
	transform: skewX(-30deg) rotate(60deg) skewX(30deg);
}

.gem-icon-shape-hexagon .gem-icon-inner {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: none !important;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	margin: 0;
}

/* Hexagon small icon */
.gem-icon-shape-hexagon.gem-icon-size-small,
.wpb_column > .wpb_wrapper > .gem-icon-shape-hexagon.gem-icon-size-small:last-child {
	margin: 3px 0;
}

.gem-icon-shape-hexagon.gem-icon-size-small .gem-icon-shape-hexagon-back {
	width: 59px;
	height: 49px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.gem-icon-shape-hexagon.gem-icon-size-small .gem-icon-shape-hexagon-top {
	width: 55px;
	height: 45px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	left: 2px;
	top: 2px;
}

.gem-icon-shape-hexagon.gem-icon-size-small .gem-icon-inner {
	line-height: 49px;
}

/* Hexagon medium icon */
.gem-icon-shape-hexagon.gem-icon-size-medium,
.wpb_column > .wpb_wrapper > .gem-icon-shape-hexagon.gem-icon-size-medium:last-child {
	margin: 5px 0;
}

.gem-icon-shape-hexagon.gem-icon-size-medium .gem-icon-shape-hexagon-back {
	width: 91px;
	height: 77px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}

.gem-icon-shape-hexagon.gem-icon-size-medium .gem-icon-shape-hexagon-top {
	width: 85px;
	height: 71px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	left: 3px;
	top: 3px;
}

.gem-icon-shape-hexagon.gem-icon-size-medium .gem-icon-inner {
	line-height: 77px;
}

/* Hexagon large icon */
.gem-icon-shape-hexagon.gem-icon-size-large,
.wpb_column > .wpb_wrapper > .gem-icon-shape-hexagon.gem-icon-size-large:last-child {
	margin: 11px 0;
}

.gem-icon-shape-hexagon.gem-icon-size-large .gem-icon-shape-hexagon-back {
	width: 181px;
	height: 153px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.gem-icon-shape-hexagon.gem-icon-size-large .gem-icon-shape-hexagon-top {
	width: 169px;
	height: 141px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	left: 6px;
	top: 6px;
}

.gem-icon-shape-hexagon.gem-icon-size-large .gem-icon-inner {
	line-height: 153px;
}

/* Hexagon xlarge icon */
.gem-icon-shape-hexagon.gem-icon-size-xlarge,
.wpb_column > .wpb_wrapper > .gem-icon-shape-hexagon.gem-icon-size-xlarge:last-child {
	margin: 16px 0;
}

.gem-icon-shape-hexagon.gem-icon-size-xlarge .gem-icon-shape-hexagon-back {
	width: 267px;
	height: 227px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 12px;
}

.gem-icon-shape-hexagon.gem-icon-size-xlarge .gem-icon-shape-hexagon-top {
	width: 243px;
	height: 203px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
	left: 12px;
	top: 12px;
}

.gem-icon-shape-hexagon.gem-icon-size-xlarge .gem-icon-inner {
	line-height: 227px;
}


.widget_socials .socials-item-icon {
	font-size: 24px;
	margin-bottom: 13px;
}
.widget_socials a.socials-item {
	margin-left: 0;
	margin-right: 13px;
}

.widget .socials-colored a:hover .socials-item-icon{
	color: #00bcd4 !important;
}
.widget .gem-portfolios-type-carousel-grid .gem-portfolio-item {
	padding: 0px 12px 12px 0;
	display: block;
}
.widget-portfolio-carousel-slide a{
	display: block;
	height: 80px;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
	overflow: hidden;
}
.widget-portfolio-carousel-slide img{
	width: 80px;
	height: 80px;
	display: block;
}
.widget-portfolio-carousel-slide {
	float: left;
}
.widget-portfolio-carousel-slide {
	margin-right: -10px;
}
.widget .widget-portfolio-pagination.gem-mini-pagination a {
	width: 14px;
	height: 14px;
}
.widget .widget-portfolio-pagination.gem-mini-pagination {
	padding-top: 4px;
}
.widget-gem-portfolio-item.gem-portfolio-dummy img{
	display: none;
}
.widget-gem-portfolio-item.gem-portfolio-dummy {
	position: relative;
}
.widget-gem-portfolio-item.gem-portfolio-dummy:after {
	content: '?';
	color: #ffffff;
	position: absolute;
	left: 35px;
	top: 28px;
}

.widget-gem-portfolio-item	{
	position: relative;
}
.widget-gem-portfolio-item img {
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
}

.widget-gem-portfolio-item .widget-gem-portfolio-item-hover {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	opacity: 0;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.widget-gem-portfolio-item:hover .widget-gem-portfolio-item-hover {
	opacity: 1;
}
.project_info-item .icon-elegant,
.project-info-shortcode-item .icon.elegant {
	font-family: 'ElegantIcons';
}
.project_info-item .icon-material,
.project-info-shortcode-item .icon.material {
	font-family: 'MaterialDesignIcons';
}
.project_info-item .icon-fontawesome,
.project-info-shortcode-item .icon.fontawesome {
	font-family: 'FontAwesome';
}
.project_info-item .icon-userpack,
.project-info-shortcode-item .icon.userpack {
	font-family: 'UserPack';
}
.project-info-shortcode-item .icon {
	float: left;
}
.project-info-shortcode-item {
	width: 100%;
	float: left;
}
.project-info-shortcode-style-2 .project-info-shortcode-item .title {
	font-size: 16px;
	font-weight: bolder;
	padding-left: 70px;
	color: #3c3950;
	text-transform: uppercase;
}
.project-info-shortcode-style-2 .project-info-shortcode-item .decription {
	padding-left: 70px;
	padding-top: 3px;
}
.project-info-shortcode-style-2 .project-info-shortcode-item .icon {
	color: #ffffff !important;
	font-size: 24px;
	padding: 13px;
}
.project-info-shortcode-style-2 .project-info-shortcode-item {
	padding: 28px 0;
}
.project-info-shortcode-style-2 .project-info-shortcode-item:last-child{
	border-bottom: medium none;
}
.project-info-shortcode {
	display: inline-block;
	width: 100%;
}

.project-info-shortcode-style-default .project-info-shortcode-item {
	margin-bottom: 20px;
	padding: 20px;
}
.project-info-shortcode-style-default .project-info-shortcode-item .icon {
	background-color: transparent !important;
	font-size: 24px;
	padding-top: 6px;
	padding-left: 5px;
}

.project-info-shortcode-style-default .project-info-shortcode-item .title {
	padding-left: 50px;
}
.project-info-shortcode-style-default .project-info-shortcode-item .decription {
	padding-left: 50px;
	padding-top: 15px;
}
.widget.project_info .gem-button {
	margin-left: 0px;
}
.widget .project-info-button{
	text-align: center;
}

.widget_submenu  ul ul ul,
.widget_nav_menu  ul ul ul,
.widget_pages ul ul ul,
.widget_categories ul ul ul,
.widget_product_categories ul ul ul {
	background-color: #e8ecef;
}


.widget a.gem-button.gem-button-style-outline {
	background: transparent;
}

.gmaps_round {
	border-radius: 50%;
	overflow: hidden;
}
body .wpb_gmaps_widget .wpb_wrapper {
	padding: 0;
}
.vc_gem_pricing_table  .vc_controls-container.vc_controls {
	margin-top: 10px;
	z-index: 10;
}
@media (max-width: 600px) {
	body .vc_separator.vc_sep_double {
		height: auto !important;
	}
}


@media(max-width: 1024px){
	.fullwidth-block.fullwidth-block-parallax-vertical,
	.fullwidth-block.fullwidth-block-parallax-fixed{
		background-attachment: scroll;
	}
}
.textwidget img {
	max-width: 100%;
	height: auto;
}
.textwidget option,
.textwidget select {
	max-width: 100%;
}
.widget .screen-reader-text {
	margin-bottom: 10px;
	display: block;
}
.calendar_wrap td, .calendar_wrap th {
	border: none !important;
	padding: 5px !important;
}

.gem-icon-with-title  > a{
	display: table-cell;
	padding-bottom: 0 !important;
	vertical-align: middle;
	padding-right: 10px;
}

.portfolio-filters-list .widget-area .widget {
	order: 10;
}
.portfolio-filters-list.style-sidebar .widget-area-wrap,
.portfolio-filters-list.style-hidden .widget-area-wrap {
	flex: none;
}
.portfolio-filters-list:is(.style-sidebar, .style-hidden, .style-standard-mobile) .widget-area .portfolio-filter-item:first-child {
	border-top: none;
	padding-top: 0;
}
.portfolio-filters-list.style-sidebar .widget-area .widget {
	width: 100%;
	padding: 25px 0;
	margin: 0;
}
@media (min-width: 992px) {
	.portfolio-filters-list.style-sidebar .widget-area .widget {
		padding: 25px 0;
	}
	.portfolio-filters-list.style-sidebar .widget-area .widget.widget_product_search {
		padding-bottom: 28px;
	}
}
.portfolio-filters-list.style-hidden .widget-area .widget {
	width: 100%;
	padding: 25px 10px;
	margin: 0;
}

@media (max-width: 991px) {
	.portfolio-filters-list.style-standard .widget-area .widget,
	.portfolio-filters-list.style-sidebar .widget-area .widget {
		width: 100%;
		padding: 25px 10px;
		margin: 0;
	}
}
@media (min-width: 992px) {
	.portfolio-filters-list.style-hidden .widget-area .widget {
		padding: 25px 30px;
	}
}
.portfolio-filters-list .widget-area .widget:first-child {
	border: none;
	padding-top: 0;
	margin-top: -1px;
}
.portfolio-filters-list .widget-area .widget .widget-title {
	margin: 0 0 20px 0;
	cursor: default;
}
.portfolio-filters-list .widget-area .widget .widget-title .arrow {
	display: none;
}
.portfolio-filters-list.style-sidebar .list-scrollable .widget_product_categories .woocommerce-widget-layered-nav-list ul,
.portfolio-filters-list.style-sidebar .list-scrollable .widget_layered_nav .woocommerce-widget-layered-nav-list ul,
.portfolio-filters-list.style-hidden .list-scrollable .widget_product_categories .woocommerce-widget-layered-nav-list ul,
.portfolio-filters-list.style-hidden .list-scrollable .widget_layered_nav .woocommerce-widget-layered-nav-list ul {
	padding: 0;
	margin: 0;
}
.portfolio-filters-list.style-sidebar .list-scrollable .widget_product_categories .woocommerce-widget-layered-nav-list ul ul,
.portfolio-filters-list.style-sidebar .list-scrollable .widget_layered_nav .woocommerce-widget-layered-nav-list ul ul,
.portfolio-filters-list.style-hidden .list-scrollable .widget_product_categories .woocommerce-widget-layered-nav-list ul ul,
.portfolio-filters-list.style-hidden .list-scrollable .widget_layered_nav .woocommerce-widget-layered-nav-list ul ul {
	padding: 0 0 0 20px;
}
.portfolio-filters-list .widget_product_categories ul,
.portfolio-filters-list .widget_layered_nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	border: none;
	line-height: inherit;
	font-family: inherit;
	font-size: inherit;
}
.portfolio-filters-list .widget_product_categories ul li,
.portfolio-filters-list .widget_layered_nav ul li {
	color: inherit;
	padding: 0;
	border: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: space-between;
	-ms-flex-pack: space-between;
	justify-content: space-between;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	flex-wrap: wrap;
}
.portfolio-filters-list .widget_layered_nav ul li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	flex-wrap: wrap;
}
.portfolio-filters-list .widget_product_categories ul li.cat-parent.current-cat:after,
.portfolio-filters-list .widget_product_categories ul li.cat-parent.current-cat-parent:after,
.portfolio-filters-list .widget_layered_nav ul li.cat-parent.current-cat:after,
.portfolio-filters-list .widget_layered_nav ul li.cat-parent.current-cat-parent:after {
	content: none;
}
.portfolio-filters-list .widget_product_categories ul li a,
.portfolio-filters-list .widget_layered_nav ul li a {
	flex: 1;
	color: inherit;
	padding: 0;
}
.portfolio-filters-list .widget.woocommerce-widget-layered-nav ul li a.attribute-type-color:hover,
.portfolio-filters-list .widget.woocommerce-widget-layered-nav ul li.chosen > a.attribute-type-color,
.portfolio-filters-list .widget.woocommerce-widget-layered-nav ul li.current-cat > a.attribute-type-color {
	color: inherit;
}
.portfolio-filters-list .widget_layered_nav ul li a span.title {
	margin-right: auto;
}
.portfolio-filters-list .widget_product_categories ul li a:hover + span.count,
.portfolio-filters-list .widget_layered_nav ul li a:hover span.count {
	color: #FFFFFF;
}
.portfolio-filters-list .widget_product_categories ul li span.count,
.portfolio-filters-list .widget_layered_nav ul li span.count,
.portfolio-filters-list .widget_product_categories ul li .filters-collapsible-arrow {
	flex: none;
	margin-left: 20px;
	display: block;
	color: inherit;
	background-color: var(--styled-bg-color, #f0f3f2);
	font-size: var(--thegem-to-body-tiny-font-size, 14px);
	padding: 2px 8px;
	line-height: 1;
	border-radius: 11px;
	transition: background-color 0.3s;
}
@media (min-width: 992px) {
	.portfolio-filters-list .widget_product_categories ul li span.count,
	.portfolio-filters-list .widget_layered_nav ul li span.count {
		margin-left: 45px;
	}
}
.portfolio-filters-list.hide-filter-counts .widget_layered_nav ul li span.count {
	display: none;
}
.portfolio-filters-list.categories-widget-collapsible:not(.collapse-inited) .cat-parent:not(.current-cat-parent, .current-cat) > ul {
	display: none;
}
.portfolio-filters-list .widget_product_categories ul li .filters-collapsible-arrow {
	padding: 2px;
	margin-left: 6px;
	transform: translateY(0.1em);
	cursor: pointer;
}
.portfolio-filters-list .widget_product_categories ul li .filters-collapsible-arrow:before {
	display: block;
	content: '\e602';
	font-style: normal;
	font-family: "thegem-icons";
	font-weight: normal;
	-webkit-font-smoothing: initial;
}
.portfolio-filters-list .widget_product_categories ul li .filters-collapsible-arrow:hover {
	color: #FFFFFF;
	background-color: var(--thegem-to-widget-hover-link_color, #00BCD4);
}
.portfolio-filters-list .widget_product_categories ul li:not(.collapsed) > .filters-collapsible-arrow {
	transform: translateY(0.1em) rotate(180deg);
	color: #FFFFFF;
	background-color: var(--thegem-to-widget-hover-link_color, #00BCD4);
}
.portfolio-filters-list .widget_product_categories ul li ul,
.portfolio-filters-list .widget_layered_nav ul li ul {
	padding: 0 0 0 20px;
	background: transparent;
	width: 100%;
}
.portfolio-filters-list .widget_product_categories ul li.current-cat > span.count,
.portfolio-filters-list .widget_layered_nav ul li.chosen span.count {
	color: #FFFFFF;
}
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider {
	position: relative;
	border: none;
	height: 4px;
	width: 90%;
	margin: 20px auto 30px auto;
}
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range {
	position: absolute;
	top: 0;
	height: 100%;
	z-index: 1;
}
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle {
	position: absolute;
	width: 14px;
	height: 14px;
	top: 50%;
	transform: translate(-50%, -50%);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	margin: 0;
	z-index: 2;
}
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle:focus {
	outline: none;
}
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle + span:focus {
	outline: none;
}
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider_amount {
	padding: 0;
}
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider_amount input,
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider_amount button {
	display: none;
}
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider_amount .price_label {
	float: left;
}
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider_amount .button {
	display: none;
}
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider_amount .from,
.portfolio-filters-list .widget_price_filter .price_slider_wrapper .price_slider_amount .to {
	font-size: 1.1em;
}
.portfolio-filters-list .widget_product_categories.woocommerce ul li a,
.portfolio-filters-list .widget_layered_nav.woocommerce ul li a {
	position: relative;
	padding-left: 1.2em;
	text-transform: inherit;
	font-weight: inherit;
	font-family: inherit;
	font-size: inherit;
}
.portfolio-filters-list .widget_product_categories.woocommerce ul li a {
	padding: 0;
}
.portfolio-filters-list .widget_product_categories.woocommerce ul li a:before,
.portfolio-filters-list .widget_layered_nav.woocommerce ul li a:before {
	content: none;
	color: currentColor;
}
.portfolio-filters-list .widget_product_categories.woocommerce ul li.chosen a:before,
.portfolio-filters-list .widget_layered_nav.woocommerce ul li.chosen a:before {
	content: "";
	font-family: "thegem-icons";
	font-weight: normal;
	font-style: normal;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
.portfolio-filters-list .widget_product_search {
	margin: 0 0 30px 0;
}
.portfolio-filters-list .widget_product_search input {
	width: 100%;
	box-sizing: border-box;
}
.portfolio-filters-list .widget_product_search button {
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 100%;
	font-size: 0;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	cursor: pointer;
}
.portfolio-filters-list .widget_product_search button:before {
	content: "";
	font-size: 16px;
	font-style: normal;
	font-family: "thegem-icons";
	font-weight: normal;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotateY(180deg);
}
.portfolio-filters-list.normal .widget_product_search,
.portfolio-filters-list.normal .widget_product_categories,
.portfolio-filters-list.normal .widget_layered_nav,
.portfolio-filters-list.normal .widget_price_filter {
	display: none;
}
.portfolio-filters-list .widget_product_search input {
	border: none;
	padding: 7px 33px 7px 18px;
	border-radius: 17px;
	line-height: 1;
}
.portfolio-filters-list .widget_product_search input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: currentColor;
	opacity: 0.8;
}
.portfolio-filters-list .widget_product_search input::-moz-placeholder {
	/* Firefox 19+ */
	color: currentColor;
	opacity: 0.8;
}
.portfolio-filters-list .widget_product_search input:-ms-input-placeholder {
	/* IE 10+ */
	color: currentColor;
	opacity: 0.8;
}
.portfolio-filters-list .widget_product_search input:-moz-placeholder {
	/* Firefox 18- */
	color: currentColor;
	opacity: 0.8;
}
.portfolio-filters-list .widget_layered_nav .count,
.portfolio-filters-list .widget_product_categories .count {
	opacity: 0;
}
.portfolio-filters-list .widget_recently_viewed_products ul.product_list_widget li .gem-products-image {
	float: left;
}
.portfolio-filters-list .widget_recently_viewed_products ul.product_list_widget li,
.portfolio-filters-list .widget_recently_viewed_products ul.product_list_widget li .gem-products-image,
.portfolio-filters-list .widget_products ul.product_list_widget li .gem-products-image,
.portfolio-filters-list .widget_products ul.product_list_widget li .gem-products-content,
.portfolio-filters-list .widget_top_rated_products ul.product_list_widget li .gem-products-image,
.portfolio-filters-list .widget_top_rated_products ul.product_list_widget li .gem-products-content {
	border: none;
}

/* Blog Archive */
.thegem-template-blog-archive .vc_row[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
}
body.single-thegem_templates.compose-mode .thegem-template-blog-archive .vc_row[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-blog-archive .vc_row[data-vc-full-width] > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-blog-archive .vc_row[data-vc-full-width] > .container {
		width: 100%;
	}
}

/* Blog Archive Title */
.thegem-te-blog-archive-title{
	position: relative;
	width: 100%;
}
.thegem-te-blog-archive-title .blog-title{
	position: relative;
	padding: 0;
	margin: 0;
}

/* Blog Archive Description */
.thegem-te-blog-archive-description{
	position: relative;
	width: 100%;
}
.thegem-te-blog-archive-description .blog-description{
	position: relative;
	display: inline-flex;
	padding: 0;
	margin: 0
}

/* Blog Archive Breadcrumbs */
.thegem-te-blog-archive-breadcrumbs{
	position: relative;
	width: 100%;
}
.thegem-te-blog-archive-breadcrumbs .blog-breadcrumbs{
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	z-index: 1;
}
.thegem-te-blog-archive-breadcrumbs .blog-breadcrumbs ul{
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.thegem-te-blog-archive-breadcrumbs .blog-breadcrumbs ul li{
	position: relative;
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	color: var(--thegem-to-breadcrumbs-color);
}
.thegem-te-blog-archive-breadcrumbs .blog-breadcrumbs ul li:not(:last-child){
	padding-right: 20px;
	margin-right: 5px;
}
.thegem-te-blog-archive-breadcrumbs .blog-breadcrumbs ul li:not(:last-child):after{
	font-family: 'thegem-icons';
	content: '\e601';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}
.thegem-te-blog-archive-breadcrumbs .blog-breadcrumbs ul li a{
	color: var(--thegem-to-breadcrumbs-color);
}
.thegem-te-blog-archive-breadcrumbs .blog-breadcrumbs ul li a:hover{
	color: var(--thegem-to-breadcrumbs-color-hover);
}
.thegem-te-blog-archive-breadcrumbs .blog-breadcrumbs ul li:last-child{
	color: var(--thegem-to-breadcrumbs-color-active);
}

/* Thegem Search Form */
.gem-search-form.gem-search-form-style-light input{
	border: 1px solid var(--thegem-to-box-border-color);
}
.gem-search-form .search-submit{
	top: 50%;
	transform: translateY(-50%);
}

/* Thegem Divider */
.gem-divider.gem-divider--v-inline{
	display: inline-flex;
}
.gem-divider.gem-divider--v-solid,
.gem-divider.gem-divider--v-dotted,
.gem-divider.gem-divider--v-dashed{
	border-top: 0 !important;
	border-right: 0 !important;
	border-bottom: 0 !important;
	border-left-width: 1px;
	border-color: var(--thegem-to-box-border-color);
}
.gem-divider.gem-divider--v-solid{
	border-style: solid;
}
.gem-divider.gem-divider--v-dotted{
	border-style: dotted;
}
.gem-divider.gem-divider--v-dashed{
	border-style: dashed;
}
.gem-divider.gem-divider--v-stroked{
	border: 0 !important;
}
.gem-divider.gem-divider--v-stroked svg{
	stroke: var(--thegem-to-box-border-color);
}


/* Custom Menu */
.thegem-menu-custom.thegem-menu-custom--horizontal ul.nav-menu-custom{
	display: flex;
	flex-wrap: wrap;
}
.thegem-menu-custom.thegem-menu-custom--horizontal ul.nav-menu-custom li{
	position: relative;
}
.thegem-menu-custom.thegem-menu-custom--horizontal ul.nav-menu-custom li:not(:last-child):before{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 1px;
	height: 100%;
	background-color: var(--thegem-to-box-border-color);
	z-index: 2;
}
.thegem-menu-custom.thegem-menu-custom--horizontal ul.nav-menu-custom li a{
	margin: 0;
}
.thegem-menu-custom.thegem-menu-custom--horizontal.thegem-menu-custom--flex-start ul.nav-menu-custom li:first-child a{
	margin-left: -0.7em;
}
.thegem-menu-custom.thegem-menu-custom--horizontal.thegem-menu-custom--flex-end ul.nav-menu-custom li:last-child a{
	margin-right: -0.7em;
}
.thegem-menu-custom.menu-indicator ul.nav-menu-custom li a i.indicator{
	position: relative;
	display: flex;
	align-items: center;
}
.thegem-menu-custom.menu-indicator ul.nav-menu-custom li a i.indicator:before{
	content: "\e601";
	font-family: "thegem-icons";
	font-weight: normal;
	font-style: normal;
	line-height: inherit;
	font-size: inherit;
}
.thegem-menu-custom .menu-custom-header .icon{
	width: auto;
}

/* Custom Menu Hover and Active Pointers */
.thegem-menu-custom ul.nav-menu-custom > li > a{
	position: relative;
	z-index: 1;
}
.thegem-menu-custom ul.nav-menu-custom > li > a .text{
	position: relative;
	display: inline-flex;
}
.thegem-menu-custom ul.nav-menu-custom > li > a:after,
.thegem-menu-custom ul.nav-menu-custom > li > a:before,
.thegem-menu-custom ul.nav-menu-custom > li > a .text:before,
.thegem-menu-custom ul.nav-menu-custom > li > a .text:after{
	display: block;
	position: absolute;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-webkit-transition-timing-function: cubic-bezier(.58,.3,.005,1);
	-o-transition-timing-function: cubic-bezier(.58,.3,.005,1);
	transition-timing-function: cubic-bezier(.58,.3,.005,1);
}
.thegem-menu-custom ul.nav-menu-custom > li > a:before {
	z-index: -1;
}
.thegem-menu-custom ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after{
	opacity: 0;
}
.thegem-menu-custom ul.nav-menu-custom > li:hover > a{
	background-color: transparent;
}

/* Custom Menu Style Hover Background */
.thegem-menu-custom.style-hover-background ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.menu-item-active > a:before,
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.menu-item-current > a:before,
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.collapsed > a:before,
.thegem-menu-custom.style-hover-background ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.menu-item-active > a:after,
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.menu-item-current > a:after,
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.collapsed > a:after {
	content: '';
	transition: 0.3s;
}
.thegem-menu-custom.style-hover-background ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a,
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.menu-item-active > a,
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.menu-item-current > a,
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.collapsed > a {
	color: var(--thegem-to-menu-level1-light-active-color);
}
.thegem-menu-custom.style-hover-background ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before{
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--thegem-to-menu-level1-color-hover);
	z-index: -1;
}
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.menu-item-active > a:before,
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.menu-item-current > a:before,
.thegem-menu-custom.style-active-background ul.nav-menu-custom > li.collapsed > a:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--thegem-to-menu-level1-color-hover);
	z-index: -1;
}
.thegem-menu-custom.style-hover-background.style-hover-type-background-underline ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom > li.menu-item-active > a:after,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom > li.menu-item-current > a:after,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom > li.collapsed > a:after {
	height: 2px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--thegem-to-menu-level2-border-color, #DFE5E8);
	z-index: 2;
}
.thegem-menu-custom.style-hover-background.style-hover-type-background-underline ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom > li.menu-item-active > a,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom > li.menu-item-current > a,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom > li.collapsed > a {
	color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}
.thegem-menu-custom.style-hover-background.style-hover-type-background-rounded ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom > li.menu-item-active > a,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom > li.menu-item-current > a,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom > li.collapsed > a {
	color: var(--thegem-to-menu-level1-light-active-color);
}
.thegem-menu-custom.style-hover-background.style-hover-type-background-rounded ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom > li.menu-item-active > a:before,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom > li.menu-item-current > a:before,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom > li.collapsed > a:before {
	background-color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
	border-radius: 20px;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-grow ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-grow ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	transform: scale(0.5);
}
.thegem-menu-custom.style-hover-background.style-hover-animation-grow ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-grow ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:after {
	transform: scale(1);
	opacity: 1;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-shrink ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-shrink ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	transform: scale(1.2);
	transition: 0.3s;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-shrink ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-shrink ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:after {
	transition: opacity 0.15s, transform 0.4s;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-left ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-left ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	left: 100%;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-right ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-right ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	right: 100%;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-up ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-up ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	top: 100%;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-down ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-down ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	bottom: 100%;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-none,
.thegem-menu-custom.style-hover-background.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a {
	transition-duration: 0s;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-none:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-none:after,
.thegem-menu-custom.style-hover-background.style-hover-animation-none:hover,
.thegem-menu-custom.style-hover-background.style-hover-animation-none:focus,
.thegem-menu-custom.style-hover-background.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	transition-duration: 0s;
}

/* Custom Menu Style Hover Text Color */
.thegem-menu-custom.style-hover-text ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a {
	color: var(--thegem-to-menu-level1-color-hover);
}
.thegem-menu-custom.style-active-text ul.nav-menu-custom > li.menu-item-active > a,
.thegem-menu-custom.style-active-text ul.nav-menu-custom > li.menu-item-current > a,
.thegem-menu-custom.style-active-text ul.nav-menu-custom > li.collapsed > a {
	color: var(--thegem-to-menu-level1-color-hover);
}

/* Style Hover Lined */
.thegem-menu-custom.style-hover-lined ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.menu-item-active > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.menu-item-current > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.collapsed > a .text:before {
	content: '';
	top: 0;
}
.thegem-menu-custom.style-hover-lined ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.menu-item-active > a .text:after,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.menu-item-current > a .text:after,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.collapsed > a .text:after {
	content: '';
	bottom: 0;
}
.thegem-menu-custom.style-hover-lined.style-hover-type-line-underline-1 ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-type-line-underline-2 ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-type-line-overline-1 ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after,
.thegem-menu-custom.style-hover-lined.style-hover-type-line-overline-2 ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-1 ul.nav-menu-custom > li.menu-item-active > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-2 ul.nav-menu-custom > li.menu-item-active > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-1 ul.nav-menu-custom > li.menu-item-active > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-2 ul.nav-menu-custom > li.menu-item-active > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-1 ul.nav-menu-custom > li.menu-item-current > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-2 ul.nav-menu-custom > li.menu-item-current > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-1 ul.nav-menu-custom > li.menu-item-current > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-2 ul.nav-menu-custom > li.menu-item-current > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-1 ul.nav-menu-custom > li.collapsed > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-2 ul.nav-menu-custom > li.collapsed > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-1 ul.nav-menu-custom > li.collapsed > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-2 ul.nav-menu-custom > li.collapsed > a .text:after {
	content: none;
}
.thegem-menu-custom.style-hover-lined ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a{
	color: var(--thegem-to-menu-level1-color-hover);
}
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.menu-item-active > a,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.menu-item-current > a,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.collapsed > a {
	color: var(--thegem-to-menu-level1-color-hover);
}
.thegem-menu-custom.style-hover-lined ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a .text:before,
.thegem-menu-custom.style-hover-lined ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a .text:after{
	height: 2px;
	width: 100%;
	left: 0;
	background-color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
	z-index: 2;
}
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.menu-item-active > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.menu-item-current > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.collapsed > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.menu-item-active > a .text:after,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.menu-item-current > a .text:after,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom > li.collapsed > a .text:after {
	height: 2px;
	width: 100%;
	left: 0;
	background-color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
	z-index: 2;
}
.thegem-menu-custom.style-hover-lined.style-hover-type-line-top-bottom ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom > li.menu-item-active > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom > li.menu-item-current > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom > li.collapsed > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-type-line-top-bottom ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom > li.menu-item-active > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom > li.menu-item-current > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom > li.collapsed > a .text:after {
	background-color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-grow ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-animation-grow ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after {
	height: 0;
	width: 0;
	left: 50%;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-drop-out ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before {
	top: 10px;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-drop-out ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after {
	bottom: 10px;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-drop-in ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before {
	top: -10px;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-drop-in ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after {
	bottom: -10px;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-none,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text {
	transition-duration: 0s;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-none:before,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none:after,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none:hover,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none:focus,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:hover,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:focus {
	transition-duration: 0s;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-slide-right ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-animation-slide-right ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after {
	width: 10px;
	left: -20px;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-slide-left ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-animation-slide-left ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after {
	width: 10px;
	left: calc(100% + 20px);
}

/* Style Hover Framed */
.thegem-menu-custom.style-hover-framed.style-hover-type-frame-rounded ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom > li.menu-item-active > a,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom > li.menu-item-current > a,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom > li.collapsed > a,
.thegem-menu-custom.style-hover-framed.style-hover-type-frame-rounded ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom > li.menu-item-active > a:before,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom > li.menu-item-current > a:before,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom > li.collapsed > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-type-frame-rounded ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom > li.menu-item-active > a:after,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom > li.menu-item-current > a:after,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom > li.collapsed > a:after {
	border-radius: 20px;
}
.thegem-menu-custom.style-hover-framed ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.menu-item-active > a,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.menu-item-current > a,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.collapsed > a {
	color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}
.thegem-menu-custom.style-hover-framed ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.menu-item-active > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.menu-item-current > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.collapsed > a:before,
.thegem-menu-custom.style-hover-framed ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.menu-item-active > a:after,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.menu-item-current > a:after,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.collapsed > a:after {
	background: transparent;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	border: 2px solid var(--thegem-to-menu-level1-color-hover, #00BCD4);
}
.thegem-menu-custom.style-hover-framed ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.menu-item-active > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.menu-item-current > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom > li.collapsed > a:before {
	content: '';
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-grow ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before {
	transform: scale(0.75);
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-shrink ul.nav-menu-custom > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before {
	transform: scale(1.25);
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-grow ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-shrink ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before {
	transition: opacity 0.2s, transform 0.4s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	width: 2px;
	height: 2px;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before {
	border-width: 0 0 2px 2px;
	transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	content: '';
	top: initial;
	bottom: 0;
	left: initial;
	right: 0;
	border-width: 2px 2px 0 0;
	transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:after {
	width: 100% !important;
	height: 100% !important;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before {
	transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:after {
	transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	width: 2px;
	height: 2px;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before {
	border-width: 2px 0 0 2px;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	content: '';
	top: initial;
	bottom: 0;
	left: initial;
	right: 0;
	border-width: 0 2px 2px 0;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:after {
	width: 100% !important;
	height: 100% !important;
	transition: opacity 0.002s, width 0.4s, height 0.4s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-none,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a {
	transition-duration: 0s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-none:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none:after,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none:hover,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none:focus,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none ul.nav-menu-custom > li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a {
	transition-duration: 0s;
}

/* Single Post */
.thegem-template-single-post .vc_row[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
}
body.single-thegem_templates.compose-mode .thegem-template-single-post .vc_row[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-single-post .vc_row[data-vc-full-width] > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-single-post .vc_row[data-vc-full-width] > .container {
		width: 100%;
	}
}
.thegem-template-single-post .vc_section[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}
body.single-thegem_templates.compose-mode .thegem-template-single-post .vc_section[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-single-post .vc_section[data-vc-full-width] > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-single-post .vc_section[data-vc-full-width] > .container {
		width: 100%;
	}
}
/* Single Post CPT */
.thegem-template-cpt .vc_row[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
}
body.single-thegem_templates.compose-mode .thegem-template-cpt .vc_row[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-cpt .vc_row[data-vc-full-width] > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-cpt .vc_row[data-vc-full-width] > .container {
		width: 100%;
	}
}
.thegem-template-cpt .vc_section[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}
body.single-thegem_templates.compose-mode .thegem-template-cpt .vc_section[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-cpt .vc_section[data-vc-full-width] > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-cpt .vc_section[data-vc-full-width] > .container {
		width: 100%;
	}
}/* Page */
.thegem-template-page .vc_row[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
}
body.single-thegem_templates.compose-mode .thegem-template-page .vc_row[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-page .vc_row[data-vc-full-width] > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-page .vc_row[data-vc-full-width] > .container {
		width: 100%;
	}
}
.thegem-template-page .vc_section[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}
body.single-thegem_templates.compose-mode .thegem-template-page .vc_section[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-page .vc_section[data-vc-full-width] > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-page .vc_section[data-vc-full-width] > .container {
		width: 100%;
	}
}

/* Socials Sharing */
.thegem-te-socials-sharing{
	position: relative;
}
.thegem-te-socials-sharing .socials-sharing{
	position: relative;
	display: flex;
}
.thegem-te-socials-sharing .socials-sharing ul{
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	flex: auto;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: -5px;
	margin-right: -5px;
	padding: 0;
	list-style-type: none;
}
.thegem-te-socials-sharing .socials-sharing ul li{
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}
.thegem-te-socials-sharing.socials-sharing--left .socials-sharing ul{
	justify-content: flex-start;
}
.thegem-te-socials-sharing.socials-sharing--center .socials-sharing ul{
	justify-content: center;
}
.thegem-te-socials-sharing.socials-sharing--right .socials-sharing ul{
	justify-content: flex-end;
}
.thegem-te-socials-sharing.socials-sharing--justified .socials-sharing ul{
	justify-content: space-between;
}
.thegem-te-socials-sharing .socials-sharing .socials-item{
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	color: var(--thegem-to-socials-sharing-color);
}
.thegem-te-socials-sharing.socials-sharing--round .socials-sharing .socials-item,
.thegem-te-socials-sharing.socials-sharing--square .socials-sharing .socials-item{
	border: 1px solid;
	border-color: var(--thegem-to-socials-sharing-color, #99A9B5);
	background-color: transparent;
	padding: 0.5em;
	min-width: 40px;
	min-height: 40px;
}
.thegem-te-socials-sharing.socials-sharing--round .socials-sharing .socials-item{
	border-radius: 50%;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.facebook:hover {
	color: #4e64b5;
	border-color: #4e64b5;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.twitter:hover{
	color: #00aced;
	border-color: #00aced;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.pinterest:hover {
	color: #ff5757;
	border-color: #ff5757;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.tumblr:hover{
	color: #456988;
	border-color: #456988;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.instagram:hover {
	color: #9a8f62;
	border-color: #9a8f62;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.linkedin:hover{
	color: #0288d1;
	border-color: #0288d1;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.skype:hover {
	color: #00aff0;
	border-color: #00aff0;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.youtube:hover {
	color: #c82929;
	border-color: #c82929;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.telegram:hover {
	color: #2ca5e0;
	border-color: #2ca5e0;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.vk:hover {
	color: #5181b8;
	border-color: #5181b8;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.whatsapp:hover {
	color: #30b220;
	border-color: #30b220;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.viber:hover {
	color: #7a4e9d;
	border-color: #7a4e9d;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.ok:hover {
	color: #df8733;
	border-color: #df8733;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.reddit:hover {
	color: #ff4500;
	border-color: #ff4500;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.tiktok:hover {
	color: #ff0050;
	border-color: #ff0050;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.xing:hover {
	color: #046064;
	border-color: #046064;
}
.thegem-te-socials-sharing .socials-sharing .socials-item.skype:hover {
	color: #00aff0;
	border-color: #00aff0;
}
.thegem-te-socials-sharing .socials-sharing .socials-item-icon{
	transition: none;
}
.thegem-te-socials-sharing.socials-sharing--tiny .socials-sharing .socials-item-icon{
	font-size: 16px;
}
.thegem-te-socials-sharing.socials-sharing--small .socials-sharing .socials-item-icon{
	font-size: 24px;
}
.thegem-te-socials-sharing.socials-sharing--medium .socials-sharing .socials-item-icon{
	font-size: 48px;
}
.thegem-te-socials-sharing.socials-sharing--large .socials-sharing .socials-item-icon{
	font-size: 96px;
}
.thegem-te-socials-sharing.socials-sharing--xlarge .socials-sharing .socials-item-icon{
	font-size: 144px;
}

/* Single Post Title / Excerpt / Content */
.thegem-te-post-title,
.thegem-te-portfolio-title,
.thegem-te-post-excerpt,
.thegem-te-portfolio-excerpt,
.thegem-te-post-content,
.thegem-te-portfolio-content{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.thegem-te-post-title .post-title,
.thegem-te-portfolio-title .portfolio-title,
.thegem-te-post-excerpt .post-excerpt,
.thegem-te-portfolio-excerpt .portfolio-excerpt,
.thegem-te-post-content .post-content,
.thegem-te-portfolio-content .portfolio-content{
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}
.thegem-te-portfolio-title .portfolio-title{
	text-align: inherit;
}
.thegem-te-portfolio-title.title--left .portfolio-title{
	text-align: left;
}
.thegem-te-portfolio-title.title--right .portfolio-title{
	text-align: right;
}
.thegem-te-portfolio-title.title--center .portfolio-title{
	text-align: center;
}
.thegem-te-portfolio-title.title--justify .portfolio-title{
	text-align: justify;
}

.thegem-te-post-title .post-title a{
	color: var(--thegem-to-h4-color);
}
.thegem-te-post-title .post-title a:hover{
	color: var(--thegem-to-link-color);
}

/* Single Post Breadcrumbs */
.thegem-te-post-breadcrumbs,
.thegem-te-portfolio-breadcrumbs{
	position: relative;
	width: 100%;
}
.thegem-te-post-breadcrumbs .post-breadcrumbs,
.thegem-te-portfolio-breadcrumbs .portfolio-breadcrumbs{
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	z-index: 1;
}
.thegem-te-post-breadcrumbs .post-breadcrumbs ul,
.thegem-te-portfolio-breadcrumbs .portfolio-breadcrumbs ul{
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.thegem-te-post-breadcrumbs .post-breadcrumbs ul li,
.thegem-te-portfolio-breadcrumbs .portfolio-breadcrumbs ul li{
	position: relative;
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	color: var(--thegem-to-breadcrumbs-color);
}
.thegem-te-post-breadcrumbs .post-breadcrumbs ul li:not(:last-child),
.thegem-te-portfolio-breadcrumbs .portfolio-breadcrumbs ul li:not(:last-child){
	padding-right: 20px;
	margin-right: 5px;
}
.thegem-te-post-breadcrumbs .post-breadcrumbs ul li:not(:last-child):after,
.thegem-te-portfolio-breadcrumbs .portfolio-breadcrumbs ul li:not(:last-child):after{
	font-family: 'thegem-icons';
	content: '\e601';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}
.thegem-te-post-breadcrumbs .post-breadcrumbs ul li a,
.thegem-te-portfolio-breadcrumbs .portfolio-breadcrumbs ul li a{
	color: var(--thegem-to-breadcrumbs-color);
}
.thegem-te-post-breadcrumbs .post-breadcrumbs ul li a:hover,
.thegem-te-portfolio-breadcrumbs .portfolio-breadcrumbs ul li a:hover{
	color: var(--thegem-to-breadcrumbs-color-hover);
}
.thegem-te-post-breadcrumbs .post-breadcrumbs ul li:last-child,
.thegem-te-portfolio-breadcrumbs .portfolio-breadcrumbs ul li:last-child{
	color: var(--thegem-to-breadcrumbs-color-active);
}

/* Single Post Featured Content */
.thegem-te-post-featured-content{
	position: relative;
	display: flex;
}
.thegem-te-post-featured-content.featured-image--left{
	justify-content: flex-start;
}
.thegem-te-post-featured-content.featured-image--center{
	justify-content: center;
}
.thegem-te-post-featured-content.featured-image--right{
	justify-content: flex-end;
}
.thegem-te-post-featured-content .post-featured-content{
	position: relative;
	width: 100%;
}
.thegem-te-post-featured-content.featured-image--default .post-featured-content{
	width: auto;
}
.thegem-te-post-featured-content.featured-image--stretch .post-featured-content{
	width: 100%;
}
.thegem-te-post-featured-content.featured-image--stretch .post-featured-content img{
	width: 100% !important;
	height: auto !important;
}

/* Single Post Featured Image */
.thegem-te-post-featured-image,
.thegem-te-portfolio-featured-image{
	position: relative;
	display: flex;
}
.thegem-te-post-featured-image.featured-image--left,
.thegem-te-portfolio-featured-image.featured-image--left{
	justify-content: flex-start;
}
.thegem-te-post-featured-image.featured-image--center,
.thegem-te-portfolio-featured-image.featured-image--center{
	justify-content: center;
}
.thegem-te-post-featured-image.featured-image--right,
.thegem-te-portfolio-featured-image.featured-image--right{
	justify-content: flex-end;
}
.thegem-te-post-featured-image.featured-image--stretch .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--stretch .portfolio-featured-image{
	width: 100%;
}
.thegem-te-post-featured-image.featured-image--stretch .post-featured-image img,
.thegem-te-portfolio-featured-image.featured-image--stretch .portfolio-featured-image img{
	width: 100% !important;
	height: auto !important;
}
.thegem-te-post-featured-image .post-featured-image,
.thegem-te-portfolio-featured-image .portfolio-featured-image{
	position: relative;
	overflow: hidden;
}
.thegem-te-post-featured-image .post-featured-image .fancybox,
.thegem-te-portfolio-featured-image .portfolio-featured-image .fancybox{
	position: relative;
	display: block;
}
.thegem-te-post-featured-image .post-featured-image .fancybox:before,
.thegem-te-portfolio-featured-image .portfolio-featured-image .fancybox:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--thegem-to-hover-default-color-08, rgba(0, 188, 212, 0.8));
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
	z-index: 5;
}
.thegem-te-post-featured-image .post-featured-image .fancybox:after,
.thegem-te-portfolio-featured-image .portfolio-featured-image .fancybox:after {
	content: '\e60f';
	font-family: 'thegem-icons';

	position: absolute;
	top: -20px;
	left: 50%;
	font-size: 40px;
	transform: translate(-50%, -50%);
	transition: all 0.3s;
	color: var(--thegem-to-icons-portfolio-gallery-color-hover);
	opacity: 0;
	visibility: hidden;
	z-index: 5;
}
.thegem-te-post-featured-image .post-featured-image .fancybox:hover:before,
.thegem-te-post-featured-image .post-featured-image .fancybox:hover:after,
.thegem-te-portfolio-featured-image .portfolio-featured-image .fancybox:hover:before,
.thegem-te-portfolio-featured-image .portfolio-featured-image .fancybox:hover:after{
	visibility: visible;
	opacity: 1;
}
.thegem-te-post-featured-image .post-featured-image .fancybox:hover:after,
.thegem-te-portfolio-featured-image .portfolio-featured-image .fancybox:hover:after{
	top: 50%;
}
.thegem-te-post-featured-image.featured-image--border-8 .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-8 .portfolio-featured-image{
	border: 8px solid transparent;
}
.thegem-te-post-featured-image.featured-image--border-16 .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-16 .portfolio-featured-image {
	border: 16px solid transparent;
}
.thegem-te-post-featured-image.featured-image--border-outline-8 .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-outline-8 .portfolio-featured-image {
	padding: 8px;
	border: 1px solid transparent;
}
.thegem-te-post-featured-image.featured-image--border-outline-20 .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-outline-20 .portfolio-featured-image {
	padding: 20px;
	border: 2px solid transparent;
}
.thegem-te-post-featured-image.featured-image--border-shadow-20 .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-shadow-20 .portfolio-featured-image {
	padding: 20px;
	-webkit-box-shadow: 0px 1px 27px 1px rgba(44, 46, 61, 0.25);
	-moz-box-shadow: 0px 1px 27px 1px rgba(44, 46, 61, 0.25);
	box-shadow: 0px 1px 27px 1px rgba(44, 46, 61, 0.25);
}
.thegem-te-post-featured-image.featured-image--border-combined .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-combined .portfolio-featured-image {
	padding: 8px;
	border: 20px solid transparent;
}
.thegem-te-post-featured-image.featured-image--border-radius-20 .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-radius-20 .portfolio-featured-image {
	padding: 10px;
	border-radius: 20px;
	border: 10px solid transparent;
}
.thegem-te-post-featured-image.featured-image--border-radius-55 .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-radius-55 .portfolio-featured-image {
	padding: 18px;
	border: 6px solid transparent;
	border-radius: 55px;
}
.thegem-te-post-featured-image.featured-image--border-radius-55 .post-featured-image a,
.thegem-te-post-featured-image.featured-image--border-radius-55 .post-featured-image img,
.thegem-te-portfolio-featured-image.featured-image--border-radius-55 .portfolio-featured-image a,
.thegem-te-portfolio-featured-image.featured-image--border-radius-55 .portfolio-featured-image img{
	border-radius: 55px;
	overflow: hidden;
}
.thegem-te-post-featured-image.featured-image--dashed-inside .post-featured-image:after,
.thegem-te-portfolio-featured-image.featured-image--dashed-inside .portfolio-featured-image:after {
	content: "";
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	border: 2px dashed rgba(255, 255, 255, 0.5);
	z-index: 0;
}
.thegem-te-post-featured-image.featured-image--dashed-outside .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--dashed-outside .portfolio-featured-image {
	padding: 20px;
	border: 2px dashed transparent;
}
.thegem-te-post-featured-image.featured-image--rounded-with-border .post-featured-image,
.thegem-te-post-featured-image.featured-image--rounded-without-border .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--rounded-with-border .portfolio-featured-image,
.thegem-te-portfolio-featured-image.featured-image--rounded-without-border .portfolio-featured-image {
	border-radius: 50%;
}
.thegem-te-post-featured-image.featured-image--rounded-with-border .post-featured-image:after,
.thegem-te-portfolio-featured-image.featured-image--rounded-with-border .portfolio-featured-image:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border: 2px solid #FFFFFF;
	border-radius: 50%;
}
.thegem-te-post-featured-image.featured-image--border-8 .post-featured-image,
.thegem-te-post-featured-image.featured-image--border-16 .post-featured-image,
.thegem-te-post-featured-image.featured-image--border-outline-8 .post-featured-image,
.thegem-te-post-featured-image.featured-image--border-outline-20 .post-featured-image,
.thegem-te-post-featured-image.featured-image--border-combined .post-featured-image,
.thegem-te-post-featured-image.featured-image--border-radius-20 .post-featured-image,
.thegem-te-post-featured-image.featured-image--border-radius-55 .post-featured-image,
.thegem-te-post-featured-image.featured-image--dashed-outside .post-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-8 .portfolio-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-16 .portfolio-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-outline-8 .portfolio-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-outline-20 .portfolio-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-combined .portfolio-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-radius-20 .portfolio-featured-image,
.thegem-te-portfolio-featured-image.featured-image--border-radius-55 .portfolio-featured-image,
.thegem-te-portfolio-featured-image.featured-image--dashed-outside .portfolio-featured-image{
	border-color: var(--thegem-to-box-border-color);
}

@media screen and (max-width: 767px){
	.thegem-te-post-featured-image .post-featured-image img,
	.thegem-te-portfolio-featured-image .portfolio-featured-image img{
		height: auto !important;
	}
}

/* Loop Item Featured Media */
.thegem-te-loop-featured-media{
	position: relative;
	z-index: 0;
}
.thegem-te-loop-featured-media .media-inner-wrap{
	position: relative;
	width: 100%;
	height: 100%;
	transition: all 0.3s;
	overflow: hidden;
}
.thegem-te-loop-featured-media.image-position-centered .media-inner-wrap{
	margin: 0 auto;
}
.thegem-te-loop-featured-media.image-position-right .media-inner-wrap{
	margin-left: auto;
}
.thegem-te-loop-featured-media.without-image .media-inner-wrap {
	background-color: var(--styled-bg-color, #f0f3f2);
	aspect-ratio: 1/1;
}
.thegem-te-loop-featured-media.loop-item-type-masonry.without-image .media-inner-wrap{
	aspect-ratio: auto;
}
.thegem-te-loop-featured-media.appearance-type-audio.loop-item-type-masonry .post-featured-content{
	position: relative !important;
	min-height: 54px;
}
.thegem-te-loop-featured-media.appearance-type-image .media-inner-wrap:before,
.thegem-te-loop-featured-media.appearance-type-gallery .media-inner-wrap .portfolio-image-slider:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: all 0.3s;
	z-index: 5;
}
.thegem-te-loop-featured-media .featured-media .media-inner-wrap .portfolio-item-link{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.thegem-te-loop-featured-media .featured-media .media-inner-wrap img{
	transition: all 0.3s;
}
.thegem-te-loop-featured-media.image-aspect-ratio .featured-media .media-inner-wrap img,
.thegem-te-loop-featured-media.loop-item-type-masonry .featured-media .media-inner-wrap .portfolio-image-slider img {
	height: 100%;
	width: 100%;
	max-width: 100% !important;
	-o-object-fit: cover;
	object-fit: cover;
}
.thegem-te-loop-featured-media.appearance-type-image.image-hover-effect a .featured-media .media-inner-wrap img {
	overflow: hidden;
	transform: translate(0,0) scale(1);
}
.thegem-te-loop-featured-media.appearance-type-image.image-hover-effect a:hover .featured-media .media-inner-wrap img {
	transform: translate(0,0) scale(1.12);
}
.thegem-te-loop-featured-media.loop-item-type-masonry.appearance-type-video .media-inner-wrap,
.thegem-te-loop-featured-media.loop-item-type-masonry.appearance-type-quote .media-inner-wrap,
.thegem-te-loop-featured-media.loop-item-type-masonry.appearance-type-gallery .media-inner-wrap {
	aspect-ratio: 1/1;
}

.thegem-te-loop-featured-media.appearance-type-quote blockquote .quote-author {
	display: flex;
	width: 100%;
}
.thegem-te-loop-featured-media.appearance-type-quote blockquote .quote-author:after {
	font-family: 'thegem-icons';
	content: '\e60c';
	font-size: 70px;
	line-height: 50px;
	margin-left: auto;
	vertical-align: bottom;
	font-style: normal;
	font-weight: normal;
}

.thegem-te-loop-featured-media.appearance-type-gif img.gem-gif-poster {
	position: absolute !important;
	top: 0;
	left: 0;
	transition: none;
	background-color: var(--styled-bg-color, #f0f3f2);
}
.thegem-te-loop-featured-media.appearance-type-gif:hover img.gem-gif-poster,
.thegem-te-loop-featured-media.appearance-type-gif a:hover img.gem-gif-poster{
	opacity: 0 !important;
	visibility: hidden;
}

/* Single Post/Portfolio Info */
.thegem-te-post-info,
.thegem-te-portfolio-info{
	position: relative;
	width: 100%;
}
.thegem-te-post-info .post-info,
.thegem-te-portfolio-info .portfolio-info{
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.thegem-te-post-info.post-info--left .post-info,
.thegem-te-portfolio-info.portfolio-info--left .portfolio-info{
	justify-content: flex-start;
}
.thegem-te-post-info.post-info--center .post-info,
.thegem-te-portfolio-info.portfolio-info--center .portfolio-info{
	justify-content: center;
}
.thegem-te-post-info.post-info--right .post-info,
.thegem-te-portfolio-info.portfolio-info--right .portfolio-info{
	justify-content: flex-end;
}

.thegem-te-post-info.post-info--vertical .post-info,
.thegem-te-portfolio-info.portfolio-info--vertical .portfolio-info{
	flex-direction: column;
}
.thegem-te-post-info.post-info--vertical.post-info--left .post-info,
.thegem-te-portfolio-info.portfolio-info--vertical.portfolio-info--left .portfolio-info{
	align-items: flex-start;
}
.thegem-te-post-info.post-info--vertical.post-info--center .post-info,
.thegem-te-portfolio-info.portfolio-info--vertical.portfolio-info--center .portfolio-info{
	align-items: center;
}
.thegem-te-post-info.post-info--vertical.post-info--right .post-info,
.thegem-te-portfolio-info.portfolio-info--vertical.portfolio-info--right .portfolio-info{
	align-items: flex-end;
}
.thegem-te-post-info.post-info--vertical .post-info-item,
.thegem-te-portfolio-info.portfolio-info--vertical .portfolio-info-item{
	margin-right: 0 !important;
	padding-right: 0 !important;
	margin-top: 10px;
	margin-bottom: 0;
}
.thegem-te-post-info.post-info--vertical .post-info-item:first-child,
.thegem-te-portfolio-info.portfolio-info--vertical .portfolio-info-item:first-child{
	margin-top: 5px !important;
}
.thegem-te-post-info.post-info--vertical .post-info-item:last-child,
.thegem-te-portfolio-info.portfolio-info--vertical .portfolio-info-item:last-child{
	margin-bottom: 0 !important;
}

.thegem-te-post-info .post-info,
.thegem-te-portfolio-info .portfolio-info{
	color: var(--thegem-to-date-filter-subtitle-color);
}
.thegem-te-post-info .post-info-item,
.thegem-te-portfolio-info .portfolio-info-item{
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 10px;
	padding-right: 10px;
}
.thegem-te-post-info .post-info-item:not(.post-info-item-cats-list):last-child,
.thegem-te-portfolio-info .portfolio-info-item:last-child{
	padding-right: 0 !important;
	margin-right: 0 !important;
}
.thegem-te-post-info .post-info-item:not(.post-info-item-cats-list):not(:last-child):after,
.thegem-te-portfolio-info .portfolio-info-item:not(:last-child):after{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background-color: var(--thegem-to-box-border-color, #D4DEE1);
}
.thegem-te-post-info.post-info--vertical .post-info-item:after,
.thegem-te-post-info.post-info--divider-hide .post-info-item:after,
.thegem-te-portfolio-info.portfolio-info--vertical .portfolio-info-item:after,
.thegem-te-portfolio-info.portfolio-info--divider-hide .portfolio-info-item:after,
.thegem-te-portfolio-info.portfolio-info--colon-hide .portfolio-info-item .item-label .colon{
	display: none;
}
.thegem-te-post-info .post-info-item .icon,
.thegem-te-portfolio-info .portfolio-info-item .icon{
	margin-right: 5px;
	display: inline-flex;
	align-items: center;
	font-style: normal;
	font-weight: normal;
}
.thegem-te-post-info .post-info-item .likes,
.thegem-te-post-info .post-info-item .zilla-likes,
.thegem-te-portfolio-info .portfolio-info-item .likes,
.thegem-te-portfolio-info .portfolio-info-item .zilla-likes{
	display: inline-flex;
	align-items: center;
}
.thegem-te-post-info .post-info-item .zilla-likes:before,
.thegem-te-portfolio-info .portfolio-info-item .zilla-likes:before{
	vertical-align: inherit;
	font-size: 16px;
	line-height: 16px;
	margin-right: 5px;
}
.thegem-te-post-info .post-info-item .icon i,
.thegem-te-post-info .post-info-item .zilla-likes:before,
.thegem-te-portfolio-info .portfolio-info-item .icon i,
.thegem-te-portfolio-info .portfolio-info-item .zilla-likes:before{
	font-style: normal;
	font-weight: normal;
}
.thegem-te-post-info .post-info-item .label-before,
.thegem-te-portfolio-info .portfolio-info-item .label-before{
	margin-right: 5px;
}
.thegem-te-post-info .post-info-item .label-after,
.thegem-te-portfolio-info .portfolio-info-item .label-after{
	margin-left: 5px;
}
.thegem-te-post-info .post-info-item .comments-link,
.thegem-te-portfolio-info .portfolio-info-item .comments-link{
	display: inline-flex;
	align-items: center;
}
.thegem-te-post-info .post-info-item .icon-default,
.thegem-te-portfolio-info .portfolio-info-item .icon-default{
	font-family: 'thegem-icons';
	font-size: 16px;
	line-height: 16px;
}
.thegem-te-post-info .post-info-item-cats,
.thegem-te-post-info .post-info-item-cats-list {
	flex-wrap: wrap;
}
.thegem-te-post-info.post-info--center .post-info-item-cats,
.thegem-te-post-info.post-info--center .post-info-item-cats-list {
	justify-content: center;
	text-align: center;
}
.thegem-te-post-info .post-info-item-cats .separator,
.thegem-te-portfolio-info .portfolio-info-item-cats .separator{
	margin: 0 10px;
	width: 1px;
	height: 20px;
	background-color: var(--thegem-to-box-border-color, #D4DEE1);
}
.thegem-te-post-info.post-info--divider-hide .post-info-item-cats .separator,
.thegem-te-portfolio-info.portfolio-info--divider-hide .portfolio-info-item-cats .separator{
	display: none;
}
.thegem-te-post-info.post-info--divider-hide .post-info-item-cats > *,
.thegem-te-portfolio-info.portfolio-info--divider-hide .portfolio-info-item-cats > *{
	margin: 0 0.5em;
}
.thegem-te-post-info .post-info-item-author .avatar,
.thegem-te-portfolio-info .portfolio-info-item-author .avatar{
	display: inline-flex;
	align-items: center;
	margin-right: 10px;
}
.thegem-te-post-info .post-info-item-author .avatar > img,
.thegem-te-portfolio-info .portfolio-info-item-author .avatar > img{
	border-radius: 50%;
	margin: 0 !important;
}
.thegem-te-post-info .post-info-item-likes,
.thegem-te-post-info .post-info-item-likes .zilla-likes,
.thegem-te-portfolio-info .portfolio-info-item-likes,
.thegem-te-portfolio-info .portfolio-info-item-likes .zilla-likes{
	color: var(--thegem-to-styled-color3);
}
.thegem-te-post-info .post-info-item-likes .zilla-likes:hover,
.thegem-te-portfolio-info .portfolio-info-item-likes .zilla-likes:hover{
	color: var(--thegem-to-link-color-hover);
}
.thegem-te-post-info .post-info-item-date .icon-default:before,
.thegem-te-portfolio-info .portfolio-info-item-date .icon-default:before{
	content: '\e66e';
}
.thegem-te-post-info .post-info-item-time .icon-default:before,
.thegem-te-portfolio-info .portfolio-info-item-time .icon-default:before{
	content: '\e687';
}
.thegem-te-post-info .post-info-item-comments .icon-default:before,
.thegem-te-portfolio-info .portfolio-info-item-comments .icon-default:before{
	content: '\e684';
}
.thegem-te-post-info .post-info-item-likes .icon-default:before,
.thegem-te-portfolio-info .portfolio-info-item-likes .icon-default:before{
	content: '\e679';
}

/* Post Classic list */
.thegem-te-post-info .post-info-item:last-child.post-info-item-cats-list {
	margin: 0;
}
.thegem-te-post-info.post-info--classic .post-info-item-cats-list{
	background-color: var(--thegem-to-h6-color);
	border: 1px solid transparent;
	padding: 0 0.5em;
}
.thegem-te-post-info.post-info--classic .post-info-item-cats-list,
.thegem-te-post-info.post-info--classic .post-info-item-cats-list a {
	color: var(--thegem-to-main-bg-color);
}
.thegem-te-post-info.post-info--classic .post-info-item-cats-list a:not(.readonly):hover{
	text-decoration: underline;
}
.thegem-te-post-info.post-info--classic .post-info-item-cats-list .separator{
	padding-right: 5px;
}

.thegem-te-portfolio-info.portfolio-info--text-vertical .portfolio-info-item:not(.portfolio-info-item-cats):not(.portfolio-info-item-likes){
	flex-direction: column;
	align-items: flex-start;
}
.thegem-te-portfolio-info.portfolio-info--center.portfolio-info--text-vertical .portfolio-info-item:not(.portfolio-info-item-cats):not(.portfolio-info-item-likes){
	align-items: center;
	text-align: center;
}
.thegem-te-portfolio-info.portfolio-info--right.portfolio-info--text-vertical .portfolio-info-item:not(.portfolio-info-item-cats):not(.portfolio-info-item-likes){
	align-items: flex-end;
	text-align: right;
}
.thegem-te-portfolio-info .portfolio-info-item .item-label{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.thegem-te-portfolio-info .portfolio-info-item .item-label,
.thegem-te-portfolio-info .portfolio-info-item .item-value{
	padding: 0;
	margin: 0;
}

/* Loop Item Style */
.thegem-te-post-info.post-info--loop-item .post-info{
	font-size: calc(var(--thegem-to-body-font-size) * 0.75);
	line-height: calc(var(--thegem-to-body-line-height) * 0.75);
}
.thegem-te-post-info.post-info--loop-item .post-info-item:not(:last-child):after{
	transform: none;
	width: 6px;
	height: 1px;
	margin-right: -3px;
}
.thegem-te-post-info.post-info--loop-item .post-info-item-cats .separator{
	width: 6px;
	height: 1px;
}
.thegem-te-post-info.post-info--loop-item .post-info-item-comments .icon-default:before{
	content: '\e63e';
}
.thegem-te-post-info.post-info--loop-item .post-info-item-likes .likes .zilla-likes{
	display: inline-flex;
	flex-direction: row-reverse;
	color: var(--thegem-to-date-filter-subtitle-color);
}
.thegem-te-post-info.post-info--loop-item .post-info-item-likes .likes .zilla-likes:before{
	display: none;
}
.thegem-te-post-info.post-info--loop-item .post-info-item-likes .likes .zilla-likes.active{
	color: var(--thegem-to-styled-color3);
}
.thegem-te-post-info.post-info--loop-item .post-info-item-likes .zilla-likes-postfix{
	margin-right: 5px;
}
.thegem-te-post-info.post-info--loop-item .post-info-item-likes .zilla-likes-postfix:after{
	font-family: "thegem-icons";
	content: '\e66b';
	font-size: 16px;
	font-weight: normal;
	vertical-align: top;
}

/* Modern Style */
.thegem-te-post-info.post-info--modern .post-info,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info,
.thegem-te-post-info.post-info--table .post-info,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info{
	font-family: var(--thegem-to-h6-font-family);
	font-style: var(--thegem-to-h6-font-style);
	font-weight: var(--thegem-to-h6-font-weight);
	font-size: var(--thegem-to-h6-font-size-small);
	line-height: var(--thegem-to-h6-line-height-small);
	text-transform: none;
	letter-spacing: 0;
	color: var(--thegem-to-h6-color);
}
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info .item-label.light,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info .item-value.light,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info .item-label.light,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info .item-value.light{
	font-family: var(--thegem-to-light-title-font-family);
	font-style: var(--thegem-to-light-title-font-style);
	font-weight: var(--thegem-to-light-title-font-weight);
}
.thegem-te-post-info.post-info--modern .post-info-item .icon,
.thegem-te-post-info.post-info--modern .post-info-item .icon-default,
.thegem-te-post-info.post-info--modern .post-info-item .zilla-likes:before,
.thegem-te-post-info.post-info--table .post-info-item .icon,
.thegem-te-post-info.post-info--table .post-info-item .icon-default,
.thegem-te-post-info.post-info--table .post-info-item .zilla-likes:before,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item .icon,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item .icon-default,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item .zilla-likes:before,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item .icon,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item .icon-default,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item .zilla-likes:before{
	font-size: 24px;
	line-height: 24px;
}
.thegem-te-post-info .post-info-item-likes .zilla-likes:hover,
.thegem-te-portfolio-info .portfolio-info-item-likes .zilla-likes:hover{
	color: var(--thegem-to-h6-color);
}
.thegem-te-post-info.post-info--modern .post-info-item-date .icon-default:before,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item-date .icon-default:before,
.thegem-te-post-info.post-info--table .post-info-item-date .icon-default:before,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item-date .icon-default:before{
	content: '\e686';
}
.thegem-te-post-info.post-info--modern .post-info-item-time .icon-default:before,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item-time .icon-default:before,
.thegem-te-post-info.post-info--table .post-info-item-time .icon-default:before,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item-time .icon-default:before{
	content: '\e688';
}
.thegem-te-post-info.post-info--modern .post-info-item-comments .icon-default:before,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item-comments .icon-default:before,
.thegem-te-post-info.post-info--table .post-info-item-comments .icon-default:before,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item-comments .icon-default:before{
	content: '\e685';
}
.thegem-te-post-info.post-info--modern .post-info-item-likes .icon-default:before,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item-likes .icon-default:before,
.thegem-te-post-info.post-info--table .post-info-item-likes .icon-default:before,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item-likes .icon-default:before{
	content: '\e679';
}
.thegem-te-post-info.post-info--modern .post-info-item:after,
.thegem-te-post-info.post-info--modern .post-info-item-cats .separator,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item:after,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item-cats .separator,
.thegem-te-post-info.post-info--table .post-info-item:after,
.thegem-te-post-info.post-info--table .post-info-item-cats .separator,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item:after,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item-cats .separator{
	visibility: hidden;
	opacity: 0;
}
.thegem-te-post-info.post-info--modern .post-info-item-cats .separator{
	margin: 0 5px;
	padding: 0;
	width: 0;
	height: 0;
	border: 0;
}
.thegem-te-post-info.post-info--modern .post-info-item-cats a,
.thegem-te-post-info.post-info--modern .post-info-item-cats span,
.thegem-te-post-info.post-info--modern .post-info-item-cats-list a,
.thegem-te-post-info.post-info--modern .post-info-item-cats-list span,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item-cats a,
.thegem-te-post-info.post-info--table .post-info-item-cats a,
.thegem-te-post-info.post-info--table .post-info-item-cats-list a,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item-cats a{
	background-color: var(--thegem-to-h6-color);
	color: var(--thegem-to-main-bg-color);
	border: 1px solid transparent;
	padding: 0 0.5em;
	transition: all 0.3s;
}
.thegem-te-post-info.post-info--modern .post-info-item-cats a,
.thegem-te-post-info.post-info--modern .post-info-item-cats span.readonly,
.thegem-te-post-info.post-info--modern .post-info-item-cats-list a,
.thegem-te-post-info.post-info--modern .post-info-item-cats-list span.readonly{
	margin: 5px 0;
}
.thegem-te-post-info.post-info--modern .post-info-item-cats a.readonly,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item-cats a.readonly,
.thegem-te-post-info.post-info--table .post-info-item-cats a.readonly,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item-cats a.readonly{
	cursor: default;
}
.thegem-te-post-info.post-info--modern .post-info-item-cats a:not(.readonly):hover,
.thegem-te-portfolio-info.portfolio-info--modern .portfolio-info-item-cats a:not(.readonly):hover,
.thegem-te-post-info.post-info--table .post-info-item-cats a:not(.readonly):hover,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item-cats a:not(.readonly):hover{
	background-color: var(--thegem-to-main-bg-color);
	border-color: var(--thegem-to-h6-color);
	color: var(--thegem-to-h6-color);
}

.thegem-te-post-info.post-info--table .post-info,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info{
	display: table;
	width: 100%;
}
.thegem-te-post-info.post-info--table .post-info-item,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item{
	display: table-row;
	white-space: nowrap;
	margin: 0;
	padding: 0;
}
.thegem-te-post-info.post-info--table .post-info-item .item-label,
.thegem-te-post-info.post-info--table .post-info-item .item-value,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item .item-label,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item .item-value{
	display: table-cell;
	vertical-align: middle;
	padding-top: 16px;
	padding-bottom: 16px;
	margin: 0;
}
.thegem-te-post-info.post-info--table .post-info-item.post-info-item-cats .item-value,
.thegem-te-post-info.post-info--table .post-info-item.post-info-item-likes .item-value,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item.portfolio-info-item-cats .item-value,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item.portfolio-info-item-likes .item-value{
	display: flex;
	flex-wrap: wrap;
}
.thegem-te-post-info.post-info--table .post-info-item .item-label > div,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item .item-label > div{
	display: inline-block;
	vertical-align: top;
}
.thegem-te-post-info.post-info--table .post-info-item .item-value,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item .item-value{
	width: 100%;
}
.thegem-te-post-info.post-info--table.post-info--center .post-info-item .item-label,
.thegem-te-post-info.post-info--table.post-info--center .post-info-item .item-value,
.thegem-te-portfolio-info.portfolio-info--table.portfolio-info--center .portfolio-info-item .item-label,
.thegem-te-portfolio-info.portfolio-info--table.portfolio-info--center .portfolio-info-item .item-value{
	text-align: center;
	justify-content: center;
}
.thegem-te-post-info.post-info--table.post-info--right .post-info-item .item-label,
.thegem-te-post-info.post-info--table.post-info--right .post-info-item .item-value,
.thegem-te-portfolio-info.portfolio-info--table.portfolio-info--right .portfolio-info-item .item-label,
.thegem-te-portfolio-info.portfolio-info--table.portfolio-info--right .portfolio-info-item .item-value{
	text-align: right;
	justify-content: flex-end;
}
.thegem-te-post-info.post-info--table.post-info--text-vertical .post-info-item .item-label > *,
.thegem-te-post-info.post-info--table.post-info--text-vertical .post-info-item .item-value > *,
.thegem-te-portfolio-info.portfolio-info--table.portfolio-info--text-vertical .portfolio-info-item .item-label > *,
.thegem-te-portfolio-info.portfolio-info--table.portfolio-info--text-vertical .portfolio-info-item .item-value > *{
	display: block;
}
.thegem-te-post-info.post-info--table .post-info-item:not(:last-child):after,
.thegem-te-portfolio-info.portfolio-info--table .portfolio-info-item:not(:last-child):after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	top: auto;
	transform: none;
	width: 100%;
	height: 1px;
	background-color: var(--thegem-to-box-border-color, #D4DEE1);
	visibility: visible;
	opacity: 1;
}

/* Single Post Navigation */
.thegem-te-post-navigation,
.thegem-te-portfolio-navigation{
	position: relative;
	width: 100%;
}
.thegem-te-post-navigation.post-nav--left .nav-links,
.thegem-te-portfolio-navigation.post-nav--left .nav-links{
	justify-content: flex-start;
}
.thegem-te-post-navigation.post-nav--center .nav-links,
.thegem-te-portfolio-navigation.post-nav--center .nav-links{
	justify-content: center;
}
.thegem-te-post-navigation.post-nav--right .nav-links,
.thegem-te-portfolio-navigation.post-nav--right .nav-links{
	justify-content: flex-end;
}
.thegem-te-post-navigation.post-nav--justified .nav-links,
.thegem-te-portfolio-navigation.post-nav--justified .nav-links{
	justify-content: space-between;
}
.thegem-te-post-navigation .post-navigation .nav-links,
.thegem-te-portfolio-navigation .post-navigation .nav-links{
	position: relative;
	display: flex;
}
.thegem-te-post-navigation .post-navigation .nav-previous,
.thegem-te-portfolio-navigation .post-navigation .nav-previous {
	margin-right: 15px;
	text-align: left;
}
.thegem-te-post-navigation.post-nav--hide-gaps .post-navigation .nav-previous,
.thegem-te-post-navigation.post-label--hide.post-title--hide.post-arrows--next-hide .post-navigation .nav-previous,
.thegem-te-portfolio-navigation.post-nav--hide-gaps .post-navigation .nav-previous,
.thegem-te-portfolio-navigation.post-label--hide.post-title--hide.post-arrows--next-hide .post-navigation .nav-previous{
	margin: 0;
}
.thegem-te-post-navigation.post-label--hide.post-title--hide.post-arrows--prev-hide .post-navigation .nav-previous,
.thegem-te-portfolio-navigation.post-label--hide.post-title--hide.post-arrows--prev-hide .post-navigation .nav-previous{
	display: none;
}
.thegem-te-post-navigation .post-navigation .nav-next,
.thegem-te-portfolio-navigation .post-navigation .nav-next{
	margin-left: 15px;
	text-align: right;
}
.thegem-te-post-navigation.post-nav--hide-gaps .post-navigation .nav-next,
.thegem-te-post-navigation.post-label--hide.post-title--hide.post-arrows--prev-hide .post-navigation .nav-next,
.thegem-te-portfolio-navigation.post-nav--hide-gaps .post-navigation .nav-next,
.thegem-te-portfolio-navigation.post-label--hide.post-title--hide.post-arrows--prev-hide .post-navigation .nav-next{
	margin: 0;
}
.thegem-te-post-navigation.post-label--hide.post-title--hide.post-arrows--next-hide .post-navigation .nav-next,
.thegem-te-portfolio-navigation.post-label--hide.post-title--hide.post-arrows--next-hide .post-navigation .nav-next{
	display: none;
}
.thegem-te-post-navigation .post-navigation a,
.thegem-te-portfolio-navigation .post-navigation a{
	position: relative;
	display: flex;
	align-items: center;
}
.thegem-te-post-navigation .post-navigation .meta-icon,
.thegem-te-portfolio-navigation .post-navigation .meta-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'thegem-icons';
	font-size: 16px;
	font-style: normal;
	color: var(--thegem-to-h5-color);
	transition: all 0.3s;
}
.thegem-te-post-navigation .post-navigation .nav-previous .meta-icon,
.thegem-te-portfolio-navigation .post-navigation .nav-previous .meta-icon{
	margin-right: 20px;
}
.thegem-te-post-navigation .post-navigation .nav-next .meta-icon,
.thegem-te-portfolio-navigation .post-navigation .nav-next .meta-icon{
	margin-left: 20px;
}
.thegem-te-post-navigation.post-label--hide.post-title--hide .post-navigation .meta-icon,
.thegem-te-portfolio-navigation.post-label--hide.post-title--hide .post-navigation .meta-icon{
	margin: 0;
}
.thegem-te-post-navigation .post-navigation .meta-icon:before,
.thegem-te-portfolio-navigation .post-navigation .meta-icon:before{
	margin-top: -1px;
}
.thegem-te-post-navigation .post-navigation .nav-previous .meta-icon:before,
.thegem-te-portfolio-navigation .post-navigation .nav-previous .meta-icon:before{
	content: '\e675';
}
.thegem-te-post-navigation .post-navigation .nav-next .meta-icon:before,
.thegem-te-portfolio-navigation .post-navigation .nav-next .meta-icon:before{
	content: '\e676';
}
.thegem-te-post-navigation.post-arrows--round .post-navigation .meta-icon,
.thegem-te-post-navigation.post-arrows--square .post-navigation .meta-icon,
.thegem-te-portfolio-navigation.post-arrows--round .post-navigation .meta-icon,
.thegem-te-portfolio-navigation.post-arrows--square .post-navigation .meta-icon{
	border: 1px solid;
	border-color: var(--thegem-to-h5-color, #3C3950);
	background-color: transparent;
	font-size: 22px;
}
.thegem-te-post-navigation.post-arrows--round .post-navigation .nav-previous .meta-icon:before,
.thegem-te-post-navigation.post-arrows--square .post-navigation .nav-previous .meta-icon:before,
.thegem-te-portfolio-navigation.post-arrows--round .post-navigation .nav-previous .meta-icon:before,
.thegem-te-portfolio-navigation.post-arrows--square .post-navigation .nav-previous .meta-icon:before{
	content: '\e603';
}
.thegem-te-post-navigation.post-arrows--round .post-navigation .nav-next .meta-icon:before,
.thegem-te-post-navigation.post-arrows--square .post-navigation .nav-next .meta-icon:before,
.thegem-te-portfolio-navigation.post-arrows--round .post-navigation .nav-next .meta-icon:before,
.thegem-te-portfolio-navigation.post-arrows--square .post-navigation .nav-next .meta-icon:before{
	content: '\e601';
}
.thegem-te-post-navigation.post-arrows--round .post-navigation .meta-icon,
.thegem-te-portfolio-navigation.post-arrows--round .post-navigation .meta-icon{
	min-width: 34px;
	min-height: 34px;
	border-radius: 50%;
}
.thegem-te-post-navigation.post-arrows--square .post-navigation .meta-icon,
.thegem-te-portfolio-navigation.post-arrows--square .post-navigation .meta-icon{
	min-width: 46px;
	min-height: 46px;
}
.thegem-te-post-navigation .post-navigation a:hover .meta-icon,
.thegem-te-portfolio-navigation .post-navigation a:hover .meta-icon{
	color: var(--thegem-to-pagination-color-hover);
	border-color: var(--thegem-to-pagination-color-hover);
}
.thegem-te-post-navigation .post-navigation .meta-nav,
.thegem-te-portfolio-navigation .post-navigation .meta-nav{
	position: relative;
	display: flex;
	flex-direction: column;
}
.thegem-te-post-navigation .post-navigation .post-label,
.thegem-te-portfolio-navigation .post-navigation .post-label{
	color: var(--thegem-to-pagination-color);
}
.thegem-te-post-navigation .post-navigation .post-title,
.thegem-te-portfolio-navigation .post-navigation .post-title{
	max-width: 400px;

	font-family: var(--thegem-to-h5-font-family);
	font-style: var(--thegem-to-h5-font-style);
	font-weight: var(--thegem-to-h5-font-weight);
	font-size: var(--thegem-to-h5-font-size);
	line-height: var(--thegem-to-h5-line-height);
	color: var(--thegem-to-h5-color);
}
.thegem-te-post-navigation:not(.post-label--hide) .post-navigation .post-title,
.thegem-te-portfolio-navigation:not(.post-label--hide) .post-navigation .post-title{
	margin-top: 5px;
}
.thegem-te-post-navigation .post-navigation .post-label span,
.thegem-te-post-navigation .post-navigation .post-title span,
.thegem-te-portfolio-navigation .post-navigation .post-label span,
.thegem-te-portfolio-navigation .post-navigation .post-title span{
	margin: 0;
	transition: color 0.3s;
}
.thegem-te-post-navigation .post-navigation a:hover .post-label span,
.thegem-te-portfolio-navigation .post-navigation a:hover .post-label span{
	color: var(--thegem-to-pagination-color-hover);
}
.thegem-te-post-navigation .post-navigation a:hover .post-title span,
.thegem-te-portfolio-navigation .post-navigation a:hover .post-title span{
	color: var(--thegem-to-pagination-color-hover);
}

@media screen and (max-width: 767px){
	.thegem-te-post-navigation .post-navigation .nav-previous .meta-icon,
	.thegem-te-portfolio-navigation .post-navigation .nav-previous .meta-icon{
		margin-right: 10px !important;
	}
	.thegem-te-post-navigation .post-navigation .nav-next .meta-icon,
	.thegem-te-portfolio-navigation .post-navigation .nav-next .meta-icon{
		margin-left: 10px !important;
	}
	.thegem-te-post-navigation .post-navigation .post-title,
	.thegem-te-portfolio-navigation .post-navigation .post-title{
		max-width: 120px !important;
	}
	.thegem-te-post-navigation .post-navigation .post-title span,
	.thegem-te-portfolio-navigation .post-navigation .post-title span{
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
}

/* Post Tags */
.thegem-te-post-tags{
	position: relative;
}
.thegem-te-post-tags .post-tags{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.thegem-te-post-tags.post-tags--left .post-tags {
	justify-content: flex-start;
}
.thegem-te-post-tags.post-tags--center .post-tags {
	justify-content: center;
}
.thegem-te-post-tags.post-tags--right .post-tags {
	justify-content: flex-end;
}
.thegem-te-post-tags.post-tags--justified .post-tags {
	justify-content: space-between;
}
.thegem-te-post-tags .post-tags__title,
.thegem-te-post-tags .post-tags__list{
	padding: 0;
	margin: 0;
}
.thegem-te-post-tags .post-tags__title{
	padding-right: 20px;
}
.thegem-te-post-tags .post-tags__list ul{
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	flex: auto;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: -3px;
	margin-right: -3px;
	padding: 0;
	list-style-type: none;
}
.thegem-te-post-tags .post-tags__list ul li{
	padding-left: 3px;
	padding-right: 3px;
	margin-top: 5px;
	margin-bottom: 5px;

	font-family: var(--thegem-to-body-font-family);
	font-weight: var(--thegem-to-body-font-weight);
	font-style: var(--thegem-to-body-font-style);
	font-size: var(--thegem-to-body-font-size);
	text-transform: var(--thegem-to-body-text-transform);
	letter-spacing: var(--thegem-to-body-letter-spacing);
}
.thegem-te-post-tags .post-tags__list a{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 30px;
	padding: 0.3em 0.5em;
	line-height: 1;
	border-radius: 0;
	color: var(--thegem-to-tag-color, #5f727f);
	border: 1px solid var(--thegem-to-tag-color, #5f727f);
	background-color: transparent;
}
.thegem-te-post-tags .post-tags__list a:hover{
	color: var(--thegem-to-tag-hover-color, #FFFFFF);
	border-color: var(--thegem-to-tag-color, #5f727f);
	background-color: var(--thegem-to-tag-hover-background-color, #5f727f);
}

/* Post Author Box */
.thegem-te-post-author{
	position: relative;
}
.thegem-te-post-author .post-author{
	position: relative;
	display: flex;
	align-items: center;
	padding: 35px 50px;
	background-color: var(--styled-bg-color);
	border: 1px solid transparent;
	border-radius: 0;
}
.thegem-te-post-author.post-author--left .post-author {
	justify-content: flex-start;
}
.thegem-te-post-author.post-author--center .post-author {
	padding: 80px 50px 35px 50px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.thegem-te-post-author.post-author--right .post-author {
	justify-content: flex-end;
}
.thegem-te-post-author .post-author__avatar{
	position: relative;
	max-width: 100px;
	transition: all 0.3s;
}
.thegem-te-post-author.post-author--left .post-author__avatar {
	margin-right: 50px;
}
.thegem-te-post-author.post-author--right .post-author__avatar {
	margin-left: 50px;
	order: 2;
}
.thegem-te-post-author.post-author--center .post-author__avatar{
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
}
.thegem-te-post-author a.post-author__avatar:hover{
	opacity: 0.8;
}
.thegem-te-post-author .post-author__avatar img{
	border-radius: 50%;
}
.thegem-te-post-author .post-author__name{
	position: relative;

	font-family: var(--thegem-to-h5-font-family);
	font-weight: var(--thegem-to-h5-font-weight);
	font-style: var(--thegem-to-h5-font-style);
	font-size: var(--thegem-to-h5-font-size);
	line-height: var(--thegem-to-h5-line-height);
	text-transform: capitalize;
	letter-spacing: 0;
	color: var(--thegem-to-h5-color);
}
.thegem-te-post-author .post-author__desc{
	position: relative;
	margin-top: 15px;
}
.thegem-te-post-author .post-author__desc p{
	padding: 0;
	margin: 0;
}
.thegem-te-post-author .post-author__link{
	position: relative;
	margin-top: 25px;

	font-family: var(--thegem-to-body-font-family);
	font-weight: var(--thegem-to-body-font-weight);
	font-style: var(--thegem-to-body-font-style);
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
}
.thegem-te-post-author .post-author__link a{
	position: relative;
	display: inline-flex;
	align-items: center;
}
.thegem-te-post-author .post-author__link a:hover{
	color: var(--thegem-to-link-color-hover);
}
.thegem-te-post-author .post-author__link a:before {
	font-family: 'thegem-icons';
	content: '\e601';
	vertical-align: top;
	font-style: normal;
	font-weight: normal;
	margin-right: 5px;
}
@media screen and (max-width: 767px){
	.thegem-te-post-author .post-author{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.thegem-te-post-author .post-author__avatar{
		order: 1;
		margin-left: 0 !important;
		margin-right: 0 !important;
		margin-bottom: 30px;
	}
	.thegem-te-post-author .post-author__info{
		order: 2;
	}
}

/* Post Comments */
.thegem-te-post-comments{
	position: relative;
}
.thegem-te-post-comments .post-comments,
.thegem-te-post-comments h2.post-comments__title,
.thegem-te-post-comments h2.post-comments__title span,
.thegem-te-post-comments h3.comment-reply-title,
.thegem-te-post-comments h3.comment-reply-title span{
	padding: 0;
	margin: 0;
}
.thegem-te-post-comments h3.comment-reply-title span{
	margin-right: 10px;
}
.thegem-te-post-comments h2.post-comments__title,
.thegem-te-post-comments h3.comment-reply-title{
	padding-bottom: 40px;
	line-height: normal;
	text-transform: none;
	letter-spacing: normal;
	font-family: var(--thegem-to-h4-font-family);
	font-weight: var(--thegem-to-h4-font-weight);
	font-style: var(--thegem-to-h4-font-style);
	font-size: var(--thegem-to-h4-font-size);
}
.thegem-te-post-comments h3.comment-reply-title:before{
	display: none;
}
.thegem-te-post-comments.post-comments--title-hide h2.post-comments__title,
.thegem-te-post-comments.post-comments--title-hide h3.comment-reply-title{
	display: none;
}

.thegem-te-post-comments .post-comments__list{
	position: relative;
	display: flex;
	flex-direction: column;
}
.thegem-te-post-comments .post-comments__list ul.children{
	padding: 0;
	margin: 0 0 0 105px;
	list-style-type: none;
}
.thegem-te-post-comments .post-comments__list .comment,
.thegem-te-post-comments .comment-respond{
	position: relative;
	border-top: 1px solid var(--thegem-to-box-border-color);
}
.thegem-te-post-comments .comment-respond{
	padding-top: 50px;
}
.thegem-te-post-comments.post-comments--separator-hide .post-comments__list .comment,
.thegem-te-post-comments.post-comments--separator-hide .comment-respond{
	border: 0;
}
.thegem-te-post-comments .post-comments__list .comment .comment-reply-link {
	padding: 0;
}
.thegem-te-post-comments .post-comment__wrap{
	position: relative;
	display: flex;
	padding: 50px 0;
}
.thegem-te-post-comments .post-comment__avatar{
	position: relative;
	margin-right: 35px;
	transition: all 0.3s;
}
.thegem-te-post-comments .post-comment__avatar img{
	border-radius: 50%;
}
.thegem-te-post-comments .post-comment__info{
	position: relative;
	display: flex;
	flex-direction: column;
	flex: auto;
}
.thegem-te-post-comments .post-comment__name{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 5px;
}
.thegem-te-post-comments .post-comment__name-author,
.thegem-te-post-comments .post-comment__name-reply,
.thegem-te-post-comments h3.comment-reply-title small{
	padding: 0;
	margin: 0;
}
.thegem-te-post-comments .post-comment__name-author.default-title,
.thegem-te-post-comments .post-comment__name-reply.default-title,
.thegem-te-post-comments h3.comment-reply-title small{
	font-family: var(--thegem-to-h6-font-family);
	font-weight: var(--thegem-to-h6-font-weight);
	font-style: var(--thegem-to-h6-font-style);
	font-size: var(--thegem-to-h6-font-size);
	line-height: var(--thegem-to-h6-line-height);
	letter-spacing: 0;
	color: var(--thegem-to-h6-color);
}
.thegem-te-post-comments .post-comment__name-author a{
	color: var(--thegem-to-h6-color);
}
.thegem-te-post-comments .post-comment__name-author a:hover{
	color: var(--thegem-to-link-color);
}
.thegem-te-post-comments .post-comment__name-reply{
	margin-left: auto;
}
.thegem-te-post-comments .post-comment__name-reply.default-title,
.thegem-te-post-comments h3.comment-reply-title small{
	font-size: var(--thegem-to-h6-font-size-small);
}
.thegem-te-post-comments .post-comment__date,
.thegem-te-post-comments .post-comment__desc,
.thegem-te-post-comments .post-comment__desc p{
	padding: 0;
	margin: 0;
}
.thegem-te-post-comments .post-comment__date,
.thegem-te-post-comments .post-comment__approved{
	margin-bottom: 10px;
}
.thegem-te-post-comments .post-comment__desc.default-title,
.thegem-te-post-comments .post-comment__approved.default-title{
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
}
.thegem-te-post-comments .post-comment__date.default-title{
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
}
.thegem-te-post-comments .post-comment__date a{
	color: var(--thegem-to-date-filter-subtitle-color);
}
.thegem-te-post-comments .post-comment__date a:hover{
	color: var(--thegem-to-link-color-hover);
}
.thegem-te-post-comments .post-comment__approved{
	color: var(--thegem-to-link-color);
}
.thegem-te-post-comments .post-comment__desc{
	position: relative;
	color: var(--thegem-to-body-color);
}
.thegem-te-post-comments .comment-form{
	position: relative;
	width: 100%;
}
.thegem-te-post-comments .comment-form-message{
	margin-bottom: 15px;
}
.thegem-te-post-comments .comment-form label{
	margin-bottom: 10px;
}
.thegem-te-post-comments .comment-form input,
.thegem-te-post-comments .comment-form textarea,
.thegem-te-post-comments .comment-form .checkbox-sign{
	background-color: transparent;
}
.thegem-te-post-comments .comment-form > .row{
	margin-bottom: 0 !important;
}
.thegem-te-post-comments .comment-form .comment-form__line{
	margin-top: 25px !important;
}
.thegem-te-post-comments .comment-form .comment-form-cookies-consent{
	margin: 30px 0 0 0 !important;
}
.thegem-te-post-comments .comment-form .comment-form-cookies-consent label{
	margin-bottom: 0;
}
.thegem-te-post-comments .comment-form-fields{
	margin-bottom: 0;
}
.thegem-te-post-comments .form-submit{
	position: relative;
	display: flex;
	margin-top: 30px;
}
.thegem-te-post-comments .form-submit .gem-button{
	margin: 0;
	border-color: transparent;
	color: #FFFFFF;
}
.thegem-te-post-comments.post-comments-btn--left .form-submit{
	justify-content: flex-start;
}
.thegem-te-post-comments.post-comments-btn--center .form-submit{
	justify-content: center;
}
.thegem-te-post-comments.post-comments-btn--right .form-submit{
	justify-content: flex-end;
}
.thegem-te-post-comments.post-comments-btn--fullwidth .form-submit{
	justify-content: space-between;
	width: 100%;
}
.thegem-te-post-comments.post-comments-btn--fullwidth .form-submit .gem-button{
	width: 100%;
}
@media screen and (max-width: 767px){
	.thegem-te-post-comments .post-comments__list ul.children{
		margin: 0 0 0 25px;
	}
	.thegem-te-post-comments .post-comment__wrap{
		flex-direction: column;
	}
	.thegem-te-post-comments .post-comment__avatar{
		margin-right: 0 !important;
		margin-bottom: 25px;
	}
}

/* Portfolio */
.thegem-template-portfolio .vc_row[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
}
body.single-thegem_templates.compose-mode .thegem-template-portfolio .vc_row[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-portfolio .vc_row[data-vc-full-width] > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-portfolio .vc_row[data-vc-full-width] > .container {
		width: 100%;
	}
}
.thegem-template-portfolio .vc_section[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}
body.single-thegem_templates.compose-mode .thegem-template-portfolio .vc_section[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-portfolio .vc_section[data-vc-full-width] > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-portfolio .vc_section[data-vc-full-width] > .container {
		width: 100%;
	}
}

/* Custom Fields */
.thegem-te-custom-fields{
	position: relative;
	width: 100%;
}
.thegem-te-custom-fields .custom-fields{
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.thegem-te-custom-fields.custom-fields--left .custom-fields{
	justify-content: flex-start;
}
.thegem-te-custom-fields.custom-fields--center .custom-fields{
	justify-content: center;
}
.thegem-te-custom-fields.custom-fields--right .custom-fields{
	justify-content: flex-end;
}
.thegem-te-custom-fields.custom-fields--justify .custom-fields{
	justify-content: space-between;
}
.thegem-te-custom-fields.custom-fields--vertical .custom-fields{
	flex-direction: column;
}
.thegem-te-custom-fields.custom-fields--vertical.custom-fields--left .custom-fields{
	align-items: flex-start;
}
.thegem-te-custom-fields.custom-fields--vertical.custom-fields--center .custom-fields{
	align-items: center;
}
.thegem-te-custom-fields.custom-fields--vertical.custom-fields--right .custom-fields{
	align-items: flex-end;
}
.thegem-te-custom-fields.custom-fields--vertical .custom-fields-item{
	margin-right: 0 !important;
	padding-right: 0 !important;
	margin-top: 10px;
	margin-bottom: 0;
}
.thegem-te-custom-fields.custom-fields--vertical .custom-fields-item:first-child{
	margin-top: 5px !important;
}
.thegem-te-custom-fields.custom-fields--vertical .custom-fields-item:last-child{
	margin-bottom: 0 !important;
}
.thegem-te-custom-fields.custom-fields--divider-hide .custom-fields-item:after,
.thegem-te-custom-fields.custom-fields--colon-hide .custom-fields-item .item-label .colon{
	display: none;
}
.thegem-te-custom-fields .custom-fields-item{
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 10px;
	padding-right: 10px;
}
.thegem-te-custom-fields .custom-fields-item:last-child{
	padding-right: 0 !important;
	margin-right: 0 !important;
}
.thegem-te-custom-fields .custom-fields-item .icon{
	margin-right: 5px;
	display: inline-flex;
	align-items: center;
	font-style: normal;
	font-weight: normal;
}
.thegem-te-custom-fields .custom-fields-item .icon i{
	font-style: normal;
	font-weight: normal;
}
.thegem-te-custom-fields .custom-fields-item .icon img{
	width: 1em;
	height: 1em;
	object-fit: contain;
	vertical-align: middle;
}
.thegem-te-custom-fields .custom-fields-item .icon svg{
	width: 1em;
	height: 1em;
	vertical-align: middle;
}
.thegem-te-custom-fields .custom-fields-item .label-before{
	margin-right: 5px;
}
.thegem-te-custom-fields .custom-fields-item .label-after{
	margin-left: 5px;
}
.thegem-te-custom-fields.custom-fields--text-vertical .custom-fields-item{
	flex-direction: column;
	align-items: flex-start;
}
.thegem-te-custom-fields.custom-fields--center.custom-fields--text-vertical .custom-fields-item{
	align-items: center;
	text-align: center;
}
.thegem-te-custom-fields.custom-fields--right.custom-fields--text-vertical .custom-fields-item{
	align-items: flex-end;
	text-align: right;
}
.thegem-te-custom-fields .custom-fields-item .item-label{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.thegem-te-custom-fields .custom-fields-item .item-label,
.thegem-te-custom-fields .custom-fields-item .item-value{
	padding: 0;
	margin: 0;
}
.thegem-te-custom-fields .custom-fields-item .item-value.text-line-through{
	text-decoration: line-through;
}
.thegem-te-custom-fields .custom-fields{
	font-family: var(--thegem-to-h6-font-family);
	font-style: var(--thegem-to-h6-font-style);
	font-weight: var(--thegem-to-h6-font-weight);
	font-size: var(--thegem-to-h6-font-size-small);
	line-height: var(--thegem-to-h6-line-height-small);
	text-transform: none;
	letter-spacing: 0;
	color: var(--thegem-to-h6-color);
}
.thegem-te-custom-fields .custom-fields .item-label.light,
.thegem-te-custom-fields .custom-fields .item-value.light{
	font-family: var(--thegem-to-light-title-font-family);
	font-style: var(--thegem-to-light-title-font-style);
	font-weight: var(--thegem-to-light-title-font-weight);
}
.thegem-te-custom-fields .custom-fields-item i,
.thegem-te-custom-fields .custom-fields-item .icon img,
.thegem-te-custom-fields .custom-fields-item .icon svg{
	font-size: inherit;
	line-height: 1em;
}
.thegem-te-custom-fields.custom-fields--table .custom-fields{
	display: table;
	width: 100%;
}
.thegem-te-custom-fields.custom-fields--table .custom-fields-item{
	display: table-row;
	margin: 0;
	padding: 0;
}
.thegem-te-custom-fields.custom-fields--table .custom-fields-item:not(:last-child):after{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background-color: var(--thegem-to-box-border-color, #D4DEE1);
}
.thegem-te-custom-fields.custom-fields--table .custom-fields-item .item-label,
.thegem-te-custom-fields.custom-fields--table .custom-fields-item .item-value{
	display: table-cell;
	vertical-align: middle;
	padding-top: 16px;
	padding-bottom: 16px;
	margin: 0;
}
.thegem-te-custom-fields.custom-fields--table .custom-fields-item .item-label{
	white-space: nowrap;
}
.thegem-te-custom-fields.custom-fields--table .custom-fields-item .item-value{
	white-space: normal;
	word-wrap: break-word;
	word-break: break-all;
}
.thegem-te-custom-fields.custom-fields--table .custom-fields-item .item-label > div{
	display: inline-block;
	vertical-align: middle;
}
.thegem-te-custom-fields.custom-fields--table .custom-fields-item .item-value{
	width: 100%;
}
.thegem-te-custom-fields.custom-fields--table .custom-fields-item .item-value img{
	max-width: 100%;
	height: auto;
}
.thegem-te-custom-fields.custom-fields--table .custom-fields-item .item-value iframe{
	width: 100%;
}
.thegem-te-custom-fields.custom-fields--table .custom-fields-item .item-value .wp-video{
	width: 100% !important;
	height: auto;
}
.thegem-te-custom-fields.custom-fields--table.custom-fields--center .custom-fields-item .item-label,
.thegem-te-custom-fields.custom-fields--table.custom-fields--center .custom-fields-item .item-value{
	text-align: center;
	justify-content: center;
}
.thegem-te-custom-fields.custom-fields--table.custom-fields--right .custom-fields-item .item-label,
.thegem-te-custom-fields.custom-fields--table.custom-fields--right .custom-fields-item .item-value{
	text-align: right;
	justify-content: flex-end;
}
.thegem-te-custom-fields.custom-fields--table.custom-fields--justify .custom-fields-item .item-label,
.thegem-te-custom-fields.custom-fields--table.custom-fields--justify .custom-fields-item .item-value{
	text-align: justify;
	justify-content: space-between;
}
.thegem-te-custom-fields.custom-fields--table.custom-fields--justify .custom-fields-item .item-value{
	text-align: right;
}
.thegem-te-custom-fields.custom-fields--table.custom-fields--text-vertical .custom-fields-item .item-label > *,
.thegem-te-custom-fields.custom-fields--table.custom-fields--text-vertical .custom-fields-item .item-value > *{
	display: block;
}
.thegem-te-custom-fields.custom-fields--table .custom-fields-item:not(:last-child):after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	top: auto;
	transform: none;
	width: 100%;
	height: 1px;
	background-color: var(--thegem-to-box-border-color, #D4DEE1);
	visibility: visible;
	opacity: 1;
}
.thegem-te-custom-fields.custom-fields--labels .custom-fields-item {
	padding: 0 7px !important;
	background-color: var(--thegem-to-h6-color);
	border: 1px solid transparent;
}
.thegem-te-custom-fields.custom-fields--labels .custom-fields-item .item-label,
.thegem-te-custom-fields.custom-fields--labels .custom-fields-item .item-value {
	color: var(--thegem-to-main-bg-color);
}

.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	padding: 0;
	margin: -5px;
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list li{
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 5px;
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list li:before{
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	margin-right: 5px;
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list.list-marker--checkbox li:before{
	content: '\e647';
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list.list-marker--arrow-1 li:before{
	content: '\e601';
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list.list-marker--arrow-2 li:before{
	content: '\e64c';
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list.list-marker--double-arrow li:before{
	content: '\e653';
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list.list-marker--check-mark li:before{
	content: '\e614';
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list.list-marker--disc-style-1 li:before{
	content: '\e617';
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list.list-marker--disc-style-2 li:before{
	content: '\e651';
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list.list-marker--cross li:before{
	content: '\e619';
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list.list-marker--square li:before{
	content: '\e618';
}
.thegem-te-custom-fields .custom-fields .item-value ul.meta-items-list.list-marker--plus li:before{
	content: '\e652';
}
.thegem-te-custom-fields .custom-fields .bordered-box{
	width: 100%;
	color: var(--thegem-to-body-color);
}
.thegem-te-custom-fields .custom-fields-item, 
.thegem-te-custom-fields .custom-fields-item * {
	max-width: 100%;
}
.thegem-te-custom-fields .custom-fields .item-value img {
	max-width: 100%;
	height: auto;
}
.thegem-te-custom-fields .custom-fields .custom-fields-item.map-field-item {
	width: 100%;
}
.thegem-te-custom-fields .custom-fields .custom-fields-item.map-field-item .item-value {
	flex-grow: 1;
}
.thegem-te-custom-fields.custom-fields--text-vertical .custom-fields-item.map-field-item .item-value {
	width: 100%;
}
.thegem-te-custom-fields .custom-fields .item-value .acf-map {
	width: 100%;
	height: 400px;
	margin: 20px 0;
}

/* Custom font styles for product builder */
.title-main-menu{
	font-family: var(--thegem-to-menu-font-family);
	font-style: var(--thegem-to-menu-font-style);
	font-weight: var(--thegem-to-menu-font-weight);
	text-transform: var(--thegem-to-menu-text-transform);
	font-size: var(--thegem-to-menu-font-size);
	line-height: var(--thegem-to-menu-line-height);
	letter-spacing: var(--thegem-to-menu-letter-spacing, 0);
}
.title-main-menu.light{
	font-family: var(--thegem-to-light-title-font-family);
	font-style: var(--thegem-to-light-title-font-style);
	font-weight: var(--thegem-to-light-title-font-weight);
}
.title-text-body{
	font-family: var(--thegem-to-body-font-family);
	font-style: var(--thegem-to-body-font-style);
	font-weight: var(--thegem-to-body-font-weight);
	text-transform: var(--thegem-to-body-text-transform, none);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
	letter-spacing: var(--thegem-to-body-letter-spacing);
}
.title-text-body.light{
	font-family: var(--thegem-to-light-title-font-family);
	font-style: var(--thegem-to-light-title-font-style);
	font-weight: var(--thegem-to-light-title-font-weight);
}
.title-text-body-tiny{
	font-family: var(--thegem-to-body-tiny-font-family);
	font-style: var(--thegem-to-body-tiny-font-style);
	font-weight: var(--thegem-to-body-tiny-font-weight);
	text-transform: var(--thegem-to-body-tiny-text-transform, none);
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	letter-spacing: var(--thegem-to-body-tiny-letter-spacing);
}
.title-text-body-tiny.light{
	font-family: var(--thegem-to-light-title-font-family);
	font-style: var(--thegem-to-light-title-font-style);
	font-weight: var(--thegem-to-light-title-font-weight);
}
.title-default.italic,
.title-h1.italic,
.title-h2.italic,
.title-h3.italic,
.title-h4.italic,
.title-h5.italic,
.title-h6.italic,
.title-xlarge.italic,
.styled-subtitle.italic,
.title-main-menu.italic,
.title-text-body.italic,
.title-text-body-tiny.italic{
	font-style: italic;
}
.title-default.transform-none,
.title-h1.transform-none,
.title-h2.transform-none,
.title-h3.transform-none,
.title-h4.transform-none,
.title-h5.transform-none,
.title-h6.transform-none,
.title-xlarge.transform-none,
.styled-subtitle.transform-none,
.title-main-menu.transform-none,
.title-text-body.transform-none,
.title-text-body-tiny.transform-none{
	text-transform: none;
}
.title-default.uppercase,
.title-h1.uppercase,
.title-h2.uppercase,
.title-h3.uppercase,
.title-h4.uppercase,
.title-h5.uppercase,
.title-h6.uppercase,
.title-xlarge.uppercase,
.styled-subtitle.uppercase,
.title-main-menu.uppercase,
.title-text-body.uppercase,
.title-text-body-tiny.uppercase{
	text-transform: uppercase;
}
.title-default.lowercase,
.title-h1.lowercase,
.title-h2.lowercase,
.title-h3.lowercase,
.title-h4.lowercase,
.title-h5.lowercase,
.title-h6.lowercase,
.title-xlarge.lowercase,
.styled-subtitle.lowercase,
.title-main-menu.lowercase,
.title-text-body.lowercase,
.title-text-body-tiny.lowercase{
	text-transform: lowercase;
}
.title-default.capitalize,
.title-h1.capitalize,
.title-h2.capitalize,
.title-h3.capitalize,
.title-h4.capitalize,
.title-h5.capitalize,
.title-h6.capitalize,
.title-xlarge.capitalize,
.styled-subtitle.capitalize,
.title-main-menu.capitalize,
.title-text-body.capitalize,
.title-text-body-tiny.capitalize{
	text-transform: capitalize;
}


/* Product Price */
.thegem-te-product-price{
	position: relative;
}
.thegem-te-product-price .price{
	display: flex;
	width: 100%;
	align-items: flex-end;

	font-family: var(--thegem-to-product-price-font-family);
	font-style: var(--thegem-to-product-price-font-style);
	font-weight: var(--thegem-to-product-price-font-weight);
	text-transform: var(--thegem-to-product-price-text-transform);
	font-size: var(--thegem-to-product-price-font-size);
	line-height: var(--thegem-to-product-price-line-height);
	letter-spacing: var(--thegem-to-product-price-letter-spacing);
	color: var(--thegem-to-product-price-color);
}
.thegem-te-product-price .price ins{
	text-decoration: none;
}
.thegem-te-product-price .price del{
	position: relative;
	margin-bottom: 1px;
	margin-right: 10px;
	text-decoration: none;
	opacity: 0.5;
}
.thegem-te-product-price .price span{
	padding: 0;
	margin: 0;
}
.thegem-te-product-price .price .title-default del{
	font-family: var(--thegem-to-product-price-font-family);
	font-style: var(--thegem-to-product-price-font-style);
	font-weight: var(--thegem-to-product-price-font-weight);
	text-transform: var(--thegem-to-product-price-text-transform);
	font-size: calc(var(--thegem-to-product-price-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-product-price-font-size) * 0.7857);
	letter-spacing: var(--thegem-to-product-price-letter-spacing);
	color: var(--thegem-to-product-price-color);
}
.thegem-te-product-price .price .title-h1 del{
	font-size: calc(var(--thegem-to-h1-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-h1-line-height) * 0.7857);
}
.thegem-te-product-price .price .title-h2 del{
	font-size: calc(var(--thegem-to-h2-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-h2-line-height) * 0.7857);
}
.thegem-te-product-price .price .title-h3 del{
	font-size: calc(var(--thegem-to-h3-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-h3-line-height) * 0.7857);
}
.thegem-te-product-price .price .title-h4 del{
	font-size: calc(var(--thegem-to-h4-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-h4-line-height) * 0.7857);
}
.thegem-te-product-price .price .title-h5 del{
	font-size: calc(var(--thegem-to-h5-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-h5-line-height) * 0.7857);
}
.thegem-te-product-price .price .title-h6 del{
	font-size: calc(var(--thegem-to-h6-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-h6-line-height) * 0.7857);
}
.thegem-te-product-price .price .title-xlarge del{
	font-size: calc(var(--thegem-to-xlarge-title-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-xlarge-title-line-height) * 0.7857);
}
.thegem-te-product-price .price .styled-subtitle del{
	font-size: calc(var(--thegem-to-styled-subtitle-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-styled-subtitle-line-height) * 0.7857);
}
.thegem-te-product-price .price .title-main-menu del{
	font-size: calc(var(--thegem-to-menu-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-menu-line-height) * 0.7857);
}
.thegem-te-product-price .price .title-text-body del{
	font-size: calc(var(--thegem-to-body-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-body-line-height) * 0.7857);
}
.thegem-te-product-price .price .title-text-body-tiny del{
	font-size: calc(var(--thegem-to-body-tiny-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-body-tiny-line-height) * 0.7857);
}
.thegem-te-product-price .price del:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;

	background-color: var(--thegem-to-product-price-color);
}
.thegem-te-product-price .price.not-strikethrough del:before{
	display: none;
}
.thegem-template-loop-item .thegem-te-product-price .price {
	font-family: var(--thegem-to-product-grid-price-font-family);
	font-style: var(--thegem-to-product-grid-price-font-style);
	font-weight: var(--thegem-to-product-grid-price-font-weight);
	text-transform: var(--thegem-to-product-grid-price-text-transform);
	font-size: var(--thegem-to-product-grid-price-font-size);
	line-height: var(--thegem-to-product-grid-price-line-height);
	letter-spacing: var(--thegem-to-product-grid-price-letter-spacing);
	color: var(--thegem-to-product-grid-price-color);
}

/* Loop Product Price */
.thegem-te-loop-product-add-to-cart .cart {
	display: flex;
}
.thegem-te-loop-product-add-to-cart .cart.type_button .button {
	width: auto;
	height: auto;
	font-size: 14px;
	line-height: 1;
	padding: 7px 15px;
	margin: 4px 0;
	border-radius: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
}
.thegem-te-loop-product-add-to-cart .cart.type_button .button i {
	color: currentColor;
	font-size: 16px;
	line-height: 1;
}
.thegem-te-loop-product-add-to-cart .cart i.default:before {
	content: "\e660";
	font-style: normal;
	font-family: 'thegem-icons';
	font-weight: normal;
	-webkit-font-smoothing: initial;
	vertical-align: middle;
}
.thegem-te-loop-product-add-to-cart .cart.type_button .button .space {
	display: inline-block;
	width: 7px;
}
.thegem-te-loop-product-add-to-cart .cart.variable-type-button i.default:before {
	content: "\e661";
	font-style: normal;
	font-family: 'thegem-icons';
	font-weight: normal;
	-webkit-font-smoothing: initial;
}
.thegem-te-loop-product-add-to-cart .cart.type_button .button .button-text {
	margin: 0;
	color: inherit;
}

.thegem-te-loop-product-add-to-cart .cart.icon .button {
	width: 32px !important;
	height: 32px !important;
	line-height: 32px !important;
	margin: 0;
	font-size: 0;
	letter-spacing: 0;
	padding: 0;
	visibility: visible;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
}
.thegem-te-loop-product-add-to-cart .cart.icon .button i {
	font-size: 16px !important;
	line-height: 1;
	color: currentColor;
}
.thegem-te-loop-product-add-to-cart .cart {
	justify-content: center;
}
.thegem-te-loop-product-add-to-cart .cart.alignment-left {
	justify-content: start;
}
.thegem-te-loop-product-add-to-cart .cart.alignment-right {
	justify-content: end;
}
.thegem-te-loop-product-add-to-cart .cart.alignment-fullwidth .button {
	width: 100%;
}
.thegem-te-loop-product-add-to-cart .added_to_cart {
	display: none;
}
.thegem-te-loop-product-add-to-cart .cart .button.loading {
	bottom: auto;
	left: auto;
	position: static;
	right: auto;
	top: auto;
	z-index: 2;
}
/*Popup notifications*/
.thegem-popup-notification-wrap.loop-product-add-to-cart-popup-notification .thegem-popup-notification {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 200px;
	text-align: center;
	font-size: 16px;
	line-height: 2;
	background: linear-gradient(180deg, rgba(33, 34, 39, 0) 0%, rgba(33, 34, 39, 0.3) 100%);
	margin: 0 !important;
	z-index: 10000;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	-webkit-transition-property: opacity, visibility, -webkit-transform;
	transition-property: opacity, visibility, -webkit-transform;
	transition-property: opacity, visibility, transform;
	transition-property: opacity, visibility, transform, -webkit-transform;
	display: flex;
	justify-content: center;
}
.thegem-popup-notification-wrap.loop-product-add-to-cart-popup-notification .thegem-popup-notification.visible {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
@supports (-webkit-touch-callout: none) {
	.thegem-popup-notification-wrap.loop-product-add-to-cart-popup-notification .thegem-popup-notification {
		top: 0;
		bottom: initial;
		background: linear-gradient(0deg, rgba(33, 34, 39, 0) 0%, rgba(33, 34, 39, 0.3) 100%);
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
	}
}
.thegem-popup-notification-wrap.loop-product-add-to-cart-popup-notification .thegem-popup-notification .notification-message {
	max-width: 95%;
	position: absolute;
	bottom: 30px;
	color: inherit;
	padding: 12px 18px;
}
@supports (-webkit-touch-callout: none) {
	.thegem-popup-notification-wrap.loop-product-add-to-cart-popup-notification .thegem-popup-notification .notification-message {
		top: 30px;
		bottom: initial;
	}
}
.thegem-popup-notification-wrap.loop-product-add-to-cart-popup-notification .thegem-popup-notification .notification-message:before {
	content: "";
	font-family: "thegem-icons";
	font-weight: normal;
	font-style: normal;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-variant: normal;
	text-rendering: auto;
	line-height: 0.7;
	margin-right: 8px;
	font-size: 1.5em;
	vertical-align: middle;
}
.thegem-popup-notification-wrap.loop-product-add-to-cart-popup-notification .thegem-popup-notification .notification-message span.buttons {
	display: inline-block;
}
@media (max-width: 767px) {
	.thegem-popup-notification-wrap.loop-product-add-to-cart-popup-notification .thegem-popup-notification .notification-message span.buttons {
		width: 100%;
	}
	.thegem-popup-notification-wrap.loop-product-add-to-cart-popup-notification .thegem-popup-notification .notification-message span.buttons a.button:first-child {
		margin-left: 0;
	}
}
.thegem-popup-notification-wrap.loop-product-add-to-cart-popup-notification .thegem-popup-notification .notification-message a.button {
	width: fit-content;
	width: -webkit-fit-content;
	height: auto;
	font-size: 14px;
	line-height: 1;
	padding: 3px 15px 4px 15px;
	margin-left: 10px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	-webkit-appearance: none;
	transition: all 0.3s;
}

/* Product Rating */
.thegem-te-loop-product-rating{
	position: relative;
}
.thegem-te-loop-product-rating .product-rating{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	gap: 5px;
}
.thegem-te-loop-product-rating .product-rating .star-rating {
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 18px;

	height: 1em;
	line-height: 1em;
	overflow: hidden;
	position: relative;
	width: 5em;
	margin: 0;
}
.thegem-te-loop-product-rating .product-rating .star-rating:before{
	content: '\e61a\e61a\e61a\e61a\e61a';
	float: left;
	left: 0;
	position: absolute;
	top: -1px;
	color: var(--thegem-to-product-rating-stars-base-color, #b6c6c9);
}
.thegem-te-loop-product-rating .product-rating .star-rating span {
	float: left;
	left: 0;
	overflow: hidden;
	padding-top: 1.5em;
	position: absolute;
	top: -1px;
}
.thegem-te-loop-product-rating .product-rating .star-rating > span:before {
	content: '\e61a\e61a\e61a\e61a\e61a';
	left: 0;
	position: absolute;
	top: 0;
	color: var(--thegem-to-product-rating-stars-rated-color, #ffc107);
}

/* quote */

blockquote{
	margin: 0;
	font-size: 24px;
	line-height: 37px;
	padding: 67px 87px;
	background-color: #f3f5f6;
	position: relative;
}
blockquote:after {
	position: absolute;
	font-family: thegem-icons;
	font-style: normal;
	content: '\e60c';
	font-size: 76px;
	line-height: 37px;
	font-weight: normal;
	right: 67px;
	bottom: 7px;
	color: #a3e7f0;
}


.gem-quote {
	margin-bottom: 3em;
	position: relative;
	overflow: hidden;
}

.gem-quote blockquote div,
.gem-quote blockquote p,
.gem-quote blockquote{
	margin: 0;
}
.gem-quote.gem-quote-style-default {
	padding: 3px;
	border: 1px solid #c9d2d9;
}
.gem-quote.gem-quote-style-default blockquote {
	margin: 0px;
	font-size: 24px;
	line-height: 37px;
	font-weight: 100;
	padding: 60px 80px;
	border: 1px solid #e9edf0;
}
.gem-quote.gem-quote-style-1 {
	font-size: 24px;
	line-height: 37px;
	padding: 67px 87px;
	font-weight: 200;
	background-color: #f3f5f6;
}

.gem-quote.gem-quote-style-2 {
	color: #bcc6cd;
	font-weight: 200;
	padding: 67px 87px;
	font-size: 24px;
	line-height: 37px;
	background-color: #2c3e50;
}
.gem-quote.gem-quote-style-2 blockquote {
	color: #b6c6c9;
}

.gem-quote.gem-quote-style-3 blockquote{
	text-transform: uppercase;
	margin: 0px;
	font-size: 19px;
	padding: 67px 87px;
	letter-spacing: 0.085em;
	line-height: 1.85em;
	border: 1px solid #e9edf0;
}
.gem-quote.gem-quote-style-3{
	padding: 4px;
	color: #2c3e50;
	border: 1px solid #c9d2d9;
}
.gem-quote.gem-quote-style-4 {
	color: #2c3e50;
	letter-spacing: 0.085em;
	padding: 72px 92px;
	background-color: #f3f5f6;
	text-transform: uppercase;
}
.gem-quote.gem-quote-style-5 {
	padding: 72px 92px;
	text-transform: uppercase;
	letter-spacing: 0.085em;
	background-color: #2c3e50;
	color: #ffffff;
}
.gem-quote .custom-color-blockqute-mark,
.gem-quote.gem-quote-style-default:after,
.gem-quote.gem-quote-style-1:after,
.gem-quote.gem-quote-style-2:after,
.gem-quote.gem-quote-style-3:after,
.gem-quote.gem-quote-style-4:after,
.gem-quote.gem-quote-style-5:after{
	position: absolute;
	font-family: thegem-icons;
	font-style: normal;
	content: '\e60c';
	font-size: 76px;
	right: 67px;
}
 .gem-quote.gem-quote-style-1 blockquote,
 .gem-quote.gem-quote-style-2 blockquote,
 .gem-quote.gem-quote-style-4 blockquote,
 .gem-quote.gem-quote-style-5 blockquote {
	  padding: 0;
	 background-color: transparent;
 }
.gem-quote.gem-quote-style-default blockquote,
.gem-quote.gem-quote-style-3 blockquote {
	background-color: transparent;
}
.gem-quote.gem-quote-style-default blockquote:after,
.gem-quote.gem-quote-style-1 blockquote:after,
.gem-quote.gem-quote-style-2 blockquote:after,
.gem-quote.gem-quote-style-3 blockquote:after,
.gem-quote.gem-quote-style-4 blockquote:after,
.gem-quote.gem-quote-style-5 blockquote:after {
	display: none;
}
.gem-quote.gem-quote-style-2.gem-quote .custom-color-blockqute-mark,
.gem-quote.gem-quote-style-1.gem-quote .custom-color-blockqute-mark,
.gem-quote.gem-quote-style-1:after,
.gem-quote.gem-quote-style-2:after,
.gem-quote.gem-quote-style-4:after,
.gem-quote.gem-quote-style-5:after{
	bottom: 6px;
}

.custom-color-blockqute-mark-added.gem-quote:after {
	display: none;
 }
.gem-quote .custom-color-blockqute-mark,
.gem-quote .custom-color-blockqute-mark,
.gem-quote.gem-quote-style-default:after,
.gem-quote.gem-quote-style-3:after
{
	bottom: 11px;
}
.gem-quote.gem-quote-style-default:after {
	color: #e7ebee;
}
.gem-quote.gem-quote-style-1:after{
	color: #a3e7f0;
}
.gem-quote.gem-quote-style-2:after{
	color: #4dd0e1;
}
.gem-quote.gem-quote-style-3:after{
	color: #e7ebee;
}
.gem-quote.gem-quote-style-4:after{
	color: #a3e7f0;
}
.gem-quote.gem-quote-style-5:after{
	color: #4dd0e1;
}
.gem-quote.gem-quote-style-1.gem-quote-no-paddings,
.gem-quote.gem-quote-style-2.gem-quote-no-paddings,
.gem-quote.gem-quote-style-4.gem-quote-no-paddings,
.gem-quote.gem-quote-style-5.gem-quote-no-paddings
{
	padding-left: 50px;
	padding-right: 20px;
	padding-top: 50px;
	padding-bottom: 50px;
}
@media (max-width:767px) {
	.gem-quote.gem-quote-style-1,
	.gem-quote.gem-quote-style-2,
	.gem-quote.gem-quote-style-4,
	.gem-quote.gem-quote-style-5,
	.gem-quote.gem-quote-style-1.gem-quote-no-paddings,
	.gem-quote.gem-quote-style-2.gem-quote-no-paddings,
	.gem-quote.gem-quote-style-4.gem-quote-no-paddings,
	.gem-quote.gem-quote-style-5.gem-quote-no-paddings {
		padding-left: 25px;
		padding-right: 10px;
		padding-top: 25px;
		padding-bottom: 50px;
	}
}
.gem-quote.gem-quote-style-default.gem-quote-no-paddings blockquote,
.gem-quote.gem-quote-style-3.gem-quote-no-paddings blockquote{
	padding-left: 39px;
	padding-right: 20px;
	padding-top: 44px;
	padding-bottom: 50px;
}
@media (max-width:767px) {
	.gem-quote.gem-quote-style-default blockquote,
	.gem-quote.gem-quote-style-3 blockquote,
	.gem-quote.gem-quote-style-default.gem-quote-no-paddings blockquote,
	.gem-quote.gem-quote-style-3.gem-quote-no-paddings blockquote {
		padding-left: 19px;
		padding-right: 10px;
		padding-top: 22px;
		padding-bottom: 50px;
	}
}

.gem-quote.gem-quote-style-default.custom-color-blockqute-mark-added.gem-quote-no-paddings .custom-color-blockqute-mark,
.gem-quote.gem-quote-style-1.custom-color-blockqute-mark-added.gem-quote-no-paddings .custom-color-blockqute-mark,
.gem-quote.gem-quote-style-2.custom-color-blockqute-mark-added.gem-quote-no-paddings .custom-color-blockqute-mark,
.gem-quote.gem-quote-style-4.custom-color-blockqute-mark-added.gem-quote-no-paddings .custom-color-blockqute-mark,
.gem-quote.gem-quote-style-5.custom-color-blockqute-mark-added.gem-quote-no-paddings .custom-color-blockqute-mark,
.gem-quote.gem-quote-style-default.gem-quote-no-paddings:after,
.gem-quote.gem-quote-style-1.gem-quote-no-paddings:after,
.gem-quote.gem-quote-style-2.gem-quote-no-paddings:after,
.gem-quote.gem-quote-style-4.gem-quote-no-paddings:after,
.gem-quote.gem-quote-style-5.gem-quote-no-paddings:after {
	font-size: 67px;
	right: 35px;
	bottom: 4px;
}
.gem-quote.gem-quote-style-default.gem-quote-no-paddings:after,
.gem-quote.gem-quote-style-3.gem-quote-no-paddings:after {
	font-size: 67px;
	right: 35px;
	bottom: 10px;
}


/* bace list */


.wpb_text_column ul li {
	position: relative;
	list-style: none;
	padding-bottom: 6px;
}
.wpb_text_column ul li ul,
.wpb_text_column ol li ol{
	padding-bottom: 5px;
	padding-left: 30px;
	padding-top: 5px;
}
.wpb_text_column ul li:before {
	left: -12px;
	content: "";
	height: 3px;
	width: 3px;
	position: absolute;
	background-color: #002b36;
	border-radius: 50%;
	top: 12px;
}
.wpb_text_column ol li {
	position: relative;
	padding-bottom: 6px;
}

.wpb_text_column ol {
	list-style: none;
	counter-reset:li;
}
.wpb_text_column ol li:before {
	content:counter(li);
	counter-increment:li;
	position:absolute;
	counter-reset: section;
	top:-4px;
	left:-2em;
	width:2em;
	padding:4px 0;
	font-weight:bold;
	text-align:center;
}

.wpb_text_column .yith-wcwl-share ul li:before {
	display: none;
}

/* List */
.gem-list {
	margin-bottom: 1.421em;
}
.gem-list > ul {
	list-style: none;
	padding-left: 1.2em;
	margin: 0;
}
.gem-list > ul > li {
	position: relative;
	text-indent: -1.2em;
	margin-bottom: 0.7em;
}
.gem-list > ul > li:last-child {
	margin-bottom: 0;
}
.gem-list > ul > li:before {
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	content: '\e601';
	font-size: 16px;
	vertical-align: top;
	display: inline-block;
	width: 21px;
	text-indent: 0;

}

.gem-list.gem-list-type-check > ul > li:before {
	content: '\e614';
}
.gem-list.gem-list-type-arrow > ul > li:before {
	content: '\e64c';
}
.gem-list.gem-list-type-double-arrow > ul > li:before {
	content: '\e653';
}

.gem-list.gem-list-type-check-style-1  > ul > li:before {
	content: '\e614';
}
.gem-list.gem-list-type-check-style-2  > ul > li:before {
	content: '\e650';
}
.gem-list.gem-list-type-disc-style-1  > ul > li:before {
	content: '\e617';
}
.gem-list.gem-list-type-disc-style-2  > ul > li:before {
	content: '\e651';
}
.gem-list.gem-list-type-checkbox  > ul > li:before {
	content: '\e647';
}

.gem-list.gem-list-type-cross > ul > li:before {
	content: '\e619';
}
.gem-list.gem-list-type-snowflake-style-1 > ul > li:before {
	content: '\e644';
}
.gem-list.gem-list-type-snowflake-style-2 > ul > li:before {
	content: '\e645';
}
.gem-list.gem-list-type-square > ul > li:before {
	content: '\e618';
}
.gem-list.gem-list-type-disc > ul > li:before {
	content: '\e617';
}
.gem-list.gem-list-type-star > ul > li:before {
	content: '\e61a';
}
.gem-list.gem-list-type-plus > ul > li:before {
	content: '\e652';
}

.gem-list.gem-list-type-Label > ul > li:before {
	content: '\e648';
}






.gem-list.gem-list-color-1  > ul > li:before{
	color: #3c3950;
}
.gem-list.gem-list-color-2   > ul > li:before{
	color: #00bfa5;
}
.gem-list.gem-list-color-3  > ul > li:before {
	color: #00bcd4;
}
.gem-list.gem-list-color-4  > ul > li:before {
	color: #ffb932;
}
.gem-list.gem-list-color-5  > ul > li:before {
	color: #f44336;
}
.gem-list.gem-list-color-6  > ul > li:before {
	color: #7e57c2;
}
.gem-list.gem-list-color-7  > ul > li:before {
	color: #d500f9;
}
.gem-list.gem-list-color-8  > ul > li:before {
	color: #8d6e63;
}
.gem-list.gem-list-color-9  > ul > li:before {
	color: #f26c4f;
}
.gem-list.gem-list-color-10 > ul > li:before {
	color: #ad1457;
}
.gem-list.gem-list-color-11 > ul > li:before {
	color: #afb42b;
}
.gem-list.gem-list-color-12 > ul > li:before {
	color: #ffffff;
}
.gem-list.gem-list-color-13 > ul > li:before {
	color: #e5bf93;
}
.gem-list .gem-list  > ul > li:before {
	color: #5f727f;
}


/* Table */
.gem-table {
	margin-bottom: 1.421em;
}
.gem-table table {
	width: 100%;
}
.gem-table thead th {
	padding: 17px;
	text-transform: uppercase;
}
.gem-table td {
	padding: 16px;
}
.gem-table table {
	border: medium none !important;
	overflow: visible;
}

.gem-table.gem-table-style-3 {
	border: medium none;
	overflow: visible;
}

@media (max-width: 768px) {
	.gem-table.gem-table-responsive {
		border: 0 none;
		box-shadow: none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
	}
	.gem-table-responsive .tabletolist > li span
	{
		margin-bottom: 30px;
	}
	.gem-table-responsive .tabletolist .titles {
		border: medium none;
		margin: 0;
		background-color: #f4f7f6;
	}
	.gem-table-responsive .tabletolist .row_headers {
		border-right: 1px solid #dfe5e8;
	}
	.gem-table-responsive .tabletolist > li
	{
		margin-bottom: 30px;
	}
	.gem-table-responsive.gem-table-style-1 .tabletolist > li  li:nth-child(even) {
		background-color: #f4f7f6;
	}

	.gem-table-responsive.gem-table-style-2 .tabletolist > li span.titles {
		border:medium  none;
	}

	.gem-table-responsive.gem-table-style-3  .tabletolist > li,
	.gem-table-responsive.gem-table-style-3  .tabletolist .row_headers,
	.gem-table-responsive.gem-table-style-3  .tabletolist > li span{
		border: medium none;
	}
	.gem-table-responsive.gem-table-style-3 .tabletolist > li .titles {
		background-color: #46485c;
	}
	.gem-table-responsive.gem-table-style-3 .tabletolist > li  li:nth-child(odd) {
		background-color: #f4f7f6;
	}
	.gem-table-responsive.gem-table-style-3 .tabletolist > li  li:nth-child(odd) .row_headers{
		background-color: #f0f3f2;
	}
	.gem-table-responsive.gem-table-style-3 .tabletolist > li  li:nth-child(even){
		background-color: #ebf0ef;
	}
	.gem-table-responsive.gem-table-style-3 .tabletolist > li  li:nth-child(even) .row_headers{
		background-color: #e6ebe9;
	}
	.gem-table-responsive .tabletolist,
	.gem-table-responsive .tabletolist > li > ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.gem-table-responsive .tabletolist > li > ul {
		display: table;
		width: 100%;
	}
	.gem-table-responsive .tabletolist > li > ul > li {
		display: table-row;
	}
	.gem-table-responsive .tabletolist .row_headers,
	.gem-table-responsive .tabletolist .row_data {
		display: table-cell;
		padding: 17px;
		vertical-align: middle;
	}

	.gem-table-responsive.gem-table-style-1 .tabletolist.nrh .row_headers {
		font-weight: bold;
	}
	.gem-table-responsive .tabletolist.rh > li > .titles {
		display: block;
		padding: 14px;
		text-align: center;
		text-transform: uppercase;
	}
	.gem-table-style-1 .tabletolist.rh > li > .titles {
		position: relative;
	}
	.gem-table-responsive .tabletolist.rh .row_data,
	.gem-table-responsive .tabletolist.rh .row_headers{
		text-align: center;
	}

}
.gem-table-style-1.gem-table{
	border: medium none;
}

.gem-table-style-3 tr:nth-child(even) td {
	background-color: #e6ebe9;
}
.gem-table-style-3 tr:nth-child(even) td:nth-child(even) {
	background-color: #ebf0ef;
}
.gem-table-style-3 tr:nth-child(odd) td{
	background-color: #f4f7f6;
}
.gem-table-style-3 thead tr th:nth-child(even) {
	background-color: #46485c;
}
 .gem-table-style-1 tr:nth-child(even) td {
	background-color: #f4f7f6;
}
.gem-table-style-2 thead tr {
	background-color: #f4f7f6;
}
.gem-table-style-2.gem-table {
	border: medium none ;
}

.gem-table-responsive .tabletolist.rh > li:first-child > .titles {
	border-top: medium none;
}
.gem-table h1,
.gem-table h2,
.gem-table h3,
.gem-table h4,
.gem-table h5,
.gem-table h6 {
	margin: 0px;
}


.custom-header  .title-xlarge {
    margin: 0.4em 0;
}
.custom-header-subtitle span {
	display: block;
}
.gem-custom-header-icon-position-centered {
text-align: center;
}

.gem-custom-header-icon-position-left .gem-icon {
	float: left;
}
.gem-custom-header-icon-position-left .gem-custom-header-conteiner{
	text-align: right;
}
.gem-custom-header-icon-position-right .gem-icon {
	float: right;
}
.gem-custom-header-icon-position-left .custom-header-title,
.gem-custom-header-icon-position-left .custom-header-subtitle{
	float: right;
	clear: right;
}
.gem-custom-header-icon-position-left {
	text-align: right;
}
.gem-custom-header-icon-position-right {
	text-align: left;
}
.gem-custom-header-icon-position-centered {
	text-align: center;
}
.custom-header .breadcrumbs {
	width: 100%;
}
.gem-custom-header-icon-position-centered .gem-icon {
	float: none;
	display: inline-block;
}
.gem-custom-header-icon-position-centered .gem-custom-header-conteiner {
	width: 100%;
	text-align: center;
}
.gem-custom-header-icon-position-centered .styled-subtitle .light {
	display: inline-block;
}
.custom-header.gem-custom-header-no-icon .gem-icon {
	display: none;
}
.gem-custom-header-icon-position-centered .container {
	padding: 0;

}
.custom-header .container {
	position: inherit;
}
.gem-custom-header-icon-position-left .breadcrumbs {
	right: 21px;
}
.gem-custom-header-icon-position-right .breadcrumbs {
	left: 21px;
}
body .site-main .custom-header .gem-icon {
	margin-top: 50px;
}
.custom-header h1 ,
.custom-header h2,
.custom-header h3,
.custom-header h4,
.custom-header h5,
.custom-header h6{
	margin-top: 50px;
}


.gem-custom-header-icon-position-centered  h1{
	margin-top: 30px;
}
.gem-custom-header-icon-position-centered {
	padding-top: 20px;
}
.custom-header h1 {
	margin-bottom: 20px;

}
.gem-custom-header-icon-position-centered  .gem-custom-header-conteiner {
	display: inline-block;
	width: 100%;
}

.gem-custom-header-icon-position-centered .gem-custom-header-conteiner .custom-header-title,
.gem-custom-header-icon-position-centered .gem-custom-header-conteiner .custom-header-subtitle{
	width: 100%;

}
.gem-custom-header-no-icon .custom-header-title span {
    display: inline;
}
.custom-header-title span{
	display: inline-block;
}
.custom-header  .breadcrumbs {
	position: absolute;
	bottom: 10px;
}

.custom-header .gem-icon-shape-none {
	border: none !important;
}
.custom-header.centreed_breadcrumbs .breadcrumbs {
    text-align: center;
}

.breadcrumbs .current {
	color: #e7ff89;
	padding-bottom: 12px;
	border-bottom: 3px solid #e7ff89;
}
.bc-devider:before {
	font-family: thegem-icons;
	font-style: normal;
	width: 20px;
	vertical-align: middle;
	padding: 0px 12px;
	content:  '\e64c';
}
@media (max-width: 768px) {
	.custom-header  .breadcrumbs{
		right: 0 !important;
		left: 0 !important;
		text-align: center !important;
	}
	.gem-custom-header-icon-position-left .custom-header-title,
	.gem-custom-header-icon-position-left .custom-header-subtitle {
		float: none;
	}
}
@media (max-width: 1080px) {
	.custom-header .custom-header-title span{
		max-width: 800px !important;
	}
	.custom-header .custom-header-title span{
		max-width: 800px !important;
	}
}
@media  (min-width:980px) and (max-width:1200px) {
    .row .custom-header {
        padding-top: 120px !important;
    }
}
@media (max-width: 980px) {
	.custom-header .custom-header-title span{
		max-width: 600px !important;
	}
	.custom-header .custom-header-title span{
		max-width: 600px !important;
	}
	.gem-custom-header-icon-position-centered .custom-header-title{
		margin: 0 auto;
		text-align: center !important;
	}
}
@media (max-width: 880px) {
	.custom-header .custom-header-title span{
		max-width: 480px !important;
	}
	.custom-header .custom-header-title span{
		max-width: 480px !important;
	}
}

@media (max-width: 767px) {
	.custom-header .custom-header-title {
		max-width: 550px !important;
		margin: 0 auto;
		text-align: center;
		float: none;
	}
	.custom-header .custom-header-title span{
		max-width: 550px !important;
		margin: 0 auto;
		text-align: center !important;
		float: none;
	}
	.custom-header .custom-header-title span h1{
		font-size: 2.6em !important;

	}
	.custom-header .gem-icon {
		display: inline-block;
		float: none;
	}
	.custom-header {
		text-align: center;
	}
	.styled-subtitle .light {
		text-align: center;
	}
	.gem-icon-size-big {
		font-size: 95px;
		width: 95px;
		height: 95px;
		line-height: 95px;
	}
}

/*custom-header*/

/*footer*/
.contact-form-footer input{
	padding-top: 21px;
	border-radius: 3px;
	padding-bottom: 17px;
}
.wpcf7 .wpcf7-form .contact-form-footer textarea {
	height: 95px;
	width: 100%;
}
.wpcf7 .wpcf7-form .contact-form-footer .wpcf7-submit {
	width: 100%;
	padding: 11px;
	margin: 0;
	line-height: 0;
}
.site-footer .contact-form-footer .wpcf7-form-control-wrap .wpcf7-form-control {
	padding: 7px !important;
}
.site-footer #colophon .widget-title {
	margin-bottom: 42px;
}
.site-footer .widget_contacts .gem-contacts div{

	line-height: inherit;
	display: block;
}

.site-footer .gem-contacts-item.gem-contacts-address {
	border-bottom: 1px solid #393d50;
	padding-bottom: 30px;
	margin-top: -15px;
}
.site-footer .gem-contacts-item.gem-contacts-phone {
	padding-top: 30px;
}
.site-footer .widget_text ul {
	padding-left: 0px;
	margin-left: 0px;
	margin-top: -17px;
}
.site-footer .widget_text  ul li {
	list-style: none;
	float: left;  padding-left: 14px;
	padding: 8px 0;
	margin-left: 13px;
	border-bottom: 1px solid #393d50;
	width: 100%;
}
.site-footer .widget_text  ul li:last-child {
	border-bottom: medium none;
}
.site-footer .widget_text ul li:before {
	border-radius: 50%;
	content: '';
	width: 5px;
	margin-top: 10px;
	height: 5px;
	float: left;
	margin-left: -14px;

}
.site-footer .gem-mini-pagination a{
	width: 13px;
	height: 13px;
}
.site-footer .gem-clients-grid-carousel-wrap .gem-clients-slide a {
	border-radius: 0px;
}
.site-footer .mc-form {
	position: relative;
	margin-top: 35px;
}
.site-footer #mc4wp_submit {
	position: absolute;
	top: -8px;
	right: 0;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;

}
.site-footer .mc4wp-form input[type='email'] {
    padding: 7px 21px;
    width: 100%;
}
.site-footer .widget-title {
	margin-bottom: 40px;
}
/*footer*/


.digram-line-box {
	padding-top: 28px;
	padding-bottom: 36px;
}
.digram-line-box  .skill-element {
	padding-top:4px;
}
.skill-title {
	padding-left: 28px;
	margin-bottom: 7px;
}
.widget .diagram-summary-skill-line {
	font-size: 22px;
	font-weight: 100;

}

body .gem-icon-with-text.gem-icon-with-text-float-right .gem-icon-with-text-icon{
	display: block;
	float: right;
}

.gem-icon-shape-romb {
	-o-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
}
.gem-icon-shape-romb .gem-icon-inner{
	border-radius: 0px;
}
.romb-icon-conteiner {
	transform: rotate(-45deg);
	width: 100%;
	height: 100%;
}
.gem-icon-size-xlarge.gem-icon-shape-romb {

	border-radius: 14px;
}
.gem-icon-size-large.gem-icon-shape-romb {
	margin: 34px;
	border-radius: 7px;
}
.gem-icon-size-medium.gem-icon-shape-romb {
	margin: 16px;
	border-radius: 3px;
}
.gem-icon-size-small.gem-icon-shape-romb {
	margin: 10px;
	border-radius: 3px;
}

body .gem-icon.gem-icon-size-small {
	border-width: 3px;
}






/* Styled Image, Video */
.gem-wrapbox {
	position: relative;
	margin-bottom: 1.421em;
}
.gem-wrapbox-position-left {
	float: left;
}
.gem-wrapbox-position-right {
	float: right;
}
.gem-wrapbox-position-below,
.gem-wrapbox-position-centered {
	display: inline-block;
}
.gem-wrapbox-inner {
	position: relative;
}
.gem-wrapbox-element {
	width: 100%;
}
.gem-wrapbox-style-1 {
	border: 8px solid transparent;
}
.gem-wrapbox-style-1.shadow-box {
	box-shadow: none;
}

.gem-wrapbox-style-2 {
	border: 16px solid transparent;
}
.gem-wrapbox-style-3 {
	padding: 8px;
	border: 1px solid transparent;
}
.gem-wrapbox-style-4 {
	padding: 20px;
	border: 2px solid transparent;
}
.gem-wrapbox-style-5 {
	padding: 20px;
}
body .gem-wrapbox-style-5{
	-webkit-box-shadow: 0px 1px 27px 1px rgba(44, 46, 61, 0.25);
	-moz-box-shadow: 0px 1px 27px 1px rgba(44, 46, 61, 0.25);
	box-shadow: 0px 1px 27px 1px rgba(44, 46, 61, 0.25);
}
.gem-wrapbox-style-6 {
	padding: 8px;
	border: 20px solid transparent;
}

.gem-wrapbox-style-7 {
	padding: 10px;
	border-radius: 20px;
	border: 10px solid transparent;
}
.gem-wrapbox-style-8 {
	padding: 18px;
	border: 6px solid transparent;
	border-radius: 55px;
}
.gem-wrapbox-style-8 img{
	border-radius: 34px;
}
.gem-wrapbox-style-8 .gem-wrapbox-inner a:before{
	border-radius: 34px;
}
.gem-wrapbox-style-8 .gem-wrapbox-inner a{
	z-index: 1;
	overflow: hidden;
	border-radius: 34px;
}

.gem-wrapbox-style-8 .overlay-wrap {
	border-radius: 34px;
	overflow: hidden;
}

.gem-wrapbox-style-9 .gem-wrapbox-inner:after {
	content: "";
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	border: 2px  dashed transparent;
}

.gem-wrapbox-style-9 .overlay-wrap:after {
	content: "";
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	border: 2px  dashed transparent;
}
.gem-wrapbox-style-11 .gem-wrapbox-inner {
	overflow: hidden;
	border-radius: 50%;
	z-index: 1;
}
.gem-wrapbox-style-11 .gem-wrapbox-inner:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border: 2px  solid #FFFFFF;
	border-radius: 50%;
}
.gem-gallery-grid.metro.metro-item-style-6  .gallery-set .gallery-item {
	margin-bottom: 70px !important;
	overflow: visible !important;
}
.gem-gallery-grid.metro.metro-item-style-10  .gallery-set .gallery-item,
.gem-gallery-grid.metro.metro-item-style-8  .gallery-set .gallery-item,
.gem-gallery-grid.metro.metro-item-style-5  .gallery-set .gallery-item,
.gem-gallery-grid.metro.metro-item-style-4  .gallery-set .gallery-item {
	margin-bottom: 60px !important;
	overflow: visible !important;
}
.gem-gallery-grid.metro.metro-item-style-7  .gallery-set .gallery-item,
.gem-gallery-grid.metro.metro-item-style-2  .gallery-set .gallery-item {
	margin-bottom: 50px !important;
	overflow: visible !important;
}
.gem-gallery-grid.metro.metro-item-style-1  .gallery-set .gallery-item {
	margin-bottom: 30px !important;
	overflow: visible !important;
}

.gem-gallery-grid.metro.metro-item-style-3  .gallery-set .gallery-item {
	margin-bottom: 35px !important;
	overflow: visible !important;
}
.gem-gallery-grid.metro.metro-item-style-11  .gallery-set .gallery-item {
	margin-bottom: 20px !important;
	overflow: visible !important;
}

.gem-wrapbox-style-10 {
	padding: 20px;
	border: 2px dashed transparent;
}
.gem-wrapbox-style-12 {
	z-index: 5;
}
.gem-wrapbox-style-14  img{
	border-radius: 50%;
}
.gem-wrapbox-style-12 .shadow-wrap {
	padding: 16px;
	height: auto;
}
.gem-wrapbox-style-12 .shadow-wrap:before,
.gem-wrapbox-style-12 .shadow-wrap:after {
	box-shadow: 0 -15px 20px rgba(0, 0, 0, 0.1);
	content: "";
	height: 20%;
	left: 2px;
	max-width: 300px;
	position: absolute;
	top: 22px;
	transform: rotate(2deg);
	width: 40%;
	z-index: -2;
}
.gem-wrapbox-style-12 .shadow-wrap:after {
	left: auto;
	right: 2px;
	transform: rotate(-2deg);
}
.gem-wrapbox-style-12 .gem-wrapbox-inner:before,
.gem-wrapbox-style-12 .gem-wrapbox-inner:after {
	bottom: 20px;
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.35);
	content: '';
	height: 20%;
	left: 5px;
	max-width: 300px;
	position: absolute;
	transform: rotate(-2deg);
	width: 40%;
	z-index: -2;
}
.gem-wrapbox-style-12 .gem-wrapbox-inner:after {
	left: auto;
	right: 5px;
	transform: rotate(2deg);
}
.gem-wrapbox-style-9 .overlay-wrap:after,
.gem-wrapbox-style-9 .gem-wrapbox-inner:after
{
	border-color: rgba(255, 255, 255, 0.5);
}

.gem-video.gem-wrapbox-style-11,
.gem-youtube.gem-wrapbox-style-11,
.gem-vimeo.gem-wrapbox-style-11 {
	border-radius: 50%;
	overflow: hidden;
}
.wpcf7-form .wpcf7-quiz,
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form input.wpcf7-text,
.wpcf7-form .combobox-wrapper,
.wpcf7-form textarea {
	width: 100%;
}
.wpcf7-form .wpcf7-quiz,
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form input.wpcf7-text {
	padding: 12px;
	padding-left: 20px;
}
.wpcf7-form .combobox-wrapper {
	overflow: hidden;
}

.wpcf7-form input:not(.gem-button-wpcf-custom) {
	padding-right: 40px;
}
.wpcf7 p {
	margin-bottom: 24px;
}
.wpcf7-form  .wpcf7-form-control-wrap {
	display: inline-block;
}

.wpcf7-form .combobox-wrapper {
	height: 51px;
}

.wpcf7-form .combobox-wrapper .combobox-button {
	height: 51px;
	width: 51px;
}
.wpcf7-form .combobox-wrapper .combobox-button:before {
	font-size: 24px;
	margin-left: -11px;
}
.wpcf7-form .combobox-wrapper .combobox-text {
	padding: 10px 20px;
	line-height: 32px;

}
.wpcf7 textarea {
	padding-left: 20px;
	padding-right: 12px;
}
.wpcf7-form span.wpcf7-list-item {
	margin-right: 20px;
	margin-left: 0px;
}
@media (max-width: 768px) {
	.wpcf7-form span.wpcf7-list-item {
		display: block;
		float: left;
	}
}

.wpcf7-form .gem-button:not(.gem-button-wpcf-custom),
.wpcf7-form  input[type='submit']:not(.gem-button-wpcf-custom) {
	margin: 15px 15px 15px 0;
}
.wpcf7-form .checkbox-sign,
.wpcf7-form .radio-sign,
.wpcf7-quiz-label{
	margin-right: 10px;
}

.wpcf7-form input[type='submit']:not(.gem-button-wpcf-custom) {
	height: 50px;
	line-height: 30px;
	padding: 10px 40px;
	font-size: 20px;
}

.wpcf7  .cf-style1-name,
.wpcf7  .cf-style1-email {
	float: left;
    margin-right: 16px;
}
.wpcf7  .cf-style1-title {
	margin-right: 11px;
	float: left;
}
.cf-style1-title > span,
.cf-style1-name span,
.cf-style1-email span{
	margin-right: 19px;

}
.wpcf7  .cf-style1-website span,
.wpcf7  .cf-style1-name span,
.wpcf7  .cf-style1-email span{
	max-width: 310px;
}


.cf-style1-website {
	float: left;
}
body .cf-style1-checkbox {
	clear: both;
	width: 100%;
	margin-bottom: 24px;
}
select.wpcf7-form-control.wpcf7-select option {
	padding-left: 10px;
	padding-top: 3px;
}
.cf-style1-textarea .wpcf7-form-control-wrap,
.cf-style1-textarea textarea {
	width: 100%;
}
.cf-style1-textarea textarea {
	height: 220px;
}
.wpcf7-form-control-wrap select {
	width: 100%;
}
.contact-form-style-3 {
	margin-left: -21px;
	margin-right: -21px;
}
body .contact-form-style-3 input,
body .contact-form-style-3 span {
	width: 100%;
}

body .cf-style1-textarea {
	margin-top: 20px;
	float: left;
	width: 100%;
	margin-bottom: 35px;
}

div.wpcf7 .gem-button-position-center .ajax-loader {
	margin-right: -20px;
}

.wpcf7-form .website {
	position: relative;
}
.wpcf7-form .gem-form-icon-phone,
.wpcf7-form .gem-form-icon-website,
.wpcf7-form .gem-form-icon-email,
.wpcf7-form .gem-form-icon-name {
	position: relative;
}
.wpcf7-form .phone:after,
.wpcf7-form .website:after,
.wpcf7-form .email:after,
.wpcf7-form  .name:after,
.wpcf7-form .gem-form-icon-phone:after,
.wpcf7-form .gem-form-icon-website:after,
.wpcf7-form .gem-form-icon-email:after,
.wpcf7-form .gem-form-icon-name:after {
	position: absolute;
	font-family: thegem-icons;
	font-style: normal;
	right: 12px;
	top: 12px;
	font-size: 24px;
}
.wpcf7-form .website:after,
.wpcf7-form .gem-form-icon-website:after {
	content: '\e623';
}
.wpcf7-form .email:after,
.wpcf7-form .gem-form-icon-email:after {
	content: '\e643';
}
.wpcf7-form .name:after,
.wpcf7-form .gem-form-icon-name:after {
	content: '\e63b';
}
.wpcf7-form .phone:after,
.wpcf7-form .gem-form-icon-phone:after {
	content: '\e625';
}
.wpcf7-form .gem-form-icon-phone .phone:after,
.wpcf7-form .gem-form-icon-website .website:after,
.wpcf7-form .gem-form-icon-email .email:after,
.wpcf7-form .gem-form-icon-name .name:after {
	display: none;
}
.contact-form-style-2 input,
.contact-form-style-2 .wpcf7-form-control-wrap {
	width: 100%;
}
.cf-style2-title,
.cf-style2-text {
	float: left;
}
.cf-style2-title > span{
	float: left;

}
.cf-style2-text > span {
	float: left;

}
.cf-style2-textarea textarea {
	width: 100%;
}
p.cf-style2-textarea {
	margin-top: 30px;
	float: left;
	width: 100%;
}

p.cf-style2-checkbox,
p.cf-style2-radio{
	margin-bottom: -24px;
}
p.cf-style2-checkbox .wpcf7-list-item,
p.cf-style2-radio .wpcf7-list-item{
	padding-bottom: 24px;
	display: block;
	float: left;
}

p.cf-style2-title {
	width: 28%;
	margin-right: 3%;
}
p.cf-style2-text {
	width: 69%;
}
.cf-style2-adreess .combobox-wrapper{
	max-width: 100%;
}
.widget .wpcf7-form .wpcf7-form-control-wrap {
	display: inline-block;
	width: 100%;
}
.wpcf7-form .wpcf7-form-control-wrap {
	width: 100%;
}
.widget  .wpcf7 textarea {
	height: 100px;
    width: 100%;
}
.form-sidebar span,
.form-sidebar textarea,
.form-sidebar input{
    width: 100%;
}


.widget .wpcf7-form  input {
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	overflow: hidden;
}
.widget .wpcf7-form textarea {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	overflow: hidden;
}
.widget .wpcf7-form p {
	width: 100%;
}
.wpcf7-form p.col-lg-6:after,
.wpcf7-form p.col-lg-3:after,
.wpcf7-form p.col-lg-4:after {
	right: 30px;
}
.widget .wpcf7-form input.wpcf7-text {
	padding: 6px;
	padding-left: 20px;
	padding-right: 40px;
}
.widget .wpcf7-form .phone:after,
.widget .wpcf7-form .website:after,
.widget .wpcf7-form .email:after,
.widget .wpcf7-form .name:after {
	top: 7px;
}
.widget .wpcf7 p {
	margin-bottom: 20px;
}
.widget .wpcf7-form .combobox-wrapper .combobox-text {
	padding: 5px 20px;
	line-height: 31px;
}
.widget .wpcf7-form input[type='submit'] {
	margin-top: 0px;
}
.widget  .wpcf7-form .combobox-wrapper {
	height: 41px;
	max-width: 331px;
}
.widget .wpcf7-form input[type='submit'] {
	height: 40px;
	line-height: 21px;
	padding: 10px 40px;
	font-size: 14px;
}
.widget .combobox-wrapper .combobox-button:before {
	margin-top: -11px;
}
.wpcf7-form .contact-form-style-2  .combobox-wrapper {
	height: 49px;
}
@media (max-width: 1212px) {
	.wpcf7-form .wpcf7-form-control-wrap,
	.wpcf7 .contact-form-style-3 p,
	.wpcf7 .contact-form-style-1 p {
		width: 100%;
	}
	.wpcf7 .cf-style3-website input,
	.wpcf7 .cf-style3-name input,
	.wpcf7 .cf-style3-email input,
	.wpcf7 .cf-style1-website input,
	.wpcf7 .cf-style1-name input,
	.wpcf7 .cf-style1-email input {
		width: 100%;
		max-width: 100%;
	}

}
@media (max-width: 768px) {
	.wpcf7 .cf-style3-website span,
	.wpcf7 .cf-style3-name span,
	.wpcf7 .cf-style3-email span,
	.wpcf7-form .contact-form-style-2 .combobox-wrapper,
	.wpcf7-form .contact-form-style-1 .combobox-wrapper,
	.wpcf7 .cf-style1-website span,
	.wpcf7 .cf-style1-name span,
	.wpcf7 .cf-style1-email span {
		width: 100%;
		max-width: 100%;
	}
	p.cf-style2-title {
		width: 100%;
	}
	p.cf-style2-text {
		width: 100%;
	}

	.cf-style1-title,
	.cf-style1-name,
	.cf-style1-email {
		width: 100%;
	}
	.wpcf7-form .cf-style1-title .wpcf7-form-control-wrap {
		width: 100%;
	}
    .widget .wpcf7 textarea {
        width: 100%;
    }
}

.wpcf7-form.gem-contact-form-white  .combobox-wrapper,
.wpcf7-form.gem-contact-form-white  input:not(.gem-button-wpcf-custom),
.wpcf7-form.gem-contact-form-white .combobox-wrapper .combobox-button,
.wpcf7-form.gem-contact-form-white .combobox-wrapper .combobox-text,
.wpcf7-form.gem-contact-form-white .checkbox-sign,
.wpcf7-form.gem-contact-form-white  span.radio-sign,
.wpcf7-form.gem-contact-form-white textarea {
	border: none;
}

.wpcf7-form.gem-contact-form-dark  .combobox-wrapper,
.wpcf7-form.gem-contact-form-dark  input:not(.gem-button-wpcf-custom),
.wpcf7-form.gem-contact-form-dark .checkbox-sign,
.wpcf7-form.gem-contact-form-dark  span.radio-sign,
.wpcf7-form.gem-contact-form-dark textarea
{
	border: 1px solid #394050;
	background-color: #181828;
}
.wpcf7-form.gem-contact-form-dark .combobox-wrapper .combobox-button:before,
.wpcf7-form.gem-contact-form-dark .combobox-wrapper .combobox-text,
.wpcf7-form.gem-contact-form-dark .phone:after,
.wpcf7-form.gem-contact-form-dark .website:after,
.wpcf7-form.gem-contact-form-dark .email:after,
.wpcf7-form.gem-contact-form-dark  .name:after{
	color: #46485c;
}
.wpcf7-form.gem-contact-form-dark ::-webkit-input-placeholder {
	color: #46485c;
}
.wpcf7-form.gem-contact-form-dark:-moz-placeholder {
	color: #46485c;
}
.wpcf7-form.gem-contact-form-dark::-moz-placeholder {
	color: #46485c;
}
.wpcf7-form.gem-contact-form-dark:-ms-input-placeholder {
	color: #46485c;
}

p.cf-style3-textarea {
	margin-top: 14px;
	float: left;
	width: 100%;
}
p.cf-style3-textarea span {
	width: 100%;
}
.wpcf7 .cf-style3-website {
	float: left;
}
.wpcf7 .cf-style3-textarea span,
.wpcf7 .cf-style3-textarea textarea {
	width: 100%;
}
.wpcf7  input[type='submit']:not(.gem-button-wpcf-custom) {
	width: 100%;
}
@media (max-width: 368px) {
	.wpcf7  input {
		width: 100% !important;
	}
	.wpcf7-form .wpcf7-form-control-wrap {
		display: block;
		width: 100%;
	}
}
.wpcf7-form .contact-form-style-logistics-1 .combobox-wrapper{
    max-width: 100%;
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.wpcf7-form .contact-form-style-logistics-1 .name:after,
.wpcf7-form .contact-form-style-logistics-1 .email:after,
.wpcf7-form .contact-form-style-logistics-1 .combobox-button:before,
.wpcf7-form .contact-form-style-logistics-1 .combobox-text{
    color: #fff;
}
.wpcf7-form .contact-form-style-logistics-1 .combobox-wrapper select{
       color: #2d2a40;
}
.wpcf7-form .contact-form-style-logistics-1 .wpcf7-form-control-wrap,
.wpcf7-form .contact-form-style-logistics-1 input[type=text],
.wpcf7-form .contact-form-style-logistics-1 input[type=email],
.wpcf7-form .contact-form-style-logistics-1 select,
.wpcf7-form .contact-form-style-logistics-1 textarea{
    width: 100%;
    background: transparent;
    border-radius: 3px;
    color: #fff;
    border-color: #fff;
}
.wpcf7-form .contact-form-style-logistics-1 input[type='submit']{
    width: auto;
    text-align: center;
    margin: 15px auto;
    padding: 10px 25px;
    display: block;
    background: #2d2a40;
}
.wpcf7-form .contact-form-style-logistics-1 input[type='submit']:hover{
    background: #fff;
    color: #2d2a40;
}
.wpcf7-form .contact-form-style-logistics-1 ::-webkit-input-placeholder {color:#fff;}
.wpcf7-form .contact-form-style-logistics-1 ::-moz-placeholder          {color:#fff;}/* Firefox 19+ */
.wpcf7-form .contact-form-style-logistics-1 :-moz-placeholder           {color:#fff;}/* Firefox 18- */
.wpcf7-form .contact-form-style-logistics-1 :-ms-input-placeholder      {color:#fff;}

form.wpcf7-form.gem-contact-form-simple-line input[type="text"],
form.wpcf7-form.gem-contact-form-simple-line input[type="password"],
form.wpcf7-form.gem-contact-form-simple-line input[type="color"],
form.wpcf7-form.gem-contact-form-simple-line input[type="date"],
form.wpcf7-form.gem-contact-form-simple-line input[type="datetime"],
form.wpcf7-form.gem-contact-form-simple-line input[type="datetime-local"],
form.wpcf7-form.gem-contact-form-simple-line input[type="email"],
form.wpcf7-form.gem-contact-form-simple-line input[type="number"],
form.wpcf7-form.gem-contact-form-simple-line input[type="range"],
form.wpcf7-form.gem-contact-form-simple-line input[type="search"],
form.wpcf7-form.gem-contact-form-simple-line input[type="tel"],
form.wpcf7-form.gem-contact-form-simple-line input[type="time"],
form.wpcf7-form.gem-contact-form-simple-line input[type="url"],
form.wpcf7-form.gem-contact-form-simple-line input[type="month"],
form.wpcf7-form.gem-contact-form-simple-line input[type="week"],
form.wpcf7-form.gem-contact-form-simple-line textarea {
	border-top: 0 none;
	border-left: 0 none;
	border-right: 0 none;
	background: transparent;
}

.row .theme-default .nivo-controlNav a {
	width: 16px;
	height: 16px;
	background-image: none;
	border-radius: 50%;
	margin: 5px 7px;
}
.row  .flex-direction-nav a:before {
	font-family: thegem-icons;
	font-style: normal;
	font-size: 24px;
	display: inline-block;
	padding: 8px;
	content: '\e636';
}

.row  .flex-direction-nav a.flex-next:before {
	content: '\e634';
}


.row .vc_images_carousel .vc_carousel-indicators {
	bottom: -50px;
}

.row .vc_images_carousel .vc_carousel-indicators .vc_active {
	width: 16px;
	height: 16px;
	background-color: transparent;
	border: 4px solid #b6c6c9;
}
.row .vc_images_carousel .vc_carousel-indicators li{
	width: 16px;
	height: 16px;
	margin: 0 6px;
	background-color: #b6c6c9;
	border: 3px solid #b6c6c9;
}
.row  .flexslider {
	border: medium none;
	border-radius: 0px;
	box-shadow: none;
}
.row  .wpb_gallery .wpb_flexslider .flex-control-nav {
	margin-top: 25px;
}
.row  .flex-direction-nav a {
	text-shadow: none;
}
.row  .flex-direction-nav li .flex-next {
	right: 0px;
}
.row  .flex-direction-nav li .flex-prev {
	left: 0px;
}
.row .wpb_gallery .wpb_flexslider .flex-direction-nav a {
	border: none;
}
.row .theme-default .nivoSlider {
	box-shadow: none;
}
.row .wpb_gallery .wpb_flexslider .flex-direction-nav a:hover {
	border: none;
}
.row .theme-default .nivo-directionNav a {
	background: none;
	font-size: 24px;
	display: inline-block;
	padding: 9px;
}
.row .theme-default a.nivo-nextNav {
	right: 0px;

}
.row  .theme-default .nivo-directionNav a {
	font-size: 0px;
	text-indent: 0;
	height:40px;
	width: 40px;
}
.row .theme-default a.nivo-nextNav:after {
	font-size: 24px;
	content: '\e634';
	font-family: thegem-icons;
	font-style: normal;
	margin-top: 0px;
}
.row  .theme-default a.nivo-prevNav:after {
	font-size: 24px;
	content: '\e636';
	font-family: thegem-icons;
	font-style: normal;
	margin-top: 0px;
}
.row  .theme-default a.nivo-prevNav {
	left: 0px;

}

.row  .vc_carousel-control .icon-next{
	font-size: 24px;
	content: '\e634';
	font-family: thegem-icons;
	font-style: normal;
	margin-top: 0px;
}
.row  .vc_carousel-control  .icon-prev {
	font-size: 24px;
	content: '\e636';
	font-family: thegem-icons;
	font-style: normal;
}



.row .vc_images_carousel .vc_carousel-control.vc_left {
	margin-left: -15px;
}
.row .vc_images_carousel .vc_carousel-control.vc_right {
	margin-right: -5px;
}

.row .vc_images_carousel .vc_carousel-control .icon-prev,
.row .vc_images_carousel .vc_carousel-control .icon-next {
	height: 40px;
	width: 40px;
}
.row  .vc_images_carousel .vc_carousel-control {
	opacity: 1;
	text-shadow: none;
}
.row .vc_images_carousel .vc_carousel-control .icon-prev:before,
.row .vc_images_carousel .vc_carousel-control .icon-next:before {
	top: 0px;
}
.row .vc_images_carousel .vc_carousel-control .icon-prev:before {
	content: '\e636';
	top: 7px;
	font-size: 24px;
	font-family: thegem-icons;
	font-style: normal;
}
.row .vc_images_carousel .vc_carousel-control .icon-next:before {
	content: '\e634';
	top: 7px;
	font-family: thegem-icons;
	font-style: normal;
	font-size: 24px;
}


.row .vc_pie_chart_back
{
	border: 7px solid #f7f7f7;
}
.row  .vc_pie_wrapper span{
	font-size: 50px;
}

.diagram-wrapper.style-2 .digram-line-box  {
	padding-top: 5px;
}
.diagram-wrapper.style-2 .digram-line-box  {
	background-color: transparent;
	padding-right: 0px;
}
.diagram-wrapper.style-2 .digram-line-box .skill-line {
	margin-right: 0px;
}
.diagram-wrapper.style-2 .digram-line-box  .skill-title {
	padding-left: 0px;
}
.diagram-wrapper.style-2 .digram-line-box  .skill-amount  {
	margin-top: -30px;
}
.diagram-wrapper.style-2 .digram-line-box .skill-element {
	padding-top: 14px;
}


.diagram-wrapper.style-1 .digram-line-box .skill-line {
	margin-right: 0px;
}
.diagram-wrapper.style-1 .digram-line-box  .skill-amount  {
	margin-top: -30px;
}
.diagram-wrapper.style-1 .digram-line-box .skill-element {
	padding-top: 14px;
}

.diagram-wrapper.style-3 .digram-line-box  {
	background-color: transparent;
	padding-right: 0px;
}
.diagram-wrapper.style-3 .digram-line-box   .skill-line {
	margin-right: 0px;
	height: 30px;
	overflow: hidden;
	border-radius: 50px;
}
.diagram-wrapper.style-3 .digram-line-box  .skill-title {
	position: absolute;
	padding-top: 3px;
	padding-left: 22px;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}
.diagram-wrapper.style-3 .digram-line-box .skill-title span{
	margin-left: 8px;
}
.diagram-wrapper.style-3 .digram-line-box  .skill-amount  {
	margin-top: -30px;
}
.diagram-wrapper.style-3 .digram-line-box .skill-element {
	padding-top: 18px;
}
.diagram-wrapper.style-3 .skill-line div {
	height: 30px;
}

p.skill-style-3 {
	font-size: 10px;
	display: inline-block;
}
.diagram-wrapper.style-3  .skill-amount {
	display: none;
}

.diagram-legend .legend-element .color {
	margin-top: 5px;
}
.widget_diagram .diagram-legend .legend-element .title {
	font-size: 14px;
	font-weight: normal;
}
.widget_diagram  .diagram-legend .legend-element .color {
	display: block;
	float: left;
	width: 12px;
	height: 12px;
}
.widget_diagram  .diagram-legend .legend-element .color {
	margin-top: -1px;
}
.widget_diagram .diagram-legend .legend-element {
	margin-top: 15px;
}
.row .vc_progress_bar .vc_label {
	text-transform: uppercase;
}
.row .vc_round-chart .vc_chart-legend span {
	border-radius: 50%;
}
.row .vc_chart .vc_chart-legend li {
	margin: 0px 20px 1em;
}
.diagram-circle .diagram-legend .legend-element .title {
    line-height: inherit;
}
.style-2 .diagram-circle .diagram-legend .legend-element .title {
     font-size: inherit;
     color: #5f727f;
    margin-left: 18px;
 }
.style-2 .diagram-circle .diagram-legend .legend-element .color {
    margin-top: 8px;
    width: 10px;
    height: 10px;
}
.style-2 .diagram-circle .diagram-legend .legend-element {
    margin: -10px 0 15px 0;
}


.gem-dropcap-shape-hexagon {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border: 0;
	position: relative;
}
.gem-dropcap-shape-hexagon span.gem-dropcap-letter {
	background: transparent !important;
	border: none !important;
}
.dropcap-hexagon-inner {
	position: absolute;
}
.gem-dropcap-letter {
	z-index: 10;
}

.gem-dropcap-shape-hexagon .gem-dropcap-shape-hexagon-back {
	display: block;
	transform: rotate(-30deg) skewX(30deg);
	overflow: hidden;
	position: relative;
	z-index: 1;
	font-size: 0;
	line-height: 1;
}

.gem-dropcap-shape-hexagon .gem-dropcap-shape-hexagon-back .gem-dropcap-shape-hexagon-back-inner,
.gem-dropcap-shape-hexagon .gem-dropcap-shape-hexagon-back .gem-dropcap-shape-hexagon-back-inner-before {
	display: block;
	width: inherit;
	height: inherit;
	-webkit-border-radius: inherit;
	-moz-border-radius: inherit;
	border-radius: inherit;
	overflow: hidden;
}

.gem-dropcap-shape-hexagon .gem-dropcap-shape-hexagon-back .gem-dropcap-shape-hexagon-back-inner {
	transform: skewX(-30deg) rotate(60deg) skewX(30deg);
}

.gem-dropcap-shape-hexagon .gem-dropcap-shape-hexagon-back .gem-dropcap-shape-hexagon-back-inner-before {
	transform: skewX(-30deg) rotate(60deg) skewX(30deg);
}

.gem-dropcap-shape-hexagon .gem-dropcap-shape-hexagon-top {
	display: block;
	transform: rotate(-30deg) skewX(30deg);
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	font-size: 0;
	line-height: 1;
}

.gem-dropcap-shape-hexagon .gem-dropcap-shape-hexagon-top .gem-dropcap-shape-hexagon-top-inner,
.gem-dropcap-shape-hexagon .gem-dropcap-shape-hexagon-top .gem-dropcap-shape-hexagon-top-inner-before {
	display: block;
	width: inherit;
	height: inherit;
	-webkit-border-radius: inherit;
	-moz-border-radius: inherit;
	border-radius: inherit;
	overflow: hidden;
}

.gem-dropcap-shape-hexagon .gem-dropcap-shape-hexagon-top .gem-dropcap-shape-hexagon-top-inner {
	transform: skewX(-30deg) rotate(60deg) skewX(30deg);
}

.gem-dropcap-shape-hexagon .gem-dropcap-shape-hexagon-top .gem-dropcap-shape-hexagon-top-inner-before {
	transform: skewX(-30deg) rotate(60deg) skewX(30deg);
}



/* Hexagon small icon */
.gem-dropcap-shape-hexagon.gem-dropcap-style-big,
.gem-dropcap-shape-hexagon.gem-dropcap-style-big:last-child {
	margin: 5px 0;
}

.gem-dropcap-shape-hexagon.gem-dropcap-style-big .gem-dropcap-shape-hexagon-back {
	width: 86px;
	height: 76px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.gem-dropcap-shape-hexagon.gem-dropcap-style-big .gem-dropcap-shape-hexagon-top {
	width: 80px;
	height: 70px;
	left: 3px;
	top: 3px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.gem-dropcap-shape-hexagon .gem-dropcap-letter {
	line-height: 62px;
}
/* Hexagon small icon */
.gem-dropcap-shape-hexagon.gem-dropcap-style-medium,
.gem-dropcap-shape-hexagon.gem-dropcap-style-medium:last-child {
	margin: 3px 0;
}
.gem-dropcap-shape-hexagon.gem-dropcap-style-medium .gem-dropcap-letter{
	text-indent: 13px;
	line-height: 36px;
}
.gem-dropcap-shape-hexagon.gem-dropcap-style-medium .gem-dropcap-shape-hexagon-back {
	width: 62px;
	height: 52px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.gem-dropcap-shape-hexagon.gem-dropcap-style-medium .gem-dropcap-shape-hexagon-top {
	width: 58px;
	height: 48px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	left: 2px;
	top: 2px;
}

.gem-dropcap-style-medium .dropcap-hexagon-inner {
	margin-top: 0px;
}

.gem-dropcap-shape-hexagon span.gem-dropcap-letter {
	text-indent: 9px;
}


body .vc_separator.vc_sep_double .vc_sep_line {
	height: 7px !important;
}
.vc_separator.vc_sep_double.vc_sep_border_width_2 .vc_sep_line {
	height: 8px !important;
}
body .vc_separator h4 {
	margin-top: 3px;
}



.mouse-scroll {
	display: block;
	width: 32px;
	height: 48px;
	border: 3px solid #4dc4c8;
	border-radius: 50px;
	position: relative;
	cursor: pointer;
	margin: 0 auto;
	transform: translate(0, 0);
	overflow: hidden;
	font-size: 10000px;
}

.mouse-scroll:after {
	content: '';
	width: 4px;
	height: 8px;
	position: absolute;
	left: 50%;
	top: 7px;
	border-radius: 4px;
	background-color: #4dc4c8;
	margin-left: -2px;
	opacity: 1;
	transform: translateY(0px) scaleY(1) scaleX(1) translateZ(0px);
	-webkit-transform: translateY(0px) scaleY(1) scaleX(1) translateZ(0px);
	animation: 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s normal none infinite running scrollAnimation;
	-webkit-animation: 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s normal none infinite  scrollAnimation;


}

@keyframes scrollAnimation {
	0%, 20% {
		transform: translateY(0px) scaleY(1) scaleX(1) translateZ(0px);
	}

	10% {
		opacity: 1;
		transform: translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);
	}

	100% {
		opacity: 0.01;
		transform: translateY(16px) scaleY(2.5) scaleX(0.5) translateZ(0px);
	}
}
@-webkit-keyframes scrollAnimation {
	0%, 20% {
		-webkit-transform: translateY(0px) scaleY(1) scaleX(1) translateZ(0px);
	}

	10% {
		opacity: 1;
		-webkit-transform: translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);
	}

	100% {
		opacity: 0.01;
		-webkit-transform: translateY(16px) scaleY(2.5) scaleX(0.5) translateZ(0px);
	}
}

.wpcf7  .contact-form-style-1 input[type='submit'] {
    width: auto;
}
div.wpcf7-validation-errors {
	border: 2px solid #f7e700;
	float: left;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.vc_message_box-icon>*, .vc_message_box-icon>.fa {
	margin-top: -12px;
}


.contact-form-style-7 textarea{
	height: 140px !important;
}

.contact-form-style-7  input[type='submit'] {
	background-color: #8f44ad;
}
.contact-form-style-7 textarea,
.contact-form-style-7 input {
	background-color: rgba(230, 230, 230, 0.11);
	border: medium none;
}
.contact-form-style-7 p input[type='submit'] {
	border-radius: 0px;
}
.contact-form-style-7 :after {
	color: #fff !important;
}
.contact-form-style-7  input {
	margin-bottom: 17px;
}

/********************************PRODUCT GRID FORM STYLE************************************/
.products-grid-form p{
    display:block;
    width:100% !important;
    margin:0 0 20px 0;
    padding:0;
}
.products-grid-form p span{
    display:block;
    width:100% !important;
}
.products-grid-form p input{
    display:inline-block;
    width:100%;
    height:50px;
    line-height:50px;
    text-align:center;
    border-radius:0 !important;
}
.products-grid-form p.area input{
    color:#a8b4bc !important;
}
.products-grid-form p.button input{
    color:#fff !important;
    background:#272439;
    font-weight:200;
}
.products-grid-form p.button input:hover{
    background:#00bcd4;
}

.jtwt_tweet_text.icon-twitter a:hover {
	color: #3c3950;
}
.widget.widget_search form {
	border-radius: 3px;
	overflow: hidden;
}
.widget_diagram .skill-amount {
	letter-spacing: 0.05em;
}
#colophon #mc4wp_email {
	border-radius: 3px;
}
#mc4wp_submit{
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
#mc4wp_email {
	border-radius: 3px;
}
.digram-line-box  .skill-title {
	font-size: 14px;
}
.widget_recent_comments li {
	font-size: 14px;
}
#wp-calendar caption {
	letter-spacing: 0.05em;
	text-transform: uppercase;
	height: 39px;
	padding: 7px 0;
	line-height: 25px;
}
#wp-calendar #prev a,
#wp-calendar #next a{
	color: transparent;
}

.widget_recent_comments .comment-author-link a{
	font-size: 14px;
}
.widget_recent_comments a {
	font-size: 16px;
}

.project_info-item-style-1 .project_info-item .title {
	letter-spacing: 0.05em;
}

.widget .gem-teams-name {
	clear: both;
}

.gem-teams-phone {
	letter-spacing: 0.05em;
}

.widget_nav_menu li a:after,
.widget_submenu li a:after {
	position: absolute;
	right: 30px;
}

.widget_nav_menu > div > ul > li > a,
.widget_submenu > div > ul > li > a,
.widget_pages > ul > li > a,
.widget_categories > ul > li > a {
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.widget_submenu  ul ul ul,
.widget_nav_menu  ul ul ul,
.widget_pages ul ul ul,
.widget_categories ul ul ul{
	font-size: 14px;
}

.widget_submenu  ul ul ul ul,
.widget_nav_menu  ul ul ul ul,
.widget_pages ul ul ul ul
.widget_categories ul ul ul ul{
	background-color: #dde6e8;

}

.widget_submenu  ul ul ul ul ul,
.widget_nav_menu  ul ul ul ul ul,
.widget_pages ul ul ul ul ul,
.widget_categories ul ul ul ul ul{
	background-color: #d4dfe3;
}

.jtwt_date{
	font-size: 14px;
}


/*footer*/
#colophon .widget_tweets .twitter-box .jtwt_tweet,
#colophon .Custom_Recent_Posts .gem-pp-posts,
#colophon .widget_meta li,
#colophon .widget_rss li,
#colophon .widget_recent_entries li,
#colophon .Custom_Recent_Posts ul li,
#colophon .Custom_Popular_Posts ul li,
#colophon .project_info-item-style-1 .project_info-item.iconed,
#colophon .gem-latest-news {
	border-bottom: 1px solid #393d50;
}
#colophon .widget_tweets .twitter-box .jtwt_tweet:last-child,
#colophon .Custom_Recent_Posts .gem-pp-posts:last-child,
#colophon .widget_meta li:last-child,
#colophon .widget_rss li:last-child,
#colophon .widget_recent_entries li:last-child,
#colophon .Custom_Recent_Posts ul li:last-child,
#colophon .Custom_Popular_Posts ul li:last-child,
#colophon .project_info-item-style-1 .project_info-item.iconed:last-child,
#colophon .gem-latest-news:last-child {
	border-bottom: none;
}

#colophon .widget_recent_entries ul {
	background: transparent;
}
#colophon .project_info-item-style-2 .project_info-item,
#colophon .project_info-item-style-1,
#colophon .digram-line-box,
#colophon .widget form.searchform,
#colophon.gem-teams-item-wrap,
#colophon.gem-picturebox-text,
#colophon .widget_recent_comments li,
#colophon .gem-teams-item-wrap,
#colophon #wp-calendar #prev a,
#colophon #wp-calendar #next a,
#colophon #wp-calendar caption:after,
#colophon #calendar_wrap,
#colophon  .widget_mc4wp_widget form {
	background-color: #2c2e3d ;
}
#colophon #wp-calendar #prev a,
#colophon #wp-calendar #next a {
	-moz-transition: all 0.2  linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s  linear;
	transition: all 0.2s  linear;
}

#colophon #wp-calendar #prev a:hover:after,
#colophon #wp-calendar #next a:hover:after {
	-moz-transition: all 0.2  linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s  linear;
	transition: all 0.2s  linear;
}
#colophon .widget.widget_search input,
#colophon #wp-calendar caption {
	background-color: #181828;
}


#colophon .jtwt_tweet:first-child,
#colophon .project_info-item-style-1 .project_info-item.iconed:first-child,
#colophon .gem-pp-posts:first-child,
#colophon .widget_tweets .twitter-box .jtwt_tweet:first-child{
	background: none;
}
#colophon .skill-line {
	background-color: #171728;
}

#colophon .widget.widget_search input,
#colophon #mc4wp_email,
#colophon .wpcf7-form-control-wrap input,
#colophon .wpcf7-form-control-wrap textarea{
	background-color: #181828;
	border: 1px solid #394050;
}
#colophon .wpcf7-form-control-wrap textarea {
	border-radius: 3px;
}
#colophon .widget.widget_search .gem-button,
#colophon .wpcf7 .wpcf7-form .contact-form-footer .wpcf7-submit{
	background-color: #394050;
}
#colophon #mc4wp_submit{
	background-color: #394050;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
#page #colophon .woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
	background-color: #181828 !important;
}
#page #colophon .woocommerce .select2-container .select2-selection--single {
	border-color: #394050;
}
#page #colophon  .select2-container {
	border-radius: 10px;
}
#colophon .combobox-wrapper {
	background-color: #181828 !important;
	border: 1px solid #394050 !important;
}

#colophon .widget_categories > ul,
#colophon .widget_categories > ul li,
#colophon .widget.widget_pages > ul,
#colophon .widget.widget_pages li {
	border-color: #394050;
}
#colophon .widget_archive li,
#colophon .widget_archive li:nth-child(odd) {
	background-color: transparent;
}
#colophon .widget_submenu li,
#colophon .widget_nav_menu > div > ul li,
#colophon .widget_archive  ul li {
	border-top: 1px solid #394050;
}
body #colophon .widget_nav_menu ul.menu > li > ul
{
	border-left: 1px solid #394050;
	border-right: 1px solid #394050;
	border-top: 1px solid #394050;
}

#colophon .widget_submenu ul,
#colophon .widget_nav_menu > div > ul,
#colophon .widget_archive  ul {
	border-left: 1px solid #394050;
	border-right: 1px solid #394050;
	border-bottom: 1px solid #394050;
}
#colophon .tagcloud a {
	background-color: transparent;
}
#colophon .widget_nav_menu ul.menu > li > ul,
#colophon .widget_categories ul ul,
#colophon .widget_pages li li {
	background-color: #2c2e3d;
}

#colophon .wpcf7-validation-errors,
#colophon .wpcf7-not-valid-tip {
	display: none !important;
}

/*footer*/
.widget .searchform input {
	border-radius: 3px;
}
body .widget_tag_cloud .tagcloud a:hover{
	border: 1px solid transparent;
}

.widget :after,
.widget :before,
.widget a,
.widget a:hover,
.widget.widget_search .gem-button:hover,
.widget.widget_search .gem-button,
body .widget_tag_cloud .tagcloud a,
body .widget_tag_cloud .tagcloud a:hover,
#colophon .widget.widget_search .gem-button:hover,
#colophon #mc4wp_submit:hover,
#colophon .widget.widget_search .gem-button:hover,
body #colophon .tagcloud a:hover,
#colophon .widget.widget_search .gem-button {
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.gem-gmaps.gem-wrapbox-style-11 .gem-wrapbox-inner {
	border-color: #e0e5e8;
}

body .portfolio-items-masonry.background-style-dark  .portfolio-item .wrap > .caption {
	border-bottom: none;
}
.portfolio-items-masonry .portfolio-item .wrap > .caption {
	border-bottom: 1px solid #e0e5e8;
}
/*hardcode*/
.portfolio-filters-resp button:after {
	background: #99a9b5;
	box-shadow: 0 10px 0 0 #99a9b5, 0 20px 0 0 #99a9b5;
}
/*hardcode*/
#colophon .gem-teams-name {
	color: #99A9B6;
}
#colophon .gem-picturebox-text {
	background-color: #2c2e3d !important;
}
#colophon  .widget_product_categories > ul,
#colophon  .widget_product_categories > ul li,
#colophon .gem-products-content,
#colophon  .widget_shopping_cart_content ul.product_list_widget li {
	border-color: #394050;
}
#colophon  .widget_product_search input.search-field {
	background-color: #181828;
	border: 1px solid #394050;
}
#colophon .widget_product_search button {
	top: 41px;
}
#colophon  .widget_product_categories > ul li {
	padding-left: 10px;
}
#colophon  .widget_shopping_cart .total span.amount{
	color: #99a9b5;
}
#colophon .widget  .gem-products-content {
	display: table-cell;
	width: 100%;
	vertical-align: middle;
}
#colophon .widget .gem-products-image {
	display: table-cell;
}
#colophon .team-person-email a:before
{
	margin-right: 0px;
}


.digital-agency-mailchimp.yikes-easy-mc-form label{
	width: 68%;
	padding-right: 5%;
}
.digital-agency-mailchimp.yikes-easy-mc-form label > input[type="email"]{
	background: #f0f3f2;
	height: 45px;
	border-radius: 3px;
	border: none;
	padding-left: 20px;
}
.digital-agency-mailchimp.yikes-easy-mc-form label > input[type="email"]:focus{
	outline: none !important;
}
.yikes-mailchimp-container .digital-agency-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button{
	width: 17%;
	min-width: 235px;
	display: inline-block;
	background: #212331;
	color: #fff;
	height: 45px;
	border: none;
	border-radius: 3px;
	font-family: 'Montserrat';
	font-weight: 700;
	text-transform: uppercase;
	padding-left: 50px;
	position: relative;
}
.yikes-mailchimp-container .digital-agency-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button:before{
	content: "\e626";
	font-family: "thegem-icons";
	font-style: normal;
	font-size: 24px;
	font-weight: normal;
	color: #fff;
	position: absolute;
	left: 50%;
	margin-left: -69px;
	text-align: center;
}
@media(max-width: 1200px){
	body .digital-agency-mailchimp.yikes-easy-mc-form label{
		width: 100%;
		padding-right: 0;
	}
	body .yikes-mailchimp-container .digital-agency-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button{
		width: 100%;
	}
}


.business-light-mailchimp.yikes-easy-mc-form label {
	float: left;
	width: 100%;
	padding-right: 0;
	margin-bottom: 0;
}
.business-light-mailchimp.yikes-easy-mc-form input[type="email"]{
	background-color: rgba(255,255,255,0.2);
	border: 1px solid #dfe5e8;
	text-align:center;
	color:#ffffff!important;
	border-radius:5px;

}
.business-light-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button.gem-button{
	width: 100%;
	min-width: 90px;
	float: left;
	padding:0;
	margin:0;
}
.business-light-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button.gem-button{
	background-color:#2fc5b0;
	border:0;
	border-radius:5px;
	color:#fff;
	text-transform:uppercase;
	font-size:19px;
	min-height: 45px;
	padding-top:3px;
}
.business-light-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button.gem-button:hover{
	background-color:#3c3950;
}



.business-sulutions-mailchimp input[type=email]{
	width:100%;
	height:40px!important;
	border:0!important;
	background-color:#f0f3f2!important;
	color:#5f727f;
	font-size:16px;
	padding-left:15px!important;
	padding-right:50px!important;
}
.business-mail-submit{
	position:absolute;
	right:20px;
	top:0;
	width:40px!important;
	height:40px!important;
	margin:0!important;
	padding:0!important;
	border:0!important;
	background-color:#dfe5e8!important;
}
.business-mail-submit:before{
	font-family:'thegem-icons';
	content: '\e601';
	color:#3c3950;
	font-size:24px;
	line-height:33px;
}


.online-shop-mailchimp.yikes-easy-mc-form label{
	width: 350px;
	padding-right: 20px;
}
.online-shop-mailchimp.yikes-easy-mc-form label > input{
	background: #f0f3f2;
	height: 45px;
	border: none;
	padding-left: 20px;
}
.yikes-mailchimp-container .online-shop-mailchimp.yikes-easy-mc-form label > input:focus{
	outline: none !important;
}
.yikes-mailchimp-container .online-shop-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button{
	width: 155px;
	min-width: 155px;
	height: 45px;
	display: inline-block;
	background: #d7b398;
	color: #fff;
	border: none;
	font-family: 'Montserrat';
	font-weight: 700;
	text-transform: uppercase;
	padding-right: 30px;
	padding-left: 30px;
	position: relative;
}
.yikes-mailchimp-container .online-shop-mailchimp.yikes-easy-mc-form button {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
.yikes-mailchimp-container .online-shop-mailchimp.yikes-easy-mc-form button:hover {
	background: #212121 !important;
	color: #fff !important;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
@media(max-width: 1200px){
	body .online-shop-mailchimp.yikes-easy-mc-form label{
		width: 100%;
		padding-right: 0;
	}
	body .yikes-mailchimp-container .online-shop-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button{
		width: 100%;
	}
}


.trendy-shop-mailchimp.yikes-easy-mc-form label{
	width: 350px;
	padding-right: 20px;
}
.trendy-shop-mailchimp.yikes-easy-mc-form label > input{
	color: #fff;
	background: transparent;
	height: 45px;
	border: none;
	padding-left: 0;
	border-bottom: 1px solid #575c6c;
}
.yikes-mailchimp-container .trendy-shop-mailchimp.yikes-easy-mc-form label > input:focus{
	outline: none !important;
}
.yikes-mailchimp-container .trendy-shop-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button{
	width: 155px;
	min-width: 155px;
	height: 45px;
	display: inline-block;
	background: #f44236;
	color: #fff;
	border: none;
	font-family: 'Montserrat';
	font-weight: 700;
	text-transform: uppercase;
	padding-right: 30px;
	padding-left: 30px;
	position: relative;
}
.yikes-mailchimp-container .trendy-shop-mailchimp.yikes-easy-mc-form button{
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
.yikes-mailchimp-container .trendy-shop-mailchimp.yikes-easy-mc-form button:hover{
	background: #212121;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
@media(max-width: 1200px){
	body .trendy-shop-mailchimp.yikes-easy-mc-form label{
		width: 100%;
		padding-right: 0;
	}
	body .yikes-mailchimp-container .trendy-shop-mailchimp .yikes-easy-mc-submit-button{
		width: 100%;
	}
}




.lookbook-landing-mailchimp.yikes-easy-mc-form label{
	width: 350px;
	padding-right: 20px;
}
.lookbook-landing-mailchimp.yikes-easy-mc-form label > input{
	color: #333;
	background: transparent;
	height: 40px;
	border: none;
	padding-left: 0;
	border-bottom: 1px solid #dbdbdb;
}
.yikes-mailchimp-container .lookbook-landing-mailchimp.yikes-easy-mc-form label > input:focus{
	outline: none !important;
}
.yikes-mailchimp-container .lookbook-landing-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button{
	width: 140px;
	min-width: 140px;
	height: 40px;
	display: inline-block;
	background: transparent;
	color: #333;
	font-family: 'Montserrat';
	font-weight: 700;
	text-transform: uppercase;
	padding-right: 22px;
	padding-left: 22px;
	padding-top: 6px;
	padding-bottom: 6px;
	position: relative;
	border: 2px solid #333;
}
.yikes-mailchimp-container .lookbook-landing-mailchimp.yikes-easy-mc-form button {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
.yikes-mailchimp-container .lookbook-landing-mailchimp.yikes-easy-mc-form button:hover {
	background: #212121;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
@media(max-width: 1200px){
	body .lookbook-landing-mailchimp.yikes-easy-mc-form label{
		width: 100%;
		padding-right: 0;
	}
	body .yikes-mailchimp-container .lookbook-landing-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button{
		width: 100%;
	}
}


.beauty-spa-mailchimp.yikes-easy-mc-form{
	display: block;
	margin: 0 auto;
	width: 320px;
}
.beauty-spa-mailchimp.yikes-easy-mc-form label{
	width: 320px;
	padding-right: 0;
}
.beauty-spa-mailchimp.yikes-easy-mc-form label > input{
	color: #928d8e;
	background: transparent;
	height: 45px;
	border: none;
	padding-left: 0;
	border-bottom: 1px solid #928d8e;
}
.yikes-mailchimp-container .beauty-spa-mailchimp.yikes-easy-mc-form label > input:focus{
	outline: none !important;
}
.yikes-mailchimp-container .beauty-spa-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button{
	width: 320px;
	min-width: 320px;
	height: 50px;
	background: #e77785;
	font-size: 19px;
	color: #fff;
	border-radius: 25px;
	border: none;
	font-family: 'Montserrat UltraLight';
	font-weight: 100;
	text-transform: uppercase;
	padding-right: 30px;
	padding-left: 30px;
	position: relative;
	margin-top:40px;
}
.yikes-mailchimp-container .beauty-spa-mailchimp.yikes-easy-mc-form button {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
.yikes-mailchimp-container .beauty-spa-mailchimp.yikes-easy-mc-form button:hover {
	background: #212121;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}



.yikes-mailchimp-container .classic-landing-mailchimp.yikes-easy-mc-form label > input[type=email]{
	background: #fff !important;
	padding-left: 20px !important;
	border: 1px solid #dfe5e8 !important;
}
.yikes-mailchimp-container .classic-landing-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button{
	border: none;
	color: #fff;
	font-family: 'Montserrat';
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	background: #e43f65;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	transition: all 0.35s;
}
.yikes-mailchimp-container .classic-landing-mailchimp.yikes-easy-mc-form .yikes-easy-mc-submit-button:hover{
	color: #e43f65;
	background: #212331;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	transition: all 0.35s;
}




.silk-diamond-mailchimp.yikes-easy-mc-form input[type=email]{
	background: #fff !important;
	padding-left: 20px !important;
	border: 1px solid #dfe5e8 !important;
}
.silk-diamond-mailchimp .yikes-easy-mc-submit-button{
	border: none;
	color: #fff;
	font-family: 'Montserrat';
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}
.silk-diamond-mailchimp .yikes-easy-mc-submit-button{
	background: #9ccc65;
}

.yellow-breath-mailchimp.yikes-easy-mc-form input[type=email]{
	background: #fff !important;
	color: #99a9b5;
	padding-left: 20px !important;
	border: none !important;
}
.yellow-breath-mailchimp .yikes-easy-mc-submit-button{
	background: #2c2e3d;
	border: none;
	color: #fff;
	font-family: 'Montserrat';
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}


@font-face {
	font-family: 'Montserrat UltraLight';
	src: url('//shop.ariservices.co/wp-content/themes/thegem/fonts/montserrat-ultralight.eot');
	src: url('//shop.ariservices.co/wp-content/themes/thegem/fonts/montserrat-ultralight.eot?#iefix') format('embedded-opentype'),
		url('//shop.ariservices.co/wp-content/themes/thegem/fonts/montserrat-ultralight.woff') format('woff'),
		url('') format('woff2'),
		url('//shop.ariservices.co/wp-content/themes/thegem/fonts/montserrat-ultralight.ttf') format('truetype'),
		url('//shop.ariservices.co/wp-content/themes/thegem/fonts/montserrat-ultralight.svg#montserratultra_light') format('svg');
		font-weight: normal;
		font-style: normal;
}

/* GENERATED BY THEGEM THEME OPTIONS */




@media (max-width: 1199px) {
	.wpb_row {
		margin-top: -1.421em;
	}
	.wpb_row > * {
		margin-top: 1.421em;
	}
}

@media (min-width: 768px) and (max-width: 979px) {
	#site-header .header-main {
		position: relative;
		display: table;
		width: 100%;
		z-index: 11;
	}
	#primary-navigation .menu-toggle,
	#perspective-menu-buttons .menu-toggle {
		display: inline-block;
	}
	.mobile-cart-position-top #site-header .mobile-cart {
		display: table-cell;
	}
	.mobile-cart-position-top #site-header .site-title {
		text-align: center;
		width: 99%;
	}
	.mobile-cart-position-top #site-header .site-title .site-logo {
		margin: 0 auto;
	}
	.mobile-cart-position-top #site-header .primary-navigation,
	.mobile-cart-position-top #site-header #perspective-menu-buttons {
		width: auto;
	}
	#perspective-menu-buttons .perspective-toggle,
	#perspective-menu-buttons .hamburger-minicart {
		display: none;
	}
	#primary-navigation .hamburger-toggle,
	#primary-navigation .overlay-toggle {
		display: none;
	}
	.primary-navigation .dl-menu {
		position: absolute;
		left: 0;
		right: 0;
		opacity: 0;
	}
	.mobile-menu-layout-overlay #primary-navigation .overlay-menu-wrapper {
		visibility: hidden;
		height: 0;
		position: fixed;
	}
	#page.vertical-header #site-header-wrapper{
		position: static;
		width: 100%;
		padding: 0;
	}
	#page.vertical-header{
		padding-left: 0;
	}
	#page.vertical-header #site-header .site-title {
		display: table-cell;
	}
	#page.vertical-header #site-header .primary-navigation,
	#page.vertical-header #site-header #perspective-menu-buttons {
		display: table-cell;
	}
	.vertical-menu-item-widgets{display: none;}
	#page #site-header .site-title {
		display: table-cell;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	#page #site-header .primary-navigation,
	#page #site-header #perspective-menu-buttons {
		display: table-cell;
		text-align: right;
	}
	#page #site-header .logo-position-right .primary-navigation,
	#page #site-header .logo-position-right #perspective-menu-buttons {
		text-align: left;
	}
	#page.vertical-header .vertical-toggle {
		display: none;
	}
	#page.vertical-header {
		padding-left: 0;
	}
	#page.vertical-header #site-header-wrapper {
		margin-left: 0;
	}
	#page.vertical-header #site-header-wrapper .header-main {
		display: table;
		visibility: visible;
	}
	#site-header .site-title a img.default,
	#site-header .menu-item-logo a img.default {
		display: none;
	}
	#site-header .site-title a img.small,
	#site-header .menu-item-logo a img.small {
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter: alpha(opacity=100);
		-moz-opacity: 1;
		-khtml-opacity: 1;
		opacity: 1;
		display: inline-block !important;
		margin: 0 !important;
	}
	#site-header .site-title a img.small.light,
	#site-header .menu-item-logo a img.small.light {
		display: inline-block !important;
	}
	#site-header .site-title a img.small.light ~ img.small,
	#site-header .menu-item-logo a img.small.light ~ img.small {
		display: none !important;
	}
	#site-header.fixed.shrink .site-title a img.small.light,
	#site-header.fixed.shrink .menu-item-logo a img.small.light {
		display: none !important;
	}
	#site-header.fixed.shrink .site-title a img.small.light ~ img.small,
	#site-header.fixed.shrink .menu-item-logo a img.small.light ~ img.small {
		display: inline-block !important;
	}
	.mobile-menu-layout-slide-horizontal #primary-navigation .mobile-menu-slide-wrapper,
	.mobile-menu-layout-slide-vertical #primary-navigation .mobile-menu-slide-wrapper {
		position: fixed;
		opacity: 0;
	}
}

@media (min-width: 980px) and (max-width: 1212px) {
	#site-header .header-main {
		position: relative;
		display: table;
		width: 100%;
		z-index: 11;
	}
	#primary-navigation .menu-toggle,
	#perspective-menu-buttons .menu-toggle {
		display: inline-block;
	}
	.mobile-cart-position-top #site-header .mobile-cart {
		display: table-cell;
	}
	.mobile-cart-position-top #site-header .site-title {
		text-align: center;
		width: 99%;
	}
	.mobile-cart-position-top #site-header .site-title .site-logo {
		margin: 0 auto;
	}
	.mobile-cart-position-top #site-header .primary-navigation,
	.mobile-cart-position-top #site-header #perspective-menu-buttons {
		width: auto;
	}
	#perspective-menu-buttons .perspective-toggle,
	#perspective-menu-buttons .hamburger-minicart {
		display: none;
	}
	#primary-navigation .hamburger-toggle,
	#primary-navigation .overlay-toggle {
		display: none;
	}
	.primary-navigation .dl-menu {
		position: absolute;
		left: 0;
		right: 0;
		opacity: 0;
	}
	.mobile-menu-layout-overlay #primary-navigation .overlay-menu-wrapper {
		visibility: hidden;
		height: 0;
		position: fixed;
	}
	#page.vertical-header #site-header-wrapper{
		position: static;
		width: 100%;
		padding: 0;
	}
	#page.vertical-header{
		padding-left: 0;
	}
	#page.vertical-header #site-header .site-title {
		display: table-cell;
	}
	#page.vertical-header #site-header .primary-navigation,
	#page.vertical-header #site-header #perspective-menu-buttons {
		display: table-cell;
	}
	.vertical-menu-item-widgets{display: none;}
	#page #site-header .site-title {
		display: table-cell;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	#page #site-header .primary-navigation,
	#page #site-header #perspective-menu-buttons {
		display: table-cell;
		text-align: right;
	}
	#page #site-header .logo-position-right .primary-navigation,
	#page #site-header .logo-position-right #perspective-menu-buttons {
		text-align: left;
	}
	#page.vertical-header .vertical-toggle {
		display: none;
	}
	#page.vertical-header {
		padding-left: 0;
	}
	#page.vertical-header #site-header-wrapper {
		margin-left: 0;
	}
	#page.vertical-header #site-header-wrapper .header-main {
		display: table;
		visibility: visible;
	}
	#site-header .site-title a img.default,
	#site-header .menu-item-logo a img.default {
		display: none;
	}
	#site-header .site-title a img.small,
	#site-header .menu-item-logo a img.small {
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter: alpha(opacity=100);
		-moz-opacity: 1;
		-khtml-opacity: 1;
		opacity: 1;
		display: inline-block !important;
		margin: 0 !important;
	}
	#site-header .site-title a img.small.light,
	#site-header .menu-item-logo a img.small.light {
		display: inline-block !important;
	}
	#site-header .site-title a img.small.light ~ img.small,
	#site-header .menu-item-logo a img.small.light ~ img.small {
		display: none !important;
	}
	#site-header.fixed.shrink .site-title a img.small.light,
	#site-header.fixed.shrink .menu-item-logo a img.small.light {
		display: none !important;
	}
	#site-header.fixed.shrink .site-title a img.small.light ~ img.small,
	#site-header.fixed.shrink .menu-item-logo a img.small.light ~ img.small {
		display: inline-block !important;
	}
	.mobile-menu-layout-slide-horizontal #primary-navigation .mobile-menu-slide-wrapper,
	.mobile-menu-layout-slide-vertical #primary-navigation .mobile-menu-slide-wrapper {
		position: fixed;
		opacity: 0;
	}
}


:root {
	--thegem-to-menu-font-family: Montserrat;
}
.main-menu-item,
.title-main-menu,
#primary-menu.no-responsive > li > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header a,
.widget_nav_menu > div > ul > li > a,
.widget_submenu > div > ul > li > a,
.widget_pages > ul > li > a,
.widget_categories > ul > li > a,
.widget_product_categories > ul > li > a{
	font-family: 'Montserrat';
}

:root {
	--thegem-to-menu-font-style: normal;
	--thegem-to-menu-font-weight: 700;
}
.main-menu-item,
.title-main-menu,
#primary-menu.no-responsive > li > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header a,
.widget_nav_menu > div > ul > li > a,
.widget_submenu > div > ul > li > a,
.widget_pages > ul > li > a,
.widget_categories > ul > li > a,
.widget_product_categories > ul > li > a {
	font-style: normal;
	font-weight: 700;
}

:root {
	--thegem-to-menu-font-size: 12px;
}
.main-menu-item,
.title-main-menu,
#primary-menu.no-responsive > li > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header a,
.widget_nav_menu > div > ul > li > a,
.widget_submenu > div > ul > li > a,
.widget_pages > ul > li > a,
.widget_categories > ul > li > a,
.widget_product_categories > ul > li > a {
	font-size: 12px;
}

:root {
	--thegem-to-menu-line-height: 13px;
}
.main-menu-item,
.title-main-menu,
#primary-menu.no-responsive > li > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header a,
.widget_nav_menu > div > ul > li > a,
.widget_submenu > div > ul > li > a,
.widget_pages > ul > li > a,
.widget_categories > ul > li > a,
.widget_product_categories > ul > li > a {
	line-height: 13px;
}

:root {
	--thegem-to-menu-text-transform: uppercase;
}
.main-menu-item,
.title-main-menu,
#primary-menu.no-responsive > li > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header a,
.widget_nav_menu > div > ul > li > a,
.widget_submenu > div > ul > li > a,
.widget_pages > ul > li > a,
.widget_categories > ul > li > a,
.widget_product_categories > ul > li > a {
	text-transform: uppercase;
}


:root {
	--thegem-to-submenu-font-family: Montserrat;
}
.submenu-item,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul li > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable) .minicart-product-title,
.portfolio-filters-resp ul li a,
.widget_nav_menu ul.menu,
.widget_submenu > div > ul,
.widget_categories > ul,
.widget_product_categories > ul,
.widget_pages > ul {
	font-family: 'Montserrat';
}
.primary-navigation.responsive li a {
	font-family: 'Montserrat';
}

:root {
	--thegem-to-submenu-font-style: normal;
	--thegem-to-submenu-font-weight: 600;
}
.submenu-item,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul li > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable) .minicart-product-title,
.portfolio-filters-resp ul li a,
.widget_nav_menu ul.menu,
.widget_submenu > div > ul,
.widget_categories > ul,
.widget_product_categories > ul,
.widget_pages > ul {
	font-style: normal;
	font-weight: 600;
}
.primary-navigation.responsive li a {
	font-style: normal;
	font-weight: 600;
}


:root {
	--thegem-to-submenu-font-size: 12px;
}
.submenu-item,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul li > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable) .minicart-product-title,
.portfolio-filters-resp ul li a,
.widget_nav_menu ul.menu,
.widget_submenu > div > ul,
.widget_categories > ul,
.widget_product_categories > ul,
.widget_pages > ul {
	font-size: 12px;
}
.primary-navigation.responsive li a {
	font-size: 12px;
}

:root {
	--thegem-to-submenu-line-height: 13px;
}
.submenu-item,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul li > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable) .minicart-product-title,
.portfolio-filters-resp ul li a,
.widget_nav_menu ul.menu,
.widget_submenu > div > ul,
.widget_categories > ul,
.widget_product_categories > ul,
.widget_pages > ul {
	line-height: 13px;
}
.primary-navigation.responsive li a {
	line-height: 13px;
}

:root {
	--thegem-to-submenu-text-transform: none;
}
.submenu-item,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul li > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable) .minicart-product-title,
.portfolio-filters-resp ul li a,
.widget_nav_menu ul.menu,
.widget_submenu > div > ul,
.widget_categories > ul,
.widget_product_categories > ul,
.widget_pages > ul,
.primary-navigation.responsive li a {
	text-transform: none;
}


:root {
	--thegem-to-overlay-menu-font-family: 'Montserrat UltraLight';
}
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li > a,
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li:not(.menu-item-type-template) li > a,
.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li > a,
.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li li > a {
	font-family: 'Montserrat UltraLight';
}

:root {
	--thegem-to-overlay-menu-font-style: normal;
	--thegem-to-overlay-menu-font-weight: normal;
}
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li > a,
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li:not(.menu-item-type-template) li > a,
.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li > a,
.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li li > a {
	font-style: normal;
	font-weight: normal;
}

:root {
	--thegem-to-overlay-menu-font-size: 12px;
}
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li > a,
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li:not(.menu-item-type-template) li > a,
.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li > a,
.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li li > a,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before,
.page-additional-menu.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before {
	font-size: 12px;
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-overlay-menu-font-size: 9px;
	}
	.header-layout-overlay #primary-menu.nav-menu.no-responsive > li > a,
	.header-layout-overlay #primary-menu.nav-menu.no-responsive > li:not(.menu-item-type-template) li > a,
	.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li > a,
	.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li li > a,
	.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before,
	.page-additional-menu.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before {
		font-size: 9px;
	}
}

:root {
	--thegem-to-overlay-menu-line-height: 18px;
}
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li > a,
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li:not(.menu-item-type-template) li > a,
.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li > a,
.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li li > a,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before,
.page-additional-menu.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before {
	line-height: 18px;
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-overlay-menu-line-height: 14px;
	}
	.header-layout-overlay #primary-menu.nav-menu.no-responsive > li > a,
	.header-layout-overlay #primary-menu.nav-menu.no-responsive > li:not(.menu-item-type-template) li > a,
	.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li > a,
	.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li li > a,
	.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before,
	.page-additional-menu.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before {
		line-height: 14px;
	}
}

:root {
	--thegem-to-overlay-menu-text-transform: uppercase;
}
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li > a,
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li:not(.menu-item-type-template) li > a,
.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li > a,
.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li li > a,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before,
.page-additional-menu.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before {
	text-transform: uppercase;
}


:root {
	--thegem-to-styled-subtitle-font-family: 'Source Sans Pro';
}
.styled-subtitle,
.diagram-circle .text div span.title,
.diagram-circle .text div span.summary,
.vc_pie_chart .vc_pie_chart_value,
form.cart .quantity .qty,
.shop_table .quantity .qty,
.woocommerce-before-cart .cart-short-info,
input[type="text"].coupon-code,
.cart_totals table th,
.order-totals table th,
.cart_totals table .shipping td,
.woocommerce-message,
.woocommerce-info,
.woocommerce ul.woocommerce-error li,
.woocommerce table.checkout-cart-info-table tr th,
.woocommerce table.checkout-cart-info-table tr.shipping td,
.widget_calendar caption,
.blog-style-timeline .post-time,
.gem-dropcap.gem-dropcap-style-medium,
.project-info-shortcode-style-default .project-info-shortcode-item .title,
.project_info-item-style-2 .project_info-item .title,
.diagram-legend .legend-element .title,
.single-product-content .price,
.widget_shopping_cart ul li .quantity,
.widget_shopping_cart .total span.amount {
	font-family: 'Source Sans Pro';
}

:root {
	--thegem-to-styled-subtitle-font-style: normal;
	--thegem-to-styled-subtitle-font-weight: 300;
}
.styled-subtitle,
.diagram-circle .text div,
.diagram-circle .text div span.title,
.diagram-circle .text div span.summary,
.vc_pie_chart .vc_pie_chart_value,
form.cart .quantity .qty,
.shop_table .quantity .qty,
.woocommerce-before-cart .cart-short-info,
input[type="text"].coupon-code,
.cart_totals table th,
.order-totals table th,
.cart_totals table .shipping td,
.woocommerce-message,
.woocommerce-info,
.woocommerce ul.woocommerce-error li,
.woocommerce table.checkout-cart-info-table tr th,
.woocommerce table.checkout-cart-info-table tr.shipping td,
.widget_calendar caption,
.blog-style-timeline .post-time,
.gem-dropcap.gem-dropcap-style-medium,
.project-info-shortcode-style-default .project-info-shortcode-item .title,
.project_info-item-style-2 .project_info-item .title,
.diagram-legend .legend-element .title,
.single-product-content .price,
.widget_shopping_cart ul li .quantity,
.widget_shopping_cart .total span.amount {
	font-style: normal;
	font-weight: 300;
}

:root {
	--thegem-to-styled-subtitle-font-size: 24px;
}
.styled-subtitle,
.vc_pie_chart,
form.cart .quantity .qty,
.shop_table .quantity .qty,
.woocommerce-before-cart .cart-short-info,
input[type="text"].coupon-code,
.cart_totals table th,
.order-totals table th,
.cart_totals table .shipping td,
.woocommerce-message,
.woocommerce-info,
.woocommerce ul.woocommerce-error li,
.woocommerce table.checkout-cart-info-table tr th
.woocommerce table.checkout-cart-info-table tr.shipping td,
.widget_calendar caption,
.blog-style-timeline .post-time,
.gem-dropcap.gem-dropcap-style-medium,
.project-info-shortcode-style-default .project-info-shortcode-item .title,
.project_info-item-style-2 .project_info-item .title,
.diagram-legend .legend-element .title,
.widget_shopping_cart .total span.amount {
	font-size: 24px;
}
@media (max-width: 600px) {
	.styled-subtitle,
	.vc_pie_chart,
	form.cart .quantity .qty,
	.shop_table .quantity .qty,
	.woocommerce-before-cart .cart-short-info,
	input[type="text"].coupon-code,
	.cart_totals table th,
	.order-totals table th,
	.cart_totals table .shipping td,
	.woocommerce-message,
	.woocommerce-info,
	.woocommerce ul.woocommerce-error li,
	.woocommerce table.checkout-cart-info-table tr th
	.woocommerce table.checkout-cart-info-table tr.shipping td,
	.widget_calendar caption,
	.blog-style-timeline .post-time,
	.gem-dropcap.gem-dropcap-style-medium,
	.project-info-shortcode-style-default .project-info-shortcode-item .title,
	.project_info-item-style-2 .project_info-item .title,
	.diagram-legend .legend-element .title,
	.widget_shopping_cart .total span.amount{
		font-size: 4vw;
	}
}

:root {
	--thegem-to-styled-subtitle-line-height: 37px;
}
.styled-subtitle,
.woocommerce-before-cart .cart-short-info,
.cart_totals table th,
.order-totals table th,
.cart_totals table .shipping td,
.woocommerce-message,
.woocommerce-info,
.woocommerce ul.woocommerce-error li,
.woocommerce table.checkout-cart-info-table tr th,
.woocommerce table.checkout-cart-info-table tr.shipping td,
.widget_calendar caption,
.blog-style-timeline .post-time,
.project-info-shortcode-style-default .project-info-shortcode-item .title,
.project_info-item-style-2 .project_info-item .title,
.diagram-legend .legend-element .title {
	line-height: 37px;
}
@media (max-width: 600px) {
	.styled-subtitle,
	.woocommerce-before-cart .cart-short-info,
	.cart_totals table th,
	.order-totals table th,
	.cart_totals table .shipping td,
	.woocommerce-message,
	.woocommerce-info,
	.woocommerce ul.woocommerce-error li,
	.woocommerce table.checkout-cart-info-table tr th,
	.woocommerce table.checkout-cart-info-table tr.shipping td,
	.widget_calendar caption,
	.blog-style-timeline .post-time,
	.project-info-shortcode-style-default .project-info-shortcode-item .title,
	.project_info-item-style-2 .project_info-item .title,
	.diagram-legend .legend-element .title {
		line-height: 6.1666666666667vw;
	}
}

@media (max-width: 1199px) {
	:root {
	    --thegem-to-styled-subtitle-font-size: 22px;
	}
	.styled-subtitle,
	.woocommerce-before-cart .cart-short-info,
	.cart_totals table th,
	.order-totals table th,
	.cart_totals table .shipping td,
	.woocommerce-message,
	.woocommerce-info,
	.woocommerce ul.woocommerce-error li,
	.woocommerce table.checkout-cart-info-table tr th,
	.woocommerce table.checkout-cart-info-table tr.shipping td,
	.widget_calendar caption,
	.blog-style-timeline .post-time,
	.project-info-shortcode-style-default .project-info-shortcode-item .title,
	.project_info-item-style-2 .project_info-item .title,
	.diagram-legend .legend-element .title {
		font-size: 22px;
	}
}
@media (max-width: 1199px) {
	:root {
	    --thegem-to-styled-subtitle-line-height: 34px;
	}
	.styled-subtitle,
	.woocommerce-before-cart .cart-short-info,
	.cart_totals table th,
	.order-totals table th,
	.cart_totals table .shipping td,
	.woocommerce-message,
	.woocommerce-info,
	.woocommerce ul.woocommerce-error li,
	.woocommerce table.checkout-cart-info-table tr th,
	.woocommerce table.checkout-cart-info-table tr.shipping td,
	.widget_calendar caption,
	.blog-style-timeline .post-time,
	.project-info-shortcode-style-default .project-info-shortcode-item .title,
	.project_info-item-style-2 .project_info-item .title,
	.diagram-legend .legend-element .title {
		line-height: 34px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-styled-subtitle-font-size: 20px;
	}
	.styled-subtitle,
	.woocommerce-before-cart .cart-short-info,
	.cart_totals table th,
	.order-totals table th,
	.cart_totals table .shipping td,
	.woocommerce-message,
	.woocommerce-info,
	.woocommerce ul.woocommerce-error li,
	.woocommerce table.checkout-cart-info-table tr th,
	.woocommerce table.checkout-cart-info-table tr.shipping td,
	.widget_calendar caption,
	.blog-style-timeline .post-time,
	.project-info-shortcode-style-default .project-info-shortcode-item .title,
	.project_info-item-style-2 .project_info-item .title,
	.diagram-legend .legend-element .title {
		font-size: 20px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-styled-subtitle-line-height: 27px;
	}
	.styled-subtitle,
	.woocommerce-before-cart .cart-short-info,
	.cart_totals table th,
	.order-totals table th,
	.cart_totals table .shipping td,
	.woocommerce-message,
	.woocommerce-info,
	.woocommerce ul.woocommerce-error li,
	.woocommerce table.checkout-cart-info-table tr th,
	.woocommerce table.checkout-cart-info-table tr.shipping td,
	.widget_calendar caption,
	.blog-style-timeline .post-time,
	.project-info-shortcode-style-default .project-info-shortcode-item .title,
	.project_info-item-style-2 .project_info-item .title,
	.diagram-legend .legend-element .title {
		line-height: 27px;
	}
}

:root {
	--thegem-to-styled-subtitle-text-transform: none;
}
.styled-subtitle,
.woocommerce-before-cart .cart-short-info,
.cart_totals table th,
.order-totals table th,
.cart_totals table .shipping td,
.woocommerce-message,
.woocommerce-info,
.woocommerce ul.woocommerce-error li,
.woocommerce table.checkout-cart-info-table tr th,
.woocommerce table.checkout-cart-info-table tr.shipping td,
.widget_calendar caption,
.blog-style-timeline .post-time,
.project-info-shortcode-style-default .project-info-shortcode-item .title,
.project_info-item-style-2 .project_info-item .title,
.diagram-legend .legend-element .title {
	text-transform: none;
}


:root {
	--thegem-to-h1-font-family: 'Montserrat';
}
h1,
body .pricing-table-style-8 .pricing-cost,
.title-h1 {
	font-family: 'Montserrat';
}

:root {
	--thegem-to-h1-font-style: normal;
	--thegem-to-h1-font-weight: 700;
}
h1,
body .pricing-table-style-8 .pricing-cost,
.title-h1 {
	font-style: normal;
	font-weight: 700;
}

:root {
	--thegem-to-h1-font-size: 40px;
}
h1,
.title-h1 {
	font-size: 40px;
}
@media (max-width: 1000px) {
	h1,
	.title-h1 {
		font-size: 4vw;
	}
}

:root {
	--thegem-to-h1-line-height: 45px;
}
h1,
.title-h1 {
	line-height: 45px;
}
@media (max-width: 1000px) {
	h1,
	.title-h1 {
		line-height: 4.5vw;
	}
}

@media (max-width: 1199px) {
	:root {
	    --thegem-to-h1-font-size: 38px;
	}
	h1,
	.title-h1 {
		font-size: 38px;
	}
}
@media (max-width: 1199px) {
	:root {
	    --thegem-to-h1-line-height: 53px;
	}
	h1,
	.title-h1 {
		line-height: 53px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h1-font-size: 36px;
	}
	h1,
	.title-h1 {
		font-size: 36px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h1-line-heigh: 48px;
	}
	h1,
	.title-h1 {
		line-height: 48px;
	}
}

:root {
	--thegem-to-h1-text-transform: uppercase;
}
h1,
.title-h1 {
	text-transform: uppercase;
}


:root {
	--thegem-to-h2-font-family: 'Montserrat';
}
h2,
.title-h2,
h3.comment-reply-title,
body .pricing-table-style-6 .pricing-price-title {
	font-family: 'Montserrat';
}

:root {
	--thegem-to-h2-font-style: normal;
	--thegem-to-h2-font-weight: 700;
}
h2,
.title-h2,
h3.comment-reply-title,
body .pricing-table-style-6 .pricing-price-title {
	font-style: normal;
	font-weight: 700;
}

:root {
	--thegem-to-h2-font-size: 36px;
}
h2,
.title-h2,
body .pricing-table-style-5  .pricing-price-title,
body .pricing-table-style-6 .pricing-price-title,
body .pricing-table-style-6 .pricing-price-subtitle,
h3.comment-reply-title,
body .pricing-table-style-2 .pricing-price-title {
	font-size: 36px;
}
@media (max-width: 1000px) {
	h2,
	.title-h2,
	body .pricing-table-style-5  .pricing-price-title,
	body .pricing-table-style-6 .pricing-price-title,
	body .pricing-table-style-6 .pricing-price-subtitle,
	h3.comment-reply-title,
	body .pricing-table-style-2 .pricing-price-title {
		font-size: 3.6vw;
	}
}

:root {
	--thegem-to-h2-line-height: 46px;
}
h2,
.title-h2,
body .pricing-table-style-6 .pricing-price-title,
h3.comment-reply-title {
	line-height: 46px;
}
@media (max-width: 1000px) {
	h2,
	.title-h2,
	body .pricing-table-style-6 .pricing-price-title,
	h3.comment-reply-title {
		line-height: 4.6vw;
	}
}

@media (max-width: 1199px) {
	:root {
	    --thegem-to-h2-font-size: 32px;
	}
	h2,
	.title-h2,
	body .pricing-table-style-6 .pricing-price-title,
	h3.comment-reply-title {
		font-size: 32px;
	}
}
@media (max-width: 1199px) {
	:root {
	    --thegem-to-h2-line-height: 42px;
	}
	h2,
	.title-h2,
	body .pricing-table-style-6 .pricing-price-title,
	h3.comment-reply-title {
		line-height: 42px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h2-font-size: 30px;
	}
	h2,
	.title-h2,
	body .pricing-table-style-6 .pricing-price-title,
	h3.comment-reply-title {
		font-size: 30px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h2-line-height: 40px;
	}
	h2,
	.title-h2,
	body .pricing-table-style-6 .pricing-price-title,
	h3.comment-reply-title {
		line-height: 40px;
	}
}

:root {
	--thegem-to-h2-text-transform: uppercase;
}
h2,
.title-h2,
body .pricing-table-style-6 .pricing-price-title,
h3.comment-reply-title {
	text-transform: uppercase;
}


:root {
	--thegem-to-h3-font-family: 'Montserrat';
}
h3,
.title-h3,
.cart_totals table .order-total td,
.woocommerce table.shop_table.order-details tr.cart_item td.product-total .amount,
.woocommerce table.shop_table.order-details tr.order_item td.product-total .amount,
.gem-dropcap,
.woocommerce .woocommerce-checkout-one-page #order_review table thead th {
	font-family: 'Montserrat';
}

:root {
	--thegem-to-h3-font-style: normal;
	--thegem-to-h3-font-weight: 700;
}
h3,
.title-h3,
.cart_totals table .order-total td,
.woocommerce table.shop_table.order-details tr.cart_item td.product-total .amount,
.woocommerce table.shop_table.order-details tr.order_item td.product-total .amount,
.gem-dropcap,
.woocommerce .woocommerce-checkout-one-page #order_review table thead th {
	font-style: normal;
	font-weight: 700;
}

:root {
	--thegem-to-h3-font-size: 28px;
}
h3,
.title-h3,
.portfolio.columns-1 .portfolio-item .caption .title,
.cart_totals table .order-total td,
.woocommerce table.shop_table.order-details tr.cart_item td.product-total .amount,
.woocommerce table.shop_table.order-details tr.order_item td.product-total .amount,
.gem-dropcap,
.woocommerce .woocommerce-checkout-one-page #order_review table thead th,
.thegem-fullscreen-search .sf-input.thegem-fullscreen-searchform-input {
	font-size: 28px;
}

:root {
	--thegem-to-h3-line-height: 31px;
}
h3,
.title-h3,
.portfolio.columns-1 .portfolio-item .caption .title,
.cart_totals table .order-total td,
.woocommerce table.shop_table.order-details tr.cart_item td.product-total .amount,
.woocommerce table.shop_table.order-details tr.order_item td.product-total .amount,
.woocommerce .woocommerce-checkout-one-page #order_review table thead th,
.thegem-fullscreen-search .sf-input.thegem-fullscreen-searchform-input {
	line-height: 31px;
}

@media (max-width: 1199px) {
	:root {
	    --thegem-to-h3-font-size: 26px;
	}
	h3,
	.title-h3,
	.portfolio.columns-1 .portfolio-item .caption .title,
	.cart_totals table .order-total td,
	.woocommerce table.shop_table.order-details tr.cart_item td.product-total .amount,
	.woocommerce table.shop_table.order-details tr.order_item td.product-total .amount,
	.woocommerce .woocommerce-checkout-one-page #order_review table thead th,
	.thegem-fullscreen-search .sf-input.thegem-fullscreen-searchform-input {
		font-size: 26px;
	}
}
@media (max-width: 1199px) {
	:root {
	    --thegem-to-h3-line-height: 38px;
	}
	h3,
	.title-h3,
	.portfolio.columns-1 .portfolio-item .caption .title,
	.cart_totals table .order-total td,
	.woocommerce table.shop_table.order-details tr.cart_item td.product-total .amount,
	.woocommerce table.shop_table.order-details tr.order_item td.product-total .amount,
	.woocommerce .woocommerce-checkout-one-page #order_review table thead th,
	.thegem-fullscreen-search .sf-input.thegem-fullscreen-searchform-input {
		line-height: 38px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h3-font-size: 24px;
	}
	h3,
	.title-h3,
	.portfolio.columns-1 .portfolio-item .caption .title,
	.cart_totals table .order-total td,
	.woocommerce table.shop_table.order-details tr.cart_item td.product-total .amount,
	.woocommerce table.shop_table.order-details tr.order_item td.product-total .amount,
	.woocommerce .woocommerce-checkout-one-page #order_review table thead th,
	.thegem-fullscreen-search .sf-input.thegem-fullscreen-searchform-input {
		font-size: 24px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h3-line-height: 34px;
	}
	h3,
	.title-h3,
	.portfolio.columns-1 .portfolio-item .caption .title,
	.cart_totals table .order-total td,
	.woocommerce table.shop_table.order-details tr.cart_item td.product-total .amount,
	.woocommerce table.shop_table.order-details tr.order_item td.product-total .amount,
	.woocommerce .woocommerce-checkout-one-page #order_review table thead th,
	.thegem-fullscreen-search .sf-input.thegem-fullscreen-searchform-input {
		line-height: 34px;
	}
}

:root {
	--thegem-to-h3-text-transform: uppercase;
}
h3,
.title-h3,
.portfolio.columns-1 .portfolio-item .caption .title,
.cart_totals table .order-total td,
.woocommerce table.shop_table.order-details tr.cart_item td.product-total .amount,
.woocommerce table.shop_table.order-details tr.order_item td.product-total .amount,
.woocommerce .woocommerce-checkout-one-page #order_review table thead th {
	text-transform: uppercase;
}


:root {
	--thegem-to-h4-font-family: 'Montserrat';
}
h4,
.title-h4,
.widget .gem-teams-name,
body .pricing-table-style-3 .pricing_row_title,
body .pricing-table-style-8 .pricing_row_title,
body .pricing-table-style-4 .pricing_row_title,
.gem-gallery-hover-gradient .gem-gallery-item-title,
.gem-gallery-grid.hover-gradient .gallery-item .overlay .title,
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title,
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title{
	font-family: 'Montserrat';
}
@media only screen and (min-width: 992px) and (max-width: 1150px) {
	.with-sidebar .portfolio.hover-horizontal-sliding .overlay .links .caption .title {
		font-family: 'Montserrat';
	}
}

:root {
	--thegem-to-h4-font-style: normal;
	--thegem-to-h4-font-weight: 700;
}
h4,
.title-h4,
.widget .gem-teams-name,
body .pricing-table-style-3 .pricing_row_title,
body .pricing-table-style-4  .pricing_row_title,
body .pricing-table-style-8 .pricing_row_title,
.gem-gallery-hover-gradient .gem-gallery-item-title,
.gem-gallery-grid.hover-gradient .gallery-item .overlay .title,
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title,
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title{
	font-style: normal;
	font-weight: 700;
}
@media only screen and (min-width: 992px) and (max-width: 1150px) {
	.with-sidebar .portfolio.hover-horizontal-sliding .overlay .links .caption .title {
		font-style: normal;
		font-style: normal;
	font-weight: 700;
	}
}

:root {
	--thegem-to-h4-font-size: 24px;
}
h4,
.title-h4,
body .pricing-table-style-7 .pricing-price-title,
body .pricing-table-style-4 .pricing_row_title,
body .pricing-table-style-3 .pricing_row_title,
body .pricing-table-style-2 .pricing-cost,
body .pricing-table-style-2 .time,
body .pricing-table-style-1 .pricing-price-title,
.widget .gem-teams-name,
body .pricing-table-style-8 .pricing_row_title,
.gem-gallery-hover-gradient .gem-gallery-item-title,
.gem-gallery-grid.hover-gradient .gallery-item .overlay .title,
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title,
body .vc_separator h4,
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title{
	font-size: 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1150px) {
	.with-sidebar .portfolio.hover-horizontal-sliding .overlay .links .caption .title {
		font-size: 24px;
	}
}

:root {
	--thegem-to-h4-line-height: 38px;
}
h4,
.title-h4,
body .pricing-table-style-7 .pricing-price-title,
body .pricing-table-style-5 .pricing-price-title,
body .pricing-table-style-4 .pricing_row_title,
body .pricing-table-style-3 .pricing_row_title,
body .pricing-table-style-2 .pricing-cost,
body .pricing-table-style-2 .time,
body .pricing-table-style-2 .pricing-price-title,
body .pricing-table-style-1 .pricing-price-title,
.widget .gem-teams-name,
.portfolio.columns-1 .portfolio-item .caption .title,
.gem-gallery-hover-gradient .gem-gallery-item-title,
.gem-gallery-grid.hover-gradient .gallery-item .overlay .title,
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title,
body .vc_separator h4,
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title{
	line-height: 38px;
}
@media only screen and (min-width: 992px) and (max-width: 1150px) {
	.with-sidebar .portfolio.hover-horizontal-sliding .overlay .links .caption .title {
		line-height: 38px;
	}
}

@media (max-width: 1199px) {
	:root {
	    --thegem-to-h4-font-size: 24px;
	}
	h4,
	.title-h4,
	body .pricing-table-style-7 .pricing-price-title,
	body .pricing-table-style-4 .pricing_row_title,
	body .pricing-table-style-3 .pricing_row_title,
	body .pricing-table-style-2 .pricing-cost,
	body .pricing-table-style-2 .time,
	body .pricing-table-style-1 .pricing-price-title,
	.widget .gem-teams-name,
	body .pricing-table-style-8 .pricing_row_title,
	.gem-gallery-hover-gradient .gem-gallery-item-title,
	.gem-gallery-grid.hover-gradient .gallery-item .overlay .title,
	.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title,
	body .vc_separator h4,
	.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title{
		font-size: 24px;
	}
}
@media (max-width: 1199px) {
	:root {
	    --thegem-to-h4-line-height: 36px;
	}
	h4,
	.title-h4,
	body .pricing-table-style-7 .pricing-price-title,
	body .pricing-table-style-4 .pricing_row_title,
	body .pricing-table-style-3 .pricing_row_title,
	body .pricing-table-style-2 .pricing-cost,
	body .pricing-table-style-2 .time,
	body .pricing-table-style-1 .pricing-price-title,
	.widget .gem-teams-name,
	body .pricing-table-style-8 .pricing_row_title,
	.gem-gallery-hover-gradient .gem-gallery-item-title,
	.gem-gallery-grid.hover-gradient .gallery-item .overlay .title,
	.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title,
	body .vc_separator h4,
	.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title{
		line-height: 36px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h4-font-size: 22px;
	}
	h4,
	.title-h4,
	body .pricing-table-style-7 .pricing-price-title,
	body .pricing-table-style-4 .pricing_row_title,
	body .pricing-table-style-3 .pricing_row_title,
	body .pricing-table-style-2 .pricing-cost,
	body .pricing-table-style-2 .time,
	body .pricing-table-style-1 .pricing-price-title,
	.widget .gem-teams-name,
	body .pricing-table-style-8 .pricing_row_title,
	.gem-gallery-hover-gradient .gem-gallery-item-title,
	.gem-gallery-grid.hover-gradient .gallery-item .overlay .title,
	.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title,
	body .vc_separator h4,
   .product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title{
		font-size: 22px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h4-line-height: 30px;
	}
	h4,
	.title-h4,
	body .pricing-table-style-7 .pricing-price-title,
	body .pricing-table-style-4 .pricing_row_title,
	body .pricing-table-style-3 .pricing_row_title,
	body .pricing-table-style-2 .pricing-cost,
	body .pricing-table-style-2 .time,
	body .pricing-table-style-1 .pricing-price-title,
	.widget .gem-teams-name,
	body .pricing-table-style-8 .pricing_row_title,
	.gem-gallery-hover-gradient .gem-gallery-item-title,
	.gem-gallery-grid.hover-gradient .gallery-item .overlay .title,
	.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title,
	body .vc_separator h4,
	.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title{
		line-height: 30px;
	}
}

:root {
	--thegem-to-h4-text-transform: uppercase;
}
h4,
.title-h4,
body .vc_separator h4,
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title{
	text-transform: uppercase;
}


:root {
	--thegem-to-h5-font-family: 'Montserrat';
}
h5,
.gem-table thead th,
.title-h5,
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li.menu-item-search > .minisearch input[type="text"],
.mobile-menu-layout-overlay #primary-navigation.responsive #primary-menu > li.menu-item-search > .minisearch input[type="text"],
.gem-teams-phone,
.shop_table td.product-price,
.shop_table td.product-subtotal,
.cart_totals table .cart-subtotal td,
.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-subtotal,
.woocommerce table.shop_table.order-details thead tr th.product-name,
.woocommerce table.shop_table.order-details thead tr th.product-total,
.widget-gem-portfolio-item.gem-portfolio-dummy:after,
.resp-tabs-list li,
.gem-quote.gem-quote-style-4,
.gem-quote.gem-quote-style-5,
.blog-style-styled_list1 .post-time,
.gem-teams-phone,
blockquote.wp-block-quote.is-large,
blockquote.wp-block-quote.is-style-large,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th {
	font-family: 'Montserrat';
}

:root {
	--thegem-to-h5-font-style: normal;
	--thegem-to-h5-font-weight: 700;
}
h5,
.title-h5,
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li.menu-item-search > .minisearch input[type="text"],
.mobile-menu-layout-overlay #primary-navigation.responsive #primary-menu > li.menu-item-search > .minisearch input[type="text"],
.gem-teams-phone,
.shop_table td.product-price,
.shop_table td.product-subtotal,
.cart_totals table .cart-subtotal td,
.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-subtotal,
.woocommerce table.shop_table.order-details thead tr th.product-name,
.woocommerce table.shop_table.order-details thead tr th.product-total,
.widget-gem-portfolio-item.gem-portfolio-dummy:after,
.resp-tabs-list li,
.gem-quote.gem-quote-style-4,
.gem-quote.gem-quote-style-5,
.blog-style-styled_list1 .post-time,
.gem-teams-phone,
blockquote.wp-block-quote.is-large,
blockquote.wp-block-quote.is-style-large,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th {
	font-style: normal;
	font-weight: 700;
}

:root {
	--thegem-to-h5-font-size: 19px;
}
h5,
.title-h5,
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li.menu-item-search > .minisearch input[type="text"],
.mobile-menu-layout-overlay #primary-navigation.responsive #primary-menu > li.menu-item-search > .minisearch input[type="text"],
.gem-teams-phone,
.shop_table td.product-price,
.shop_table td.product-subtotal,
.cart_totals table .cart-subtotal td,
.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-subtotal,
.woocommerce table.shop_table.order-details thead tr th.product-name,
.woocommerce table.shop_table.order-details thead tr th.product-total,
.widget-gem-portfolio-item.gem-portfolio-dummy:after,
.resp-tabs-list li,
.gem-quote.gem-quote-style-4,
.gem-quote.gem-quote-style-5,
.blog-style-styled_list1 .post-time,
.gem-teams-phone,
blockquote.wp-block-quote.is-large,
blockquote.wp-block-quote.is-style-large,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th {
	font-size: 19px;
}

:root {
	--thegem-to-h5-line-height: 25px;
}
h5,
.title-h5,
.gem-teams-phone,
.shop_table td.product-price,
.shop_table td.product-subtotal,
.cart_totals table .cart-subtotal td,
.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-subtotal,
.woocommerce table.shop_table.order-details thead tr th.product-name,
.woocommerce table.shop_table.order-details thead tr th.product-total,
.widget-gem-portfolio-item.gem-portfolio-dummy:after,
.resp-tabs-list li,
.gem-quote.gem-quote-style-4,
.gem-quote.gem-quote-style-5,
.gem-teams-phone,
blockquote.wp-block-quote.is-large,
blockquote.wp-block-quote.is-style-large,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th {
	line-height: 25px;
}

@media (max-width: 1199px) {
	:root {
	    --thegem-to-h5-font-size: 19px;
	}
	h5,
	.title-h5,
	.gem-teams-phone,
	.shop_table td.product-price,
	.shop_table td.product-subtotal,
	.cart_totals table .cart-subtotal td,
	.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-subtotal,
	.woocommerce table.shop_table.order-details thead tr th.product-name,
	.woocommerce table.shop_table.order-details thead tr th.product-total,
	.widget-gem-portfolio-item.gem-portfolio-dummy:after,
	.resp-tabs-list li,
	.gem-quote.gem-quote-style-4,
	.gem-quote.gem-quote-style-5,
	.gem-teams-phone,
	blockquote.wp-block-quote.is-large,
	blockquote.wp-block-quote.is-style-large,
	.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th {
		font-size: 19px;
	}
}
@media (max-width: 1199px) {
	:root {
	    --thegem-to-h5-line-height: 30px;
	}
	h5,
	.title-h5,
	.gem-teams-phone,
	.shop_table td.product-price,
	.shop_table td.product-subtotal,
	.cart_totals table .cart-subtotal td,
	.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-subtotal,
	.woocommerce table.shop_table.order-details thead tr th.product-name,
	.woocommerce table.shop_table.order-details thead tr th.product-total,
	.widget-gem-portfolio-item.gem-portfolio-dummy:after,
	.resp-tabs-list li,
	.gem-quote.gem-quote-style-4,
	.gem-quote.gem-quote-style-5,
	.gem-teams-phone,
	blockquote.wp-block-quote.is-large,
	blockquote.wp-block-quote.is-style-large,
	.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th {
		line-height: 30px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h5-font-size: 19px;
	}
	h5,
	.title-h5,
	.gem-teams-phone,
	.shop_table td.product-price,
	.shop_table td.product-subtotal,
	.cart_totals table .cart-subtotal td,
	.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-subtotal,
	.woocommerce table.shop_table.order-details thead tr th.product-name,
	.woocommerce table.shop_table.order-details thead tr th.product-total,
	.widget-gem-portfolio-item.gem-portfolio-dummy:after,
	.resp-tabs-list li,
	.gem-quote.gem-quote-style-4,
	.gem-quote.gem-quote-style-5,
	.gem-teams-phone,
	blockquote.wp-block-quote.is-large,
	blockquote.wp-block-quote.is-style-large,
	.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th {
		font-size: 19px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h5-line-height: 26px;
	}
	h5,
	.title-h5,
	.gem-teams-phone,
	.shop_table td.product-price,
	.shop_table td.product-subtotal,
	.cart_totals table .cart-subtotal td,
	.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-subtotal,
	.woocommerce table.shop_table.order-details thead tr th.product-name,
	.woocommerce table.shop_table.order-details thead tr th.product-total,
	.widget-gem-portfolio-item.gem-portfolio-dummy:after,
	.resp-tabs-list li,
	.gem-quote.gem-quote-style-4,
	.gem-quote.gem-quote-style-5,
	.gem-teams-phone,
	blockquote.wp-block-quote.is-large,
	blockquote.wp-block-quote.is-style-large,
	.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th {
		line-height: 26px;
	}
}

:root {
	--thegem-to-h5-text-transform: uppercase;
}
h5,
.title-h5,
.gem-table thead th,
.gem-teams-phone,
.shop_table td.product-price,
.shop_table td.product-subtotal,
.cart_totals table .cart-subtotal td,
.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-subtotal,
.woocommerce table.shop_table.order-details thead tr th.product-name,
.woocommerce table.shop_table.order-details thead tr th.product-total,
.widget-gem-portfolio-item.gem-portfolio-dummy:after,
.resp-tabs-list li,
.gem-quote.gem-quote-style-4,
.gem-quote.gem-quote-style-5,
.gem-teams-phone,
blockquote.wp-block-quote.is-large,
blockquote.wp-block-quote.is-style-large,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th {
	text-transform: uppercase;
}


:root {
	--thegem-to-h6-font-family: 'Montserrat';
}
h6,
.title-h6,
body .woocommerce .shop_table thead tr th,
table.shop_table_responsive td[data-title]:before,
.project_info-item-style-1 .project_info-item .title,
.project-info-shortcode-style-2 .project-info-shortcode-item .title,
.gem_accordion_header a,
#wp-calendar caption,
.hamburger-minicart .minicart-item-count,
.wpb_toggle,
.vc_toggle_title h4,
.testimonials-style-1-name.gem-testimonial-name,
.testimonials-style-2-name.gem-testimonial-name,
.diagram-wrapper .digram-line-box .skill-amount,
.diagram-wrapper.style-3 .digram-line-box .skill-title,
.row .vc_progress_bar .vc_label,
.woocommerce .shop_table thead tr th,
.pricing-column-top-choice .pricing-column-top-choice-text {
	font-family: 'Montserrat';
}

:root {
	--thegem-to-h6-font-style: normal;
	--thegem-to-h6-font-weight: 700;
}
h6,
.title-h6,
body .woocommerce .shop_table thead tr th,
table.shop_table_responsive td[data-title]:before,
.project_info-item-style-1 .project_info-item .title,
.gem_accordion_header a,
#wp-calendar caption,
.hamburger-minicart .minicart-item-count,
.wpb_toggle,
.gem-table-responsive .tabletolist.rh > li > .titles,
.vc_toggle_title h4,
.testimonials-style-1-name.gem-testimonial-name,
.testimonials-style-2-name.gem-testimonial-name,
.diagram-wrapper .digram-line-box .skill-amount,
.diagram-wrapper.style-3 .digram-line-box  .skill-title,
.row .vc_progress_bar .vc_label {
	font-style: normal;
	font-weight: 700;
}

:root {
	--thegem-to-h6-font-size: 16px;
	--thegem-to-h6-font-size-small: 14px;
	--thegem-to-h6-font-size-tiny: 7.04px;
}
h6,
.title-h6,
body .woocommerce .shop_table thead tr th,
table.shop_table_responsive td[data-title]:before,
.project_info-item-style-1 .project_info-item .title,
.gem_accordion_header a,
#wp-calendar caption,
.wpb_toggle,
.gem-table-responsive .tabletolist.rh > li > .titles,
.vc_toggle_title h4,
.diagram-wrapper.style-3 .digram-line-box  .skill-title,
.row .vc_progress_bar .vc_label {
	font-size: 16px;
}

:root {
	--thegem-to-h6-line-height: 20px;
	--thegem-to-h6-line-height-small: 17.5px;
}
h6,
.title-h6,
body .woocommerce .shop_table thead tr th,
table.shop_table_responsive td[data-title]:before,
.project_info-item-style-1 .project_info-item .title,
.gem_accordion_header a,
#wp-calendar caption,
.wpb_toggle,
.gem-table-responsive .tabletolist.rh > li > .titles,
.vc_toggle_title h4,
.diagram-wrapper.style-3 .digram-line-box  .skill-title,
.row .vc_progress_bar .vc_label {
	line-height: 20px;
}

.thegem-fullscreen-search .pages-list .page-item article a .title {
	max-height: calc( 20px * 2 );
}

@media (max-width: 1199px) {
	:root {
	    --thegem-to-h6-font-size: 16px;
	}
	h6,
	.title-h6,
	body .woocommerce .shop_table thead tr th,
	table.shop_table_responsive td[data-title]:before,
	.project_info-item-style-1 .project_info-item .title,
	.gem_accordion_header a,
	#wp-calendar caption,
	.wpb_toggle,
	.gem-table-responsive .tabletolist.rh > li > .titles,
	.vc_toggle_title h4,
	.diagram-wrapper.style-3 .digram-line-box  .skill-title,
	.row .vc_progress_bar .vc_label {
		font-size: 16px;
	}
}
@media (max-width: 1199px) {
	:root {
	    --thegem-to-h6-line-height: 25px;
	}
	h6,
	.title-h6,
	body .woocommerce .shop_table thead tr th,
	table.shop_table_responsive td[data-title]:before,
	.project_info-item-style-1 .project_info-item .title,
	.gem_accordion_header a,
	#wp-calendar caption,
	.wpb_toggle,
	.gem-table-responsive .tabletolist.rh > li > .titles,
	.vc_toggle_title h4,
	.diagram-wrapper.style-3 .digram-line-box  .skill-title,
	.row .vc_progress_bar .vc_label {
		line-height: 25px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h6-font-size: 16px;
	}
	h6,
	.title-h6,
	body .woocommerce .shop_table thead tr th,
	table.shop_table_responsive td[data-title]:before,
	.project_info-item-style-1 .project_info-item .title,
	.gem_accordion_header a,
	#wp-calendar caption,
	.wpb_toggle,
	.gem-table-responsive .tabletolist.rh > li > .titles,
	.vc_toggle_title h4,
	.diagram-wrapper.style-3 .digram-line-box  .skill-title,
	.row .vc_progress_bar .vc_label {
		font-size: 16px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-h6-line-height: 23px;
	}
	h6,
	.title-h6,
	body .woocommerce .shop_table thead tr th,
	table.shop_table_responsive td[data-title]:before,
	.project_info-item-style-1 .project_info-item .title,
	.gem_accordion_header a,
	#wp-calendar caption,
	.wpb_toggle,
	.gem-table-responsive .tabletolist.rh > li > .titles,
	.vc_toggle_title h4,
	.diagram-wrapper.style-3 .digram-line-box  .skill-title,
	.row .vc_progress_bar .vc_label {
		line-height: 23px;
	}
}

:root {
	--thegem-to-h6-text-transform: uppercase;
}
h6,
.title-h6,
body .woocommerce .shop_table thead tr th,
table.shop_table_responsive td[data-title]:before,
.project_info-item-style-1 .project_info-item .title,
.gem_accordion_header a,
#wp-calendar caption,
.wpb_toggle,
.gem-table-responsive .tabletolist.rh > li > .titles,
.vc_toggle_title h4,
.diagram-wrapper.style-3 .digram-line-box  .skill-title,
.row .vc_progress_bar .vc_label {
	text-transform: uppercase;
}


:root {
	--thegem-to-xlarge-title-font-family: 'Montserrat';
}
.title-xlarge {
	font-family: 'Montserrat';
}

:root {
	--thegem-to-xlarge-title-font-style: normal;
	--thegem-to-xlarge-title-font-weight: 700;
}
.title-xlarge {
	font-style: normal;
	font-weight: 700;
}

:root {
	--thegem-to-xlarge-title-font-size: 80px;
}
.title-xlarge {
	font-size: 80px;
}
@media (max-width: 1000px) {
	.title-xlarge{
		font-size: 8vw;
	}
}

:root {
	--thegem-to-xlarge-title-line-height: 90px;
}
.title-xlarge {
	line-height: 90px;
}
@media (max-width: 1000px) {
	.title-xlarge {
		line-height: 9vw;
	}
}

@media (max-width: 1199px) {
	:root {
	    --thegem-to-xlarge-title-font-size: 50px;
	}
	.title-xlarge {
		font-size: 50px;
	}
}
@media (max-width: 1199px) {
	:root {
	    --thegem-to-xlarge-title-line-height: 69px;
	}
	.title-xlarge {
		line-height: 69px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-xlarge-title-font-size: 36px;
	}
	.title-xlarge {
		font-size: 36px;
	}
}
@media (max-width: 767px) {
	:root {
	    --thegem-to-xlarge-title-line-height: 53px;
	}
	.title-xlarge {
		line-height: 53px;
	}
}

:root {
	--thegem-to-xlarge-title-text-transform: uppercase;
}
.title-xlarge {
	text-transform: uppercase;
}


:root {
	--thegem-to-light-title-font-family: 'Montserrat UltraLight';
}
h1 .light,
h2 .light,
h3 .light,
h4 .light,
h5 .light,
h6 .light,
.title .light,
.title-h1 .light,
.title-h2 .light,
.title-h3 .light,
.title-h4 .light,
.title-h5 .light,
.title-h6 .light,
.title-xlarge .light,
.main-menu-item .light,
.title-main-menu .light,
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light,
.title-h1.light,
.title-h2.light,
.title-h3.light,
.title-h4.light,
.title-h5.light,
.title-h6.light,
.title-xlarge.light,
.main-menu-item.light,
.title-main-menu.light,
.widget .gem-teams-name,
.gem-counter-style-2 .gem-counter-number,
.gem-gallery-grid .gallery-item .overlay .title,
.gem-quote.gem-quote-style-3 blockquote,
.row  .vc_pie_wrapper span,
.blog-style-styled_list1 .post-title,
.blog-style-styled_list2 .post-time,
.blog-style-styled_list2 .post-title,
.blog-style-timeline .post-title,
body .pricing-table-style-1 .pricing-price-title,
body .pricing-table-style-1  .pricing-cost,
body .pricing-table-style-2 .pricing-price-title,
body .pricing-table-style-2  .pricing-cost,
body .pricing-table-style-2 .time,
body .pricing-table-style-5  .pricing-price-title,
body .pricing-table-style-6 .pricing-price-subtitle,
body .pricing-table-style-7 .pricing-price-title,
body .pricing-table-style-7 .pricing-cost,
body .vc_grid-container ul.vc_grid-filter li.vc_grid-filter-item > span,
.gem-media-grid .vc_gitem-post-data-source-post_title a,
.gem-media-grid-2 .vc_gitem-post-data-source-post_title a,
body.woocommerce-cart-layout-modern .woocommerce .shop_table thead tr th,
.woocommerce .woocommerce-checkout-one-page #order_review table thead th,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th,
.thegem-fullscreen-search .sf-input.thegem-fullscreen-searchform-input {
	font-family: 'Montserrat UltraLight';
}

:root {
	--thegem-to-light-title-font-style: normal;
	--thegem-to-light-title-font-weight: 400;
}
h1 .light,
h2 .light,
h3 .light,
h4 .light,
h5 .light,
h6 .light,
.title .light,
.title-h1 .light,
.title-h2 .light,
.title-h3 .light,
.title-h4 .light,
.title-h5 .light,
.title-h6 .light,
.title-xlarge .light,
.main-menu-item .light,
.title-main-menu .light,
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light,
.title-h1.light,
.title-h2.light,
.title-h3.light,
.title-h4.light,
.title-h5.light,
.title-h6.light,
.title-xlarge.light,
.main-menu-item.light,
.title-main-menu.light,
.widget .gem-teams-name,
.gem-counter-style-2 .gem-counter-number,
.gem-quote.gem-quote-style-3 blockquote,
.row  .vc_pie_wrapper span,
.blog-style-styled_list1 .post-title,
.blog-style-styled_list2 .post-time,
.blog-style-timeline .post-title,
body .vc_grid-container ul.vc_grid-filter li.vc_grid-filter-item > span,
.gem-media-grid .vc_gitem-post-data-source-post_title a,
body .pricing-table-style-1 .pricing-price-title,
body .pricing-table-style-1 .pricing-cost,
body .pricing-table-style-2 .pricing-price-title,
body .pricing-table-style-2 .pricing-cost,
body .pricing-table-style-2 .time,
body .pricing-table-style-5 .pricing-price-title,
body .pricing-table-style-6 .pricing-price-subtitle,
body .pricing-table-style-7 .pricing-price-title,
body .pricing-table-style-7 .pricing-cost,
.gem-media-grid-2 .vc_gitem-post-data-source-post_title a,
body.woocommerce-cart-layout-modern .woocommerce .shop_table thead tr th,
.woocommerce .woocommerce-checkout-one-page #order_review table thead th,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th,
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title,
.thegem-fullscreen-search .sf-input.thegem-fullscreen-searchform-input {
	font-style: normal;
	font-weight: 400;
}

:root {
	--thegem-to-body-font-family: Source Sans Pro;
	--thegem-to-body-tiny-font-family: Source Sans Pro;
}
body,
.text-body,
.text-body-tiny,
option,
.gem-table thead th,
.portfolio.columns-1 .portfolio-item .caption .subtitle,
.gallery-item .overlay .subtitle,
.cart_totals table .shipping td label,
.widget_archive li,
.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-price,
.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div,
body .hamburger-minicart > .minicart .total strong,
body .hamburger-minicart > .minicart ul li .quantity,
.thegem-tabs__nav-item sup,
.thegem-accordion__item-title sup,
.page-breadcrumbs ul li,
#primary-navigation #primary-menu > li.menu-item-cart > a.circle-count .minicart-item-count,
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-title,
.thegem-combobox-wrap .thegem-combobox,
.product-page__wrapper .reset_variations,
.product-page__wrapper .size-guide,
.single-product-content-right .compare,
.single-product-content-right .yith-ywraq-add-to-quote{
	font-family: 'Source Sans Pro';
}

:root {
	--thegem-to-body-font-style: normal;
	--thegem-to-body-font-weight: normal;
	--thegem-to-body-tiny-font-style: normal;
	--thegem-to-body-tiny-font-weight: normal;
}
body,
.text-body,
.text-body-tiny,
option,
.gem-table thead th,
.portfolio.columns-1 .portfolio-item .caption .subtitle,
.gallery-item .overlay .subtitle,
.cart_totals table .shipping td label,
.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-price,
.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div,
body .hamburger-minicart > .minicart .total strong,
body .hamburger-minicart > .minicart ul li .quantity,
.thegem-tabs__nav-item sup,
.thegem-accordion__item-title sup,
.page-breadcrumbs ul li,
#primary-navigation #primary-menu > li.menu-item-cart > a.circle-count .minicart-item-count,
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-title,
.thegem-combobox-wrap .thegem-combobox,
.product-page__wrapper .reset_variations,
.product-page__wrapper .size-guide,
.single-product-content-right .compare,
.single-product-content-right .yith-ywraq-add-to-quote{
	font-style: normal;
	font-weight: normal;
}

:root {
	--thegem-to-body-font-size: 16px;
	--thegem-to-body-tiny-font-size: 14px;
	--thegem-to-body-sup-font-size: 11px;
}
body,
.text-body,
.gem-table thead th,
.inline-column,
.inline-inside > *,
option,
.portfolio.columns-1 .portfolio-item .caption .subtitle,
.gallery-item .overlay .subtitle,
.cart_totals table .shipping td label,
.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-price,
.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div,
body .hamburger-minicart > .minicart .total strong,
body .hamburger-minicart > .minicart ul li .quantity,
.page-breadcrumbs ul li:not(:last-child):after,
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-title,
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info del,
.thegem-combobox-wrap .thegem-combobox,
.single-product-content-right .compare,
.single-product-content-right .yith-ywraq-add-to-quote{
	font-size: 16px;
}

.text-body-tiny {
	font-size: 14px;
}

.page-breadcrumbs ul li,
.product-page__wrapper .reset_variations,
.product-page__wrapper .size-guide,
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .woocommerce-review__author{
	font-size: 14px;
}

.thegem-tabs__nav-item sup,
.thegem-accordion__item-title sup{
	font-size: 11px;
}

:root {
	--thegem-to-body-line-height: 20px;
	--thegem-to-body-tiny-line-height: 17.5px;
}
body,
.text-body,
option,
.inline-column,
.inline-inside > *,
.related-element-info > a,
.gallery-item .overlay .subtitle,
.cart_totals table .shipping td label,
.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-price,
.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div,
body .hamburger-minicart > .minicart .total strong,
body .hamburger-minicart > .minicart ul li .quantity,
.thegem-combobox-wrap .thegem-combobox,
.single-product-content-right .compare,
.single-product-content-right .yith-ywraq-add-to-quote{
	line-height: 20px;
}

.text-body-tiny {
	line-height: 17.5px;
}

.page-breadcrumbs ul li,
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-title,
.product-page__wrapper .reset_variations,
.product-page__wrapper .size-guide{
	line-height: 17.5px;
}

	@media (max-width: 1199px) {
		body,
		.text-body,
		.gem-table thead th,
		.inline-column,
		.inline-inside > *,
		option,
		.portfolio.columns-1 .portfolio-item .caption .subtitle,
		.gallery-item .overlay .subtitle,
		.cart_totals table .shipping td label,
		.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-price,
		.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div,
		body .hamburger-minicart > .minicart .total strong,
		body .hamburger-minicart > .minicart ul li .quantity,
		.page-breadcrumbs ul li:not(:last-child):after,
		.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-title,
		.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info del,
		.thegem-combobox-wrap .thegem-combobox,
		.single-product-content-right .compare,
		.single-product-content-right .yith-ywraq-add-to-quote{
			font-size: 16px;
		}
	}
	@media (max-width: 1199px) {
		body,
		.text-body,
		.gem-table thead th,
		.inline-column,
		.inline-inside > *,
		option,
		.portfolio.columns-1 .portfolio-item .caption .subtitle,
		.gallery-item .overlay .subtitle,
		.cart_totals table .shipping td label,
		.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-price,
		.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div,
		body .hamburger-minicart > .minicart .total strong,
		body .hamburger-minicart > .minicart ul li .quantity,
		.page-breadcrumbs ul li:not(:last-child):after,
		.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-title,
		.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info del,
		.thegem-combobox-wrap .thegem-combobox,
		.single-product-content-right .compare,
		.single-product-content-right .yith-ywraq-add-to-quote{
			line-height: 25px;
		}
	}
	@media (max-width: 767px) {
		body,
		.text-body,
		.gem-table thead th,
		.inline-column,
		.inline-inside > *,
		option,
		.portfolio.columns-1 .portfolio-item .caption .subtitle,
		.gallery-item .overlay .subtitle,
		.cart_totals table .shipping td label,
		.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-price,
		.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div,
		body .hamburger-minicart > .minicart .total strong,
		body .hamburger-minicart > .minicart ul li .quantity,
		.page-breadcrumbs ul li:not(:last-child):after,
		.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-title,
		.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info del,
		.thegem-combobox-wrap .thegem-combobox,
		.single-product-content-right .compare,
		.single-product-content-right .yith-ywraq-add-to-quote{
			font-size: 16px;
		}
	}
	@media (max-width: 767px) {
		body,
		.text-body,
		.gem-table thead th,
		.inline-column,
		.inline-inside > *,
		option,
		.portfolio.columns-1 .portfolio-item .caption .subtitle,
		.gallery-item .overlay .subtitle,
		.cart_totals table .shipping td label,
		.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-price,
		.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div,
		body .hamburger-minicart > .minicart .total strong,
		body .hamburger-minicart > .minicart ul li .quantity,
		.page-breadcrumbs ul li:not(:last-child):after,
		.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-title,
		.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info del,
		.thegem-combobox-wrap .thegem-combobox,
		.single-product-content-right .compare,
		.single-product-content-right .yith-ywraq-add-to-quote{
			line-height: 25px;
		}
	}

:root {
	--thegem-to-body-text-transform: none;
	--thegem-to-body-tiny-text-transform: none;
}
body,
.text-body,
.text-body-tiny,
option,
.portfolio.columns-1 .portfolio-item .caption .subtitle,
.gallery-item .overlay .subtitle,
.cart_totals table .shipping td label,
.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-price,
.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div,
body .hamburger-minicart > .minicart .total strong,
body .hamburger-minicart > .minicart ul li .quantity,
.thegem-tabs__nav-item sup,
.thegem-accordion__item-title sup,
.thegem-combobox-wrap .thegem-combobox,
.product-page__wrapper .reset_variations,
.product-page__wrapper .size-guide,
.single-product-content-right .compare,
.single-product-content-right .yith-ywraq-add-to-quote{
	text-transform: none;
}


.page-title-excerpt,
.custom-title-excerpt {
	font-family: 'Source Sans Pro';
}

.page-title-excerpt,
.custom-title-excerpt {
	font-style: normal;
	font-weight: 300;
}

.page-title-excerpt,
.custom-title-excerpt {
	font-size: 24px;
}
@media (max-width: 600px) {
	.page-title-excerpt,
	.custom-title-excerpt {
		font-size: 4vw;
	}
}

.page-title-excerpt,
.custom-title-excerpt {
	line-height: 37px;
}
@media (max-width: 600px) {
	.page-title-excerpt,
	.custom-title-excerpt {
		line-height: 6.1666666666667vw;
	}
}

@media (max-width: 1199px) {
	.page-title-excerpt,
	.custom-title-excerpt {
		font-size: 22px;
	}
}
@media (max-width: 1199px) {
	.page-title-excerpt,
	.custom-title-excerpt {
		line-height: 34px;
	}
}
@media (max-width: 767px) {
	.page-title-excerpt,
	.custom-title-excerpt {
		font-size: 20px;
	}
}
@media (max-width: 767px) {
	.page-title-excerpt,
	.custom-title-excerpt {
		line-height: 27px;
	}
}

.page-title-excerpt,
.custom-title-excerpt {
	text-transform: none;
}


.widget-title {
	font-family: 'Montserrat';
}

.widget-title {
	font-style: normal;
	font-weight: 700;
}

.widget-title {
	font-size: 14px;
}

.widget-title {
	line-height: 18px;
}

.widget-title {
	text-transform: uppercase;
}


:root {
	--thegem-to-button-font-family: 'Montserrat';
}
.gem-button,
input[type='submit'],
.gem-pagination a,
.gem-pagination .current,
.gem-pagination .dots,
.blog-load-more button,
body .wp-block-button .wp-block-button__link,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page a,
.single-product-content-right .yith-ywraq-add-to-quote a.button,
.single-product-content-right .compare.button{
	font-family: 'Montserrat';
}

:root {
	--thegem-to-button-font-style: normal;
	--thegem-to-button-font-weight: 700;
}
.gem-button,
input[type='submit'],
.gem-pagination a,
.gem-pagination .current,
.gem-pagination .dots,
.blog-load-more button,
body .wp-block-button .wp-block-button__link,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page a,
.single-product-content-right .yith-ywraq-add-to-quote a.button,
.single-product-content-right .compare.button{
	font-style: normal;
	font-weight: 700;
}

:root {
	--thegem-to-button-text-transform: uppercase;
}
.gem-button,
input[type='submit'],
.gem-pagination a,
.gem-pagination .current,
.blog-load-more button,
body .wp-block-button .wp-block-button__link,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page a,
.single-product-content-right .yith-ywraq-add-to-quote a.button,
.single-product-content-right .compare.button{
	text-transform: uppercase;
}


.gem-button.gem-button-text-weight-thin {
	font-family: 'Montserrat UltraLight';
}

.gem-button.gem-button-text-weight-thin {
	font-style: normal;
	font-weight: normal;
}

.gem-button.gem-button-text-weight-thin {
	text-transform: uppercase;
}



.portfolio-item-title,
.portfolio-item .wrap > .caption .title,
.fancybox-title .slide-info-title,
.blog.blog-style-masonry article .description .title {
	font-family: 'Montserrat';
}

.portfolio-item-title,
.portfolio-item .wrap > .caption .title,
.fancybox-title .slide-info-title,
.blog.blog-style-masonry article .description .title {
	font-style: normal;
	font-weight: 700;
}

.portfolio-item-title,
.portfolio-item .wrap > .caption .title,
.fancybox-title .slide-info-title,
.blog.blog-style-masonry article .description .title {
	font-size: 16px;
}

.portfolio-item-title,
.portfolio-item .wrap > .caption .title,
.fancybox-title .slide-info-title,
.blog.blog-style-masonry article .description .title {
	line-height: 24px;
}


.portfolio-item-title,
.portfolio-item .wrap > .caption .title,
.fancybox-title .slide-info-title,
.blog.blog-style-masonry article .description .title {
	letter-spacing: 0px;
}

.portfolio-item-description,
.portfolio-item .caption .subtitle,
.fancybox-title .slide-info-summary,
.blog.blog-style-masonry article .description .summary {
	font-family: 'Source Sans Pro';
}

.portfolio-item-description,
.portfolio-item .caption .subtitle,
.fancybox-title .slide-info-summary,
.blog.blog-style-masonry article .description .summary {
	font-style: normal;
	font-weight: normal;
}

.portfolio-item-description,
.portfolio-item .caption .subtitle,
.fancybox-title .slide-info-summary,
.blog.blog-style-masonry article .description .summary {
	font-size: 16px;
}

.portfolio-item-description,
.portfolio-item .caption .subtitle,
.fancybox-title .slide-info-summary,
.blog.blog-style-masonry article .description .summary {
	line-height: 24px;
}
.portfolio:not(.columns-1):not(.portfolio-style-masonry):not(.list-style) .portfolio-item .wrap > .caption .subtitle {
	max-height: 24px;
}


.portfolio-item-description,
.portfolio-item .caption .subtitle,
.fancybox-title .slide-info-summary,
.blog.blog-style-masonry article .description .summary {
	letter-spacing: 0px;
}

.quickfinder-item-title {
	font-family: 'Montserrat';
}

.quickfinder-item-title {
	font-style: normal;
	font-weight: 700;
}

.quickfinder-item-title {
	font-size: 24px;
}

.quickfinder-item.col-md-2 .quickfinder-item-title,
.quickfinder-item.col-md-3 .quickfinder-item-title {
	font-size: 19.2px;
}

.quickfinder-item-title {
	line-height: 38px;
}

.quickfinder-item.col-md-2 .quickfinder-item-title,
.quickfinder-item.col-md-3 .quickfinder-item-title {
	line-height: 30.4px;
}

.quickfinder-item-title {
	text-transform: uppercase;
}


.quickfinder.quickfinder-title-thin .quickfinder-item-title {
	font-family: 'Montserrat UltraLight';
}

.quickfinder.quickfinder-title-thin .quickfinder-item-title {
	font-style: normal;
	font-weight: normal;
}

.quickfinder.quickfinder-title-thin .quickfinder-item-title {
	font-size: 24px;
}

.quickfinder.quickfinder-title-thin .quickfinder-item.col-md-2 .quickfinder-item-title,
.quickfinder.quickfinder-title-thin .quickfinder-item.col-md-3 .quickfinder-item-title {
	font-size: 19.2px;
}

.quickfinder.quickfinder-title-thin .quickfinder-item-title {
	line-height: 38px;
}

.quickfinder.quickfinder-title-thin .quickfinder-item.col-md-2 .quickfinder-item-title,
.quickfinder.quickfinder-title-thin .quickfinder-item.col-md-3 .quickfinder-item-title {
	line-height: 30.4px;
}

.quickfinder.quickfinder-title-thin .quickfinder-item-title {
	text-transform: uppercase;
}


.quickfinder-item-text {
	font-family: 'Source Sans Pro';
}

.quickfinder-item-text {
	font-style: normal;
	font-weight: normal;
}

.quickfinder-item-text {
	font-size: 16px;
}

.quickfinder-item-text {
	line-height: 25px;
}

.quickfinder-item-text {
	text-transform: none;
}


.gem-gallery-hover-zooming-blur .gem-gallery-item-title,
.gem-gallery-grid .gallery-item .overlay .title,
.gem-gallery .gem-gallery-caption .gem-gallery-item-title{
	font-family: 'Montserrat UltraLight';
}

.gem-gallery-hover-zooming-blur .gem-gallery-item-title,
.gem-gallery-grid .gallery-item .overlay .title,
.gem-gallery .gem-gallery-caption .gem-gallery-item-title{
	font-style: normal;
	font-weight: normal;
}

.gem-gallery-hover-zooming-blur .gem-gallery-item-title,
.gem-gallery-grid .gallery-item .overlay .title,
.gem-gallery .gem-gallery-caption .gem-gallery-item-title{
	font-size: 24px;
}

.gem-gallery-hover-zooming-blur .gem-gallery-item-title,
.gem-gallery-grid .gallery-item .overlay .title,
.gem-gallery .gem-gallery-caption .gem-gallery-item-title {
	line-height: 30px;
}

body .gem-gallery-hover-zooming-blur .gem-gallery-item-title,
body .gem-gallery-grid .gallery-item .overlay .title,
body .gem-gallery .gem-gallery-caption .gem-gallery-item-title{
	text-transform: uppercase;
}


.gem-gallery-grid.hover-default .gallery-item .overlay .title,
.gem-gallery-hover-default .gem-gallery-item .gem-gallery-item-title{
	font-family: 'Montserrat';
}

.gem-gallery-grid.hover-default .gallery-item .overlay .title,
.gem-gallery-hover-default .gem-gallery-item .gem-gallery-item-title {
	font-weight: 700;
}

.gem-gallery-grid.hover-default .gallery-item .overlay .title,
.gem-gallery-hover-default .gem-gallery-item .gem-gallery-item-title {
	font-size: 24px;
}

.gem-gallery-grid.hover-default .gallery-item .overlay .title,
.gem-gallery-hover-default .gem-gallery-item .gem-gallery-item-title {
	line-height: 31px;
}


.gem-gallery-grid.hover-default .gallery-item .overlay .title,
.gem-gallery-hover-default .gem-gallery-item .gem-gallery-item-title {
	letter-spacing: 0px;
}


.gallery-description,
.gem-gallery-item-description,
.gallery-item .overlay .subtitle{
	font-family: 'Source Sans Pro';
}

.gallery-description,
.gem-gallery-item-description,
.gallery-item .overlay .subtitle{
	font-style: normal;
	font-weight: 300;
}

.gallery-description,
.gem-gallery-item-description,
.gallery-item .overlay .subtitle{
	font-size: 17px;
}

.gallery-description,
.gem-gallery-item-description,
.gallery-item .overlay .subtitle{
	line-height: 24px;
}




body .gem-testimonial-text,
body .testimonials-style-1-text {
	font-family: 'Source Sans Pro';
}
body .gem-testimonial-text,
body .testimonials-style-1-text {
	font-style: normal;
	font-weight: 300;
}
body .gem-testimonial-text,
body .testimonials-style-1-text {
	font-size: 24px;
}
@media (max-width: 600px) {
	body .gem-testimonial-text,
	body .testimonials-style-1-text {
		font-size: 4vw;
	}
}
body .gem-testimonial-text,
body .testimonials-style-1-text {
	line-height: 36px;
}
@media (max-width: 600px) {
	body .gem-testimonial-text,
	body .testimonials-style-1-text {
		line-height: 6vw;
	}
}
body .gem-testimonial-text,
body .testimonials-style-1-text {
	text-transform: none;
}

body .gem-testimonial-name{
	font-family: 'Montserrat';
}
body .gem-testimonial-name{
	font-style: normal;
	font-weight: 700;
}
body .gem-testimonial-name{
	font-size: 14px;
}
body .gem-testimonial-name{
	line-height: 25px;
}
body .gem-testimonial-name{
	text-transform: uppercase;
}

body .gem-testimonial-company{
	font-family: 'Source Sans Pro';
}
body .gem-testimonial-company{
	font-style: normal;
	font-weight: 300;
}
body .gem-testimonial-company{
	font-size: 14px;
}
body .gem-testimonial-company{
	line-height: 25px;
}
body .gem-testimonial-company{
	text-transform: none;
}

body .gem-testimonial-position{
	font-family: 'Source Sans Pro';
}
body .gem-testimonial-position{
	font-style: normal;
	font-weight: 300;
}
body .gem-testimonial-position{
	font-size: 14px;
}
body .gem-testimonial-position{
	line-height: 25px;
}
body .gem-testimonial-position{
	text-transform: none;
}


.gem-counter-number,
.diagram-circle .text div span {
	font-family: 'Montserrat';
}

.gem-counter-number,
.diagram-circle .text div span {
	font-style: normal;
	font-weight: 700;
}

.gem-counter-number {
	font-size: 50px;
}

.gem-counter-number {
	line-height: 69px;
}

.gem-counter-number {
	text-transform: uppercase;
}



:root {
	--thegem-to-tabs-title-font-family: Montserrat UltraLight;
}
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-tab.vc_active > a,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-modern .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel.vc_active .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel.vc_tta-style-modern .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-panel .vc_tta-panel-title,
.thegem-tabs__nav-item.thegem-tabs__nav-item--active,
.thegem-accordion__item-title.thegem-accordion__item--active,
.portfolio-filter-tabs ul.portfolio-filter-tabs-list li.active {
	font-family: 'Montserrat UltraLight';
}

:root {
	--thegem-to-tabs-title-font-style: normal;
	--thegem-to-tabs-title-font-weight: normal;
}
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-tab.vc_active > a,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-modern .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel.vc_active .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel.vc_tta-style-modern .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-panel .vc_tta-panel-title,
.thegem-tabs__nav-item.thegem-tabs__nav-item--active,
.thegem-accordion__item-title.thegem-accordion__item--active,
.portfolio-filter-tabs ul.portfolio-filter-tabs-list li.active {
	font-style: normal;
	font-weight: normal;
}

:root {
	--thegem-to-tabs-title-font-size: 14px;
}
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-tab.vc_active > a,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-modern .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel.vc_active .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel.vc_tta-style-modern .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-panel .vc_tta-panel-title,
.thegem-tabs__nav-item.thegem-tabs__nav-item--active,
.thegem-accordion__item-title.thegem-accordion__item--active,
.portfolio-filter-tabs ul.portfolio-filter-tabs-list li.active {
	font-size: 14px;
}

:root {
	--thegem-to-tabs-title-line-height: 18px;
}
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-tab.vc_active > a,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-modern .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel.vc_active .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel.vc_tta-style-modern .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-panel .vc_tta-panel-title,
.thegem-tabs__nav-item.thegem-tabs__nav-item--active,
.thegem-accordion__item-title.thegem-accordion__item--active,
.portfolio-filter-tabs ul.portfolio-filter-tabs-list li.active {
	line-height: 18px;
}

:root {
	--thegem-to-tabs-title-text-transform: uppercase;
}
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-tab.vc_active > a,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-modern .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel.vc_active .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-tabs.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-title
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel.vc_tta-style-modern .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion.vc_tta-style-simple_dashed .vc_tta-panel .vc_tta-panel-title,
.thegem-tabs__nav-item.thegem-tabs__nav-item--active,
.thegem-accordion__item-title.thegem-accordion__item--active,
.portfolio-filter-tabs ul.portfolio-filter-tabs-list li.active {
	text-transform: uppercase;
}


:root {
	--thegem-to-tabs-title-thin-font-family: 'Montserrat UltraLight';
}
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-title,
.thegem-tabs__nav-item,
.thegem-accordion__item-title,
.portfolio-filter-tabs ul.portfolio-filter-tabs-list li:not(.active) {
	font-family: 'Montserrat UltraLight';
}

:root {
	--thegem-to-tabs-title-thin-font-style: normal;
	--thegem-to-tabs-title-thin-font-weight: normal;
}
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-title,
.thegem-tabs__nav-item,
.thegem-accordion__item-title,
.portfolio-filter-tabs ul.portfolio-filter-tabs-list li:not(.active) {
	font-style: normal;
	font-weight: normal;
}

:root {
	--thegem-to-tabs-title-thin-font-size: 14px;
}
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-title,
.thegem-tabs__nav-item,
.thegem-accordion__item-title,
.portfolio-filter-tabs ul.portfolio-filter-tabs-list li:not(.active) {
	font-size: 14px;
}

:root {
	--thegem-to-tabs-title-thin-line-height: 18px;
}
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-title,
.thegem-tabs__nav-item,
.thegem-accordion__item-title,
.portfolio-filter-tabs ul.portfolio-filter-tabs-list li:not(.active) {
	line-height: 18px;
}

:root {
	--thegem-to-tabs-title-thin-text-transform: uppercase;
}
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-tab a,
.wpb-js-composer .vc_tta.vc_tta-tabs .vc_tta-panel .vc_tta-panel-title,
.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-title,
.thegem-tabs__nav-item,
.thegem-accordion__item-title,
.portfolio-filter-tabs ul.portfolio-filter-tabs-list li:not(.active) {
	text-transform: uppercase;
}


		    :root {
	    --thegem-to-woo-price-font-family: Montserrat;
	    }
	    .widget_shopping_cart_content .quantity,
	    .widget_shopping_cart_content .total .amount {
	    font-family: 'Montserrat';
	    }
	
		    .product-info .product-title.title-h6,
	    .products .portfolio-item .wrap > .caption .title {
	    font-family: 'Montserrat';
	    }
	
		    .product-info .product-title.title-h6,
	    .products .portfolio-item .wrap > .caption .title {
	    font-style: normal;
	    font-weight: 700;
	    }
					
		    .product-info .product-title.title-h6,
	    .products .portfolio-item .wrap > .caption .title {
	    font-size: 16px;
	    }
	
		    .product-info .product-title.title-h6,
	    .products .portfolio-item .wrap > .caption .title {
	    line-height: 25px;
	    }
	
	
		    .product-info .product-title.title-h6,
	    .products .portfolio-item .wrap > .caption .title {
	    letter-spacing: 0px;
	    }
	
		:root {
	    --thegem-to-product-title-font-family: Montserrat UltraLight;
	}
	.single-product-content .product_title,
	.product-page__wrapper .product-page__attribute{
	    font-family: 'Montserrat UltraLight';
	}
	
		:root {
	    --thegem-to-product-title-font-style: normal;
	    --thegem-to-product-title-font-weight: normal;
	}
	.single-product-content .product_title,
	.product-page__wrapper .product-page__attribute{
	    font-style: normal;
	    font-weight: normal;
	}
			
		:root {
	    --thegem-to-product-title-font-size: 22px;
	    --thegem-to-product-attribute-font-size: 11px;
	}
	.single-product-content .product_title {
	    font-size: 22px;
	}
	.product-page__wrapper .product-page__attribute {
	    font-size: 11px;
	}
	
		:root {
	    --thegem-to-product-title-line-height: 25px;
	    --thegem-to-product-attribute-line-height: 12.5px;
	}
	.single-product-content .product_title {
	    line-height: 25px;
	}
	.product-page__wrapper .product-page__attribute {
	    line-height: 12.5px;
	}
	
		:root {
	    --thegem-to-product-title-text-transform: uppercase;
	}
	.single-product-content .product_title,
	.product-page__wrapper .product-page__attribute{
	    text-transform: uppercase;
	}
	
	
		    .widget .gem-products-title {
	    font-family: 'Source Sans Pro';
	    }
	
		    .widget .gem-products-title {
	    font-style: normal;
	    font-weight: normal;
	    }
					
		    .widget .gem-products-title {
	    font-size: 12px;
	    }
	
		    .widget .gem-products-title {
	    line-height: 25px;
	    }
	
	
		    .widget .gem-products-title {
	    letter-spacing: 0px;
	    }
	
		    :root {
	        --thegem-to-product-title-cart-font-family: Source Sans Pro;
	    }
	    .shop_table .product-name .product-title {
	    font-family: 'Source Sans Pro';
	    }
	
		    .shop_table .product-name .product-title {
	    font-style: normal;
	    font-weight: normal;
	    }
					
		    .shop_table .product-name .product-title {
	    font-size: 15px;
	    }
	
		    .shop_table .product-name .product-title {
	    line-height: 16px;
	    }
	
	
		    .shop_table .product-name .product-title {
	    letter-spacing: 0px;
	    }
	
		    .products .product-info .price ins,
	    .products .product-info .price .amount,
	    .portfolio-filters-list .widget_products .gem-products-price .amount,
	    .portfolio-filters-list .widget_top_rated_products .gem-products-price .amount,
	    .portfolio-filters-list .widget_recently_viewed_products .gem-products-price .amount {
	    font-family: 'Source Sans Pro';
	    }
	
		    .products .product-info .price ins,
	    .products .product-info .price .amount,
	    .portfolio-filters-list .widget_products .gem-products-price .amount,
	    .portfolio-filters-list .widget_top_rated_products .gem-products-price .amount,
	    .portfolio-filters-list .widget_recently_viewed_products .gem-products-price .amount {
	    font-style: normal;
	    font-weight: normal;
	    }
					
		    .products .product-info .price ins,
	    .products .product-info .price .amount,
	    .portfolio-filters-list .widget_products .gem-products-price .amount,
	    .portfolio-filters-list .widget_top_rated_products .gem-products-price .amount,
	    .portfolio-filters-list .widget_recently_viewed_products .gem-products-price .amount {
	    font-size: 18px;
	    }
	
		    .products .product-info .price ins,
	    .products .product-info .price .amount,
	    .portfolio-filters-list .widget_products .gem-products-price .amount,
	    .portfolio-filters-list .widget_top_rated_products .gem-products-price .amount,
	    .portfolio-filters-list .widget_recently_viewed_products .gem-products-price .amount {
	    line-height: 18px;
	    }
	
	
		    .products .product-info .price ins,
	    .products .product-info .price .amount,
	    .portfolio-filters-list .widget_products .gem-products-price .amount,
	    .portfolio-filters-list .widget_top_rated_products .gem-products-price .amount,
	    .portfolio-filters-list .widget_recently_viewed_products .gem-products-price .amount {
	    letter-spacing: 0px;
	    }
	
		    :root {
	    --thegem-to-product-price-font-family: Source Sans Pro;
	    }
	    .single-product-content .price {
	    font-family: 'Source Sans Pro';
	    }
	
		    :root {
	    --thegem-to-product-price-font-style: normal;
	    --thegem-to-product-price-font-weight: 400;
	    }
	    .single-product-content .price {
	    font-style: normal;
	    font-weight: 400;
	    }
					
		    :root {
	    --thegem-to-product-price-font-size: 28px;
	    }
	    .woocommerce .single-product-content .price {
	    font-size: 28px;
	    }
	    .woocommerce .single-product-content .price del,
	    .woocommerce .single-product-content .single_variation .price del {
	    font-size: 18px;
	    }
	    .woocommerce .single-product-content .single_variation .price {
	    font-size: 38px;
	    }
	    .woocommerce .single-product-content .single_variation .price del {
	    line-height: 18px;
	    }
	    .woocommerce .single-product-content .single_variation .price {
	    line-height: 38px;
	    }
	    .woocommerce .product-page__wrapper .single-product-content .price{
	    font-size: 28px;
	    }
	    .woocommerce .product-page__wrapper .single-product-content .price del{
	    font-size: 21px;
	    }
	
		    :root {
	    --thegem-to-product-price-line-height: 28px;
	    }
	    .woocommerce .single-product-content .price {
	    line-height: 28px;
	    }
	    .woocommerce .single-product-content .price del {
	    line-height: 18px;
	    }
	    .woocommerce .product-page__wrapper .single-product-content .price{
	    line-height: 28px;
	    }
	    .woocommerce .product-page__wrapper .single-product-content .price del{
	    line-height: 21px;
	    }
	
	
		    :root {
	    --thegem-to-product-price-letter-spacing: 0;
	    }
	    .woocommerce .single-product-content .price {
	    letter-spacing: 0px;
	    }
	
		    .widget .gem-products-price ins,
	    .widget .gem-products-price .amount {
	    font-family: 'Source Sans Pro';
	    }
	
		    .widget .gem-products-price ins,
	    .widget .gem-products-price .amount {
	    font-style: normal;
	    font-weight: 300;
	    }
					
		    .widget .gem-products-price ins,
	    .widget .gem-products-price .amount {
	    font-size: 20px;
	    }
	
		    .widget .gem-products-price ins,
	    .widget .gem-products-price .amount {
	    line-height: 30px;
	    }
	
	
		    .widget .gem-products-price ins,
	    .widget .gem-products-price .amount {
	    letter-spacing: 0px;
	    }
	
		    :root {
	    --thegem-to-product-price-cart-font-family: 'Source Sans Pro';
	    }
	    .woocommerce .woocommerce-cart-form .shop_table td.product-price,
	    .woocommerce .woocommerce-cart-form .shop_table td.product-subtotal,
	    .woocommerce .wishlist_table .product-info .product-info-content .product-price {
	    font-family: 'Source Sans Pro';
	    }
	
		    :root {
	    --thegem-to-product-price-cart-font-style: normal;
	    --thegem-to-product-price-cart-font-weight: 300;
	    }
	    .woocommerce .woocommerce-cart-form .shop_table td.product-price,
	    .woocommerce .woocommerce-cart-form .shop_table td.product-subtotal,
	    .woocommerce .wishlist_table .product-info .product-info-content .product-price {
	    font-style: normal;
	    font-weight: 300;
	    }
					
		    :root {
	    --thegem-to-product-price-cart-font-size: 16px;
	    --thegem-to-product-price-cart-font-size-tiny: 13px;
	    }
	    .woocommerce .woocommerce-cart-form .shop_table td.product-subtotal,
	    .woocommerce .wishlist_table .product-info .product-info-content .product-price {
	    font-size: 16px;
	    }
	    .woocommerce .woocommerce-cart-form .shop_table td.product-price {
	    font-size: 13.3328px;
	    }
	
		    :root {
	    --thegem-to-product-price-cart-line-height: 18px;
	    --thegem-to-product-price-cart-line-height-tiny: 15px;
	    }
	    .woocommerce .woocommerce-cart-form .shop_table td.product-price,
	    .woocommerce .wishlist_table .product-info .product-info-content .product-price {
	    line-height: 18px;
	    }
	    .woocommerce .woocommerce-cart-form .shop_table td.product-subtotal {
	    line-height: 14.9994px;
	    }
	
	
		    :root {
	    --thegem-to-product-price-cart-letter-spacing: 0px;
	    }
	    .woocommerce .woocommerce-cart-form .shop_table td.product-subtotal,
	    .woocommerce .wishlist_table .product-info .product-info-content .product-price,
	    .woocommerce .woocommerce-cart-form .shop_table td.product-price {
	    letter-spacing: 0px;
	    }
	

:root {
	--thegem-to-main-bg-color: #ffffff;
	--main-bg-color: #ffffff;
	--main-bg-color-08: rgba(255, 255, 255, 0.8);
}
.combobox-wrapper,
#page .woocommerce .select2-container .select2-selection--single,
.select2-container .select2-dropdown,
.gem-team-style-5 .team-person:hover .team-person-hover,
.gem-table td,
body .gem-table-style-2 thead,
body .gem-table-style-2 tr:nth-child(2n) td,
.gem-table .tabletolist.nrh > li > ul > li,
.resp-tabs-container,
.resp-tab-content,
.resp-tab-active,
.gem-clients-type-carousel-grid .gem-client-item a:hover,
.gem_client-carousel .gem-client-item a:hover,
.products .product-inner,
.gem-table .shop_table tbody tr,
.widget_product_search input.search-field,
.woocommerce-message:before,
.woocommerce-info:before,
.woocommerce table.shop_table.order-details tr.cart_item,
.woocommerce table.shop_table.order-details tr.order_item,
body .woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review .woocommerce-checkout-payment .payment_methods .woocommerce-notice,
.woocommerce-checkout-one-page-modern .woocommerce-terms-and-conditions,
.triangle-with-shadow:after,
.blog-style-default article .post-image .gem-dummy,
.blog-style-default article.sticky .post-image .gem-dummy:after,
.blog-style-timeline.blog-style-styled_list1 .item-post .post-text,
.blog-style-default article.no-image .post-image .gem-dummy,
.wpb_toggle,
.vc_toggle_title,
.page-title-style-2,
.post-tags-list a:after,
.portfolio .portfolio-item .overlay-line,
.portfolio-item .wrap > .caption,
.portfolio.portfolio-grid.background-style-dark:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption,
.portfolio.portfolio-grid.background-style-dark:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover,
.portfolio.background-style-dark .caption-bottom-line .project-button .gem-button,
.quickfinder-item .quickfinder-animation,
.gem-counter .gem-counter-animation,
.mc4wp-form input[type='email'],
.page-title-block.page-title-style-2,
.page-title-block.has-background-image,
body .widget .tagcloud a,
.wpcf7-form.gem-contact-form-white .combobox-wrapper,
.wpcf7-form.gem-contact-form-white  input:not(.gem-button-wpcf-custom),
.wpcf7-form.gem-contact-form-white .combobox-wrapper .combobox-button,
.wpcf7-form.gem-contact-form-white .combobox-wrapper .combobox-text,
.wpcf7-form.gem-contact-form-white .checkbox-sign,
.wpcf7-form.gem-contact-form-white  span.radio-sign,
.wpcf7-form.gem-contact-form-white textarea,
.diagram-wrapper.style-1 .digram-line-box .skill-line,
.blog-style-styled_list1 .post-item,
.blog-style-styled_list2 article,
.blog-style-styled_list2 .post-item,
.blog-style-styled_list2 .sticky,
.blog-style-timeline .post-item,
.blog-style-timeline .post-img,
.blog-style-timeline .post-img a .dummy,
.gem-basic-grid .vc_grid-item-mini,
.gem-basic-grid .vc_gitem-zone-c,
.shop-widget-area .widget .gem-products-content,
.blog-style-compact article,
.gem-search-form.gem-search-form-style-light .search-field,
.page-title-block.custom-page-title,
.custom-footer,
.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter .portfolio-search-filter-form,
.portfolio-filters-list.style-standard:not(.single-filter, .style-standard-mobile) .portfolio-filter-item .portfolio-filter-item-list,
.portfolio-sorting-select ul,
.thegem-popup-notification .notification-message,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab.vc_active > a,
.thegem-combobox-wrap .thegem-combobox__trigger,
.thegem-combobox-wrap .thegem-combobox__options,
.thegem-combobox-wrap .thegem-combobox__options-item,
.product-page__wrapper .product-page__nav .product-page__nav-preview,
.product-page__wrapper form.cart .quantity,
.thegem-fullscreen-search,
.thegem-fullscreen-search .search-results-section:nth-child(even) .pages-list .page-item article a,
table.variations .thegem-select {
	background-color: #ffffff;
}
.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon:before,
.gem-gallery-grid.hover-gradient .gallery-item .overlay a.icon::before,
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after {
	background-color: rgba(255, 255, 255, 0.8);
}
.portfolio-item .wrap > .caption .caption-sizable-content:after,
.portfolio.background-style-dark:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .caption-sizable-content:after,
.portfolio.background-style-dark:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .caption-sizable-content:after {
	box-shadow: 0 0 30px 45px #ffffff;
}
.blog-style-compact article .gem-compact-item-content:after {
	box-shadow: 0 5px 15px 15px #ffffff;
}
.fullwidth-block .marker-direction-inside svg,
.blog-style-styled_list1 .wrap-style,
.blog-style-styled_list2 .wrap-style,
.blog-style-timeline .wrap-style {
	fill: #ffffff;
}
.gem-image a:after,
.gem-textbox-picture a:after,
.blog-style-default article.sticky .sticky-label,
.blog-style-masonry article.sticky .sticky-label,
.blog-style-styled_list1 article.sticky .sticky-label,
.blog-style-styled_list2 article.sticky .sticky-label,
.blog-style-timeline article.sticky .sticky-label,
.justified-style-1 article.sticky .sticky-label,
.justified-style-2 article.sticky .sticky-label,
.blog-style-multi-author article.sticky .sticky-label,
.blog article .post-featured-content > a:after,
.blog .gem-simple-gallery .gem-gallery-item a:after,
.blog-style-styled_list1 .wrap-style,
.blog-style-styled_list2 .wrap-style,
.blog-style-styled_list1 article a.default:after,
.blog-style-styled_list2 article a.default:after,
.blog-style-compact article a.default:after,
.blog-style-compact-tiny-1 article a.default:after,
.blog-style-timeline .wrap-style,
#primary-navigation #primary-menu > li.menu-item-cart > a .minicart-item-count,
.mobile-cart-position-top #site-header .mobile-cart .minicart-item-count,
body .hamburger-minicart > a .minicart-item-count,
body #primary-navigation #primary-menu > li.menu-item-cart > a.circle-count .minicart-item-count,
.woocommerce ul.woocommerce-error li:before,
.pricing-column-top-choice .pricing-column-top-choice-text,
.widget .onsale:after,
.widget_shopping_cart ul li.sale .minicart-image:before,
#wp-calendar caption,
.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a,
.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a:hover,
.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a,
.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a:hover,
.widget.widget_calendar a:hover,
.shop-widget-area .onsale,
.socials-sharing li a:hover:after,
.wpb_wrapper .vc_progress_bar .vc_label_units,
.portfolio-item .image .overlay .links a.icon:before,
.portfolio.hover-title .portfolio-item .caption .title,
.portfolio.hover-title .portfolio-item .caption .details,
.portfolio.hover-title.columns-4 .portfolio-item .caption .title,
.portfolio.hover-title .portfolio-item .caption .subtitle,
.portfolio.hover-title .portfolio-item .caption .info,
.portfolio.hover-title .portfolio-item .caption .info a,
.portfolio.hover-default .portfolio-item .image .overlay .links .caption .info a,
.portfolio .portfolio-item .image .overlay .links .portfolio-sharing-pane .socials-item,
.portfolio.products .portfolio-item .image .overlay .portfolio-icons.product-bottom a.added_to_cart,
.portfolio.products .portfolio-item .image .overlay .portfolio-icons.product-bottom .yith-wcwl-wishlistaddedbrowse a,
.news-grid.portfolio.hover-title .portfolio-item .caption .title > *,
.news-grid.portfolio.hover-default .comments-link a,
.news-grid.portfolio.hover-vertical-sliding .comments-link a,
.news-grid.portfolio.hover-gradient .comments-link a,
.news-grid.portfolio.hover-circular .comments-link a,
.news-grid.portfolio.hover-default .zilla-likes,
.news-grid.portfolio.hover-vertical-sliding .zilla-likes,
.news-grid.portfolio.hover-gradient .zilla-likes,
.news-grid.portfolio.hover-circular .zilla-likes,
.news-grid.hover-default .portfolio-item .image .links .caption .author .author-name,
.news-grid.hover-default .portfolio-item .image .links .caption .author .author-name a,
.news-grid.hover-vertical-sliding .portfolio-item .image .links .caption .author .author-name,
.news-grid.hover-vertical-sliding .portfolio-item .image .links .caption .author .author-name a,
.news-grid.hover-default .portfolio-item .image .links .caption .description .subtitle,
.news-grid.hover-vertical-sliding .portfolio-item .image .links .caption .description .subtitle,
.news-grid.hover-horizontal-sliding .portfolio-item .image .links .caption .description .subtitle,
.news-grid.hover-vertical-sliding .portfolio-item .image .links .caption .post-date,
.news-grid.hover-horizontal-sliding .portfolio-item .image .links .caption .post-date,
.news-grid.hover-gradient .portfolio-item .image .links .caption .post-date,
.news-grid.hover-circular .portfolio-item .image .links .caption .post-date,
.news-grid.portfolio.hover-vertical-sliding .portfolio-item .image .overlay .links .caption .info a,
.news-grid.portfolio.hover-vertical-sliding .portfolio-item .image .overlay .links .caption .info span.sep,
.news-grid.hover-gradient .portfolio-item .image .links .caption .author .author-name,
.news-grid.hover-gradient .portfolio-item .image .links .caption .author .author-name a,
.news-grid.hover-circular .portfolio-item .image .links .caption .author .author-name,
.news-grid.hover-circular .portfolio-item .image .links .caption .author .author-name a,
.news-grid.hover-gradient.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .subtitle,
.news-grid.hover-circular.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .subtitle,
.news-grid.hover-circular .portfolio-item .image .links .caption .post-date,
.news-grid .portfolio-item.double-item-style-alternative .highlight-item-alternate-box .post-date,
.news-grid .portfolio-item.double-item-style-alternative .highlight-item-alternate-box .title > *,
.news-grid .portfolio-item.double-item-style-alternative .highlight-item-alternate-box .info a,
.portfolio-filters a:hover,
.portfolio-filters a.active,
.portfolio.background-style-gray:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .title,
.portfolio.background-style-gray:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .title,
.portfolio.background-style-dark .portfolio-item .wrap > .caption .title,
.gallery-item .overlay .title,
.gallery-item .overlay .subtitle,
.gallery-item .overlay a.icon:before,
.gem-gallery .gem-gallery-preview-carousel-wrap:hover .gem-prev:after,
.gem-gallery .gem-gallery-preview-carousel-wrap:hover .gem-next:after,
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after,
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-caption,
.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after,
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after,
.gem-simple-gallery .gem-gallery-item a:after,
.post-tags-list a:hover,
div.blog article a.youtube:after,
div.blog article a.vimeo:after,
div.blog article a.self_video:after,
#colophon  .recentcomments .comment-author-link a:hover,
#colophon .project_info-item-style-1 .project_info-item-title,
#colophon .gem-contacts-item a:hover,
#colophon .widget_calendar td a,
#colophon .widget.widget_search .gem-button:hover,
#colophon .wpcf7 .wpcf7-form .contact-form-footer .wpcf7-submit:hover,
#colophon #mc4wp_submit:hover,
body .widget .tagcloud a:hover,
.gem-table-responsive.gem-table-style-3 .tabletolist > li .titles,
.gem-table-style-3 thead tr th,
.gem-table-style-3 thead h6,
.breadcrumbs a,
.bc-devider:before,
body .vc_grid-container ul.vc_grid-filter li.vc_grid-filter-item.vc_active > span,
body .vc_grid-container ul.vc_grid-filter li.vc_grid-filter-item:hover > span,
.vc_grid-item.gem-media-grid .vc_gitem-post-data-source-post_title a,
.gem-media-grid-2 .midia-grid-item-post-author,
.gem-media-grid-2 .midia-grid-item-post-author span a,
.widget .gem-dummy:after,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .info a,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .info span.sep,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .subtitle,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .info,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .title,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .portfolio-sharing-pane .socials-item,
.diagram-wrapper.style-3 .digram-line-box  .skill-title,
.gem-blog-slider .post-title a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li .mega-label,
.gem-search-form.gem-search-form-style-dark .search-submit,
.gem-attribute-selector .gem-attribute-options li .text,
.gem-attribute-selector.type-label .gem-attribute-options li.selected .label,
.gem-attribute-selector.type-label .gem-attribute-options li.selected:hover .label,
body .portfolio-filters-list .portfolio-filter-item.attribute-type-label ul li a.active,
body .portfolio-filters-list .portfolio-filter-item.attribute-type-label ul li a.active:hover,
body .portfolio-filters-list .widget_layered_nav ul li.chosen a.attribute-type-label {
	color: #ffffff;
}
.news-grid.portfolio.hover-default .portfolio-item .grid-post-meta .comments-link,
.news-grid.portfolio.hover-vertical-sliding .portfolio-item .grid-post-meta .comments-link,
.news-grid.portfolio.hover-gradient .portfolio-item .grid-post-meta .comments-link,
.news-grid.portfolio.hover-circular .portfolio-item .grid-post-meta .comments-link {
	border-right-color: #ffffff;
}
.portfolio.hover-default .portfolio-item .image .overlay .links .caption .info span.sep,
.portfolio.hover-vertical-sliding .portfolio-item .image .overlay .links .caption .info span.sep,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .info span.sep,
.portfolio.hover-circular .portfolio-item .image .overlay .links .caption .info span.sep,
.news-grid .portfolio-item.double-item-style-alternative .highlight-item-alternate-box .info span.sep,
.news-grid.portfolio.hover-circular .portfolio-item .image .overlay .links .caption .info span.sep {
	border-left-color: #ffffff;
}
@media (min-width: 768px) {
	.blog-style-timeline .item-post .post-text:after {
		border-right: 20px solid #ffffff;
	}
}
@media (max-width: 768px) {
	.blog-style-timeline .item-post .post-text:after {
		border-bottom: 30px solid #ffffff;
	}
}
@media (max-width: 768px) {
	.blog-style-timeline .post-text:after,
	.blog-style-timeline.blog-style-styled_list1 .post-text:after,
	.blog-style-timeline.blog-style-styled_list2 .post-text:after {
		border-bottom: 30px solid #ffffff;
	}
}
.blog-style-styled_list1 .post-img a,
.blog-style-styled_list2 .post-img a,
.blog-style-timeline .post-img a {
	border: 3px solid #ffffff;
}
@media (min-width: 768px) {
	body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels {
		background-color: #ffffff;
	}
}
.preloader .skeleton .widget:after,
.preloader .skeleton .portfolio-item:after,
.preloader .skeleton .skeleton-sorting:after,
.preloader .skeleton .products-category-item:after {
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 80%);
}


#colophon .gem-custom-mailchimp input[type="email"] {
	background-color: #C7CDFFFF;
}

:root {
	--styled-bg-color: #f4f6f7;
}
.gem-dummy,
.default-background,
.sc-wrapbox-style-6 .sc-wrapbox-inner,
.gem-table thead,
.pricing-title-new,
.highlighted .pricing-title,
.gem-clients-type-carousel-grid .gem-client-item a,
.gem_client-carousel .gem-client-item a,
.before-products-list,
.shipping-calculator-form-wrap,
.woocommerce-message,
.woocommerce-info,
ul.woocommerce-error li,
#primary-menu.no-responsive > li.menu-item-cart .widget_shopping_cart_content .minicart-bottom,
.hamburger-minicart .widget_shopping_cart_content .minicart-bottom,
.woocommerce .checkout #payment .payment_methods li .payment_box,
.checkout-cart-info > td,
.woocommerce table.shop_table.order-details thead tr th,
.woocommerce #customer_login .col .login-box,
.widget_recently_viewed_products ul.product_list_widget,
.widget .searchform,
.gem-tabs-style-1 .gem_tabs_nav li,
.gem-tour-style-1 .gem_tabs_nav li,
.gem-tabs-style-1 .resp-accordion.resp-tab-active,
.gem-tour-style-1 .resp-accordion.resp-tab-active,
.gem-tabs-style-2 .resp-accordion.resp-tab-active,
.blog-style-timeline.blog-style-styled_list1 .item-post,
.blog-style-default article .post-image .gem-dummy:after,
.blog-style-default article.sticky .post-image .gem-dummy,
.widget_recent_reviews .product_list_widget .wp-post-image,
.price_slider.ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all,
.post-author-block,
.digram-line-box,
#calendar_wrap,
.widget_recent_comments li,
.project_info-item-style-1,
.widget_mc4wp_widget form,
.widget_submenu  ul ul,
.widget_nav_menu  ul ul,
.widget_pages ul ul,
.widget_categories ul ul,
.widget_product_categories ul ul,
.widget_recent_entries ul,
body .testimonials-style-2-text.gem-testimonial-text,
.gem-teams-item-wrap,
.gem-picturebox-text,
body .testimonials-style-1-image,
body .testimonials-style-1-text.gem-testimonial-text,
body .testimonials-style-1-name,
body .testimonials-style-1-post,
body .testimonials-style-1-teg,
body .gem-table-style-3 tr:nth-child(odd) td:nth-child(odd),
.blog-style-masonry  .description,
.style2.gem-testimonials,
.style2.gem-testimonials.fullwidth-block  .container,
.diagram-wrapper.style-3 .digram-line-box .skill-line,
.blog-style-styled_list1 article,
.blog-style-styled_list1 .post-img a .dummy,
.blog-style-styled_list1 .sticky .post-item,
.blog-style-styled_list2 .sticky .post-item,
.blog-style-timeline .sticky .post-item,
.project-info-shortcode-style-default .project-info-shortcode-item,
.project_info-item-style-2 .project_info-item,
.gem-basic-grid-2 .vc_gitem-zone-c .vc_gitem-col,
.quickfinder-style-vertical-1 .quickfinder-item-info,
.quickfinder-style-vertical-2 .quickfinder-item-info,
.justified-style-2 .post-content-wrapper,
.blog-style-multi-author .post-item,
.project-info-shortcode-style-2 .project-info-shortcode-item,
.portfolio:not(.background-style-transparent):not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption,
.portfolio:not(.background-style-transparent):not(.disabled-hover):not(.background-style-transparent).list-style .portfolio-item .wrap > .caption:hover,
.portfolio.background-style-gray .portfolio-item .wrap > .caption,
.products .product-inner:hover,
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list ul li span.count,
.portfolio-filters-list .widget ul li span.count,
.portfolio-selected-filters .portfolio-selected-filter-item,
.portfolio-filters-list .portfolio-search-filter .portfolio-search-filter-form input,
.portfolio-top-panel-right .portfolio-search-filter .portfolio-search-filter-form input,
.portfolio-filters-list .widget_product_search input,
.portfolio-filters-list.style-standard:not(.style-standard-mobile) .portfolio-filter-item .portfolio-filter-item-list .price-range-slider .slider-amount,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading:hover,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading:focus,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab > a,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab > a:hover,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab > a:focus,
body .agency-sparta-style.yikes-easy-mc-form label.label-inline > input,
body .splash-shop-3-style.yikes-easy-mc-form label.label-inline > input,
body .digital-agency-mailchimp.yikes-easy-mc-form label > input[type="email"],
body .business-sulutions-mailchimp input[type=email],
body .online-shop-mailchimp.yikes-easy-mc-form label > input,
body .woocommerce .shop_table tr.cart_item:nth-child(2n) td,
body .woocommerce .cart_totals table th,
body .woocommerce-checkout-one-page .checkout-payment,
#page-title.woocommerce-cart-checkout,
body .pricing-table-style-1 .pricing-column,
body .pricing-table-style-3 .pricing-column,
body .gem-woocommerce-tabs #tab-additional_information .shop_attributes tr:nth-child(odd) th,
body .mobile-cart-position-top #site-header .mobile-cart > .minicart,
body #primary-menu.no-responsive > li.menu-item-cart > .minicart .total,
body #primary-menu.no-responsive > li.menu-item-cart > .minicart .buttons,
body .hamburger-minicart > .minicart .total,
body .hamburger-minicart > .minicart .buttons,
body .mobile-cart-position-top #site-header .mobile-cart .total,
body .mobile-cart-position-top #site-header .mobile-cart .buttons,
body .blogbody -style-timeline_new.blog-style-timeline article .post-timeline-elements .timeline-date-title,
body .blog-style-timeline_new.blog-style-timeline article .post-timeline-elements .timeline-date-title-right,
body .gdpr-privacy-preferences-footer,
body .btn-gdpr-privacy-save-preferences,
.thegem-fullscreen-search .top-searches .top-search-item,
.thegem-fullscreen-search .search-results-section:nth-child(even),
.thegem-fullscreen-search .search-results-section:nth-child(odd) .pages-list .page-item article a,
.thegem-fullscreen-search .search-results-section:nth-child(odd).search-results-post .portfolio-item .wrap > .caption,
body .woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .thegem-te-checkout-payment #payment.woocommerce-checkout-payment .payment_methods .woocommerce-notice {
	background-color: #f4f6f7;
}
.portfolio-item:hover .wrap,
.portfolio-items-masonry .portfolio-item:hover .caption {
	border-bottom-color: #f4f6f7;
}
.testimonials_svg svg,
.blog-style-styled_list1 .sticky .wrap-style,
.blog-style-styled_list2 .sticky .wrap-style,
body .blog-style-timeline .sticky .wrap-style,
body .testimonials-style-2-item .wrap-style,
body .testimonials-style-1-item .wrap-style,
.qf-svg-arrow-left,
.qf-svg-arrow-right,
body .blog-style-multi-author .wrap-style {
	fill: #f4f6f7;
}
.blog-style-styled_list2 .sticky .wrap-style {
	stroke: #f4f6f7;
}
.gem-team-style-1 .team-person,
.gem-team-style-6 .team-person,
.gem-wrapbox-style-2,
.gem-team-style-5 .team-person:hover .image-hover,
.products .product-inner:hover,
body .blog-style-timeline_new.blog-style-timeline article .post-timeline-elements .pointer,
body .blog-style-timeline_new.blog-style-timeline article .post-timeline-elements .pointer-right {
	border-color: #f4f6f7;
}
.portfolio:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .caption-sizable-content:after,
.portfolio:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .caption-sizable-content:after,
.portfolio.background-style-gray .portfolio-item .wrap > .caption .caption-sizable-content:after {
	box-shadow: 0 0 30px 45px #f4f6f7;
}
@media ( max-width: 767px ){
	.gem-table-responsive.gem-table-style-3 .tabletolist > li  li:nth-child(odd) .row_headers{
		background-color: #f4f6f7;
	}
}

:root {
	--thegem-to-styled-color1: #00bcd4;
	--thegem-to-styled-color1-03: #00bcd44d;
}
.gem-styled-color-1,
.gem-date-color,
.gem-table thead th,
.woocommerce table.shop_table.order-details thead tr th,
.gem_accordion_header a,
.gem-testimonial-name,
.post-author-avatar:after,
.comments-link a:hover,
.shipping_calculator .shipping-calculator-button:before,
.widget_calendar caption,
.widget.widget_search .gem-button,
#wp-calendar thead tr th,
.widget.widget_calendar a:hover,
.gem-teams-phone,
.resp-tab-active,
.wpb_toggle,
.vc_toggle_title h4,
.account-tittle,
.blog-style-timeline .post-time span,
.blog.blog-style-masonry article .description .tags a.active,
.widget_tweets .twitter-box .jtwt_tweet:before,
.jtwt_tweet_text.icon-twitter a,
.gem-pp-posts-date,
.gem-latest-news-title span,
.widget.widget_search .gem-button:hover,
.mc-text span,
.blog-style-styled_list1 .post-time,
.blog-style-styled_list2 .post-time,
.blog-style-multi-author .post-date,
.comment-form label em,
.comment-awaiting-moderation,
.woocommerce-before-cart .cart-short-info .items-count,
.shop_table td.product-remove .remove,
.products .product-info .price ins,
.products .product-info .price .amount,
.comment-form-rating .stars a.active,
.comment-form-rating .stars a:hover,
.woocommerce .checkout .woocommerce-billing-collumn .form-row label abbr,
.woocommerce .edit-address-form .woocommerce-billing-collumn .form-row label abbr,
.woocommerce ul.woocommerce-error li,
.woocommerce .checkout-login-box .login .form-row label .required,
.woocommerce .checkout-lost-password-box .form-row label .required,
.woocommerce #customer_login .col .login-box .form-row label .required,
body .mobile-cart .mobile-cart-header .mobile-cart-header-title:before,
body .woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total .order-total td .amount,
body .woocommerce ul.order_details li:before,
.read-more-link:before,
.post-related-posts h2:before,
.gem_accordion_header.ui-accordion-header-active .ui-accordion-header-icon:before,
.form-edit-adress abbr,
.post-author-info .categories a,
.post-author-info .categories,
.block-navigation-prev a:before,
.block-navigation-next a:after,
h4.wpb_toggle_title_active:after,
.vc_toggle_active .vc_toggle_title:after,
.resp-accordion.resp-tab-active:after,
.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption .info a,
.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption .info span.sep,
.blog.blog-style-masonry article .description .info .more-link:before,
.portfolio.hover-new-horizontal-sliding .portfolio-item .image .overlay .links .caption .info a,
.portfolio.hover-new-horizontal-sliding .portfolio-item .image .overlay .links .caption .info span.sep,
.version-new.news-grid.hover-new-horizontal-sliding .portfolio-item .links .caption .grid-post-meta .grid-post-meta-comments-likes a,
.portfolio.hover-default-horizontal-sliding .portfolio-item .image .overlay .links .caption .info a,
#colophon .widget_nav_menu ul.menu li.menu-item-current > a,
#colophon .widget_submenu > div > ul li.menu-item-current > a,
#colophon .widget_nav_menu ul.menu li.menu-item-active > a,
#colophon .widget_submenu > div > ul li.menu-item-active > a {
	color: #00bcd4;
}

.portfolio.hover-default-horizontal-sliding .portfolio-item .image .overlay .links .caption .info span.sep {
	border-left-color: #00bcd4;
}

.portfolio-filters a.active,
.post-tags-list a:hover,
.portfolio .portfolio-item .caption .caption-separator,
.portfolio .portfolio-item .caption .caption-separator-line:after,
.portfolio .portfolio-item .caption .caption-separator-line-hover:after,
body.search .page-title-block,
.widget_pages > ul li.current_page_item  > a:before,
.widget_pages > ul  li li .current_page_item > a:before,
.widget_nav_menu li li .current-menu-item  > a:before,
.widget_submenu li li .menu-item-active  > a:before,
.widget_nav_menu .current-menu-ancestor > a:before,
.widget_submenu .menu-item-active> a:before,
.widget_submenu .current-menu-ancestor > a:before,
.widget_nav_menu li li a:hover:before,
.widget_submenu li li a:hover:before,
.widget_categories li li a:hover:before,
.widget_categories .current-cat a:before,
.widget_categories > ul li.current-cat-parent > a:before,
.widget_product_categories li li a:hover:before,
.widget_product_categories .current-cat a:before,
.widget_product_categories > ul li.current-cat-parent > a:before,
.widget_pages > ul li li.page_item_has_children.current_page_ancestor > a:before,
.widget_pages  ul li li a:hover:before,
#colophon .widget_calendar td a,
body .widget .tagcloud a:hover,
.gem-table-responsive.gem-table-style-3 .tabletolist > li:nth-child(odd) .titles,
.gem-table-style-3 thead tr th:nth-child(odd),
.site-footer .widget_text ul li:before,
.page-content.content-none .searchform .searchform-submit .gem-button,
.wpcf7-form .gem-button:not(.gem-button-wpcf-custom),
.wpcf7-form input[type='submit']:not(.gem-button-wpcf-custom),
.wpcf7-form.gem-contact-form-white input[type='submit']:not(.gem-button-wpcf-custom),
.wpcf7-form.gem-contact-form-dark input[type='submit']:not(.gem-button-wpcf-custom),
body .vc_grid-container ul.vc_grid-filter li.vc_grid-filter-item.vc_active,
.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b,
.ui-slider-handle.ui-state-default.ui-corner-all,
body #primary-menu.no-responsive > li.menu-item-cart > .minicart ul li.sale .minicart-image:before,
body .hamburger-minicart > .minicart ul li.sale .minicart-image:before,
body.mobile-cart-position-top #site-header .mobile-cart ul li.sale .minicart-image:before,
.products .product-info .rating-empty,
.woocommerce-cart-form .actions .checkout-button,
.wc-proceed-to-checkout .checkout-button,
.widget_shopping_cart_content .buttons a.checkout,
body .products .category-overlay-separator,
#primary-menu.no-responsive > li.menu-item-cart .widget_shopping_cart_content .buttons a.checkout,
.hamburger-minicart .widget_shopping_cart_content .buttons a.checkout,
.woocommerce ul.woocommerce-error li:before,
.widget .product_list_widget .onsale,
.shop-widget-area .onsale,
.widget_shopping_cart ul li.sale .minicart-image:before,
.gem-team-style-5 .team-person:hover .image-hover,
.blog-style-default article.sticky .sticky-label,
.blog-style-default article.sticky .sticky-label:after,
.blog-style-masonry article.sticky .sticky-label,
.blog-style-masonry article.sticky .sticky-label:before,
.blog-style-masonry article.sticky .sticky-label:after,
.blog-style-styled_list1 article.sticky .sticky-label,
.blog-style-styled_list1 article.sticky .sticky-label:before,
.blog-style-styled_list1 article.sticky .sticky-label:after,
.blog-style-styled_list2 article.sticky .sticky-label,
.blog-style-styled_list2 article.sticky .sticky-label:before,
.blog-style-styled_list2 article.sticky .sticky-label:after,
.blog-style-timeline article.sticky .sticky-label,
.blog-style-timeline article.sticky .sticky-label:before,
.blog-style-timeline article.sticky .sticky-label:after,
.justified-style-1 article.sticky .sticky-label,
.justified-style-2 article.sticky .sticky-label,
.justified-style-1 article.sticky .sticky-label:before,
.justified-style-2 article.sticky .sticky-label:before,
.justified-style-1 article.sticky .sticky-label:after,
.justified-style-2 article.sticky .sticky-label:after,
.blog-style-multi-author article.sticky .sticky-label,
.blog-style-multi-author article.sticky .sticky-label:before,
.blog-style-multi-author article.sticky .sticky-label:after,
.mc-form #mc4wp_submit:hover,
#primary-navigation #primary-menu > li.menu-item-cart > a .minicart-item-count,
#primary-navigation #primary-menu > li.menu-item-cart > a .minicart-item-count:after,
body.mobile-cart-position-top #site-header .mobile-cart .minicart-item-count,
.hamburger-minicart > a .minicart-item-count,
body .woocommerce .checkout-signin .checkout-create-account button,
.gem-featured-posts-slider-dots a.selected > span,
.thegem-tabs__nav-item sup,
.thegem-accordion__item-title sup,
.thegem-combobox-wrap .thegem-combobox__options-item:hover,
.thegem-combobox-wrap .thegem-combobox__options-item.selection,
.gem-attribute-selector.type-label .gem-attribute-options li.selected,
body .portfolio-filters-list .portfolio-filter-item.attribute-type-label ul li a.active,
body .portfolio-filters-list .widget_layered_nav ul li.chosen a.attribute-type-label {
	background-color: #00bcd4;
}
.header-style-2 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-current > a,
.header-style-2 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-active > a,
.header-style-2 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li:hover > a,
.header-style-3 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-current > a,
.header-style-3 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-active > a,
.header-style-3 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li:hover > a,
.header-style-2 #primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li.menu-item-current > a,
.header-style-2 #primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li.menu-item-active > a,
.header-style-3 #primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li.menu-item-current > a,
.header-style-3 #primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li.menu-item-active > a,
.header-layout-fullwidth_hamburger.logo-position-right #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-current > a,
.header-layout-fullwidth_hamburger.logo-position-right #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-active > a,
.header-layout-fullwidth_hamburger.logo-position-right #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li:hover > a,
.header-layout-fullwidth_hamburger.logo-position-left #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-current > a,
.header-layout-fullwidth_hamburger.logo-position-left #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-active > a,
.header-layout-fullwidth_hamburger.logo-position-left #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li:hover > a,
#thegem-perspective .perspective-navigation #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-current > a,
#thegem-perspective .perspective-navigation #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-active > a,
#thegem-perspective .perspective-navigation #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li:hover > a,
.mobile-menu-layout-default .primary-navigation.responsive ul > li.menu-item-current > a,
.mobile-menu-layout-default .primary-navigation.responsive ul > li.menu-item.menu-item-active a,
body .widget .tagcloud a:hover,
.gem-media-grid .vc_gitem-animated-block .vc_gitem-zone-b .vc_separator .vc_sep_holder .vc_sep_line,
.products .product .product-info .product-rating .empty-rating:before,
.gem-attribute-selector.type-label .gem-attribute-options li.selected,
body .portfolio-filters-list .portfolio-filter-item.attribute-type-label ul li a.active,
body .portfolio-filters-list .widget_layered_nav ul li.chosen a.attribute-type-label,
.thegem-fullscreen-search .pages-list .page-item article:hover a {
	border-color: #00bcd4;
}
.header-style-2 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-current > a,
.header-style-2 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-active > a,
.header-style-2 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li:hover > a,
.header-style-2 #primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-current > a,
.header-style-2 #primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-active > a,
.header-style-2 #primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul > li > ul li:hover > a,
.header-style-3 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-current > a,
.header-style-3 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li.menu-item-active > a,
.header-style-3 #primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li:hover > a,
.header-style-3 #primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-current > a,
.header-style-3 #primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-active > a,
.header-style-3 #primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul > li > ul li:hover > a {
	border-color: ;
}
body .woocommerce-checkout-one-page #customer_details > div:after {
	border-bottom-color: #00bcd4;
}

:root {
	--thegem-to-styled-color2: #99a9b5;
}
.gallery-item .overlay .subtitle a,
.portfolio.background-style-gray:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .zilla-likes:hover,
.portfolio.background-style-gray:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .zilla-likes:hover,
.single-product-content .price del,
.shop_table td.product-subtotal,
.page-content.content-none .searchform input,
.woocommerce table.shop_table.order-details tr.cart_item td.product-name .product-info .styled-subtitle,
.woocommerce table.shop_table.order-details tr.order_item td.product-name .product-info .styled-subtitle,
.woocommerce table.shop_table.order-details tr.cart_item td.product-name .product-info h4 a,
.woocommerce table.shop_table.order-details tr.order_item td.product-name .product-info h4 a,
.widget_shopping_cart_content .quantity,
.woocommerce .checkout_coupon .styled-subtitle,
.woocommerce table.shop_table.order-details tr.cart_item td.product-total .amount,
.woocommerce table.shop_table.order-details tr.order_item td.product-total .amount,
.woocommerce .gem-products-price ins,
.gem-products-price > span,
.widget-area .reviewer,
.widget_shopping_cart_content .quantity,
.widget_shopping_cart_content .total .amount,
.zilla-likes.active,
.zilla-likes.active:hover,
body .pricing-table-style-1 .pricing-price-subtitle,
.post-tags-list a,
.version-default.news-grid.hover-default-horizontal-sliding .portfolio-item .image .links .caption .grid-post-meta a.icon.share:before,
.version-default.news-grid.hover-default-horizontal-sliding .portfolio-item .links .caption .grid-post-meta .comments-link a,
.version-default.news-grid.hover-default-horizontal-sliding .portfolio-item .links .caption .grid-post-meta .portfolio-sharing-pane .socials-item,
.version-default.news-grid.hover-default-zooming-blur .portfolio-item .image .overlay .links .caption .grid-post-meta a.icon.share:before,
.version-default.news-grid.hover-default-zooming-blur .portfolio-item .image .overlay .links .portfolio-sharing-pane .socials-item,
.version-default.news-grid.hover-default-zooming-blur .portfolio-item .links .caption .grid-post-meta .comments-link a {
	color: #99a9b5;
}
.version-default.news-grid.hover-default-horizontal-sliding .portfolio-item .image .links .caption .grid-post-meta .comments-link + .post-meta-likes,
.version-default.news-grid.hover-default-horizontal-sliding .portfolio-item .image .links .caption .grid-post-meta .grid-post-share + .grid-post-meta-comments-likes .comments-link,
.version-default.news-grid.hover-default-horizontal-sliding .portfolio-item .image .links .caption .grid-post-meta .grid-post-share + .grid-post-meta-comments-likes .post-meta-likes,
.version-default.news-grid.hover-default-zooming-blur .portfolio-item .image .links .caption .grid-post-meta .comments-link + .post-meta-likes,
.version-default.news-grid.hover-default-zooming-blur .portfolio-item .image .links .caption .grid-post-meta .grid-post-share + .grid-post-meta-comments-likes .comments-link,
.version-default.news-grid.hover-default-zooming-blur .portfolio-item .image .links .caption .grid-post-meta .grid-post-share + .grid-post-meta-comments-likes .post-meta-likes {
	border-left-color: #99a9b5;
}
.widget.widget_search .gem-button,
.widget_nav_menu li li a:before,
.widget_submenu li li a:before,
.widget_pages li li a:before,
.widget_categories li li a:before,
.widget_product_categories li li a:before,
#wp-calendar caption,
body .vc_grid-container ul.vc_grid-filter li.vc_grid-filter-item:hover {
	background-color: #99a9b5;
}
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page a {
	border: 2px solid #99a9b5;
}
body .widget .tagcloud a{
	border: 1px solid #99a9b5;
}

:root {
	--thegem-to-styled-color3: #F44336FF;
	--thegem-to-styled-color3-03: #F44336FF4d;
}

.zilla-likes,
span.req,
#wp-calendar thead tr th:last-child,
.widget_pages > ul  li li li.current_page_item > a,
.widget_nav_menu li li li a:hover,
.widget_nav_menu li li li.current-menu-item > a,
.widget_submenu li li li.menu-item-active > a,
.widget_submenu li li li a:hover,
.widget_pages ul li li li a:hover,
.widget_categories li li li a:hover,
.widget.widget_categories > ul li li.current-cat > a,
.widget_product_categories li li li a:hover,
.widget.widget_product_categories > ul li li.current-cat > a,
.products .product-bottom .yith-wcwl-wishlistexistsbrowse a:before,
.portfolio.products .portfolio-item .image .overlay .portfolio-icons.product-bottom .yith-wcwl-wishlistexistsbrowse a:before,
.news-grid.portfolio.hover-zooming-blur .zilla-likes.active,
.version-new.news-grid.hover-new-zooming-blur .portfolio-item .links .caption .grid-post-meta .post-meta-likes a,
.version-default.news-grid.hover-default-zooming-blur .portfolio-item .links .caption .grid-post-meta .post-meta-likes a,
.version-new.news-grid .portfolio-item .wrap > .caption .grid-post-meta .zilla-likes:before,
.version-default.news-grid.hover-default-horizontal-sliding .portfolio-item .links .caption .grid-post-meta .grid-post-meta-comments-likes .zilla-likes {
	color: #F44336FF;
}
.widget_pages > ul  li li li.current_page_item > a:before,
.widget_nav_menu li li li.current-menu-item > a:before,
.widget_submenu li li li.menu-item-active > a:before,
.widget_nav_menu li li li a:hover:before,
.widget_submenu li li li a:hover:before,
.widget_pages li li li a:hover:before,
.widget_categories li li li a:hover:before,
.widget_product_categories li li li a:hover:before,
.widget_nav_menu div ul li li li a:hover:before,
.widget_submenu div ul li li li a:hover:before,
.widget_pages  ul li li li a:hover:before,
.widget_categories ul li li li a:hover:before,
.widget.widget_categories > ul li.current-cat > a:before,
.widget_product_categories ul li li li a:hover:before,
.widget.widget_product_categories > ul li.current-cat > a:before,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li .mega-label {
	background-color: #F44336FF;
}

:root {
	--thegem-to-styled-color4: #212227;
}

#primary-menu.no-responsive .vertical-minisearch .sf-submit-icon:after,
body .woocommerce .woocommerce-cart-form .actions .submit-buttons .checkout-button-button .checkout-button,
body .woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button,
body .woocommerce .payment_methods .radio-sign:before,
body .products .product-category a:hover .category-overlay,
.related-posts-carousel .related-posts-navigation .gem-button.related-posts-prev:hover,
.related-posts-carousel .related-posts-navigation .gem-button.related-posts-next:hover,
.portfolio.background-style-gray:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption,
.portfolio.background-style-gray:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover,
.portfolio.background-style-dark .portfolio-item .wrap > .caption,
.gem-attribute-selector .gem-attribute-options li .text,
.gem-attribute-selector .gem-attribute-options li .image-hover {
	background-color: #212227;
}
body .woocommerce .woocommerce-cart-form .actions .submit-buttons .checkout-button-button .checkout-button:hover,
body .woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button:hover,
.related-posts-carousel .related-posts-navigation .gem-button.related-posts-prev:hover,
.related-posts-carousel .related-posts-navigation .gem-button.related-posts-next:hover,
body .woocommerce-cart-checkout-steps-content .step.active,
body .gem-attribute-selector.type-color .gem-attribute-options li.selected,
body .gem-attribute-selector.type-image .gem-attribute-options li.selected,
body .portfolio-filters-list .portfolio-filter-item.attribute-type-color ul li a.active .color:before,
body .portfolio-filters-list .portfolio-filter-item.attribute-type-color ul li a:hover .color:before,
body .portfolio-filters-list .widget_layered_nav ul li.chosen a.attribute-type-color .color:before,
body .portfolio-filters-list .widget_layered_nav ul li a.attribute-type-color:hover .color:before,
body .portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li a.active .image:before,
body .portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li a:hover .image:before,
body .portfolio-filters-list .widget_layered_nav ul li.chosen a.attribute-type-image .image:before,
body .portfolio-filters-list .widget_layered_nav ul li a.attribute-type-image:hover .image:before {
	border-color: #212227;
}
.zilla-likes:hover,
body .woocommerce .woocommerce-cart-form .actions .submit-buttons .checkout-button-button .checkout-button:hover,
body .woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button:hover,
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .woocommerce-order-overview li strong,
.news-grid.portfolio.hover-default .zilla-likes:hover,
.news-grid.portfolio.hover-vertical-sliding .zilla-likes:hover,
.news-grid.portfolio.hover-gradient .zilla-likes:hover,
.news-grid.portfolio.hover-circular .zilla-likes:hover,
.news-grid.portfolio.hover-default .comments-link a:hover,
.news-grid.portfolio.hover-vertical-sliding .comments-link a:hover,
.news-grid.portfolio.hover-gradient .comments-link a:hover,
.news-grid.portfolio.hover-circular .comments-link a:hover,
.version-new.news-grid .portfolio-item .wrap > .caption .author,
.gem-featured-posts-slider-nav.style-icon-1 a:hover,
.gem-featured-posts-slider-nav.style-icon-2 a:hover,
.gem-featured-posts-slider-nav.style-icon-3 a:hover,
#primary-menu.no-responsive .vertical-minisearch.menu-item-ajax-search .sf-submit-icon:after,
.vertical-menu-item-widgets .vertical-minisearch.menu-item-ajax-search .sf-submit-icon:after,
#primary-menu.no-responsive .vertical-minisearch.menu-item-ajax-search .sf-input,
.vertical-menu-item-widgets .vertical-minisearch.menu-item-ajax-search .sf-input {
	color: #212227;
}
body .gem-attribute-selector .gem-attribute-options li .text:after,
body .gem-attribute-selector .gem-attribute-options li .image-hover:after {
	border-top-color: #212227;
}


:root {
	--thegem-to-divider-color: #dfe5e8;
}

.gem-default-divider,
.portfolio-filters-list.style-hidden .portfolio-filters-area-scrollable .portfolio-filter-item,
.portfolio-filters-list.style-sidebar .portfolio-filters-area-scrollable .portfolio-filter-item,
.portfolio-filters-list .widget-area .widget,
.thegem-accordion__item{
	border-top: 1px solid #dfe5e8;
}
.portfolio-filters-list.style-standard-mobile .portfolio-filters-area-scrollable .portfolio-filter-item {
	border-top: 1px solid #dfe5e8;
}
.blog-style-default article:not(.sticky),
.thegem-accordion__item:last-child,
.thegem-fullscreen-search .sf-input.thegem-fullscreen-searchform-input,
.ajax-minisearch-results .search-results-section {
	border-bottom: 1px solid #dfe5e8;
}
@media (min-width: 992px) {
	.portfolio-filter-tabs.style-alternative.separator {
		border-bottom: 1px solid #dfe5e8;
	}
}
@media (max-width: 991px) {
	.portfolio-filter-tabs.style-alternative.separator .portfolio-filter-tabs-list {
	border-top: 1px solid #dfe5e8;
	}
}
.skill-line,
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list .price-range-slider .slider-range,
.thegem-tabs__nav-line,
.ajax-minisearch-results::-webkit-scrollbar-thumb {
	background-color: #dfe5e8;
}

:root {
	--thegem-to-box-border-color: #dfe5e8;
}
.bordered-box,
.portfolio.columns-1.background-style-white .portfolio-item .wrap > .caption,
.gem-table-responsive .tabletolist.nrh > li > ul,
*:not(.gem-table):not(.cart_totals) > table:not(.shop_table):not(.group_table):not(.variations) td,
*:not(.gem-table):not(.cart_totals) > table:not(.shop_table):not(.group_table):not(.variations) th,
.products .product-inner,
.widget_recent_reviews ul.product_list_widget li,
.widget_shopping_cart_content ul.product_list_widget li,
form.cart .quantity .minus,
form.cart .quantity .plus,
.shop_table .quantity .minus,
.shop_table .quantity .plus,
.woocommerce-cart-form.responsive .cart-item,
.form-edit-adress-fields,
.woocommerce .checkout_coupon,
.woocommerce .checkout-login-box .login-message-box,
.triangle-with-shadow:after,
.gem-tabs-style-1 .resp-tabs-container,
.gem-tabs-style-1 .gem_tabs_nav li,
.gem-tour-style-1 > .gem_tour_tabs_wrapper,
.gem-tour-style-1 .gem_tabs_nav li,
.gem-tabs-style-2 .resp-accordion,
.blog-style-timeline .post-text,
.widget_layered_nav ul,
.gem-table,
.gem-table-style-1 td,
.blog-style-styled_list1 .post-item,
.blog-style-styled_list2 .post-item,
.blog-style-timeline .post-item,
.gem-basic-grid .vc_grid-item-mini,
.gem-media-grid-2 .vc_grid-item-mini,
.justified-style-1 .post-content-wrapper,
.widget-area .widget_recently_viewed_products .gem-products-image,
form.cart .quantity .qty,
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-quantity .quantity,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body::before,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body::after,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-controls-icon::before,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-controls-icon::after,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::before,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::after,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab > a,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab.vc_active > a {
	border: 1px solid #dfe5e8;
}
.blog-style-styled_list1 .wrap-style,
.blog-style-styled_list1 .sticky .wrap-style,
.blog-style-styled_list2 .wrap-style,
.blog-style-timeline .wrap-style {
	stroke: #dfe5e8;
}
.gem-wrapbox-style-1,
.gem-wrapbox-style-4,
.gem-wrapbox-style-5,
.gem-wrapbox-style-6,
.gem-wrapbox-style-7,
.gem-wrapbox-style-8,
.gem-wrapbox-style-11,
.gem-wrapbox-style-10,
.gem-wrapbox-style-3,
body .woocommerce-cart-checkout-steps-content .step,
body .woocommerce .shop_table tbody tr td,
body .woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total th,
body .woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total td,
body .woocommerce .woocommerce-checkout .shop_table tfoot > tr > td,
body .woocommerce .cart_totals table th,
body .woocommerce .cart_totals table td,
body .woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods li,
body .woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods li,
body .woocommerce-checkout-one-page #order_review table tbody th,
body .woocommerce-checkout-one-page #order_review table tbody td,
body #primary-menu.no-responsive > li.menu-item-cart > .minicart,
body .hamburger-minicart > .minicart,
.portfolio.extended-products-grid .portfolio-item.product .wrap > .image,
.portfolio.extended-products-grid .portfolio-item.product .wrap > .caption,
body .portfolio-filters-list .portfolio-filter-item.attribute-type-color ul li a .color:before,
body .portfolio-filters-list .widget_layered_nav ul li a.attribute-type-color .color:before,
body .portfolio-filters-list .portfolio-filter-item.attribute-type-label ul li a,
body .portfolio-filters-list .widget_layered_nav ul li a.attribute-type-label,
body .portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li a .image:before,
body .portfolio-filters-list .widget_layered_nav ul li a.attribute-type-image .image:before {
	border-color: #dfe5e8;
}
.gem-table-style-2 td,
.gem-table-style-2 thead {
	border: 2px solid #dfe5e8;
}
.shop_table .quantity .qty,
.woocommerce table.shop_table.order-details,
.woocommerce table.shop_table.order-details tr.cart_item,
.woocommerce table.shop_table.order-details tr.order_item,
.widget .product-dummy-wrapper,
.post-related-posts,
.sidebar .widget .gem-contacts-item.gem-contacts-address,
.gem-tabs-style-2 .resp-tabs-container,
.gem-tabs-style-1 .resp-accordion.resp-tab-active,
.gem-tour-style-1 .resp-accordion.resp-tab-active,
.widget_submenu > div > ul,
.widget_nav_menu > div > ul,
.widget.widget_pages > ul,
.widget_categories > ul,
.widget_product_categories > ul,
.widget_nav_menu ul.menu,
.portfolio-item .wrap,
.Custom_Recent_Posts ul li,
.Custom_Popular_Posts ul li,
.widget_recent_entries li,
.widget_meta li,
.gem-latest-news,
.gem-latest-news ul,
.widget .gem-products-content,
.widget-area .gem-products-image,
.widget.widget_shopping_cart ul li .minicart-image,
.project_info-item-style-1  .project_info-item.iconed,
.widget_tweets .twitter-box .jtwt_tweet,
.blog-style-default article:not(.sticky),
.project-info-shortcode-style-2 .project-info-shortcode-item,
.single-product-content .rating-divider {
	border-bottom: 1px solid #dfe5e8;
}

.gem_accordion_section + .gem_accordion_section,
.shop_table .quantity .qty,
.gem-table .shop_table tr + tr td,
body.woocommerce-cart-layout-modern .gem-table .shop_table tr td,
.cart_totals table tr + tr td,
.cart_totals table tr + tr th,
.order-totals table tr + tr td,
.order-totals table tr + tr th,
.woocommerce table.checkout-cart-info-table tr,
.mobile-cart-position-top #site-header .mobile-cart .widget_shopping_cart_content ul.cart_list > li,
.gem-tabs-style-2 .resp-tabs-container,
.gem-tour-style-2 .gem_tabs_nav li + li,
.gem-tour-style-1 .resp-accordion,
.gem-tour-style-2 .resp-accordion,
.gem-tabs-style-1 .resp-accordion,
.wpb_toggle_content + .wpb_toggle,
.vc_toggle + .vc_toggle .vc_toggle_title,
.widget .product-dummy-wrapper,
.widget_layered_nav ul li,
.widget_submenu li,
.widget_nav_menu li,
.widget.widget_pages li,
.widget_categories li,
.widget_product_categories li,
.widget_recently_viewed_products ul.product_list_widget li + li,
.widget .gem-products-content,
.widget-area .gem-products-image,
.widget.widget_shopping_cart ul li .minicart-image,
#colophon .widget_nav_menu ul.menu > li > ul,
#colophon .widget_submenu > div > ul > li > ul,
.single-product-content .rating-divider {
	border-top: 1px solid #dfe5e8;
}
.widget_submenu > div > ul,
.widget_nav_menu > div > ul,
.widget.widget_pages > ul,
.widget_categories > ul,
.widget_product_categories > ul,
.gem-tour-style-2 .resp-tabs-container,
.gem-tabs-style-2 .gem_tabs_nav li + li,
.widget-area .gem-products-image,
.widget.widget_shopping_cart ul li .minicart-image,
#colophon .widget_nav_menu ul.menu > li > ul,
#colophon .widget_submenu > div > ul > li > ul {
	border-left: 1px solid #dfe5e8;
}
.widget_submenu > div > ul,
.widget_nav_menu > div > ul,
.widget.widget_pages > ul,
.widget_categories > ul,
.widget_product_categories > ul,
.widget .gem-products-content,
.gem-table-style-2 .tabletolist .row_headers,
#colophon .widget_nav_menu ul.menu > li > ul,
#colophon .widget_submenu > div > ul > li > ul {
	border-right: 1px solid #dfe5e8;
}
.portfolio-filters a,
body .testimonials-style-2-item,
.widget_calendar td a,
.widget-area .widget.widget_search form,
form.cart .quantity .minus,
form.cart .quantity .plus,
.shop_table .quantity .minus,
.shop_table .quantity .plus,
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-quantity .quantity button:before,
body .woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern .shop_table .product-name .product-quantity,
body.woocommerce-cart-layout-modern .woocommerce-empty-cart:before,
.blog-style-timeline article:after,
#colophon .widget_calendar td a:hover,
.diagram-wrapper.style-2 .digram-line-box .skill-line,
.blog-style-styled_list1 .sticky,
.blog-style-styled_list1 .sticky .post-img a .dummy,
.widget .gem-dummy,
.quickfinder-style-vertical .quickfinder-item:first-child .quickfinder-item-connector.connector-bot,
body .quickfinder-item .quickfinder-item-connector,
.sharing-popup,
.widget-gem-portfolio-item.gem-portfolio-dummy,
.blog-style-timeline article:before,
.post-tags-list a {
	background-color: #dfe5e8;
}
.sharing-popup .sharing-styled-arrow {
	fill: #dfe5e8;
}
@media (min-width: 768px) {
	.blog-style-timeline .item-post .post-text:before {
		border-right: 20px solid #dfe5e8;
	}
}
.blog-style-styled_list1 .post-img,
.blog-style-styled_list2 .post-img,
.blog-style-timeline .post-img {
	border: 3px solid #dfe5e8;
}
@media (max-width: 768px) {
	.gem-table-responsive .tabletolist > li span {
		border-top: 1px solid #dfe5e8;
	}
	.gem-table-responsive .tabletolist > li {
		border: 1px solid #dfe5e8;
	}
	.gem-table-responsive .tabletolist .row_headers {
		border-right: 1px solid #dfe5e8;
	}
	.gem-table-responsive.gem-table-style-2 .tabletolist > li {
		border: 2px solid #dfe5e8;
	}
	.gem-table-responsive.gem-table-style-2 .tabletolist > li span {
		border-top: 2px solid #dfe5e8;
	}
	.gem-table-responsive.gem-table-style-2 .tabletolist .row_headers,
	.gem-table-responsive.gem-table-style-2 .tabletolist .row_headers {
		border-right: 2px solid #dfe5e8;
	}
	.blog-style-timeline .item-post .post-text:before,
	.blog-style-timeline .post-text:before,
	.blog-style-timeline.blog-style-styled_list1 .post-text:before,
	.blog-style-timeline.blog-style-styled_list2 .post-text:before {
		border-bottom: 30px solid #dfe5e8;
	}
}
.comments-title:before,
.comment-reply-title:before,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-controls-icon::before,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-controls-icon::after {
	color: #dfe5e8;
}
@media (min-width: 768px) {
	body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels,
	body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels::before,
	body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels::after {
		border-color: #dfe5e8;
	}
}

@media (max-width: 992px) {
	body:not(.woocommerce-cart-layout-modern) .woocommerce table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr {
		border: 1px solid #dfe5e8;
	}
}
body.woocommerce-cart-layout-modern .woocommerce form.woocommerce-cart-form.compact table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr + tr {
	border-top: 1px solid #dfe5e8;
}
@media (max-width: 768px) {
	body.woocommerce-cart-layout-modern .woocommerce table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr + tr {
		border-top: 1px solid #dfe5e8;
	}
}


:root {
	--thegem-to-mobile-menu-font-family: Source Sans Pro;
}
#primary-navigation.responsive #primary-menu li > a,
#primary-navigation.responsive #primary-menu li > span.megamenu-column-header > a {
	font-family: 'Source Sans Pro';
}

:root {
	--thegem-to-mobile-menu-font-style: normal;
	--thegem-to-mobile-menu-font-weight:400;
}
#primary-navigation.responsive #primary-menu li > a,
#primary-navigation.responsive #primary-menu li > span.megamenu-column-header > a {
	font-style: normal;
	font-weight: 400;
}

:root {
	--thegem-to-mobile-menu-font-size: 16px;
}
#primary-navigation.responsive #primary-menu li > a,
#primary-navigation.responsive #primary-menu li > span.megamenu-column-header > a {
	font-size: 16px;
}

:root {
	--thegem-to-mobile-menu-line-height: 20px;
}
#primary-navigation.responsive #primary-menu li > a,
#primary-navigation.responsive #primary-menu li > span.megamenu-column-header > a {
	line-height: 20px;
}

:root {
	--thegem-to-mobile-menu-text-transform: none;
}
#primary-navigation.responsive #primary-menu li > a,
#primary-navigation.responsive #primary-menu li > span.megamenu-column-header > a {
	text-transform: none;
}


:root {
	--thegem-to-mobile-menu-bg-color: #212331;
}
body .menu-overlay.mobile {
	background-color: #212331;
}

:root {
	--thegem-to-mobile-menu-level1-color: #99a9b5;
}
#primary-navigation.responsive #primary-menu > li > a,
#primary-navigation.responsive #primary-menu > li > .menu-item-parent-toggle,
#primary-navigation.responsive ul.dl-submenu.level1 > li > a,
.primary-navigation.responsive .minisearch .sf-input,
.mobile-menu-layout-overlay #primary-navigation.responsive #primary-menu > li.menu-item-search > .minisearch input[type="text"],
.mobile-menu-layout-overlay #primary-navigation.responsive #primary-menu > li.menu-item-search > .minisearch .sf-submit-icon:before,
.mobile-cart-position-top .menu-overlay.mobile.active + #site-header .mobile-cart > a:before {
	color: #99a9b5;
}
.primary-navigation.responsive .minisearch .sf-input::placeholder,
.mobile-menu-layout-overlay #primary-navigation.responsive #primary-menu > li.menu-item-search > .minisearch input[type="text"]::placeholder {
	color: #99a9b5;
}
.primary-navigation.responsive .minisearch .sf-input::-webkit-input-placeholder,
.mobile-menu-layout-overlay #primary-navigation.responsive #primary-menu > li.menu-item-search > .minisearch input[type="text"]::-webkit-input-placeholder{
	color: #99a9b5;
}

#page #site-header.mobile-menu-layout-overlay .header-main #primary-navigation.overlay-active:not(.close) .menu-toggle .menu-line-1,
#page #site-header.mobile-menu-layout-overlay .header-main #primary-navigation.overlay-active:not(.close) .menu-toggle .menu-line-2,
#page #site-header.mobile-menu-layout-overlay .header-main #primary-navigation.overlay-active:not(.close) .menu-toggle .menu-line-3,
#page #site-header.mobile-menu-layout-overlay .header-main #perspective-menu-buttons.overlay-active:not(.close) .menu-toggle .menu-line-1,
#page #site-header.mobile-menu-layout-overlay .header-main #perspective-menu-buttons.overlay-active:not(.close) .menu-toggle .menu-line-2,
#page #site-header.mobile-menu-layout-overlay .header-main #perspective-menu-buttons.overlay-active:not(.close) .menu-toggle .menu-line-3 {
	background-color: #99a9b5;
}

.mobile-menu-layout-overlay #primary-navigation.responsive #primary-menu > li.menu-item-search > .minisearch input[type="text"] {
	border-color: #99a9b5;
}

:root {
	--thegem-to-mobile-menu-level1-bg-color: #212331;
}
.mobile-menu-layout-slide-horizontal #primary-navigation.responsive .mobile-menu-slide-wrapper,
.mobile-menu-layout-slide-vertical #primary-navigation.responsive .mobile-menu-slide-wrapper,
.mobile-menu-layout-slide-horizontal #primary-navigation.responsive #primary-menu,
.mobile-menu-layout-slide-vertical #primary-navigation.responsive #primary-menu,
#primary-navigation.responsive #primary-menu > li > a,
#primary-navigation.responsive ul.dl-submenu.level1 > li > a,
#primary-navigation.responsive #primary-menu li.menu-item-search,
#primary-navigation.responsive #primary-menu li.menu-item-search .minisearch {
	background-color: #212331;
}

:root {
	--thegem-to-mobile-menu-level1-active-color: #ffffff;
}
#primary-navigation.responsive #primary-menu > li.menu-item-current > a,
#primary-navigation.responsive #primary-menu > li.menu-item-active > a,
#primary-navigation.responsive #primary-menu > li.opened > a,
#primary-navigation.responsive #primary-menu > li.menu-item-current > .menu-item-parent-toggle,
#primary-navigation.responsive #primary-menu > li.menu-item-active > .menu-item-parent-toggle,
#primary-navigation.responsive #primary-menu > li.opened > .menu-item-parent-toggle,
#primary-navigation.responsive ul.dl-submenu.level1 > li.menu-item-current > a,
#primary-navigation.responsive ul.dl-submenu.level1 > li.menu-item-active > a,
#primary-navigation.responsive #primary-menu > li.menu-overlay-item-open > a,
#primary-navigation.responsive #primary-menu > li.menu-overlay-item-open > .menu-item-parent-toggle {
	color: #ffffff;
}

:root {
	--thegem-to-mobile-menu-level1-active-bg-color: #212331;
}
#primary-navigation.responsive #primary-menu > li.menu-item-current > a,
#primary-navigation.responsive #primary-menu > li.menu-item-active > a,
#primary-navigation.responsive #primary-menu > li.opened > a,
#primary-navigation.responsive ul.dl-submenu.level1 > li.menu-item-current > a,
#primary-navigation.responsive ul.dl-submenu.level1 > li.menu-item-active > a {
	background-color: #212331;
}

:root {
	--thegem-to-mobile-menu-level2-color: #99a9b5;
}
#primary-navigation.responsive #primary-menu > li > ul > li > a,
#primary-navigation.responsive #primary-menu > li > ul > li > .menu-item-parent-toggle,
#primary-navigation.responsive #primary-menu > li > ul > li > span.megamenu-column-header > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li > span.megamenu-column-header > a,
.mobile-menu-layout-default .primary-navigation.responsive li.dl-back > a,
.mobile-menu-layout-default .primary-navigation.responsive li.dl-back:after{
	color: #99a9b5;
}

:root {
	--thegem-to-mobile-menu-level2-bg-color: #393d4f;
}
#primary-navigation.responsive #primary-menu > li > ul > li > a,
#primary-navigation.responsive #primary-menu > li > ul > li > span.megamenu-column-header > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li > span.megamenu-column-header > a,
.mobile-menu-layout-slide-horizontal #primary-navigation.responsive #primary-menu li.menu-item-search .minisearch input[type="text"],
.mobile-menu-layout-slide-vertical #primary-navigation.responsive #primary-menu li.menu-item-search .minisearch input[type="text"] {
	background-color: #393d4f;
}

:root {
	--thegem-to-mobile-menu-level2-active-color: #ffffff;
}
#primary-navigation.responsive #primary-menu > li > ul > li.menu-item-current > a,
#primary-navigation.responsive #primary-menu > li > ul > li.menu-item-active > a,
#primary-navigation.responsive #primary-menu > li > ul > li.opened > a,
#primary-navigation.responsive #primary-menu > li > ul > li.menu-item-current > .menu-item-parent-toggle,
#primary-navigation.responsive #primary-menu > li > ul > li.menu-item-active > .menu-item-parent-toggle,
#primary-navigation.responsive #primary-menu > li > ul > li.opened > .menu-item-parent-toggle,
#primary-navigation.responsive #primary-menu > li > ul > li.menu-item-current > span.megamenu-column-header > a,
#primary-navigation.responsive #primary-menu > li > ul > li.menu-item-active > span.megamenu-column-header > a,
#primary-navigation.responsive #primary-menu > li > ul > li.opened > span.megamenu-column-header > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li.menu-item-current > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li.menu-item-active > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li.menu-item-current > span.megamenu-column-header > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li.menu-item-active > span.megamenu-column-header > a,
#primary-navigation.responsive #primary-menu > li > ul > li.menu-overlay-item-open > a,
#primary-navigation.responsive #primary-menu > li > ul > li.menu-overlay-item-open > span.megamenu-column-header > a,
#primary-navigation.responsive #primary-menu > li > ul > li.menu-overlay-item-open > .menu-item-parent-toggle {
	color: #ffffff;
}

:root {
	--thegem-to-mobile-menu-level2-active-bg-color: #393d4f;
}
#primary-navigation.responsive #primary-menu > li > ul > li.menu-item-current > a,
#primary-navigation.responsive #primary-menu > li > ul > li.menu-item-active > a,
#primary-navigation.responsive #primary-menu > li > ul > li.opened > a,
#primary-navigation.responsive #primary-menu > li > ul > li.menu-item-current > span.megamenu-column-header > a,
#primary-navigation.responsive #primary-menu > li > ul > li.menu-item-active > span.megamenu-column-header > a,
#primary-navigation.responsive #primary-menu > li > ul > li.opened > span.megamenu-column-header > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li.menu-item-current > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li.menu-item-active > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li.menu-item-current > span.megamenu-column-header > a,
#primary-navigation.responsive ul.dl-submenu.level2 > li.menu-item-active > span.megamenu-column-header > a {
	background-color: #393d4f;
}

:root {
	--thegem-to-mobile-menu-level3-color: #99a9b5;
}
#primary-navigation.responsive #primary-menu > li > ul > li > ul li > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li > .menu-item-parent-toggle,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li > span.megamenu-column-header > a,
#primary-navigation.responsive ul.dl-submenu.level3 > li > a {
	color: #99a9b5;
}

:root {
	--thegem-to-mobile-menu-level3-bg-color: #494c64;
}
#primary-navigation.responsive #primary-menu > li > ul > li > ul li > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li > span.megamenu-column-header > a,
#primary-navigation.responsive ul.dl-submenu.level3 > li > a {
	background-color: #494c64;
}

:root {
	--thegem-to-mobile-menu-level3-active-color: #3c3950;
}
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-item-current > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-item-active > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.opened > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-item-current > .menu-item-parent-toggle,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-item-active > .menu-item-parent-toggle,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.opened > .menu-item-parent-toggle,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-item-current > span.megamenu-column-header > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-item-active > span.megamenu-column-header > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.opened > span.megamenu-column-header > a,
#primary-navigation.responsive ul.dl-submenu.level3 > li.menu-item-current > a,
#primary-navigation.responsive ul.dl-submenu.level3 > li.menu-item-active > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-overlay-item-open > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-overlay-item-open > span.megamenu-column-header > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-overlay-item-open > .menu-item-parent-toggle {
	color: #3c3950;
}

:root {
	--thegem-to-mobile-menu-level3-active-bg-color: #00bcd4;
}
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-item-current > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-item-active > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.opened > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-item-current > span.megamenu-column-header > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.menu-item-active > span.megamenu-column-header > a,
#primary-navigation.responsive #primary-menu > li > ul > li > ul li.opened > span.megamenu-column-header > a,
#primary-navigation.responsive ul.dl-submenu.level3 > li.menu-item-current > a,
#primary-navigation.responsive ul.dl-submenu.level3 > li.menu-item-active > a {
	background-color: #00bcd4;
}

:root {
	--thegem-to-mobile-menu-border-color: #494c64;
}
.mobile-menu-layout-default #primary-navigation.responsive ul li.menu-item,
.mobile-menu-layout-default #primary-navigation.responsive ul li.dl-back,
.mobile-menu-layout-default #primary-navigation.responsive ul,
.mobile-menu-layout-slide-horizontal #primary-navigation.responsive #primary-menu li,
.mobile-menu-layout-slide-vertical #primary-navigation.responsive #primary-menu li,
.mobile-menu-layout-slide-horizontal #primary-navigation.responsive #primary-menu li.menu-item-search .minisearch input[type="text"],
.mobile-menu-layout-slide-vertical #primary-navigation.responsive #primary-menu li.menu-item-search .minisearch input[type="text"] {
	border-color: #494c64;
}

:root {
	--thegem-to-mobile-menu-socials-color: #99a9b5;
}
#primary-navigation.responsive #primary-menu li.menu-item-widgets .menu-item-socials a {
	color: #99a9b5;
}

#primary-navigation.responsive .mobile-menu-slide-wrapper .mobile-menu-slide-close:before,
#primary-navigation.responsive .mobile-menu-slide-wrapper .mobile-menu-slide-close:after {
	background-color: #ffffff;
}

:root {
	--thegem-to-mobile-menu-hide-color: #ffffff;
}
body #primary-menu.no-responsive > li.menu-item-cart > .minicart ul li a.remove,
body .hamburger-minicart > .minicart ul li a.remove,
body.mobile-cart-position-top #site-header .mobile-cart ul li a.remove {
	color: #ffffff;
}

:root {
	--thegem-to-menu-level1-color: #000000FF;
}
.main-menu-item,
.main-menu-item a,
.title-main-menu,
#primary-menu.no-responsive > li > a {
	color: #000000FF;
}


:root {
	--thegem-to-menu-level1-color-hover: #00bcd4;
}
.main-menu-item:hover a,
a.main-menu-item:hover,
#primary-menu.no-responsive > li:hover > a {
	color: #00bcd4;
}
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-default > ul li > a:hover,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-default > ul li.menu-item-current > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-default > ul li.menu-item-active > a {
	background-color: #00bcd4;
}


:root {
	--thegem-to-menu-level1-active-color: #00bcd4;
}
.main-menu-item.active,
#primary-menu.no-responsive > li.menu-item-current > a,
#primary-menu.no-responsive > li.menu-item-active > a {
	color: #00bcd4;
}

:root {
	--thegem-to-menu-level1-active-bg-color: #f4f6f7;
}
.header-style-1 #primary-menu.no-responsive > li.menu-item-current > a,
.header-style-1 #primary-menu.no-responsive > li.menu-item-active > a {
	background-color: #f4f6f7;
}
.header-style-3 #primary-menu.no-responsive > li.menu-item-current > a,
.header-style-3 #primary-menu.no-responsive > li.menu-item-active > a,
.header-style-4 #primary-menu.no-responsive > li.menu-item-current > a,
.header-style-4 #primary-menu.no-responsive > li.menu-item-active > a,
.header-style-3.header-layout-fullwidth_hamburger #primary-menu.no-responsive > li.menu-item-current > a,
.header-style-3.header-layout-fullwidth_hamburger #primary-menu.no-responsive > li.menu-item-active > a,
.header-style-4.header-layout-fullwidth_hamburger #primary-menu.no-responsive > li.menu-item-current > a,
.header-style-4.header-layout-fullwidth_hamburger #primary-menu.no-responsive > li.menu-item-active > a {
	border: 2px solid #f4f6f7;
}

:root {
	--thegem-to-menu-level2-color: #99a9b5;
}
.submenu-item,
#primary-menu.no-responsive > li > ul > li > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li > a {
	color: #99a9b5;
}

:root {
	--thegem-to-menu-level2-bg-color: #212331;
}
#primary-menu.no-responsive > li > ul > li > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li > span.megamenu-column-header > a,
.header-style-2 .minisearch .sf-input,
.header-style-3 .minisearch .sf-input,
.header-style-1 .minisearch,
.header-style-4 .minisearch {
	background-color: #212331;
}

:root {
	--thegem-to-menu-level2-hover-color: #ffffff;
}
.submenu-item:hover a,
#primary-menu.no-responsive > li > ul > li:hover > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li:hover > a {
	color: #ffffff;
}

:root {
	--thegem-to-menu-level2-hover-bg-color: #393d4f;
}
#primary-menu.no-responsive > li > ul > li:hover > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li:hover > a {
	background-color: #393d4f;
}

:root {
	--thegem-to-menu-level2-active-color: #ffffff;
}
.submenu-item.active a,
#primary-menu.no-responsive > li > ul > li.menu-item-current > a,
#primary-menu.no-responsive > li > ul > li.menu-item-active > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li.menu-item-current > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li.menu-item-active > a,
.minisearch .sf-submit-icon:before,
.minisearch .sf-input {
	color: #ffffff;
}

:root {
	--thegem-to-menu-level2-active-bg-color: #393d4f;
}
#primary-menu.no-responsive > li > ul > li.menu-item-current > a,
#primary-menu.no-responsive > li > ul > li.menu-item-active > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li.menu-item-current > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul li.menu-item-active > a,
.header-style-2 .minisearch,
.header-style-3 .minisearch,
.header-style-1 .minisearch .sf-input,
.header-style-4 .minisearch .sf-input {
	background-color: #393d4f;
}

:root {
	--thegem-to-mega-menu-column-title-color: #ffffff;
}
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header a.mega-no-link {
	color: #ffffff;
}

:root {
	--thegem-to-mega-menu-column-title-hover-color: #00bcd4;
}
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header a:hover {
	color: #00bcd4;
}

:root {
	--thegem-to-mega-menu-column-title-active-color: #00bcd4;
}
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li.menu-item-active > span.megamenu-column-header a {
	color: #00bcd4;
}

:root {
	--thegem-to-menu-level3-color: #99a9b5;
}
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li li > a {
	color: #99a9b5;
}

:root {
	--thegem-to-menu-level3-bg-color: #393d50;
}
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li li > a {
	background-color: #393d50;
}

:root {
	--thegem-to-menu-level3-hover-color: #ffffff;
}
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li li:hover > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-default > ul li.menu-item-current > a,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-default > ul li.menu-item-active > a {
	color: #ffffff;
}

:root {
	--thegem-to-menu-level3-hover-bg-color: #494c64;
}
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li li:hover > a {
	background-color: #494c64;
}

:root {
	--thegem-to-menu-level3-active-color: #00bcd4;
}
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li li.menu-item-current > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li li.menu-item-active > a {
	color: #00bcd4;
}

:root {
	--thegem-to-menu-level3-active-bg-color: #393d50;
}
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li li.menu-item-current > a,
#primary-menu.no-responsive > li:not(.megamenu-template-enable):not(.menu-item-type-template) li li.menu-item-active > a {
	background-color: #393d50;
}

:root {
	--thegem-to-menu-level2-border-color: #494660;
}
#primary-menu.no-responsive > li:not(.megamenu-template-enable) ul > li,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header,
.minisearch,
.minisearch .sf-input {
	border-top: 1px solid #494660;
}
#primary-menu.no-responsive > li:not(.megamenu-template-enable) ul,
#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul > li,
.minisearch,
.minisearch .sf-input {
	border-bottom: 1px solid #494660;
	border-left: 1px solid #494660;
	border-right: 1px solid #494660;
}
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header {
	border-bottom: 1px solid #494660;
}
#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul {
	border-top: 1px solid #494660;
}
#primary-menu.no-responsive > li:not(.megamenu-template-enable) ul ul {
	margin-top: -1px;
}
@media (-webkit-device-pixel-ratio: 1.25) {
	#primary-menu.no-responsive > li:not(.megamenu-template-enable) ul > li,
	#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header,
	.minisearch,
	.minisearch .sf-input {
		border-top: 0.8px solid #494660;
	}
	#primary-menu.no-responsive > li:not(.megamenu-template-enable) ul,
	#primary-menu.nav-menu.no-responsive > li.megamenu-enable.megamenu-style-grid > ul > li,
	.minisearch,
	.minisearch .sf-input {
		border-bottom: 0.8px solid #494660;
		border-left: 0.8px solid #494660;
		border-right: 0.8px solid #494660;
	}
	#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header {
		border-bottom: 0.8px solid #494660;
	}
	#primary-menu.nav-menu.no-responsive > li.megamenu-enable > ul {
		border-top: 0.8px solid #494660;
	}
	#primary-menu.no-responsive > li:not(.megamenu-template-enable) ul ul {
		margin-top: -0.8px;
	}
}


:root {
	--thegem-to-menu-level1-light-color: #ffffff;
}
#site-header:not(.shrink) .header-colors-light:not(.header-layout-fullwidth_hamburger):not(.header-layout-overlay) #primary-menu.no-responsive > li > a {
	color: #ffffff;
}

:root {
	--thegem-to-menu-level1-light-hover-color: #00bcd4;
}
#site-header:not(.shrink) .header-colors-light:not(.header-layout-fullwidth_hamburger) #primary-menu.no-responsive > li:hover > a {
	color: #00bcd4;
}

:root {
	--thegem-to-menu-level1-light-active-color: #00bcd4;
}
#site-header:not(.shrink) .header-colors-light:not(.header-layout-fullwidth_hamburger):not(.header-layout-overlay) #primary-menu.no-responsive > li.menu-item-current > a,
#site-header:not(.shrink) .header-colors-light:not(.header-layout-fullwidth_hamburger):not(.header-layout-overlay) #primary-menu.no-responsive > li.menu-item-active > a {
	color: #00bcd4;
}
#site-header:not(.shrink) .header-colors-light.header-style-3:not(.header-layout-overlay) #primary-menu.no-responsive > li.menu-item-current > a,
#site-header:not(.shrink) .header-colors-light.header-style-3:not(.header-layout-overlay) #primary-menu.no-responsive > li.menu-item-active > a,
#site-header:not(.shrink) .header-colors-light.header-style-4:not(.header-layout-overlay) #primary-menu.no-responsive > li.menu-item-current > a,
#site-header:not(.shrink) .header-colors-light.header-style-4:not(.header-layout-overlay) #primary-menu.no-responsive > li.menu-item-active > a {
	border: 2px solid #00bcd4;
}


:root {
	--thegem-to-overlay-menu-bg-color: #212331;
}
body .menu-overlay {
	background-color: #212331;
}

:root {
	--thegem-to-overlay-menu-color: #ffffff;
}
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li > a,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive > li:not(.menu-item-type-template) li > a,
.page-additional-menu.header-layout-overlay .nav-menu.no-responsive > li:not(.menu-item-type-template) li > li > a,
.page-additional-menu.header-layout-overlay .primary-navigation .nav-menu.no-responsive > li li > a,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before,
.page-additional-menu.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:before,
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li.menu-item-search > .minisearch input[type="text"],
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li.menu-item-search > .minisearch .sf-submit-icon:before {
	color: #ffffff;
}
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li.menu-item-search > .minisearch input[type="text"]::placeholder {
	color: #ffffff;
}
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li.menu-item-search > .minisearch input[type="text"]::-webkit-input-placeholder {
	color: #ffffff;
}
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li.menu-item-search > .minisearch input[type="text"] {
	border-color: #ffffff;
}
#primary-navigation.overlay-active .overlay-toggle > span {
	background-color: #ffffff;
}

:root {
	--thegem-to-overlay-menu-hover-color: #00bcd4;
}
.header-layout-overlay #primary-menu.nav-menu.no-responsive > li > a:hover,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive > li:not(.menu-item-type-template) li > a:hover,
.page-additional-menu.header-layout-overlay .primary-navigation .nav-menu.no-responsive li > a:hover,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:hover:before,
.page-additional-menu.header-layout-overlay #primary-navigation #primary-menu.no-responsive li .menu-item-parent-toggle:hover:before {
	color: #00bcd4;
}

:root {
	--thegem-to-overlay-menu-active-color: #00bcd4;
}
.header-layout-overlay #primary-navigation #primary-menu.no-responsive > li.menu-item-current > a,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive > li.menu-item-active > a,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive > li.menu-overlay-item-open > a,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive > li:not(.menu-item-type-template) li.menu-item-current > a,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive > li:not(.menu-item-type-template) li.menu-item-active > a,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive > li:not(.menu-item-type-template) li.menu-overlay-item-open > a,
.page-additional-menu.header-layout-overlay .primary-navigation .nav-menu.no-responsive > li.menu-item-current > a,
.page-additional-menu.header-layout-overlay .primary-navigation .nav-menu.no-responsive > li.menu-item-active > a,
.page-additional-menu.header-layout-overlay .primary-navigation .nav-menu.no-responsive > li.menu-overlay-item-open > a,
.page-additional-menu.header-layout-overlay .primary-navigation .nav-menu.no-responsive > li li.menu-item-current > a,
.page-additional-menu.header-layout-overlay .primary-navigation .nav-menu.no-responsive > li li.menu-item-active > a,
.page-additional-menu.header-layout-overlay .primary-navigation .nav-menu.no-responsive > li li.menu-overlay-item-open > a,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive li.menu-item-current > .menu-item-parent-toggle:before,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive li.menu-item-active > .menu-item-parent-toggle:before,
.header-layout-overlay #primary-navigation #primary-menu.no-responsive li.menu-overlay-item-open > .menu-item-parent-toggle:before,
.page-additional-menu.header-layout-overlay #primary-navigation #primary-menu.no-responsive li.menu-item-current > .menu-item-parent-toggle:before,
.page-additional-menu.header-layout-overlay #primary-navigation #primary-menu.no-responsive li.menu-item-active > .menu-item-parent-toggle:before,
.page-additional-menu.header-layout-overlay #primary-navigation #primary-menu.no-responsive li.menu-overlay-item-open > .menu-item-parent-toggle:before {
	color: #00bcd4;
}

:root {
	--thegem-to-hamburger-menu-icon-color: #3c3950;
}
.hamburger-minicart > a,
.hamburger-minicart:hover > a {
	color: #3c3950;
}
#primary-navigation .hamburger-toggle > span,
#primary-navigation .overlay-toggle > span,
#primary-navigation.overlay-active.close .overlay-toggle > span,
#perspective-menu-buttons.primary-navigation .perspective-toggle span,
#page.vertical-header .vertical-toggle > span,
#thegem-perspective #primary-navigation .perspective-menu-close:before,
#thegem-perspective #primary-navigation .perspective-menu-close:after {
	background-color: #3c3950;
}

:root {
	--thegem-to-hamburger-menu-icon-light-color: #ffffff;
}
#site-header:not(.shrink) .header-colors-light .hamburger-minicart > a,
#site-header:not(.shrink) .header-colors-light .hamburger-minicart:hover > a {
	color: #ffffff;
}
#site-header:not(.shrink) .header-colors-light #primary-navigation .hamburger-toggle > span,
#site-header:not(.shrink) .header-colors-light #primary-navigation:not(.overlay-active) .overlay-toggle > span,
#site-header:not(.shrink) .header-colors-light #primary-navigation.overlay-active.close .overlay-toggle > span,
#site-header:not(.shrink) .header-colors-light #perspective-menu-buttons.primary-navigation .perspective-toggle span {
	background-color: #ffffff;
}

:root {
	--thegem-to-mobile-menu-btn-color: #3c3950;
}
#primary-navigation .menu-toggle .menu-line-1,
#primary-navigation .menu-toggle .menu-line-2,
#primary-navigation .menu-toggle .menu-line-3,
#perspective-menu-buttons.primary-navigation .menu-toggle .menu-line-1,
#perspective-menu-buttons.primary-navigation .menu-toggle .menu-line-2,
#perspective-menu-buttons.primary-navigation .menu-toggle .menu-line-3 {
	background-color: #3c3950;
}
body.mobile-cart-position-top #site-header .mobile-cart > a:before {
	background-color: #3c3950;
}

:root {
	--thegem-to-mobile-menu-btn-light-color: #ffffff;
}
#site-header:not(.shrink) .header-colors-light #primary-navigation .menu-toggle .menu-line-1,
#site-header:not(.shrink) .header-colors-light #primary-navigation .menu-toggle .menu-line-2,
#site-header:not(.shrink) .header-colors-light #primary-navigation .menu-toggle .menu-line-3,
#site-header:not(.shrink) .header-colors-light #perspective-menu-buttons.primary-navigation .menu-toggle .menu-line-1,
#site-header:not(.shrink) .header-colors-light #perspective-menu-buttons.primary-navigation .menu-toggle .menu-line-2,
#site-header:not(.shrink) .header-colors-light #perspective-menu-buttons.primary-navigation .menu-toggle .menu-line-3 {
	background-color: #ffffff;
}
body.mobile-cart-position-top #site-header:not(.shrink) .header-colors-light .mobile-cart > a:before {
	background-color: #ffffff;
}


:root {
	--thegem-to-body-color: #5f727f;
	--thegem-to-body-color-07: rgba(95, 114, 127, 0.7);
}
body,
.text-body,
.text-body-tiny,
.portfolio.background-style-gray:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .info,
.portfolio.background-style-gray:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .info,
.portfolio.background-style-dark .portfolio-item .wrap > .caption .info,
.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-caption,
.gem-gallery-grid.hover-zooming-blur .gallery-item .overlay .title,
.gem-gallery-grid.hover-zooming-blur .gallery-item .overlay .subtitle,
.widget.widget_contacts a:hover,
.widget_recent_comments a,
.digram-line-box  .skill-title,
.shipping_calculator .shipping-calculator-button,
.widget_shopping_cart_content ul.cart_list li a,
.shop-widget-area .gem-products-title a,
.woocommerce-page ul.product_list_widget li a,
.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption .subtitle,
.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption .details,
.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption .info,
.portfolio.hover-horizontal-sliding .overlay .links .caption .info span.sep,
.version-new.news-grid.hover-new-zooming-blur .portfolio-item .image .overlay .links .caption .subtitle,
.version-new.news-grid.hover-new-zooming-blur .portfolio-item .image .overlay .links .caption .details,
.version-new.news-grid.hover-new-zooming-blur .portfolio-item .image .overlay .links .caption .post-date,
.version-new.news-grid.hover-new-zooming-blur .portfolio-item .image .overlay .links .caption .grid-post-meta a.icon.share:before,
.version-new.news-grid.hover-new-zooming-blur .portfolio-item .image .overlay .links .portfolio-sharing-pane .socials-item,
.version-new.news-grid.hover-new-zooming-blur .portfolio-item .links .caption .grid-post-meta .comments-link a,
.version-default.news-grid.hover-default-zooming-blur .portfolio-item .image .overlay .links .caption .subtitle,
.version-default.news-grid.hover-default-zooming-blur .portfolio-item .image .overlay .links .caption .details,
.version-default.news-grid.hover-default-zooming-blur .portfolio-item .image .overlay .links .caption .post-date,
.version-new.news-grid .portfolio-item .wrap > .caption .grid-post-meta .comments-link a,
.version-new.news-grid .portfolio-item .wrap > .caption .grid-post-meta .zilla-likes,
.version-new.news-grid .portfolio-item .wrap > .caption .grid-post-meta .grid-post-share .icon,
#colophon .jtwt_tweet:before,
#colophon .project_info-item-style-1 .project_info-item .icon,
#colophon .widget_recent_comments li:before,
#colophon .widget_recent_entries ul li:before,
#colophon .portfolio-filters a .icon,
#colophon .comment-form label:before,
#colophon .socials-sharing a:after,
#colophon .widget_archive li:before,
#colophon .widget_nav_menu ul.menu li > a:before,
#colophon .widget_submenu > div > ul li > a:before,
#colophon .widget_categories > ul li > a:before,
#colophon .widget_product_categories > ul li > a:before,
#colophon .widget_product_categories > ul li:before,
#colophon .widget_pages > ul li > a:before,
#colophon .widget_meta li:before,
#colophon .widget_rss li:before,
#colophon .project_info-item-style-2 .icon,
#colophon .gem_accordion_header,
#colophon .widget_layered_nav ul li a:before,
#colophon .widget .gem-contacts-address:before,
#colophon .widget .gem-contacts-phone:before,
#colophon .widget .gem-contacts-fax:before,
#colophon .widget .gem-contacts-email:before,
#colophon .widget .gem-contacts-website:before,
#colophon .widget_meta li:before,
#colophon .widget .mc-text.small-body,
#colophon .widget.widget_search input, #colophon #mc4wp_email,
blockquote,
.widget_price_filter .price_label span,
.gem-quote.gem-quote-style-default blockquote,
.gem-quote.gem-quote-style-1,
.wpcf7-form.gem-contact-form-white span,
.wpcf7-form.gem-contact-form-white .wpcf7-list-item-label,
.wpcf7-form.gem-contact-form-dark span,
.wpcf7-form.gem-contact-form-dark .wpcf7-list-item-label,
.blog-style-styled_list1 .post-content,
.blog-style-styled_list2 .post-content,
.blog-style-timeline .post-content,
body .thegem_testimonial a .gem-testimonial-text,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title > a,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab > a,
body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab.vc_active > a,
body .widget .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab.vc_active > a,
.thegem-tabs__nav-item,
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-title,
.product-page__wrapper .reset_variations,
.product-page__wrapper .size-guide a,
.ajax-minisearch-results .ajax-search-item {
	color: #5f727f;
}
#colophon .widget.widget_search .gem-button:hover,
#colophon .wpcf7 .wpcf7-form .contact-form-footer .wpcf7-submit:hover,
.wpcf7-form.gem-contact-form-dark input[type='submit']:hover {
	background-color: #5f727f;
}
.wpcf7-form.gem-contact-form-dark input[type='submit']:hover {
	border-color: #5f727f;
}

:root {
	--thegem-to-h1-color: #212227;
}
h1,
.title-h1,
.gem-counter-number,
body .gem-testimonial-item:after,
blockquote p:after,
body .testimonials-style-1-teg,
body .testimonials-style-2-teg,
.pricing-title {
	color: #212227;
}

:root {
	--thegem-to-h2-color: #212227;
}
h2,
.title-h2,
.blog-style-multi-author .post-title a,
.single-product-content .price {
	color: #212227;
}
.skill-line > div {
	background-color: #212227;
}

:root {
	--thegem-to-h3-color: #212227;
}
h3,
.title-h3,
.blog-style-styled_list1 .post-title a,
.blog-style-styled_list2 .post-title a,
.blog-style-timeline .post-title a,
.woocommerce .woocommerce-checkout-one-page #order_review table thead th,
.thegem-fullscreen-search .sf-input.thegem-fullscreen-searchform-input,
.thegem-fullscreen-search .sf-close {
	color: #212227;
}

:root {
	--thegem-to-h4-color: #212227;
}
h4,
.title-h4,
.team-person-name,
.widget .gem-teams-name,
body .testimonials-style-2-item .testimonials-style-2-text.gem-testimonial-text,
.diagram-wrapper.style-3 .digram-line-box .skill-title span,
.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption .title,
.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption .product-variations,
.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-sharing-pane .socials-item,
.blog-style-masonry .entry-title.title-h4 a,
.gem-basic-grid .post-title h4.entry-title a,
.gem-basic-grid-2 .vc_gitem-zone-c .post-title a,
.justified-style-1 .entry-title.title-h4 a,
.justified-style-2 .entry-title.title-h4 a,
.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon:before,
.gem-gallery-grid.hover-gradient .gallery-item .overlay a.icon::before,
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after,
.news-grid.portfolio.hover-zooming-blur .portfolio-item .image .overlay .caption .title > *,
.news-grid.portfolio.hover-new-zooming-blur .portfolio-item .image .overlay .caption .title > *,
.version-new.news-grid.hover-new-zooming-blur .portfolio-item .image .links .caption .author,
.news-grid.portfolio.hover-default-zooming-blur .portfolio-item.double-item-squared:hover .image .overlay .caption .title > *,
.version-new.news-grid .portfolio-item .wrap > .caption .title a,
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title{
	color: #212227;
}
.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon:before,
.portfolio.hover-new-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons a.icon:before,
.portfolio.hover-new-zooming-blur .portfolio-item .gem-simple-gallery .gem-gallery-item a:after,
.portfolio.hover-default-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons a.icon:before,
.portfolio.hover-default-zooming-blur .portfolio-item .gem-simple-gallery .gem-gallery-item a:after,
.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after,
.portfolio.news-grid.hover-zooming-blur .portfolio-item .gem-simple-gallery .gem-gallery-item a:after,
.gem-gallery-grid.hover-zooming-blur .gallery-item .overlay a.icon:before,
.blog article .post-featured-content > a:after,
.blog .gem-simple-gallery .gem-gallery-item a:after,
body .blog-style-styled_list1 article a.default:after,
body .blog-style-styled_list2 article a.default:after,
body .blog-style-compact article a.default:after,
body .blog-style-compact-tiny-1 article a.default:after {
	background-color: #212227;
}

:root {
	--thegem-to-h5-color: #212227;
}
h5,
.title-h5,
blockquote.wp-block-quote.is-large,
blockquote.wp-block-quote.is-style-large,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th,
.news-grid.hover-default .portfolio-item .image .links .caption .post-date,
.news-grid.portfolio.hover-zooming-blur .portfolio-item .image .overlay .caption .title > *,
.news-grid.portfolio.hover-new-zooming-blur .portfolio-item .image .overlay .caption .title > *,
.news-grid.portfolio.hover-default-zooming-blur .portfolio-item:hover .image .overlay .caption .title > *,
.news-grid.version-default.portfolio.hover-default-zooming-blur .portfolio-item:hover .image .overlay .caption .title > *,
.news-grid.version-default.portfolio.hover-default-zooming-blur .portfolio-item .image .overlay .links .caption .post-date,
.news-grid.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .info a,
.version-new.news-grid.hover-new-zooming-blur .portfolio-item .image .links .caption .author,
.version-default.news-grid.portfolio.hover-default-zooming-blur .portfolio-item .image .links .caption .info a {
	color: #212227;
}
.news-grid.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .info span.sep,
.version-default.news-grid.portfolio.hover-default-zooming-blur .portfolio-item .image .links .caption .info .sep {
	border-left-color: #212227;
}

:root {
	--thegem-to-h6-color: #212227;
}
h6,
.title-h6,
.widget_nav_menu > div > ul > li > a,
.widget_submenu > div > ul > li > a,
.widget_pages > ul > li > a,
.widget_categories > ul > li > a,
.widget_product_categories > ul > li > a,
.project_info-item-style-1 .project_info-item .title,
.portfolio:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .title,
.portfolio:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .title,
.thegem-tabs__nav-item,
.thegem-accordion__item-title,
.product-page__wrapper #thegem-additional_information table th,
.portfolio-filter-tabs ul.portfolio-filter-tabs-list li {
	color: #212227;
}

.thegem-tabs__nav-slide {
	background-color: #212227;
}

:root {
	--thegem-to-link-color: #00bcd4;
}
a,
.widget_recent_comments .comment-author-link a,
.widget .team-person-email a:hover:before,
.gem-team-style-5 .team-person:hover .team-person-name,
.portfolio.hover-vertical-sliding .overlay .links .caption .info a,
.portfolio.hover-horizontal-sliding .overlay .links .caption .info a,
.portfolio-set-comma,
.blog-style-masonry .entry-title.title-h4 a:hover,
.portfolio-item .caption .title a:hover,
.version-new.news-grid:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .title a,
.version-new.news-grid:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .title a,
.version-new.news-grid .portfolio-item .wrap > .caption .title a:hover,
.news-grid.portfolio.background-style-dark:not(.disabled-hover) .portfolio-item:hover .wrap > .caption .title a,
.version-default.news-grid .portfolio-item:hover .wrap > .caption .title a,
.blog-style-styled_list1 .post-title a:hover,
.blog-style-styled_list2 .post-title a:hover,
.blog-style-timeline .post-title a:hover,
.products .product-info .product-title a:hover,
.products .portfolio-item .wrap > .caption .title a:hover,
.gem-basic-grid .post-title h4.entry-title a:hover,
.gem-basic-grid-2 .vc_gitem-zone-c .post-title a:hover,
.gem-media-grid .midia-grid-item-post-author span a:hover,
.justified-style-1 .entry-title.title-h4 a:hover,
.justified-style-2 .entry-title.title-h4 a:hover,
.blog-style-multi-author .post-title a:hover,
.reverse-link-color a:hover,
a.reverse-link-color:hover,
.gem-blog-slider .post-title a:hover,
.socials-list.socials-colored a:hover .socials-item-icon,
#footer-navigation li a:hover,
.custom-footer li a:hover,
body.woocommerce-cart .custom-header .breadcrumbs span a,
body.woocommerce-checkout .custom-header .breadcrumbs span a,
body.woocommerce-wishlist .custom-header .breadcrumbs span a,
body.woocommerce-account .page-title-block .breadcrumbs span a,
body #primary-menu.no-responsive > li.menu-item-cart > .minicart ul li a:hover,
body .hamburger-minicart > .minicart ul li a:hover,
.news-grid.portfolio.background-style-dark .portfolio-item .wrap > .caption .title a:hover,
.version-default.news-grid.hover-default-vertical-sliding .portfolio-item .image .links .caption .info a,
.product-page__wrapper .product-page__nav .product-page__nav-preview:hover .nav-preview__info-title,
.product-quick-view__wrapper .product-page__right-column .woocommerce-review-link:hover{
	color: #00bcd4;
}
.version-default.news-grid.hover-default-vertical-sliding .portfolio-item .image .links .caption .info .sep {
	border-left-color: #00bcd4;
}

:root {
	--thegem-to-link-color-hover: #384554FF;
}
a:hover,
body.woocommerce-cart .custom-header .breadcrumbs span a:hover,
body.woocommerce-checkout .custom-header .breadcrumbs span a:hover,
body.woocommerce-wishlist .custom-header .breadcrumbs span a:hover,
body.woocommerce-account .page-title-block .breadcrumbs span a:hover,
body .shop_table.cart .product-name .product-title a:hover,
body .checkout .shop_table .product-name .product-title a:hover,
.product-page__wrapper .reset_variations:hover,
.product-page__wrapper .size-guide a:hover,
.product-page__wrapper .product-page__nav .product-page__nav-list a:hover:before,
.gem-pagination.gem-pagination-arrows a.prev:not(.disabled):hover,
.gem-pagination.gem-pagination-arrows a.next:not(.disabled):hover {
	color: #384554FF;
}

:root {
	--thegem-to-link-color-active: #00bcd4;
}
a:active {
	color: #00bcd4;
}

#footer-navigation,
#footer-navigation li a,
.custom-footer,
.custom-footer li a {
	color: #4953A1FF;
}

.footer-site-info {
	color: #4953A1FF;
}

.footer-site-info a {
	color: #4953A1FF;
}

.wpb_widgetised_column .mc4wp-form-fields,
.sidebar .mc4wp-form-fields {
	background-color: #f4f6f7;
}

.top-area {
	border-top: 5px solid #00bcd4;
}

.top-area {
	border-bottom: 1px solid #dfe5e8;
}
.top-area-contacts:after,
.top-area-socials:after {
	border-right: 1px solid #dfe5e8;
}

.top-area {
	color: #5f727f;
}


:root {
	--thegem-to-top-area-link-color: #5f727f;
}
.top-area a,
.top-area .gem-contacts .gem-contacts-item a {
	color: #5f727f;
}

.top-area a:hover,
.top-area .gem-contacts .gem-contacts-item a:hover {
	color: #00bcd4;
}

.top-area .gem-button {
	color: #ffffff;
}

.top-area .gem-button {
	background-color: #494c64;
}


.top-area .gem-button:hover {
	color: #ffffff;
}

.top-area .gem-button:hover {
	background-color: #00bcd4;
}




#footer-menu li + li:before {
	border-right-color: #00000000;
}

#footer-nav {
	border-top-color: #00000000;
}

:root {
	--thegem-to-date-filter-subtitle-color: #99a9b5;
}
.gem-news-item-date,
.related-element-info .gem-post-date,
.date-color,
.combobox-wrapper .combobox-text,
.socials-sharing a.socials-item,
body .gem-testimonial-position,
.gem-testimonial-company,
.jtwt_date,
.blog.blog-style-timeline .comments,
.entry-date,
.portfolio-filters a,
.comments-link a,
.widget_recent_entries .post-date,
.post-author-info .date,
.block-date,
.block-tags .sep,
.styled-blog-meta .comments:after,
.related-element-info .date,
.login label,
.register label,
.woocommerce-password-hint,
body .woocommerce .shop_table.wishlist_table td.product-price del,
body .woocommerce .wishlist_table .product-info .product-info-content .product-price del,
body .woocommerce .woocommerce-checkout .checkout-payment .shop_table td.product-total .amount,
body .checkout-login .woocommerce-form-login.login .form-row .checkout-login-remember label,
body .shop_table .product-name dl.variation,
body.woocommerce-cart .custom-header .breadcrumbs .current,
body.woocommerce-checkout .custom-header .breadcrumbs .current,
body.woocommerce-wishlist .custom-header .breadcrumbs .current,
body.woocommerce-account .page-title-block .breadcrumbs .current,
body .woocommerce .woocommerce-checkout.woocommerce-checkout-one-page #order_review .woocommerce-checkout-payment .payment_methods .payment_box,
body .woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .payment_box,
body #primary-menu.no-responsive > li.menu-item-cart > .minicart ul li .quantity,
body #primary-menu.no-responsive > li.menu-item-cart > .minicart .total,
body #primary-menu.no-responsive > li.menu-item-cart > .minicart ul li.empty,
body .hamburger-minicart > .minicart .total,
body .hamburger-minicart > .minicart ul li.empty,
body .hamburger-minicart > .minicart .total strong,
body .hamburger-minicart > .minicart ul li .quantity,
body.mobile-cart-position-top #site-header .mobile-cart ul li .quantity,
body.mobile-cart-position-top #site-header .mobile-cart .total,
body.mobile-cart-position-top #site-header .mobile-cart ul li.empty,
.form-edit-adress label,
.teaser_grid_container .gem-post-date,
.gem-post-grid-item-date,
.page-title-style-2 .page-title-excerpt,
.blog.blog-style-masonry article .description .info .date,
.blog.blog-style-masonry article .description .info .sep,
.blog.blog-style-masonry article .description .info .comments,
.widget_categories > ul li,
.widget_product_categories > ul li,
.widget_pages > ul,
.gem-teams-position.body-small,
.widget .mc-text.small-body,
.widget .team-person-email,
.widget .jtwt_date,
.widget_recent_comments li,
.widget_price_filter .price_label,
.project_info-item-style-2 .project_info-item .title,
.mc4wp-form input[type='email'],
.gallery-caption,
#colophon .widget_tweets .jtwt_tweet a:hover,
#colophon .gem-contacts .gem-contacts-item.gem-contacts-website a:hover,
#colophon .gem-contacts .gem-contacts-item.gem-contacts-email a:hover,
#colophon .widget_calendar td a:hover,
.widget_meta li:before,
#colophon .skill-title,
#colophon .widget.widget_search .gem-button,
#colophon .wpcf7 .wpcf7-form .contact-form-footer .wpcf7-submit,
#colophon #mc4wp_submit,
#colophon .widget_meta li:before,
.gem-quote.gem-quote-style-5 blockquote,
.blog-style-masonry .post-meta-likes:hover,
.wpcf7-form .combobox-wrapper .combobox-text,
.blog-style-styled_list1 .post-date,
.blog-style-styled_list1 .post-author,
.blog-style-styled_list2 .post-date,
.blog-style-styled_list2 .post-author,
.gem-media-grid .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div,
.midia-grid-item-post-author,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page a,
.project-info-shortcode-style-default .project-info-shortcode-item .title,
.woocommerce-variation-availability,
.gem-search-form.gem-search-form-style-dark .search-field,
.version-new.news-grid .portfolio-item .wrap > .caption .post-date,
.version-new.news-grid .portfolio-item .wrap > .caption .post-author-date-separator,
.portfolio-selected-filters .portfolio-selected-filter-item,
.portfolio-filters-list .portfolio-search-filter .portfolio-search-filter-form input,
.portfolio-top-panel-right .portfolio-search-filter .portfolio-search-filter-form input,
.portfolio-filters-list .widget_product_search input,
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list .price-range-slider .slider-amount .text,
.product-page__wrapper .product-page__attribute,
.product-page__wrapper .product-meta .date-color,
.product-page__wrapper .socials-sharing .socials-item-title,
.thegem-combobox-wrap .thegem-combobox__trigger,
.thegem-combobox-wrap .thegem-combobox__options-item,
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list .price-range-slider .slider-amount .slider-amount-text,
table.variations .thegem-select {
	color: #99a9b5;
}

.version-default.news-grid.title-on-page.hover-horizontal-sliding .portfolio-item .image .links .caption .grid-post-meta .comments-link + .post-meta-likes,
.version-default.news-grid.title-on-page.hover-zooming-blur .portfolio-item .image .links .caption .grid-post-meta .comments-link + .post-meta-likes {
	border-left-color: #99a9b5;
}
body .woocommerce input[type="text"].coupon-code::placeholder,
body .woocommerce .woocommerce-shipping-calculator .form-row input.input-text::placeholder,
body .woocommerce .checkout .form-row .input-text::placeholder,
body .woocommerce .edit-address-form .form-row .input-text::placeholder,
body .woocommerce .checkout .form-row textarea.input-text::placeholder,
body .woocommerce .edit-address-form .form-row textarea.input-text::placeholder {
	color: #99a9b5;
}
body .woocommerce input[type="text"].coupon-code::-webkit-input-placeholder,
body .woocommerce .woocommerce-shipping-calculator .form-row input.input-text::-webkit-input-placeholder,
body .woocommerce .checkout .form-row .input-text::-webkit-input-placeholder,
body .woocommerce .edit-address-form .form-row .input-text::-webkit-input-placeholder,
body .woocommerce .checkout .form-row textarea.input-text::-webkit-input-placeholder,
body .woocommerce .edit-address-form .form-row textarea.input-text::-webkit-input-placeholder {
	color: #99a9b5;
}

:root {
	--thegem-to-system-icons-font-color: #99a3b0;
}
.blog.blog-style-timeline article .comments:before,
.widget .gem-contacts-email:before,
.widget .gem-contacts-phone:before,
.widget .gem-contacts-address:before,
.widget .gem-contacts-fax:before,
.top-area-search .searchform button:before,
.blog.blog-style-masonry article .description .info .comments:before,
.blog-style-default .post-image .gem-dummy:after,
.widget_product_search button,
.products .product-bottom .bottom-product-link,
.products .product-bottom .add_to_cart_button,
.products .product-bottom .added_to_cart,
.products .product-bottom .add_to_wishlist,
.products .product-bottom .button:is(.product_type_grouped, .product_type_external),
.products .product-bottom .yith-wcwl-wishlistaddedbrowse a,
.combobox-wrapper .combobox-button:before {
	color: #99a3b0;
}

.thegem-combobox-wrap .thegem-combobox__trigger:after {
	border-color: #99a3b0;
}

:root {
	--thegem-to-system-icons-font2-color: #b6c6c9;
}
.project_info-item-style-1 .project_info-item .icon,
.widget_recent_comments li:before,
.widget_recent_entries ul li:before,
.portfolio-filters a .icon,
.comment-form label:before,
.jtwt_tweet:before,
.post-related-posts .gem-dummy:after,
.socials-sharing a:after,
.product-page__wrapper .product-page__nav .product-page__nav-list a:before,
.gem-pagination.gem-pagination-arrows a.prev,
.gem-pagination.gem-pagination-arrows a.next {
	color: #b6c6c9;
}

:root {
	--thegem-to-button-basic-color: #ffffff;
}
.gem-button,
body .wp-block-button .wp-block-button__link,
.caption-bottom-line .post-footer-sharing .gem-button,
input[type='submit'],
.page-links a,
.blog-load-more button span,
.blog-load-more button span:before,
.widget a.gem-button,
#wp-calendar #prev a:after,
#wp-calendar #next a:after,
#wp-calendar caption:after,
#primary-menu.no-responsive > li.menu-item-cart .widget_shopping_cart_content .buttons a.checkout,
.hamburger-minicart .widget_shopping_cart_content .buttons a.checkout {
	color: #ffffff;
}
.single-product-content-right .yith-ywraq-add-to-quote a.button,
.single-product-content-right .compare.button{
	color: #ffffff !important;
}
.gem-button svg {
	fill: #ffffff;
}

:root {
	--thegem-to-button-basic-color-hover: #ffffff;
}
.gem-button:hover,
body .wp-block-button .wp-block-button__link:hover,
input[type='submit']:hover,
.caption-bottom-line .project-button .gem-button,
.portfolio.background-style-dark:not(.disabled-hover):not(.list-style) .portfolio-item:hover .caption-bottom-line .project-button .gem-button,
.page-links a,
.blog-load-more button span:hover,
.widget a.gem-button:hover,
#wp-calendar #prev a:hover:after,
#wp-calendar #next a:hover:after,
#primary-menu.no-responsive > li.menu-item-cart .widget_shopping_cart_content .buttons a:hover,
.hamburger-minicart .widget_shopping_cart_content .buttons a:hover {
	color: #ffffff;
}
.single-product-content-right .yith-ywraq-add-to-quote a.button:hover,
.single-product-content-right .compare.button:hover{
	color: #ffffff !important;
}
.gem-button:hover svg {
	fill: #ffffff;
}

:root {
	--thegem-to-button-basic-background-color: #b6c6c9;
}
.gem-button,
body .wp-block-button .wp-block-button__link,
.caption-bottom-line .post-footer-sharing .gem-button,
.portfolio-filters a:hover,
input[type='submit'],
.radio-sign.checked:before,
.page-links a,
.widget a.gem-button,
#wp-calendar #prev a,
#wp-calendar #next a,
.blog-load-more button,
.ui-slider-range.ui-widget-header.ui-corner-all,
.gem-blog-slider .gem-blog-slider-prev:hover,
.gem-blog-slider .gem-blog-slider-next:hover {
	background-color: #b6c6c9;
}
.single-product-content-right .yith-ywraq-add-to-quote a.button,
.single-product-content-right .compare.button{
	background-color: #b6c6c9 !important;
}
.comment-form .comment-author-input:after,
.comment-form .comment-email-input:after,
.comment-form .comment-url-input:after,
.team-person-socials .socials-item,
.checkbox-sign.checked:before,
body .wpcf7-form .combobox-button:before,
.wpcf7-form .phone:after,
.wpcf7-form .website:after,
.wpcf7-form .email:after,
.wpcf7-form  .name:after,
.wpcf7-form .gem-form-icon-phone:after,
.wpcf7-form .gem-form-icon-website:after,
.wpcf7-form .gem-form-icon-email:after,
.wpcf7-form .gem-form-icon-name:after,
.blog-style-styled_list1 .post-img a .dummy,
.blog-style-styled_list2 .post-img a .dummy,
.blog-style-timeline article:before,
.blog-style-timeline .post-img a .dummy {
	color: #b6c6c9;
}
.checkbox-sign,
.radio-sign {
	border: 1px solid #b6c6c9;
}

:root {
	--thegem-to-button-basic-background-color-hover: #212227;
}
.gem-button:hover,
body .wp-block-button .wp-block-button__link:hover,
input[type='submit']:hover,
.comment-form .form-submit .gem-button.submit:hover,
.caption-bottom-line .project-button .gem-button,
.portfolio.background-style-dark:not(.disabled-hover):not(.list-style) .portfolio-item:hover .caption-bottom-line .project-button .gem-button,
.page-links a,
.widget a.gem-button:hover,
#wp-calendar #prev a:hover,
#wp-calendar #next a:hover,
.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a:hover,
.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a:hover,
.blog-load-more button:hover,
.page-content.content-none .searchform .searchform-submit .gem-button:hover,
.wpcf7-form.gem-contact-form-white input[type='submit']:hover,
.wpcf7-form .gem-button:not(.gem-button-wpcf-custom):hover,
.wpcf7-form input[type='submit']:not(.gem-button-wpcf-custom):hover,
.wpcf7-form.gem-contact-form-white input[type='submit']:not(.gem-button-wpcf-custom):hover,
.wpcf7-form.gem-contact-form-dark input[type='submit']:not(.gem-button-wpcf-custom):hover,
.gem-blog-slider .gem-blog-slider-prev,
.gem-blog-slider .gem-blog-slider-next,
.gem-search-form.gem-search-form-style-dark .search-field,
body .woocommerce .checkout-signin .checkout-create-account button:hover {
	background-color: #212227;
}
.single-product-content-right .yith-ywraq-add-to-quote a.button:hover,
.single-product-content-right .compare.button:hover{
	background-color: #212227 !important;
}
.portfolio.background-style-dark .caption-bottom-line .project-button .gem-button {
	color: #212227;
}

.gem-button.gem-button-style-outline,
body .woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button:not([aria-disabled="true"]):hover,
body.woocommerce-cart-layout-modern .woocommerce-empty-cart .return-to-shop .gem-button:hover,
body .checkout-navigation-buttons .checkout-place-order button:hover,
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .checkout-login .checkout-login-button button:hover {
	color: #00bcd4;
}
.gem-button.gem-button-style-outline svg {
	fill:  #00bcd4;
}

.gem-button.gem-button-style-outline:hover,
#colophon.wpcf7 .wpcf7-form .contact-form-footer .wpcf7-submit:hover,
body #colophon .tagcloud a:hover,
body .woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button,
body.woocommerce-cart-layout-modern .woocommerce-empty-cart .return-to-shop .gem-button,
body .checkout-navigation-buttons .checkout-place-order button,
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .checkout-login .checkout-login-button button {
	color: #ffffff;
}
.gem-button.gem-button-style-outline:hover svg {
	fill:  #ffffff;
}

.gem-button.gem-button-style-outline,
body .woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button:hover,
body .woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button:not([aria-disabled="true"]):hover,
body.woocommerce-cart-layout-modern .woocommerce-empty-cart .return-to-shop .gem-button:hover,
body .checkout-navigation-buttons .checkout-place-order button:hover,
body .checkout-navigation-buttons .checkout-place-order button,
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .checkout-login .checkout-login-button button:hover,
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .checkout-login .checkout-login-button button {
	border-color: #00bcd4;
}
.gem-button.gem-button-style-outline:hover,
.comment-form .form-submit .gem-button.submit,
.portfolio-item:hover .caption-bottom-line .project-button .gem-button,
#colophon #mc4wp_submit:hover,
#colophon.wpcf7 .wpcf7-form .contact-form-footer .wpcf7-submit:hover,
body #colophon .tagcloud a:hover,
.portfolio-item-page-bottom .project-button .gem-button,
body .woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button,
body.woocommerce-cart-layout-modern .woocommerce-empty-cart .return-to-shop .gem-button,
body .checkout-navigation-buttons .checkout-place-order button,
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .checkout-login .checkout-login-button button {
	background-color: #00bcd4;
}

.top-area .gem-button.gem-button-style-outline{
	color: #ffffff;
}

.top-area .gem-button.gem-button-style-outline{
	background-color: #494c64;
}


.top-area .gem-button.gem-button-style-outline:hover {
	color: #ffffff;
}

.top-area .gem-button.gem-button-style-outline:hover {
	background-color: #00bcd4;
}


.widget-title,
.woocommerce .widget .gem-products-price ins,
.woocommerce .widget .gem-products-price .amount,
.widget_shopping_cart ul li .quantity,
.widget_shopping_cart .total span.amount {
	color: #212227;
}

.widget a {
	color: #5F727F00;
}

:root {
	--thegem-to-widget-hover-link_color: #00bcd4;
}

.widget a:hover,
.gem-contacts-item.gem-contacts-email a,
.gem-contacts-item.gem-contacts-website a,
.widget_nav_menu li a:hover,
.widget_submenu li a:hover,
.widget_pages ul li a:hover,
.widget_categories > ul > li > a:hover,
.widget_product_categories > ul > li > a:hover,
.widget_nav_menu .current-menu-ancestor > a,
.widget_submenu .menu-item-active> a,
.widget_submenu .current-menu-ancestor > a,
.widget_categories > ul li.current-cat > a,
.widget_categories > ul > li.cat-parent.current-cat-ancestor:after,
.widget_categories > ul > li.cat-parent.current-cat-parent:after,
.widget_categories > ul > li.cat-parent.current-cat:after,
.widget_categories > ul li.cat-parent.current-cat-ancestor > a,
.widget_categories > ul li.cat-parent.current-cat-parent > a,
.widget_product_categories > ul li.current-cat > a,
.widget_product_categories > ul > li.cat-parent.current-cat-ancestor:after,
.widget_product_categories > ul > li.cat-parent.current-cat-parent:after,
.widget_product_categories > ul > li.cat-parent.current-cat:after,
.widget_product_categories > ul li.cat-parent.current-cat-ancestor > a,
.widget_product_categories > ul li.cat-parent.current-cat-parent > a,
.widget_pages > ul li li.current_page_item > a,
.widget_pages > ul li li.page_item_has_children.current_page_ancestor > a,
.widget_pages > ul li li.page_item_has_children.current_page_ancestor > a:after,
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list ul li a:not(.disable):hover,
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list ul li a.active,
.portfolio-filters-list .widget.widget_product_categories ul li a:hover,
.portfolio-filters-list .widget.widget_product_categories ul li.chosen > a,
.portfolio-filters-list .widget.widget_product_categories ul li.current-cat > a,
.portfolio-filters-list .widget.woocommerce-widget-layered-nav ul li a:hover,
.portfolio-filters-list .widget.woocommerce-widget-layered-nav ul li.chosen > a,
.portfolio-filters-list .widget.woocommerce-widget-layered-nav ul li.current-cat > a,
.portfolio-sorting-select ul li:hover,
.portfolio-sorting-select ul li.portfolio-sorting-select-current,
.thegem-popup-notification .notification-message:before,
.portfolio-filters-list .widget_recently_viewed_products ul.product_list_widget li .gem-products-title a:hover,
.portfolio-filters-list .widget_products ul.product_list_widget li .gem-products-title a:hover,
.portfolio-filters-list .widget_top_rated_products ul.product_list_widget li .gem-products-title a:hover,
body .gem-attribute-selector.type-label .gem-attribute-options li:hover .label,
.ajax-minisearch-results .ajax-search-item a:hover {
	color: #00bcd4;
}
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list ul li a:not(.disable):hover .count,
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list ul li a.active .count,
.portfolio-filters-list .widget ul li a:hover .count,
.portfolio-filters-list .widget ul li a:hover + .count,
.portfolio-filters-list .widget ul li.chosen .count,
.portfolio-filters-list .widget ul li.current-cat > .count,
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list .price-range-slider .slider-range .ui-slider-range,
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list .price-range-slider .slider-range .ui-slider-handle,
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list .price-range-slider .slider-range .ui-slider-handle + span,
.portfolio-filters-list .widget .price_slider .ui-slider-range,
.portfolio-filters-list .widget .price_slider .ui-slider-handle,
.portfolio-filters-list .widget .price_slider .ui-slider-handle + span,
.thegem-fullscreen-search .top-searches .top-search-item:hover {
	background: #00bcd4;
}

.widget a:active {
	color: #38455400;
}

#colophon .widget-title {
	color: #00BCD4FF;
}

#colophon .widget,
body #colophon .widget .gem-testimonial-position,
#colophon .widget.widget_recent_entries .post-date {
	color: #00BCD4FF;
}

#colophon .widget a,
#colophon .gem-contacts .gem-contacts-item:before {
	color: #00BCD4FF;
}

#colophon .widget a:hover,
#colophon .gem-contacts .gem-contacts-item.gem-contacts-website a,
#colophon .gem-contacts .gem-contacts-item.gem-contacts-email a,
#colophon #wp-calendar #prev a:hover:after,
#colophon #wp-calendar #next a:hover:after,
#colophon  .widget_tweets .jtwt_tweet a,
#colophon  .recentcomments .comment-author-link a,
#colophon .widget .jtwt_date,
#colophon  .widget_tweets .twitter-box .jtwt_tweet:before,
#colophon .recentcomments .comment-author-link,
#colophon .comment-author-link,
#colophon .gem-latest-news-title span,
#colophon .gem-pp-posts-date,
#colophon .gem-contacts a:before {
	color: #00bcd4;
}

#colophon .widget a:active {
	color: #00bcd4;
}

#colophon .widget-title:after {
	color: #FFFFFF00;
	display: inline-block;
}


.portfolio-item .caption .title,
.portfolio-item .caption .title a {
	color: #5f727f;
}

.portfolio-item .caption .subtitle {
	color: #5f727f;
}

:root {
	--thegem-to-portfolio-date-color: #99a9b5;
}
.portfolio-item .caption .info,
.portfolio.background-style-gray:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .subtitle,
.portfolio.background-style-gray:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .subtitle,
.portfolio.background-style-gray.version-alternative:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .zilla-likes,
.portfolio.background-style-dark:not(.list-style) .portfolio-item:not(:hover) .wrap > .caption .subtitle,
.portfolio.background-style-dark.list-style .portfolio-item .wrap > .caption:not(:hover) .subtitle,
.portfolio.background-style-dark.version-alternative:not(.list-style) .portfolio-item:not(:hover) .wrap > .caption .zilla-likes,
.news-grid.hover-horizontal-sliding .portfolio-item .image .links .caption .author .author-name,
.news-grid.hover-horizontal-sliding .portfolio-item .image .links .caption .author .author-name a {
	color: #99a9b5;
}











.slideinfo .fancybox-title {
	background-color: #000000;
	background-color: rgba(0, 0, 0, 0.8);
}

.fancybox-title .slide-info-title,
.fancybox-title .gem-gallery-item-title {
	color: #ffffff;
}

.fancybox-title .slide-info-summary,
.fancybox-title .gem-gallery-item-description {
	color: #ffffff;
}

.nivo-directionNav .gem-prev:after,
.nivo-directionNav .gem-next:after,
.ls-thegem a.ls-nav-prev:after,
.ls-thegem a.ls-nav-next:after {
	background-color: #394050;
	font-size: 27px;
}

.vc_images_carousel .vc_carousel-control .icon-prev:before,
.vc_images_carousel .vc_carousel-control .icon-next:before,
.nivo-directionNav .gem-prev:after,
.nivo-directionNav .gem-next:after,
.ls-thegem a.ls-nav-prev:after,
.ls-thegem a.ls-nav-next:after {
	color: #ffffff;
}

.gem-prev:after,
.gem-next:after,
.row .wpb_gallery .wpb_flexslider .flex-direction-nav a,
.row .theme-default .nivo-directionNav a,
.row .vc_carousel-control .icon-next,
.row .vc_carousel-control .icon-prev,
.thegem_pf_item .post-meta-navigation a,
.thegem_pf_item .post-meta-left .post-meta-date:before,
.extended-carousel-grid .owl-carousel .owl-nav .owl-prev div,
.extended-carousel-grid .owl-carousel .owl-nav .owl-next div {
	color: #212227;
}

.gem-prev:after,
.gem-next:after,
.row .theme-default .nivo-directionNav a,
.row .vc_images_carousel .vc_carousel-control .icon-prev,
.row .vc_images_carousel .vc_carousel-control .icon-next,
.portfolio.portfolio-slider .portolio-slider-prev span,
.portfolio.portfolio-slider .portolio-slider-next span,
.gem-gallery .gem-gallery-thumbs-navigation .gem-prev:not(:hover):after,
.gem-gallery .gem-gallery-thumbs-navigation .gem-next:not(:hover):after,
.extended-carousel-grid .owl-carousel .owl-nav .owl-prev div.position-on,
.extended-carousel-grid .owl-carousel .owl-nav .owl-next div.position-on {
	background-color: #b6c6c9;
}

.gem-prev:hover:after,
.gem-next:hover:after,
.row .wpb_gallery .wpb_flexslider .flex-direction-nav a:hover,
.row .theme-default .nivo-directionNav a:hover,
.row .vc_images_carousel .vc_carousel-control .icon-prev:hover,
.row .vc_images_carousel .vc_carousel-control .icon-next:hover,
.row .vc_images_carousel .vc_carousel-control .icon-prev:hover:before,
.row .vc_images_carousel .vc_carousel-control .icon-next:hover:before,
.portfolio.portfolio-slider .portolio-slider-prev span,
.portfolio.portfolio-slider .portolio-slider-next span,
.portfolio.portfolio-slider .portolio-slider-prev:hover span,
.portfolio.portfolio-slider .portolio-slider-next:hover span,
.extended-carousel-grid .owl-carousel .owl-nav .owl-prev:hover div.position-on,
.extended-carousel-grid .owl-carousel .owl-nav .owl-next:hover div.position-on {
	color: #ffffff;
}

.gem-prev:hover:after,
.gem-next:hover:after,
.gem-testimonials.fullwidth-block .gem-prev:hover:after,
.gem-testimonials.fullwidth-block .gem-next:hover:after,
.row .wpb_gallery .wpb_flexslider .flex-direction-nav a:hover,
.row .theme-default .nivo-directionNav a:hover,
.row .vc_images_carousel .vc_carousel-control .icon-prev:hover,
.row .vc_images_carousel .vc_carousel-control .icon-next:hover,
.portfolio.portfolio-slider .portolio-slider-prev:hover span,
.portfolio.portfolio-slider .portolio-slider-next:hover span,
.extended-carousel-grid .owl-carousel .owl-nav .owl-prev:hover div.position-on,
.extended-carousel-grid .owl-carousel .owl-nav .owl-next:hover div.position-on {
	background-color: #00bcd4;
}





:root {
	--thegem-to-hover-default-color: #00BCD4BF;
	--thegem-to-hover-default-color-03: rgba(0, 188, 212, 0.3);
	--thegem-to-hover-default-color-08: rgba(0, 188, 212, 0.8);
}
.gem-image a:before,
.gem-textbox-picture a:before,
.team-person-image a:before,
.team-person-image span:before,
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-gallery-item a:before,
.gem-simple-gallery .gem-gallery-item a:before,
.portfolio-item .image .overlay:before,
.gallery-item .overlay:before,
.widget .flickr-item a:before,
.widget-gem-portfolio-item .widget-gem-portfolio-item-hover,
div.blog article a.youtube:before,
div.blog article a.vimeo:before,
div.blog article a.self_video:before,
div.blog article a.default:before,
.widget .gem-pp-posts a:before,
.widget .gem-latest-news-image a:before {
		background-color: #00BCD4BF;
	}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item a:before,
.gem-gallery-hover-default .active .gem-gallery-item-image:after {
	background-color: #00BCD4BF;
}
.gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item svg {
	fill: #00BCD4BF;
}
.gem-gallery-hover-default .active .gem-gallery-item-image:after {
	background-color: #00BCD4BF;
}
.portfolio.products.hover-zooming-blur .portfolio-item .overlay .product-rating .star-rating > span:before,
.portfolio.products.hover-zooming-blur .portfolio-item .image .links .caption .product-price .amount,
.portfolio.products.hover-zooming-blur .portfolio-item .image .links .caption .product-price,
.portfolio.products.hover-zooming-blur .portfolio-item .image .overlay .portfolio-icons.product-bottom a.added_to_cart,
.portfolio.products.hover-zooming-blur .portfolio-item .image .overlay .portfolio-icons.product-bottom .yith-wcwl-wishlistaddedbrowse a {
	color: #00BCD4BF;
}
body .products .product-image .woo-product-overlay,
body #primary-menu.no-responsive > li.menu-item-cart > .minicart ul li .minicart-image:after,
body .hamburger-minicart > .minicart ul li .minicart-image:after,
body.mobile-cart-position-top #site-header .mobile-cart ul li .minicart-image:after,
body .widget_shopping_cart ul li .minicart-image:after,
body ul.product_list_widget .gem-products-image a:before,
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__image:after{
	background-color: rgba(0, 188, 212, 0.3);
}

.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap .gem-gallery-item a:before,
.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item a:before,
.portfolio.hover-zooming-blur .portfolio-item .image .overlay:before,
.portfolio.hover-new-zooming-blur .portfolio-item .image .overlay:before,
.hover-new-zooming-blur .portfolio-item .gem-simple-gallery .gem-gallery-item a:before,
.portfolio.hover-default-zooming-blur .portfolio-item .image .overlay:before,
.hover-default-zooming-blur .portfolio-item .gem-simple-gallery .gem-gallery-item a:before,
.hover-zooming-blur .portfolio-item .gem-simple-gallery .gem-gallery-item a:before,
.gem-gallery-grid.hover-zooming-blur .gallery-item .overlay:before,
.gem-gallery-hover-zooming-blur .gem-gallery-item .gem-gallery-item-image a:before,
body .blog-style-styled_list1 article a.default:before,
body .blog-style-styled_list2 article a.default:before,
body .blog-style-compact article a.default:before,
body .blog-style-compact-tiny-1 article a.default:before,
.blog article .post-featured-content > a:before,
.blog .gem-simple-gallery .gem-gallery-item a:before {
		background-color: rgba(255, 255, 255, 0.8);
	}
.gem-gallery.gem-gallery-hover-zooming-blur .gem-gallery-thumbs-carousel-wrap .gem-gallery-item svg,
.gem-gallery.gem-gallery-hover-gradient .gem-gallery-thumbs-carousel-wrap .gem-gallery-item svg{
	fill: #ffffff;
}
.gem-gallery.gem-gallery-hover-zooming-blur .active .gem-gallery-item-image:after,
.gem-gallery.gem-gallery-hover-gradient .active .gem-gallery-item-image:after
{
	background-color: #ffffff;
}
.portfolio.products.hover-zooming-blur .portfolio-item .overlay .product-rating .star-rating:before {
	color: #ffffff;
}

.gem-gallery-hover-horizontal-sliding .gem-gallery-item .gem-gallery-item-image a:before,
.portfolio.hover-horizontal-sliding .overlay:before,
.gem-gallery-grid.hover-horizontal-sliding .gallery-item .overlay:before,
.hover-new-horizontal-sliding .portfolio-item .image .overlay:before,
.hover-new-horizontal-sliding .portfolio-item .gem-simple-gallery .gem-gallery-item a:before,
.hover-default-horizontal-sliding .portfolio-item .image .overlay:before,
.hover-default-horizontal-sliding .portfolio-item .gem-simple-gallery .gem-gallery-item a:before,
.hover-horizontal-sliding .portfolio-item .gem-simple-gallery .gem-gallery-item a:before {
		background-color: #00BCD4BF;
	}
.gem-gallery-hover-horizontal-sliding .active .gem-gallery-item-image:after {
	background-color: #00BCD4BF;
}
.gem-gallery.gem-gallery-hover-horizontal-sliding .gem-gallery-thumbs-carousel-wrap .gem-gallery-item svg{
	fill: #00BCD4BF;
}
.team-person-image span:before,
.gem-team-style-5 .team-person-image a:before,
.gem-team-style-5 .team-person-image span:before {
		background-color: #00BCD4BF;
	}



.gem-gallery-hover-vertical-sliding .gem-gallery-item .gem-gallery-item-image a:before,
.portfolio.hover-vertical-sliding .overlay:before,
.portfolio.hover-new-vertical-sliding .overlay:before,
.portfolio.hover-new-vertical-sliding .portfolio-item .gem-simple-gallery .gem-gallery-item a:before,
.portfolio.hover-default-vertical-sliding .overlay:before,
.portfolio.hover-default-vertical-sliding .portfolio-item .gem-simple-gallery .gem-gallery-item a:before,
.hover-vertical-sliding .portfolio-item .gem-simple-gallery .gem-gallery-item a:before,
.gem-gallery-grid.hover-vertical-sliding .gallery-item .overlay:before {
		background-color: rgba(244, 67, 54, 0.8);
	}
.gem-gallery-hover-vertical-sliding .active .gem-gallery-item-image:after {
	background-color: #f44336;
}
.gem-gallery.gem-gallery-hover-vertical-sliding .gem-gallery-thumbs-carousel-wrap .gem-gallery-item svg{
	fill: #f44336;
}

.quickfinder-item-title,
.quickfinder-item-title a,
.project_info-item-style-2 .title {
	color: #4c5867;
}

.quickfinder-item-text,
.quickfinder-item-text a {
	color: #5f727f;
}



body .gem-testimonials .gem-prev:after,
body .gem-testimonials.fullwidth-block .gem-prev:after,
body .gem-testimonials .gem-next:after,
body .gem-testimonials.fullwidth-block .gem-next:after {
	background-color: #5bcbde;
}

body .gem-testimonials .gem-prev:hover:after,
body .gem-testimonials.fullwidth-block .gem-prev:hover:after,
body .gem-testimonials .gem-next:hover:after,
body .gem-testimonials.fullwidth-block .gem-next:hover:after {
	background-color: #212227;
}

.widget_archive li:before,
.widget_nav_menu ul.menu li > a:before,
.widget_submenu > div > ul li > a:before,
.widget_categories > ul li > a:before,
.widget_product_categories > ul li > a:before,
.widget_pages > ul li > a:before,
.widget_meta li:before,
.widget_rss li:before,
.project_info-item-style-2 .icon,
.gem_accordion_header .ui-accordion-header-icon:before,
.wpb_toggle:after,
.vc_toggle_title:after,
.widget_layered_nav ul li a:before,
.widget .gem-contacts-address:before,
.widget .gem-contacts-phone:before,
.widget .gem-contacts-fax:before,
.widget .gem-contacts-email:before,
.widget .gem-contacts-website:before,
.resp-accordion:after {
	color: #5f727f;
}

.gem-icon,
.widget .team-person-email a:before,
.woocommerce-message:before,
.woocommerce-info:before {
	color: #91a0ac;
}
.gem-icon svg {
	fill: #91a0ac;
}

:root {
	--thegem-to-icons-portfolio-gallery-color-hover: #fff;
}
.gem-image a:after,
.portfolio-item .image .overlay .links a.icon:before,
.portfolio-item .image .overlay .links a.icon i,
.portfolio.hover-title .portfolio-item .caption .title,
.portfolio.hover-title .portfolio-item .caption .product-variations,
.portfolio.hover-title.columns-4 .portfolio-item .caption .title,
.portfolio.hover-title .portfolio-item .caption .subtitle,
.portfolio.hover-title .portfolio-item .caption .info,
.portfolio.hover-title .portfolio-item .caption .info a,
.portfolio.hover-default .portfolio-item .image .overlay .links .caption .info a,
.portfolio .portfolio-item .image .overlay .links .portfolio-sharing-pane .socials-item,
.portfolio.products .portfolio-item .image .overlay .portfolio-icons.product-bottom a.added_to_cart,
.portfolio.products .portfolio-item .image .overlay .portfolio-icons.product-bottom .yith-wcwl-wishlistaddedbrowse a,
.news-grid.portfolio.hover-title .portfolio-item .caption .title > *,
.news-grid.portfolio.hover-default .comments-link a,
.news-grid.portfolio.hover-vertical-sliding .comments-link a,
.news-grid.portfolio.hover-gradient .comments-link a,
.news-grid.portfolio.hover-circular .comments-link a,
.news-grid.portfolio.hover-default .zilla-likes,
.news-grid.portfolio.hover-vertical-sliding .zilla-likes,
.news-grid.portfolio.hover-gradient .zilla-likes,
.news-grid.portfolio.hover-circular .zilla-likes,
.news-grid.hover-default .portfolio-item .image .links .caption .author .author-name,
.news-grid.hover-default .portfolio-item .image .links .caption .author .author-name a,
.news-grid.hover-vertical-sliding .portfolio-item .image .links .caption .author .author-name,
.news-grid.hover-vertical-sliding .portfolio-item .image .links .caption .author .author-name a,
.news-grid.hover-default .portfolio-item .image .links .caption .description .subtitle,
.news-grid.hover-vertical-sliding .portfolio-item .image .links .caption .description .subtitle,
.news-grid.hover-horizontal-sliding .portfolio-item .image .links .caption .description .subtitle,
.news-grid.hover-vertical-sliding .portfolio-item .image .links .caption .post-date,
.news-grid.hover-horizontal-sliding .portfolio-item .image .links .caption .post-date,
.news-grid.hover-gradient .portfolio-item .image .links .caption .post-date,
.news-grid.hover-circular .portfolio-item .image .links .caption .post-date,
.news-grid.portfolio.hover-vertical-sliding .portfolio-item .image .overlay .links .caption .info a,
.news-grid.portfolio.hover-vertical-sliding .portfolio-item .image .overlay .links .caption .info span.sep,
.news-grid.hover-gradient .portfolio-item .image .links .caption .author .author-name,
.news-grid.hover-gradient .portfolio-item .image .links .caption .author .author-name a,
.news-grid.hover-circular .portfolio-item .image .links .caption .author .author-name,
.news-grid.hover-circular .portfolio-item .image .links .caption .author .author-name a,
.news-grid.hover-gradient.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .subtitle,
.news-grid.hover-circular.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .subtitle,
.news-grid.hover-circular .portfolio-item .image .links .caption .post-date,
.news-grid .portfolio-item.double-item-style-alternative .highlight-item-alternate-box .post-date,
.news-grid .portfolio-item.double-item-style-alternative .highlight-item-alternate-box .title > *,
.news-grid .portfolio-item.double-item-style-alternative .highlight-item-alternate-box .info a,
.portfolio.background-style-gray:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .title,
.portfolio.background-style-gray:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .title,
.portfolio.background-style-gray:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .product-variations,
.portfolio.background-style-gray:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .product-variations,
.portfolio.background-style-dark .portfolio-item .wrap > .caption .title,
.news-grid.portfolio.background-style-gray:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .title,
.news-grid.portfolio.background-style-gray:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .title,
.news-grid.portfolio.background-style-gray:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .title a,
.news-grid.portfolio.background-style-gray:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .title a,
.news-grid.portfolio.background-style-dark .portfolio-item .wrap > .caption .title,
.news-grid.portfolio.background-style-dark .portfolio-item .wrap > .caption .title a,
.gallery-item .overlay .title,
.gallery-item .overlay .subtitle,
.gallery-item .overlay a.icon:before,
.gallery-item .overlay a.icon i,
.gem-gallery .gem-gallery-preview-carousel-wrap:hover .gem-prev:after,
.gem-gallery .gem-gallery-preview-carousel-wrap:hover .gem-next:after,
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after,
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-gallery-item a i,
.gem-gallery .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-caption,
.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after,
.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap .gem-gallery-item a i,
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after,
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item a i,
.gem-simple-gallery .gem-gallery-item a:after,
.gem-simple-gallery .gem-gallery-item a i,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .info a,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .info span.sep,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .subtitle,
.portfolio.hover-circular .portfolio-item .image .overlay .links .caption .subtitle,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .info,
.portfolio.hover-circular .portfolio-item .image .overlay .links .caption .info,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .title,
.portfolio.hover-circular .portfolio-item .image .overlay .links .caption .title,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .product-variations,
.portfolio.hover-circular .portfolio-item .image .overlay .links .caption .product-variations,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .portfolio-sharing-pane .socials-item,
.version-new.news-grid .portfolio-item .image .links .caption .post-date,
.version-new.news-grid .portfolio-item .image .links .caption .author,
.version-new.news-grid .portfolio-item .links .caption .grid-post-meta .grid-post-meta-comments-likes a,
.version-new.news-grid.hover-new-horizontal-sliding .portfolio-item .links .caption .grid-post-meta .grid-post-meta-comments-likes a:before,
.version-new.news-grid.hover-new-horizontal-sliding .portfolio-item .links .caption .grid-post-meta .grid-post-meta-comments-likes a i,
.version-default.news-grid .portfolio-item .image .links .caption .post-date,
.version-default.news-grid.title-on-hover .portfolio-item .image .links .caption .author,
.version-default.news-grid .portfolio-item .links .caption .grid-post-meta .grid-post-meta-comments-likes a,
.version-new.news-grid.portfolio.title-on-page .portfolio-item .image .links .caption .info a,
.version-new.news-grid.portfolio.title-on-page .portfolio-item .image .links .caption .info span,
.version-new.news-grid.portfolio.title-on-page .portfolio-item .image .links .caption .info .sep,
.news-grid.portfolio.hover-default-zooming-blur .portfolio-item .image .overlay .caption .title > *,
.version-default.news-grid.hover-default-zooming-blur .portfolio-item .image .links .caption .author,
.thegem-tabs__nav-item sup,
.thegem-accordion__item-title sup{
	color: #fff;
}

.version-default.news-grid .portfolio-item .image .links .caption .grid-post-meta .comments-link + .post-meta-likes,
.version-default.news-grid .portfolio-item .image .links .caption .grid-post-meta .grid-post-share + .grid-post-meta-comments-likes .comments-link,
.version-default.news-grid .portfolio-item .image .links .caption .grid-post-meta .grid-post-share + .grid-post-meta-comments-likes .post-meta-likes,
.version-default.news-grid .portfolio-item .image .links .caption .sep {
	border-left-color: #fff;
}

:root {
	--thegem-to-pagination-color: #99a9b5;
}
.gem-pagination a,
.gem-pagination .current {
	color: #99a9b5;
}
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page a {
	border: 2px solid #99a9b5 !important;
}
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-prev a,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-next a {
	background-color: #99a9b5 !important;
}
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page a {
	color: #99a9b5 !important;
}

:root {
	--thegem-to-pagination-background-color: #ffffff;
}
.gem-pagination a,
.gem-pagination .current,
.gem-pagination .dots {
	background-color: #ffffff;
}
.gem-pagination a:hover,
.gem-pagination .current {
	color: #ffffff;
}
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page a {
	background-color: #ffffff !important;
}
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page a:hover,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-prev a:hover,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-next a:hover,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-prev a,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-next a,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page.vc_grid-active a {
	color: #ffffff !important;
}

:root {
	--thegem-to-pagination-color-hover: #00bcd4;
}
.gem-pagination a:hover {
	background-color: #00bcd4;
}
.gem-pagination a:hover {
	border-color: #00bcd4;
}
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page a:hover,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-prev a:hover,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-next a:hover {
	background-color: #00bcd4;
}

:root {
	--thegem-to-pagination-color-active: #212227;
}
.gem-pagination .current {
	background-color: #212227;
}
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page.vc_grid-active a {
	background-color: #212227 !important;
}
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-page.vc_grid-active a{
	background-color: #212227 !important;
}

.gem-mini-pagination a,
.flexslider .flex-control-paging li a,
.flexslider .flex-control-paging li a:hover,
.vc_carousel-indicators li,
.row .gem-mini-pagination a,
.row .flexslider .flex-control-paging li a,
.row .flexslider .flex-control-paging li a:hover,
.row .vc_carousel-indicators li,
.vc_pagination.vc_pagination-style-thegem.vc_pagination-shape-circle .vc_pagination-trigger,
.vc_pagination.vc_pagination-style-thegem.vc_pagination-shape-circle .vc_pagination-trigger:hover,
.row .theme-default .nivo-controlNav a,
.product-gallery .owl-dots .owl-dot span,
.extended-carousel-grid .owl-carousel .owl-dots .owl-dot span {
	background-color: #b6c6c9;
}
.portfolio-filters-list .portfolio-filter-item.single .portfolio-filter-item-list ul li a:before {
	border-color: #b6c6c9;
}

.gem-mini-pagination a.selected,
.gem-mini-pagination a.active,
.flexslider .flex-control-paging li a.flex-active,
.flexslider .flex-control-paging li a.flex-active:hover,
.vc_carousel-indicators .vc_active,
.row .flexslider .flex-control-paging li a.flex-active,
.row .flexslider .flex-control-paging li a.flex-active:hover,
.row .vc_carousel-indicators .vc_active,
.vc_pagination.vc_pagination-style-thegem.vc_pagination-shape-circle .vc_active .vc_pagination-trigger,
.row .theme-default .nivo-controlNav a.active,
.product-gallery .owl-dots .owl-dot.active span,
.extended-carousel-grid .owl-carousel .owl-dots .owl-dot.active span {
	background-color: #00bcd4;
}







:root {
	--thegem-to-form-elements-background-color: #f4f6f7;
}
input[type="text"],
input[type="password"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="number"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="month"],
input[type="week"],
textarea,
.chosen-container,
.select2-container,
.checkbox-sign,
.radio-sign {
	background-color: #f4f6f7;
}
.chosen-container-single .chosen-single div:before,
.select2-container .select2-choice .select2-arrow:before {
	color: #f4f6f7;
}

:root {
	--thegem-to-form-elements-text-color: #212227;
}
input[type="text"],
input[type="password"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="number"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="month"],
input[type="week"],
textarea,
select,
.chosen-container-single .chosen-single,
.select2-container .select2-choice,
.widget_product_search form:before {
	color: #212227;
}

:root {
	--thegem-to-form-elements-border-color: #DFE5E800;
}
input[type="text"],
input[type="password"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="number"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="month"],
input[type="week"],
textarea,
.combobox-wrapper,
#page .woocommerce .select2-container .select2-selection--single,
.select2-container .select2-dropdown,
.chosen-container-single .chosen-single,
.select2-container .select2-choice,
select.wpcf7-form-control.wpcf7-select,
.thegem-combobox-wrap .thegem-combobox__trigger,
.thegem-combobox-wrap .thegem-combobox__options,
.product-page__wrapper .product-page__nav .product-page__nav-preview,
.product-page__wrapper form.cart .quantity,
.gem-attribute-selector .gem-attribute-options li,
table.variations .thegem-select {
	border: 1px solid #DFE5E800;
}
.chosen-container-single .chosen-single div,
.edit-address-form .form-row .chosen-container-single .chosen-single div,
.select2-container .select2-choice .select2-arrow,
.product-page__wrapper form.cart .quantity button:before{
	background-color: #DFE5E800;
}

body .breadcrumbs,
body .breadcrumbs a,
body .bc-devider:before {
	color: #00bcd4;
}

body .breadcrumbs .current {
	color: #99a9b5;
	border-bottom: 3px solid #99a9b5;
}

body .breadcrumbs a:hover {
	color: #99a9b5;
}

.products .product .product-inner:not(:hover) .product-info .product-title,
.products .portfolio-item:not(:hover) .wrap > .caption .title {
	color: #5f727f;
}

:root {
	--thegem-to-product-title-color: #212227;
}
.single-product-content .product_title {
	color: #212227;
}

.widget .gem-products-content .gem-products-title,
.widget .gem-products-content .gem-products-title a {
	color: #5f727f;
}

:root {
	--thegem-to-product-title-cart-color: #00bcd4;
}
body .shop_table.cart .product-name .product-title,
body .shop_table.cart .product-name .product-title a {
	color: #00bcd4;
}

body .checkout .shop_table .product-name .product-title,
body .checkout .shop_table .product-name .product-title a {
	color: #384554;
}

.products .product-info .price ins,
.products .product-info .price .amount {
	color: #00bcd4;
}

:root {
	--thegem-to-product-price-color: #212227;
}
.single-product-content .price,
.single-product-content .price del{
	color: #212227;
}

.product-page__wrapper .price del:before{
	background-color: #212227;
}

.widget .gem-products-content .gem-products-price ins,
.widget .gem-products-content .gem-products-price .amount {
	color: #212227;
}

:root {
	--thegem-to-product-price-cart-color: #212227;
}
.woocommerce .shop_table tr td.product-price,
.woocommerce .shop_table tr td.product-subtotal,
.woocommerce .wishlist_table .product-info .product-info-content .product-price,
body .woocommerce .shop_table td.product-price,
body .woocommerce .shop_table td.product-subtotal,
body .woocommerce .wishlist_table .product-info .product-info-content .product-price,
body .woocommerce .woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-price,
body .woocommerce .woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-subtotal,
body .woocommerce .cart_totals table td .amount,
body .woocommerce .cart_totals table tr.order-total td .amount,
body .woocommerce .cart_totals table tr td,
body .woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total .cart-subtotal td .amount,
body .woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods .payment_box,
body .woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods .payment_box:before,
body .woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .payment_box,
body .woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .payment_box:before,
body .woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .checkout-payment .shop_table td.product-total .amount,
body .woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total .order-total td .amount,
body #primary-menu.no-responsive > li.menu-item-cart > .minicart ul li .quantity span.amount,
body #primary-menu.no-responsive > li.menu-item-cart > .minicart .total span.amount,
body .hamburger-minicart > .minicart ul li .quantity span.amount,
body .hamburger-minicart > .minicart .total span.amount,
body.mobile-cart-position-top #site-header .mobile-cart .total span.amount,
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-price{
	color: #212227;
}


.portfolio.item-separator .portfolio-item:before,
.portfolio.item-separator .portfolio-item:after,
.portfolio.item-separator .portfolio-item .item-separator-box:before,
.portfolio.item-separator .portfolio-item .item-separator-box:after {
	border-color: #222224FF;
}

body .woocommerce .shop_table thead tr th,
table.shop_table_responsive td[data-title]:before,
body .product-info .product-info-header > div {
	color: #fff;
}

body .woocommerce .shop_table thead tr th,
table.shop_table_responsive td[data-title]:before,
body .product-info .product-info-header > div {
	background-color: #212227;
}
body .woocommerce .shop_table thead tr th,
body .product-info .product-info-header > div {
	border-color: #212227;
}

body .woocommerce .shop_table .product-quantity input[type="number"],
body .woocommerce .order-details-column .cart_totals table td,
body .woocommerce .cart_totals table th,
body .woocommerce .cart_totals table tr td #shipping_method li label,
body .woocommerce .order-totals table tr td #shipping_method li label,
body .woocommerce .cart_totals table tr td #shipping_method li label .amount,
body .woocommerce .order-totals table tr td #shipping_method li label .amount,
body .woocommerce-shipping-destination span,
body .woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total th,
body .woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total .shipping td,
body .woocommerce .checkout .form-row label,
body .woocommerce .checkout-login .login .form-row label,
body .lost_reset_password .form-row label,
body .woocommerce .my-account-signup .register .form-row label,
body .woocommerce .wishlist_table td.product-stock-status .wishlist-in-stock,
body .woocommerce .wishlist_table .product-info .product-info-content .product-stock-status .wishlist-in-stock,
body .woocommerce .woocommerce-checkout-one-page #shipping_method .radio-sign + label {
	color: #5f727f;
}

body .checkout-steps .checkout-step,
body .checkout-steps .checkout-step:before,
body .checkout-steps .checkout-step:after {
	color: #99a9b5;
}

body .checkout-steps .checkout-step,
body .checkout-steps .checkout-step:before,
body .checkout-steps .checkout-step:after {
	background-color: #e9f0ef;
}

body .checkout-steps .checkout-step.active,
body .checkout-steps .checkout-step.before-active:before,
body .checkout-steps .checkout-step.before-active:after {
	color: #fff;
}

body .checkout-steps .checkout-step.active,
body .checkout-steps .checkout-step.before-active:before,
body .checkout-steps .checkout-step.before-active:after {
	background-color: #212227;
}



.wpcf7-form.gem-contact-form-white input[type="text"],
.wpcf7-form.gem-contact-form-white input[type="password"],
.wpcf7-form.gem-contact-form-white input[type="color"],
.wpcf7-form.gem-contact-form-white input[type="date"],
.wpcf7-form.gem-contact-form-white input[type="datetime"],
.wpcf7-form.gem-contact-form-white input[type="datetime-local"],
.wpcf7-form.gem-contact-form-white input[type="email"],
.wpcf7-form.gem-contact-form-white input[type="number"],
.wpcf7-form.gem-contact-form-white input[type="range"],
.wpcf7-form.gem-contact-form-white input[type="search"],
.wpcf7-form.gem-contact-form-white input[type="tel"],
.wpcf7-form.gem-contact-form-white input[type="time"],
.wpcf7-form.gem-contact-form-white input[type="url"],
.wpcf7-form.gem-contact-form-white input[type="month"],
.wpcf7-form.gem-contact-form-white input[type="week"],
.wpcf7-form.gem-contact-form-white textarea,
.wpcf7-form.gem-contact-form-white .combobox-wrapper,
.wpcf7-form.gem-contact-form-white select,
.wpcf7-form.gem-contact-form-white .checkbox-sign,
#colophon .wpcf7-form.gem-contact-form-white input[type="text"],
#colophon .wpcf7-form.gem-contact-form-white input[type="password"],
#colophon .wpcf7-form.gem-contact-form-white input[type="color"],
#colophon .wpcf7-form.gem-contact-form-white input[type="date"],
#colophon .wpcf7-form.gem-contact-form-white input[type="datetime"],
#colophon .wpcf7-form.gem-contact-form-white input[type="datetime-local"],
#colophon .wpcf7-form.gem-contact-form-white input[type="email"],
#colophon .wpcf7-form.gem-contact-form-white input[type="number"],
#colophon .wpcf7-form.gem-contact-form-white input[type="range"],
#colophon .wpcf7-form.gem-contact-form-white input[type="search"],
#colophon .wpcf7-form.gem-contact-form-white input[type="tel"],
#colophon .wpcf7-form.gem-contact-form-white input[type="time"],
#colophon .wpcf7-form.gem-contact-form-white input[type="url"],
#colophon .wpcf7-form.gem-contact-form-white input[type="month"],
#colophon .wpcf7-form.gem-contact-form-white input[type="week"],
#colophon .wpcf7-form.gem-contact-form-white textarea,
#colophon .wpcf7-form.gem-contact-form-white .combobox-wrapper,
#colophon .wpcf7-form.gem-contact-form-white select,
#colophon .wpcf7-form.gem-contact-form-white .checkbox-sign {
	border: 1px solid #00000000;
}












































body {
	background-color: #b9b8be;
}

body {
	background-color: #ffffff;
}



.header-background:before {
	background-color: #ffffff;
}
#site-header-wrapper {
	background-color: #ffffff;
}

:root {
	--thegem-to-navigation-background-image: none;
	--thegem-to-navigation-background-color: #ffffff;
}
.header-layout-fullwidth_hamburger #primary-menu.no-responsive,
#thegem-perspective .perspective-navigation:not(.responsive),
#page.vertical-header #site-header-wrapper,
.vertical-minisearch.menu-item-ajax-search .vertical-minisearch-shadow {
	background-color: #ffffff;
}


.top-area-background:before {
	background-color: #f4f6f7;
}

.block-content,
.gem-slideshow,
.slideshow-preloader {
	background-color: #ffffff;
}

#footer-nav {
	background-color: #C7CDFFFF;
}

#colophon {
	background-color: #C9F9FFFF;
}

	




.preloader:after,
.loading:after {
	display: none;
}
.preloader .preloader-spin,
.loading .preloader-spin {
	display: block;
}

.preloader:after,
.loading:after {
	display: none;
}
.preloader .preloader-spin,
.loading .preloader-spin {
	display: block;
}



.top-area-contacts .gem-contacts-address:before {
	font-family: 'FontAwesome';
	content: '\f1ad';
}


.top-area-contacts .gem-contacts-phone:before {
	font-family: 'ElegantIcons';
	content: '\e090';
}




.top-area-contacts .gem-contacts-email:before {
	font-family: 'MaterialDesignIcons';
	content: '\f2ad';
}


.top-area-contacts .gem-contacts-website:before {
	font-family: 'ElegantIcons';
	content: '\e91b';
}



	body .hover-gradient .portfolio-item .image .overlay:before,
	body .hover-gradient .gallery-item .overlay-wrap .overlay:before,
	body .hover-new-gradient .portfolio-item .image .overlay:before,
	body .portfolio.hover-new-gradient .portfolio-item .gem-simple-gallery .gem-gallery-item a:before,
	body .hover-default-gradient .portfolio-item .image .overlay:before,
	body .portfolio.hover-default-gradient .portfolio-item .gem-simple-gallery .gem-gallery-item a:before{
			background: linear-gradient(
			90deg,
			rgba(255,43,88,0.8) 0%,
			rgba(255,216,0,0.8) 100%
		) !important;
	
	}

	body .hover-circular .portfolio-item .image .overlay .overlay-circle,
	body .hover-circular .gallery-item .overlay-wrap .overlay .overlay-circle,
	body .hover-new-circular .portfolio-item .image .overlay .overlay-circle,
	body .portfolio.hover-new-circular .portfolio-item .gem-simple-gallery .gem-gallery-item a:before,
	body .hover-default-circular .portfolio-item .image .overlay .overlay-circle,
	body .portfolio.hover-default-circular .portfolio-item .gem-simple-gallery .gem-gallery-item a:before{
			background: linear-gradient(
		90deg,
		rgba(0, 188, 212,0.75) 0%,
		rgba(53, 64, 147,0.75) 100%
		) !important;
	
		}

		    :root {
	    --thegem-to-product-grid-title-font-family: Montserrat	    }
	    .portfolio.extended-products-grid .portfolio-item .caption .title {
	    font-family: 'Montserrat';
	    }
	
		    :root {
	    --thegem-to-product-grid-title-font-style: normal;
	    --thegem-to-product-grid-title-font-weight: 700;
	    }
	    .portfolio.extended-products-grid .portfolio-item .caption .title {
	    font-style: normal;
	    font-weight: 700;
	    }
					
		    :root {
	    --thegem-to-product-grid-title-font-size: 14px;
	    }
	    .portfolio.extended-products-grid .portfolio-item .caption .title {
	    font-size: 14px;
	    }
	    @media (min-width: 992px) {
	    .portfolio.extended-products-grid .portfolio-item.bigger .caption .title {
	    font-size: calc(14px * 1.7);
	    }
	    }
	
		    :root {
	    --thegem-to-product-grid-title-line-height: 18.2px;
	    --thegem-to-product-grid-title-max-height: calc(18.2px * 2);
	    }
	    .portfolio.extended-products-grid .portfolio-item .caption .title {
	    line-height: 18.2px;
	    }
	    @media (min-width: 992px) {
	    .portfolio.extended-products-grid .portfolio-item.bigger .caption .title {
	    line-height: calc(18.2px * 1.7);
	    }
	    }
	
		    :root {
	    --thegem-to-product-grid-title-text-transform: none;
	    }
	    .portfolio.extended-products-grid .portfolio-item .caption .title {
	    text-transform: none;
	    }
	
		    :root {
	    --thegem-to-product-grid-title-letter-spacing: 0px;
	    }
	    .portfolio.extended-products-grid .portfolio-item .caption .title {
	    letter-spacing: 0px;
	    }
	
	:root {
	--thegem-to-product-grid-title-color: #3C3950FF;
	}
	.portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .title {
	color: #3C3950FF;
	}

	:root {
	--thegem-to-product-grid-title-hover-color: #5F727FFF;
	}
	.portfolio.extended-products-grid.caption-position-page:not(.disabled-hover) .portfolio-item:hover .caption .title,
	.portfolio.extended-products-grid.caption-position-page.disabled-hover .portfolio-item .caption .title:hover {
	color: #5F727FFF;
	}

	:root {
	--thegem-to-product-grid-title-on-image-color: #212227FF;
	}
	.portfolio.extended-products-grid.caption-container-preset-light .portfolio-item .image .overlay .links .caption .title,
	.portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item .image .overlay .links .caption .title,
	.portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item .image .overlay .links .caption .title,
	.portfolio.extended-products-grid.caption-container-preset-light .portfolio-item .caption .cart.type_button.simple-type-button .button,
	.portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item .caption .cart.type_button.simple-type-button .button,
	.portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item .caption .cart.type_button.simple-type-button .button,
	.portfolio.extended-products-grid.caption-container-preset-light .portfolio-item .caption .cart.type_button.variable-type-button .button,
	.portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item .caption .cart.type_button.variable-type-button .button,
	.portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item .caption .cart.type_button.variable-type-button .button {
	color: #212227FF;
	}

	.portfolio.extended-products-grid.caption-container-preset-light .portfolio-item .caption .cart.type_button.simple-type-button .button,
	.portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item .caption .cart.type_button.simple-type-button .button,
	.portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item .caption .cart.type_button.simple-type-button .button,
	.portfolio.extended-products-grid.caption-container-preset-light .portfolio-item .caption .cart.type_button.variable-type-button .button,
	.portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item .caption .cart.type_button.variable-type-button .button,
	.portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item .caption .cart.type_button.variable-type-button .button {
	border-color: #212227FF;
	}

	.portfolio.extended-products-grid.caption-container-preset-light .portfolio-item .image .caption .categories,
	.portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item .image .caption .categories,
	.portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item .image .caption .categories {
	background-color: #212227FF;
	}

		    :root {
	    --thegem-to-product-grid-category-font-family: Montserrat;
	    }
	    .portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .categories,
	    .portfolio.extended-products-grid.caption-position-hover:not(.hover-slide):not(.hover-fade) .portfolio-item .caption .categories {
	    font-family: 'Montserrat';
	    }
	
		    :root {
	    --thegem-to-product-grid-category-font-style: normal;
	    --thegem-to-product-grid-category-font-weight: 500;
	    }
	    .portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .categories,
	    .portfolio.extended-products-grid.caption-position-hover:not(.hover-slide):not(.hover-fade) .portfolio-item .caption .categories {
	    font-style: normal;
	    font-weight: 500;
	    }
					
		    :root {
	    --thegem-to-product-grid-category-font-size: 9px;
	    }
	    .portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .categories,
	    .portfolio.extended-products-grid.caption-position-hover:not(.hover-slide):not(.hover-fade) .portfolio-item .caption .categories {
	    font-size: 9px;
	    }
	
		    :root {
	    --thegem-to-product-grid-category-line-height: 10.8px;
	    }
	    .portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .categories,
	    .portfolio.extended-products-grid.caption-position-hover:not(.hover-slide):not(.hover-fade) .portfolio-item .caption .categories {
	    line-height: 10.8px;
	    }
	
		    :root {
	    --thegem-to-product-grid-category-text-transform: uppercase;
	    }
	    .portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .categories,
	    .portfolio.extended-products-grid.caption-position-hover:not(.hover-slide):not(.hover-fade) .portfolio-item .caption .categories {
	    text-transform: uppercase;
	    }
	
		    :root {
	    --thegem-to-product-grid-category-letter-spacing: 0.45px;
	    }
	    .portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .categories,
	    .portfolio.extended-products-grid.caption-position-hover:not(.hover-slide):not(.hover-fade) .portfolio-item .caption .categories {
	    letter-spacing: 0.45px;
	    }
	
	:root {
	--thegem-to-product-grid-category-color: #99A9B5FF;
	}
	.portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .categories {
	color: #99A9B5FF;
	}

	:root {
	--thegem-to-product-grid-category-hover-color: #00BCD4FF;
	}
	.portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .categories a:hover {
	color: #00BCD4FF;
	}

	.portfolio.extended-products-grid.caption-container-preset-light .portfolio-item .image .caption .categories,
	.portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item .image .caption .categories,
	.portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item .image .caption .categories {
	color: #FFFFFFFF;
	}

	:root {
	--thegem-to-product-grid-price-font-family: 'Source Sans Pro';
	}
	.portfolio.extended-products-grid .portfolio-item .caption .price-wrap.default .product-price .price {
	font-family: 'Source Sans Pro';
	}

	:root {
	--thegem-to-product-grid-price-font-style: normal;
	--thegem-to-product-grid-price-font-weight: normal;
	}
	.portfolio.extended-products-grid .portfolio-item .caption .price-wrap.default .product-price .price {
	font-style: normal;
	font-weight: normal;
	}
		
	:root {
	--thegem-to-product-grid-price-font-size: 18px;
	}
	.portfolio.extended-products-grid .portfolio-item .caption .price-wrap.default .product-price .price {
	font-size: 18px;
	}
	@media (min-width: 992px) {
		.portfolio.extended-products-grid .portfolio-item.bigger .caption .price-wrap.default .product-price .price {
		font-size: calc(18px * 1.2);
		}
	}

	:root {
	--thegem-to-product-grid-price-line-height: 18px;
	}
	.portfolio.extended-products-grid .portfolio-item .caption .price-wrap.default .product-price .price {
	line-height: 18px;
	}
	@media (min-width: 992px) {
		.portfolio.extended-products-grid .portfolio-item.bigger .caption .price-wrap.default .product-price .price {
		line-height: calc(18px * 1.2);
		}
	}


	:root {
	--thegem-to-product-grid-price-letter-spacing: 0px;
	}
	.portfolio.extended-products-grid .portfolio-item .caption .price-wrap.default .product-price .price {
	letter-spacing: 0px;
	}

	:root {
	--thegem-to-product-grid-price-color: #212227FF;
	}
	.portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .product-price .price,
	.portfolio-filters-list .widget_products .gem-products-price .amount,
	.portfolio-filters-list .widget_top_rated_products .gem-products-price .amount,
	.portfolio-filters-list .widget_recently_viewed_products .gem-products-price .amount {
	color: #212227FF;
	}

	.portfolio.extended-products-grid.caption-container-preset-light .portfolio-item .image .caption .product-price .price,
	.portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item .image .caption .product-price .price,
	.portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item .image .caption .product-price .price {
	color: #5F727FFF;
	}

	.portfolio.extended-products-grid .portfolio-item .caption .cart.type_button .button,
	.thegem-te-loop-product-add-to-cart .cart.type_button .button,
	.thegem-popup-notification .notification-message a.button {
	border-width: 1px;
	border-style: solid;
	}

	.portfolio.extended-products-grid .portfolio-item .caption .cart.type_button .button,
	.thegem-te-loop-product-add-to-cart .cart.type_button .button,
	.thegem-popup-notification .notification-message a.button {
	border-radius: 30px;
	}

	.portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .cart.type_button.simple-type-button .button,
	.thegem-te-loop-product-add-to-cart .cart.type_button.simple-type-button .button {
	color: #00BCD4FF;
	}

	.portfolio.extended-products-grid .portfolio-item .caption .cart.type_button.simple-type-button .button:hover,
	.thegem-te-loop-product-add-to-cart .cart.type_button.simple-type-button .button:hover {
	color: #FFFFFFFF;
	}

	.portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .cart.type_button.simple-type-button .button,
	.thegem-te-loop-product-add-to-cart .cart.type_button.simple-type-button .button {
	background-color: #FFFFFFFF;
	}

	.portfolio.extended-products-grid .portfolio-item .caption .cart.type_button.simple-type-button .button:hover,
	.thegem-te-loop-product-add-to-cart .cart.type_button.simple-type-button .button:hover {
	background-color: #00BCD4FF;
	}

	.portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .cart.type_button.simple-type-button .button,
	.thegem-te-loop-product-add-to-cart .cart.type_button.simple-type-button .button {
	border-color: #00BCD4FF;
	}

	.portfolio.extended-products-grid .portfolio-item .caption .cart.type_button.simple-type-button .button:hover,
	.thegem-te-loop-product-add-to-cart .cart.type_button.simple-type-button .button:hover {
	border-color: #00BCD4FF;
	}

	.portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .cart.type_button.variable-type-button .button,
	.thegem-te-loop-product-add-to-cart .cart.type_button.variable-type-button .button,
	.thegem-popup-notification .notification-message a.button {
	color: #00BCD4FF;
	}

	.portfolio.extended-products-grid .portfolio-item .caption .cart.type_button.variable-type-button .button:hover,
	.thegem-te-loop-product-add-to-cart .cart.type_button.variable-type-button .button:hover,
	.thegem-popup-notification .notification-message a.button:hover {
	color: #FFFFFFFF;
	}

	.portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .cart.type_button.variable-type-button .button,
	.thegem-te-loop-product-add-to-cart .cart.type_button.variable-type-button .button,
	.thegem-popup-notification .notification-message a.button {
	background-color: #FFFFFFFF;
	}

	.portfolio.extended-products-grid .portfolio-item .caption .cart.type_button.variable-type-button .button:hover,
	.thegem-te-loop-product-add-to-cart .cart.type_button.variable-type-button .button:hover,
	.thegem-popup-notification .notification-message a.button:hover {
	background-color: #00BCD4FF;
	}

	.portfolio.extended-products-grid.caption-position-page .portfolio-item .caption .cart.type_button.variable-type-button .button,
	.thegem-te-loop-product-add-to-cart .cart.type_button.variable-type-button .button,
	.thegem-popup-notification .notification-message a.button {
	border-color: #00BCD4FF;
	}

	.portfolio.extended-products-grid .portfolio-item .caption .cart.type_button.variable-type-button .button:hover,
	.thegem-te-loop-product-add-to-cart .cart.type_button.variable-type-button .button:hover,
	.thegem-popup-notification .notification-message a.button:hover {
	border-color: #00BCD4FF;
	}



	.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption a.icon,
	.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icon a,
	.thegem-te-loop-product-add-to-cart .cart.icon a,
	.portfolio.extended-products-grid:is(.caption-position-hover, .caption-position-image):is(.hover-slide, .hover-fade) .portfolio-item .image .overlay .links .portfolio-icons a.icon,
	.portfolio.extended-products-grid:is(.caption-position-hover, .caption-position-image):is(.hover-slide, .hover-fade) .portfolio-item .image .overlay .links .portfolio-icons .icon a,
	.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter .portfolio-search-filter-button {
	border-radius: 20px;
	}

:root {
	--thegem-to-product-grid-icon-color: #5F727FFF;
}
	.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption a.icon,
	.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icon a,
	.thegem-te-loop-product-add-to-cart .cart.icon a,
	.portfolio.extended-products-grid.caption-position-hover:is(.hover-slide, .hover-fade) .portfolio-item .image .overlay .links .portfolio-icons a.icon,
	.portfolio.extended-products-grid.caption-position-hover:is(.hover-slide, .hover-fade) .portfolio-item .image .overlay .links .portfolio-icons .icon a,
	.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter .portfolio-search-filter-button {
	color: #5F727FFF;
	}

	.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption a.icon:hover,
	.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icon a:hover,
	.thegem-te-loop-product-add-to-cart .cart.icon a:hover,
	.portfolio.extended-products-grid.caption-position-hover:is(.hover-slide, .hover-fade) .portfolio-item .image .overlay .links .portfolio-icons a.icon:hover,
	.portfolio.extended-products-grid.caption-position-hover:is(.hover-slide, .hover-fade) .portfolio-item .image .overlay .links .portfolio-icons .icon a:hover,
	.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter .portfolio-search-filter-button:hover {
	color: #FFFFFFFF;
	}

	.portfolio.extended-products-grid.caption-position-image .portfolio-item .image .overlay .links .portfolio-icons a.icon,
	.portfolio.extended-products-grid.caption-position-image .portfolio-item .image .overlay .links .portfolio-icons .icon a {
	color: #212227FF;
	}

	.portfolio.extended-products-grid.caption-position-image .portfolio-item .image .overlay .links .portfolio-icons a.icon:hover,
	.portfolio.extended-products-grid.caption-position-image .portfolio-item .image .overlay .links .portfolio-icons .icon a:hover {
	color: #FFFFFFFF;
	}

	.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption a.icon,
	.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icon a,
	.thegem-te-loop-product-add-to-cart .cart.icon a,
	.portfolio.extended-products-grid:is(.caption-position-hover, .caption-position-image):is(.hover-slide, .hover-fade) .portfolio-item .image .overlay .links .portfolio-icons a.icon,
	.portfolio.extended-products-grid:is(.caption-position-hover, .caption-position-image):is(.hover-slide, .hover-fade) .portfolio-item .image .overlay .links .portfolio-icons .icon a,
	.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter .portfolio-search-filter-button {
	background-color: #DFE5E8FF;
	}

	.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption a.icon:hover,
	.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icon a:hover,
	.thegem-te-loop-product-add-to-cart .cart.icon a:hover,
	.portfolio.extended-products-grid:is(.caption-position-hover, .caption-position-image):is(.hover-slide, .hover-fade) .portfolio-item .image .overlay .links .portfolio-icons a.icon:hover,
	.portfolio.extended-products-grid:is(.caption-position-hover, .caption-position-image):is(.hover-slide, .hover-fade) .portfolio-item .image .overlay .links .portfolio-icons .icon a:hover,
	.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter .portfolio-search-filter-button:hover {
	background-color: #00BCD4FF;
	}



		    .product .onsale,
	    .product .new-label,
	    .product .out-of-stock-label,
	    .product-gallery-labels .product-labels .onsale,
	    .product-gallery-labels .product-labels .new-label,
	    .product-gallery-labels .product-labels .out-of-stock-label{
	    font-family: 'Montserrat';
	    }
	
		    .product .onsale,
	    .product .new-label,
	    .product .out-of-stock-label,
	    .product-gallery-labels .product-labels .onsale,
	    .product-gallery-labels .product-labels .new-label,
	    .product-gallery-labels .product-labels .out-of-stock-label{
	    font-style: normal;
	    font-weight: 700;
	    }
					
		    .product-gallery-labels .product-labels .onsale,
	    .product-gallery-labels .product-labels .new-label,
	    .product-gallery-labels .product-labels .out-of-stock-label{
	    font-size: 10px;
	    }

	    .portfolio.extended-products-grid .product .onsale,
	    .portfolio.extended-products-grid .product .new-label,
	    .portfolio.extended-products-grid .product .out-of-stock-label,
	    .product-gallery-labels .product-labels.style-5 .onsale,
	    .product-gallery-labels .product-labels.style-6 .onsale,
	    .product-gallery-labels .product-labels.style-5 .new-label,
	    .product-gallery-labels .product-labels.style-6 .new-label,
	    .product-gallery-labels .product-labels.style-5 .out-of-stock-label,
	    .product-gallery-labels .product-labels.style-6 .out-of-stock-label{
	    font-size: 7px;
	    }
	
		    .product-gallery-labels .product-labels .onsale,
	    .product-gallery-labels .product-labels .new-label,
	    .product-gallery-labels .product-labels .out-of-stock-label{
	    line-height: 12px;
	    }

	    .portfolio.extended-products-grid .product .onsale,
	    .portfolio.extended-products-grid .product .new-label,
	    .portfolio.extended-products-grid .product .out-of-stock-label,
	    .product-gallery-labels .product-labels.style-5 .onsale,
	    .product-gallery-labels .product-labels.style-6 .onsale,
	    .product-gallery-labels .product-labels.style-5 .new-label,
	    .product-gallery-labels .product-labels.style-6 .new-label,
	    .product-gallery-labels .product-labels.style-5 .out-of-stock-label,
	    .product-gallery-labels .product-labels.style-6 .out-of-stock-label{
	    line-height: 8.4px;
	    }
	
		    .product .onsale,
	    .product .new-label,
	    .product .out-of-stock-label,
	    .product-gallery-labels .product-labels .onsale,
	    .product-gallery-labels .product-labels .new-label,
	    .product-gallery-labels .product-labels .out-of-stock-label{
	    text-transform: uppercase;
	    }
	
		    .portfolio.extended-products-grid .product .onsale,
	    .portfolio.extended-products-grid .product .new-label,
	    .portfolio.extended-products-grid .product .out-of-stock-label,
	    .product-gallery-labels .product-labels .onsale,
	    .product-gallery-labels .product-labels .new-label,
	    .product-gallery-labels .product-labels .out-of-stock-label{
	    letter-spacing: 0.35px;
	    }
	
	.product .onsale,
	.product .new-label,
	.product .out-of-stock-label,
	.product-gallery-labels .product-labels .onsale,
	.product-gallery-labels .product-labels .new-label,
	.product-gallery-labels .product-labels .out-of-stock-label{
		color: #FFFFFFFF;
	}

	.product .onsale,
	.product-gallery-labels .product-labels .onsale{
		background-color: #ED0A7EFF;
	}
	.product .onsale:after,
	.product-gallery-labels .product-labels .onsale:after{
		border-left-color: #ED0A7EFF;
		border-right-color: #ED0A7EFF	}
	.product .onsale svg,
	.product-gallery-labels .product-labels .onsale svg{
		fill: #ED0A7EFF;
	}

	.product .new-label,
	.product-gallery-labels .product-labels .new-label{
		background-color: #01BDD1FF;
	}
	.product .new-label:after,
	.product-gallery-labels .product-labels .new-label:after{
		border-left-color: #01BDD1FF;
		border-right-color: #01BDD1FF	}
	.product .new-label svg,
	.product-gallery-labels .product-labels .new-label svg{
		fill: #01BDD1FF;
	}

	.product .out-of-stock-label,
	.product-gallery-labels .product-labels .out-of-stock-label{
		background-color: #F54337FF;
	}
	.product .out-of-stock-label:after,
	.product-gallery-labels .product-labels .out-of-stock-label:after{
		border-left-color: #F54337FF;
		border-right-color: #F54337FF;
	}
	.product .out-of-stock-label svg,
	.product-gallery-labels .product-labels .out-of-stock-label svg{
		fill: #F54337FF;
	}

	.quick-view-button {
	color: #FFFFFFFF;
	}

	.quick-view-button {
	background-color: #00BCD4A6;
	}

.product-page__wrapper .gem-button-style-outline.single_add_to_cart_button {
	background-color: #00bcd4 !important;
}
.product-page__wrapper .gem-button-style-outline.single_add_to_cart_button:hover {
	background-color: #212227 !important;
}

	.products-categories-widget .category-title {
	font-family: 'Montserrat';
	}

	.products-categories-widget .category-title {
	font-size: 14px;
	}

	.products-categories-widget .category-title {
	font-style: normal;
	font-weight: 700;
	}
		
	.products-categories-widget .category-title {
	line-height: 19.6px;
	}

	.products-categories-widget .category-title {
	text-transform: uppercase;
	}

	.products-categories-widget .category-title {
	letter-spacing: 0.7px;
	}

	.products-categories-widget.caption-container-preset-solid.caption-container-preset-color-light .category-title,
	.products-categories-widget.caption-container-preset-transparent.caption-container-preset-color-dark .category-title,
	.products-categories-widget.caption-container-preset-bold.caption-container-preset-color-light .category-title {
	color: #212227FF;
	}
	.products-categories-widget.caption-container-preset-bold.caption-container-preset-color-dark .category-title {
	background-color: #212227FF;
	}

	.products-categories-widget.caption-container-preset-solid.caption-container-preset-color-dark .category-title,
	.products-categories-widget.caption-container-preset-transparent.caption-container-preset-color-light .category-title,
	.products-categories-widget.caption-container-preset-bold.caption-container-preset-color-dark .category-title {
	color: #FFFFFFFF;
	}
	.products-categories-widget.caption-container-preset-bold.caption-container-preset-color-light .category-title {
	background-color: #FFFFFFFF;
	}

	.products-categories-widget.caption-position-below .category-title {
	color: #5F727FFF;
	}

		    .products-categories-widget .category-count {
	    font-family: 'Montserrat';
	    }
	
		    .products-categories-widget .category-count {
	    font-size: 11px;
	    }
	
		    .products-categories-widget .category-count {
	    font-style: normal;
	    font-weight: 500;
	    }
					
		    .products-categories-widget .category-count {
	    line-height: 11px;
	    }
	
		    .products-categories-widget .category-count {
	    text-transform: uppercase;
	    }
	
		    .products-categories-widget .category-count {
	    letter-spacing: 0.45px;
	    }
	
	.products-categories-widget.caption-container-preset-solid.caption-container-preset-color-light  .category-count,
	.products-categories-widget.caption-container-preset-transparent.caption-container-preset-color-dark .category-count,
	.products-categories-widget.caption-container-preset-bold.caption-container-preset-color-dark .category-count {
	color: #212227FF;
	}

	.products-categories-widget.caption-container-preset-solid.caption-container-preset-color-dark .category-count,
	.products-categories-widget.caption-container-preset-transparent.caption-container-preset-color-light .category-count,
	.products-categories-widget.caption-container-preset-bold.caption-container-preset-color-light .category-count {
	color: #FFFFFFB3;
	}

	.products-categories-widget.caption-position-below .category-count {
	color: #5F727FB3;
	}

.portfolio.extended-products-grid.to-extended-products .portfolio-item:not(.size-item) { padding: calc(22px/2) !important; }.portfolio.extended-products-grid.to-extended-products .portfolio-item.size-item { padding: 0 calc(22px/2) !important; }.portfolio.extended-products-grid.to-extended-products:not(.item-separator) .portfolio-row { margin: calc(-22px/2); }.portfolio.extended-products-grid.to-extended-products.item-separator .portfolio-row { margin: 0 calc(-22px/2); }.portfolio.extended-products-grid.to-extended-products.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-22px/2) 0; }.portfolio.extended-products-grid.to-extended-products.fullwidth-columns.item-separator .portfolio-row { margin: 0; }.portfolio.extended-products-grid.to-extended-products .fullwidth-block:not(.no-paddings) { padding-left: 22px; padding-right: 22px; }.portfolio.extended-products-grid.to-extended-products .fullwidth-block .portfolio-row { padding-left: calc(22px/2); padding-right: calc(22px/2); }.portfolio.extended-products-grid.to-extended-products:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 22px; padding-right: 22px; }.portfolio.extended-products-grid.to-extended-products.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(22px/2); padding-right: calc(22px/2); }.portfolio.extended-products-grid.to-extended-products.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 22px; }.portfolio.extended-products-grid.to-extended-products.list-style.with-divider .portfolio-set .portfolio-item .wrap:before { top: calc(-22px/2); }.preloader[data-style-uid="to_products"] .portfolio-item { padding: calc(22px/2); }.preloader[data-style-uid="to_products"] .skeleton-posts.portfolio-row { margin: calc(-22px/2); }.portfolio.extended-products-grid.to-extended-products.list-style.with-divider .portfolio-set .portfolio-item .wrap:before { top: calc(-22px/2); }@media (min-width: 768px) { .portfolio.extended-products-grid.to-extended-products .portfolio-item:not(.size-item) { padding: calc(22px/2) !important; }.portfolio.extended-products-grid.to-extended-products .portfolio-item.size-item { padding: 0 calc(22px/2) !important; }.portfolio.extended-products-grid.to-extended-products:not(.item-separator) .portfolio-row { margin: calc(-22px/2); }.portfolio.extended-products-grid.to-extended-products.item-separator .portfolio-row { margin: 0 calc(-22px/2); }.portfolio.extended-products-grid.to-extended-products.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-22px/2) 0; }.portfolio.extended-products-grid.to-extended-products.fullwidth-columns.item-separator .portfolio-row { margin: 0; }.portfolio.extended-products-grid.to-extended-products .fullwidth-block:not(.no-paddings) { padding-left: 22px; padding-right: 22px; }.portfolio.extended-products-grid.to-extended-products .fullwidth-block .portfolio-row { padding-left: calc(22px/2); padding-right: calc(22px/2); }.portfolio.extended-products-grid.to-extended-products:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 22px; padding-right: 22px; }.portfolio.extended-products-grid.to-extended-products.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(22px/2); padding-right: calc(22px/2); }.portfolio.extended-products-grid.to-extended-products.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 22px; }.portfolio.extended-products-grid.to-extended-products.list-style.with-divider .portfolio-set .portfolio-item .wrap:before { top: calc(-22px/2); }.preloader[data-style-uid="to_products"] .portfolio-item { padding: calc(22px/2); }.preloader[data-style-uid="to_products"] .skeleton-posts.portfolio-row { margin: calc(-22px/2); }.portfolio.extended-products-grid.to-extended-products.list-style.with-divider .portfolio-set .portfolio-item .wrap:before { top: calc(-22px/2); } }@media (min-width: 992px) { .portfolio.extended-products-grid.to-extended-products .portfolio-item:not(.size-item) { padding: calc(22px/2) !important; }.portfolio.extended-products-grid.to-extended-products .portfolio-item.size-item { padding: 0 calc(22px/2) !important; }.portfolio.extended-products-grid.to-extended-products:not(.item-separator) .portfolio-row { margin: calc(-22px/2); }.portfolio.extended-products-grid.to-extended-products.item-separator .portfolio-row { margin: 0 calc(-22px/2); }.portfolio.extended-products-grid.to-extended-products.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-22px/2) 0; }.portfolio.extended-products-grid.to-extended-products.fullwidth-columns.item-separator .portfolio-row { margin: 0; }.portfolio.extended-products-grid.to-extended-products .fullwidth-block:not(.no-paddings) { padding-left: 22px; padding-right: 22px; }.portfolio.extended-products-grid.to-extended-products .fullwidth-block .portfolio-row { padding-left: calc(22px/2); padding-right: calc(22px/2); }.portfolio.extended-products-grid.to-extended-products:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 22px; padding-right: 22px; }.portfolio.extended-products-grid.to-extended-products.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(22px/2); padding-right: calc(22px/2); }.portfolio.extended-products-grid.to-extended-products.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 22px; }.portfolio.extended-products-grid.to-extended-products.list-style.with-divider .portfolio-set .portfolio-item .wrap:before { top: calc(-22px/2); }.preloader[data-style-uid="to_products"] .portfolio-item { padding: calc(22px/2); }.preloader[data-style-uid="to_products"] .skeleton-posts.portfolio-row { margin: calc(-22px/2); }.portfolio.extended-products-grid.to-extended-products.list-style.with-divider .portfolio-set .portfolio-item .wrap:before { top: calc(-22px/2); } }.portfolio.extended-products-grid.to-extended-products .categories { display: none }@media (max-width: 991px) { .portfolio.extended-products-grid.to-extended-products .categories { display: none } }@media (max-width: 767px) { .portfolio.extended-products-grid.to-extended-products .categories { display: none } }@media (max-width: 991px) { .portfolio.extended-products-grid.to-extended-products .reviews { display: block } }@media (max-width: 767px) { .portfolio.extended-products-grid.to-extended-products .reviews { display: block } }.portfolio.extended-products-grid.to-extended-products .portfolio-item .caption .description .subtitle span { max-height: initial; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; }
:root {
	--thegem-to-cart-icon-font: 'thegem-icons';
	--thegem-to-cart-icon-icon: '\e67f';
}
body .woocommerce-wishlist .wishlist_table .product-add-to-cart .add_to_cart_button.simple a.gem-button:before,
body .portfolio.products-grid .portfolio-item .portfolio-icons.product-bottom .add_to_cart_button:before,
body #primary-navigation #primary-menu > li.menu-item-cart > a:before,
body .hamburger-minicart > a:before,
body .mobile-cart-position-top #site-header .mobile-cart > a:before,
body .mobile-cart .mobile-cart-header .mobile-cart-header-title:before,
body .single-product-content form.cart .gem-button .gem-icon-cart:before,
body .woocommerce-wishlist .wishlist_table .product-add-to-cart .add_to_cart_button.simple a.gem-button:before {
	content: '\e67f';
}
body .products .product-bottom .add_to_cart_button:before,
body .portfolio.extended-products-grid .product-bottom .cart i.default:before,
body .portfolio.extended-products-grid.hover-default .portfolio-item .caption .cart i.default:before,
body .portfolio.extended-products-grid.hover-default .image .portfolio-icons.product-bottom .cart i.default:before,
body .portfolio.extended-products-grid:not(.hover-default) .portfolio-item .caption .cart i.default:before,
body .portfolio.extended-products-grid:not(.hover-default) .portfolio-item .image .portfolio-icons.product-bottom .cart i.default:before {
	content: '\e680';
}
body.mobile-cart-position-top #site-header .mobile-cart > a:before {
	-webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24 24' style='enable-background:new 0 0 24 24;' xml:space='preserve'%3E%3Cpath d='M19,6h-2c0-2.8-2.2-5-5-5S7,3.2,7,6H5C3.9,6,3,6.9,3,8v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8C21,6.9,20.1,6,19,6z M12,3 c1.7,0,3,1.3,3,3H9C9,4.3,10.3,3,12,3z M19,20H5V8h2v2h2V8h6v2h2V8h2V20z'/%3E%3C/svg%3E%0A");
	mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24 24' style='enable-background:new 0 0 24 24;' xml:space='preserve'%3E%3Cpath d='M19,6h-2c0-2.8-2.2-5-5-5S7,3.2,7,6H5C3.9,6,3,6.9,3,8v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8C21,6.9,20.1,6,19,6z M12,3 c1.7,0,3,1.3,3,3H9C9,4.3,10.3,3,12,3z M19,20H5V8h2v2h2V8h6v2h2V8h2V20z'/%3E%3C/svg%3E%0A");
}



	.preloader .skeleton .widget:before {
	background-image: linear-gradient(#f4f6f7 20px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0);
	}
	.preloader .skeleton .portfolio-item:before {
	background-image: linear-gradient(#f4f6f7 100%, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0);
	}
	.preloader .skeleton .caption-position-image .products-category-item:before {
	background-image: linear-gradient(#f4f6f7 100%, transparent 0);
	}
	.preloader .skeleton .caption-position-below .products-category-item:before {
	background-image: linear-gradient(#f4f6f7 100%, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0), linear-gradient(#f4f6f7 12px, transparent 0);
	}

:root {
	--header-builder-light-color: #FFFFFF;
}
:root {
	--header-builder-light-color-hover: #00bcd4;
}

:root {
	--thegem-to-breadcrumbs-color: #99A9B5FF;
}
:root {
	--thegem-to-breadcrumbs-color-hover: #3C3950FF;
}
:root {
	--thegem-to-breadcrumbs-color-active: #3C3950FF;
}

:root {
	--thegem-to-product-rating-stars-base-color: #A3CDD2FF;
}
:root {
	--thegem-to-product-rating-stars-rated-color: #00BCD4FF;
}





@media (max-width: 1199px) {
	.site-main .wpb_row { margin-top: 0; }
	.site-main .wpb_row > * { margin-top: 0; }
} 
@media (max-width: 1199px) {
	.site-main .row { margin-top: 0; }
	.site-main .row > * { margin-top: 0;}
}
@media (max-width: 1199px){ 
	body .row > .single-product-content-right, 
	body .row > .single-product-content-left {
    	margin-top: 0 !important;
}}

@media (max-width: 768px){
	body .row > .single-product-content-right{
    	margin-top: 3em !important;
}}

@media (max-width: 767px) {
    h1, .title-h1 {
        line-height: 26px;
        font-size: 23px;  
}}




/* Single product incio */
.product-page__wrapper .product-page__attribute {
    font-size: 20px;
    font-weight:600;
    font-family: 'Montserrat';
    color:#00bcd4;
}


.thegem-combobox-wrap .thegem-combobox__trigger, table.variations .thegem-select {
    background-color: #dff3f6;
}
.thegem-combobox-wrap .thegem-combobox__options-item:hover{
    background-color: #96e5f0;
}


.single-product-content .product_title {
    line-height: 25px;
}
.single-product-content .product_title {
    font-size: 22px;
}


/* Single product fin */

.thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li a {
padding: 10px 30px 10px 11px;
background-color: #f5f5f5;
}


.wpb_revslider_element.wpb_content_element.rs{
    margin-bottom: 0;
}
.shop-page-form-2 .yikes-easy-mc-form input[type=email]{
    background: #fff;
    color: #99a9b5;
    padding-left: 20px;
    border: none;
}
.shop-page-form-2 .yikes-easy-mc-form .yikes-easy-mc-submit-button{
    background: #2c2e3d;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.shop-page-form-2 .gem-textbox {
    margin-bottom: 0;
}
.vertical-menu-item-widgets .socials-colored a .socials-item-icon{
   color: #fff;
}
.vertical-menu-item-widgets .vertical-minisearch .sf-input{
   background: #40434d;
   border: 1px solid #40434d;
   color: #fff;
}
.vertical-menu-item-widgets .vertical-minisearch .sf-submit-icon:after{
   background: #00bcd4;
   -webkit-transition: all .3s;
   -moz-transition: all .3s;
   transition: all .3s;
}
.vertical-menu-item-widgets .vertical-minisearch .sf-submit-icon:hover:after{
   background: #191919;
}
.vertical-menu-item-widgets .vertical-minisearch .sf-input::-webkit-input-placeholder {color:#fff;}

body #page.vertical-header #site-header-wrapper {
    z-index: 1002;
}
.c-schemaCard {
    background-image: url(https://shop.ariservices.co/wp-content/uploads/2022/12/ram_memory_slot_wide_2.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    display: flex;
    justify-content: center;
    font-size: .9em;
    padding-top: 8px;
    width: 7.4rem;
    height: 4rem;
    margin-bottom: 0.5em;
}
.c-schemaCard--empty {
    background-image: url(https://shop.ariservices.co/wp-content/uploads/2022/12/ram_memory_slot_wide.svg);
} 
.c-schemaCard__value {
    font-weight: 600;
}
.c-schemaCard__unit {
    margin-left: 0.125em;
    color: #5f727f;
    font-weight: 600;
}

/* footer */
.site-footer .widget_text ul li {
    border-bottom: 0px solid #01bcd5;
}
#colophon .widget_submenu ul, #colophon .widget_nav_menu > div > ul, #colophon .widget_archive ul {
    border-left: 0px solid #394050;
    border-right: 0px solid #394050;
    border-bottom: 0px solid #394050;
    border-top: 0px solid #394050;
}
.widget_submenu > div > ul, .widget_nav_menu > div > ul, .widget.widget_pages > ul, .widget_categories > ul, .widget_product_categories > ul, .widget .gem-products-content, .gem-table-style-2 .tabletolist .row_headers, #colophon .widget_nav_menu ul.menu > li > ul, #colophon .widget_submenu > div > ul > li > ul {
    border-right: none;
}
.widget_product_categories > ul, .widget_nav_menu ul.menu, .portfolio-item .wrap, .Custom_Recent_Posts ul li, .Custom_Popular_Posts ul li, .widget_recent_entries li, .widget_meta li, .gem-latest-news, .gem-latest-news ul, .widget .gem-products-content, .widget-area .gem-products-image, .widget.widget_shopping_cart ul li .minicart-image, .project_info-item-style-1 .project_info-item.iconed, .widget_tweets .twitter-box .jtwt_tweet, .blog-style-default article:not(.sticky), .project-info-shortcode-style-2 .project-info-shortcode-item, .single-product-content .rating-divider {
    border-bottom: none;
}
.bordered-box, .portfolio.columns-1.background-style-white .portfolio-item .wrap > .caption, .gem-table-responsive .tabletolist.nrh > li > ul, *:not(.gem-table):not(.cart_totals) > table:not(.shop_table):not(.group_table):not(.variations) td, *:not(.gem-table):not(.cart_totals) > table:not(.shop_table):not(.group_table):not(.variations) th, .products .product-inner, .widget_recent_reviews ul.product_list_widget li, .widget_shopping_cart_content ul.product_list_widget li, form.cart .quantity .minus, form.cart .quantity .plus, .shop_table .quantity .minus, .shop_table .quantity .plus, .woocommerce-cart-form.responsive .cart-item, .form-edit-adress-fields, .woocommerce .checkout_coupon, .woocommerce .checkout-login-box .login-message-box, .triangle-with-shadow:after, .gem-tabs-style-1 .resp-tabs-container, .gem-tabs-style-1 .gem_tabs_nav li, .gem-tour-style-1 > .gem_tour_tabs_wrapper, .gem-tour-style-1 .gem_tabs_nav li, .gem-tabs-style-2 .resp-accordion, .blog-style-timeline .post-text, .widget_layered_nav ul, .gem-table, .gem-table-style-1 td, .blog-style-styled_list1 .post-item, .blog-style-styled_list2 .post-item, .blog-style-timeline .post-item, .gem-basic-grid .vc_grid-item-mini, .gem-media-grid-2 .vc_grid-item-mini, .justified-style-1 .post-content-wrapper, .widget-area .widget_recently_viewed_products .gem-products-image, form.cart .quantity .qty, body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-quantity .quantity, body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading, body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading, body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body, body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body::before, body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body::after, body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-controls-icon::before, body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-controls-icon::after, body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::before, body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::after, body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab > a, body .vc_tta.vc_tta-color-thegem.vc_tta-style-classic .vc_tta-tab.vc_active > a {
    border: 0px solid #dfe5e8;
}
main-menu-item, .title-main-menu, #primary-menu.no-responsive > li > a, #primary-menu.no-responsive > li.megamenu-enable > ul > li span.megamenu-column-header a, .widget_nav_menu > div > ul > li > a, .widget_submenu > div > ul > li > a, .widget_pages > ul > li > a, .widget_categories > ul > li > a, .widget_product_categories > ul > li > a {
    text-transform: none;
}
.widget_nav_menu ul.menu li > a, .widget_submenu > div > ul li > a {
    display: block;
    padding: 0px 9px 11px 11px;
}

#txt_ariOferta {
    color: #ED0A7E;
    font-weight: 400;
    display: block;
    line-height: 24px;
    font-size:16px;
    padding: 5px 13px;
}

#txt_cambiosSPA, #txt_envioGratis, #txt_6msi, #txt_nohay {
    color: #4953a4;
    font-weight: 400;
    display: block;
    line-height: 24px;
    font-size:16px;
    padding: 5px 13px;
}


@media (max-width: 767px) {
  #txt_cambiosSPA, #txt_envioGratis, #txt_6msi, #txt_ariOferta, #txt_nohay {
    max-width: fit-content;
   /** margin-left: auto;
    margin-right: auto;*/
  }
}

#txt_cambiosSPA .gem-icon.gem-icon-pack-fontawesome.fa-info-circle , #txt_envioGratis .gem-print-icon.gem-icon-pack-fontawesome.fa-truck, #txt_6msi .gem-print-icon.gem-icon-pack-fontawesome.fa-credit-card, #txt_nohay .gem-print-icon.gem-icon-pack-fontawesome.fa-envelope  {
  font-size:20px;
}
/*!
* WPBakery Page Builder v8.3 (https://wpbakery.com)
* Copyright 2011-2026 WPBakery
* License: Commercial. More details: http://go.wpbakery.com/licensing
*/.vc_row:after,.vc_row:before{content:" ";display:table}.vc_row:after{clear:both}@media (max-width:767px){.vc_hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.vc_hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.vc_hidden-md{display:none!important}}@media (min-width:1200px) and (max-width:1399px){.vc_hidden-lg{display:none!important}}@media (min-width:1400px){.vc_hidden-xl{display:none!important}}.vc_non_responsive .vc_row .vc_col-sm-1{width:8.33333333%}.vc_non_responsive .vc_row .vc_col-sm-1,.vc_non_responsive .vc_row .vc_col-sm-2{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative}.vc_non_responsive .vc_row .vc_col-sm-2{width:16.66666667%}.vc_non_responsive .vc_row .vc_col-sm-3{width:25%}.vc_non_responsive .vc_row .vc_col-sm-3,.vc_non_responsive .vc_row .vc_col-sm-4{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative}.vc_non_responsive .vc_row .vc_col-sm-4{width:33.33333333%}.vc_non_responsive .vc_row .vc_col-sm-5{width:41.66666667%}.vc_non_responsive .vc_row .vc_col-sm-5,.vc_non_responsive .vc_row .vc_col-sm-6{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative}.vc_non_responsive .vc_row .vc_col-sm-6{width:50%}.vc_non_responsive .vc_row .vc_col-sm-7{width:58.33333333%}.vc_non_responsive .vc_row .vc_col-sm-7,.vc_non_responsive .vc_row .vc_col-sm-8{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative}.vc_non_responsive .vc_row .vc_col-sm-8{width:66.66666667%}.vc_non_responsive .vc_row .vc_col-sm-9{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative;width:75%}.vc_non_responsive .vc_row .vc_col-sm-10{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative;width:83.33333333%}.vc_non_responsive .vc_row .vc_col-sm-11{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative;width:91.66666667%}.vc_non_responsive .vc_row .vc_col-sm-12{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative;width:100%}.vc_non_responsive .vc_row .vc_col-sm-offset-12{margin-left:100%}.vc_non_responsive .vc_row .vc_col-sm-offset-11{margin-left:91.66666667%}.vc_non_responsive .vc_row .vc_col-sm-offset-10{margin-left:83.33333333%}.vc_non_responsive .vc_row .vc_col-sm-offset-9{margin-left:75%}.vc_non_responsive .vc_row .vc_col-sm-offset-8{margin-left:66.66666667%}.vc_non_responsive .vc_row .vc_col-sm-offset-7{margin-left:58.33333333%}.vc_non_responsive .vc_row .vc_col-sm-offset-6{margin-left:50%}.vc_non_responsive .vc_row .vc_col-sm-offset-5{margin-left:41.66666667%}.vc_non_responsive .vc_row .vc_col-sm-offset-4{margin-left:33.33333333%}.vc_non_responsive .vc_row .vc_col-sm-offset-3{margin-left:25%}.vc_non_responsive .vc_row .vc_col-sm-offset-2{margin-left:16.66666667%}.vc_non_responsive .vc_row .vc_col-sm-offset-1{margin-left:8.33333333%}.vc_non_responsive .vc_row .vc_col-sm-offset-0{margin-left:0}.vc_non_responsive .vc_row .vc_hidden-sm{display:none!important}.vc_non_responsive .vc_row .vc_col-sm-1\/5{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative;width:20%}.vc_non_responsive .vc_row .vc_col-sm-2\/5{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative;width:40%}.vc_non_responsive .vc_row .vc_col-sm-3\/5{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative;width:60%}.vc_non_responsive .vc_row .vc_col-sm-4\/5{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative;width:80%}.vc_non_responsive .vc_row .vc_col-sm-5\/5{float:left;min-height:1px;padding-left:15px;padding-right:15px;position:relative;width:100%}.vc_non_responsive .vc_row .vc_col-sm-offset-5\/5{margin-left:100%}.vc_non_responsive .vc_row .vc_col-sm-offset-4\/5{margin-left:80%}.vc_non_responsive .vc_row .vc_col-sm-offset-3\/5{margin-left:60%}.vc_non_responsive .vc_row .vc_col-sm-offset-2\/5{margin-left:40%}.vc_non_responsive .vc_row .vc_col-sm-offset-1\/5{margin-left:20%}.vc_non_responsive .vc_row .vc_col-sm-offset-0\/5{margin-left:0}.vc_column_container{width:100%}.vc_row{margin-left:-15px;margin-right:-15px}.vc_col-lg-1,.vc_col-lg-10,.vc_col-lg-11,.vc_col-lg-12,.vc_col-lg-2,.vc_col-lg-3,.vc_col-lg-4,.vc_col-lg-5,.vc_col-lg-6,.vc_col-lg-7,.vc_col-lg-8,.vc_col-lg-9,.vc_col-md-1,.vc_col-md-10,.vc_col-md-11,.vc_col-md-12,.vc_col-md-2,.vc_col-md-3,.vc_col-md-4,.vc_col-md-5,.vc_col-md-6,.vc_col-md-7,.vc_col-md-8,.vc_col-md-9,.vc_col-sm-1,.vc_col-sm-10,.vc_col-sm-11,.vc_col-sm-12,.vc_col-sm-2,.vc_col-sm-3,.vc_col-sm-4,.vc_col-sm-5,.vc_col-sm-6,.vc_col-sm-7,.vc_col-sm-8,.vc_col-sm-9,.vc_col-xl-1,.vc_col-xl-10,.vc_col-xl-11,.vc_col-xl-12,.vc_col-xl-2,.vc_col-xl-3,.vc_col-xl-4,.vc_col-xl-5,.vc_col-xl-6,.vc_col-xl-7,.vc_col-xl-8,.vc_col-xl-9,.vc_col-xs-1,.vc_col-xs-10,.vc_col-xs-11,.vc_col-xs-12,.vc_col-xs-2,.vc_col-xs-3,.vc_col-xs-4,.vc_col-xs-5,.vc_col-xs-6,.vc_col-xs-7,.vc_col-xs-8,.vc_col-xs-9{box-sizing:border-box;min-height:1px;padding-left:15px;padding-right:15px;position:relative}.vc_col-xs-1,.vc_col-xs-10,.vc_col-xs-11,.vc_col-xs-12,.vc_col-xs-2,.vc_col-xs-3,.vc_col-xs-4,.vc_col-xs-5,.vc_col-xs-6,.vc_col-xs-7,.vc_col-xs-8,.vc_col-xs-9{float:left}[dir=rtl] .vc_rtl-columns-reverse :is(.vc_col-xs-1,.vc_col-xs-10,.vc_col-xs-11,.vc_col-xs-12,.vc_col-xs-2,.vc_col-xs-3,.vc_col-xs-4,.vc_col-xs-5,.vc_col-xs-6,.vc_col-xs-7,.vc_col-xs-8,.vc_col-xs-9){float:right}.vc_col-xs-12{width:100%}.vc_col-xs-11{width:91.66666667%}.vc_col-xs-10{width:83.33333333%}.vc_col-xs-9{width:75%}.vc_col-xs-8{width:66.66666667%}.vc_col-xs-7{width:58.33333333%}.vc_col-xs-6{width:50%}.vc_col-xs-5{width:41.66666667%}.vc_col-xs-4{width:33.33333333%}.vc_col-xs-3{width:25%}.vc_col-xs-2{width:16.66666667%}.vc_col-xs-1{width:8.33333333%}.vc_col-xs-pull-12{right:100%}.vc_col-xs-pull-11{right:91.66666667%}.vc_col-xs-pull-10{right:83.33333333%}.vc_col-xs-pull-9{right:75%}.vc_col-xs-pull-8{right:66.66666667%}.vc_col-xs-pull-7{right:58.33333333%}.vc_col-xs-pull-6{right:50%}.vc_col-xs-pull-5{right:41.66666667%}.vc_col-xs-pull-4{right:33.33333333%}.vc_col-xs-pull-3{right:25%}.vc_col-xs-pull-2{right:16.66666667%}.vc_col-xs-pull-1{right:8.33333333%}.vc_col-xs-pull-0{right:auto}.vc_col-xs-push-12{left:100%}.vc_col-xs-push-11{left:91.66666667%}.vc_col-xs-push-10{left:83.33333333%}.vc_col-xs-push-9{left:75%}.vc_col-xs-push-8{left:66.66666667%}.vc_col-xs-push-7{left:58.33333333%}.vc_col-xs-push-6{left:50%}.vc_col-xs-push-5{left:41.66666667%}.vc_col-xs-push-4{left:33.33333333%}.vc_col-xs-push-3{left:25%}.vc_col-xs-push-2{left:16.66666667%}.vc_col-xs-push-1{left:8.33333333%}.vc_col-xs-push-0{left:auto}.vc_col-xs-offset-12{margin-left:100%}.vc_col-xs-offset-11{margin-left:91.66666667%}.vc_col-xs-offset-10{margin-left:83.33333333%}.vc_col-xs-offset-9{margin-left:75%}.vc_col-xs-offset-8{margin-left:66.66666667%}.vc_col-xs-offset-7{margin-left:58.33333333%}.vc_col-xs-offset-6{margin-left:50%}.vc_col-xs-offset-5{margin-left:41.66666667%}.vc_col-xs-offset-4{margin-left:33.33333333%}.vc_col-xs-offset-3{margin-left:25%}.vc_col-xs-offset-2{margin-left:16.66666667%}.vc_col-xs-offset-1{margin-left:8.33333333%}.vc_col-xs-offset-0{margin-left:0}.vc_col-lg-1\/5,.vc_col-lg-2\/5,.vc_col-lg-3\/5,.vc_col-lg-4\/5,.vc_col-lg-5\/5,.vc_col-md-1\/5,.vc_col-md-2\/5,.vc_col-md-3\/5,.vc_col-md-4\/5,.vc_col-md-5\/5,.vc_col-sm-1\/5,.vc_col-sm-2\/5,.vc_col-sm-3\/5,.vc_col-sm-4\/5,.vc_col-sm-5\/5,.vc_col-xs-1\/5,.vc_col-xs-2\/5,.vc_col-xs-3\/5,.vc_col-xs-4\/5,.vc_col-xs-5\/5{box-sizing:border-box;min-height:1px;padding-left:15px;padding-right:15px;position:relative}.vc_col-xs-1\/5,.vc_col-xs-2\/5,.vc_col-xs-3\/5,.vc_col-xs-4\/5,.vc_col-xs-5\/5{float:left}.vc_col-xs-5\/5{width:100%}.vc_col-xs-4\/5{width:80%}.vc_col-xs-3\/5{width:60%}.vc_col-xs-2\/5{width:40%}.vc_col-xs-1\/5{width:20%}.vc_col-xs-pull-5\/5{right:100%}.vc_col-xs-pull-4\/5{right:80%}.vc_col-xs-pull-3\/5{right:60%}.vc_col-xs-pull-2\/5{right:40%}.vc_col-xs-pull-1\/5{right:20%}.vc_col-xs-pull-0\/5{right:auto}.vc_col-xs-push-5\/5{left:100%}.vc_col-xs-push-4\/5{left:80%}.vc_col-xs-push-3\/5{left:60%}.vc_col-xs-push-2\/5{left:40%}.vc_col-xs-push-1\/5{left:20%}.vc_col-xs-push-0\/5{left:auto}.vc_col-xs-offset-5\/5{margin-left:100%}.vc_col-xs-offset-4\/5{margin-left:80%}.vc_col-xs-offset-3\/5{margin-left:60%}.vc_col-xs-offset-2\/5{margin-left:40%}.vc_col-xs-offset-1\/5{margin-left:20%}.vc_col-xs-offset-0\/5{margin-left:0}[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-1\/5,[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-2\/5,[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-3\/5,[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-4\/5,[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-5\/5,[dir=rtl] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-1\/5,[dir=rtl] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-2\/5,[dir=rtl] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-3\/5,[dir=rtl] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-4\/5,[dir=rtl] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-5\/5{float:right}@media (min-width:768px){.vc_col-sm-1,.vc_col-sm-10,.vc_col-sm-11,.vc_col-sm-12,.vc_col-sm-2,.vc_col-sm-3,.vc_col-sm-4,.vc_col-sm-5,.vc_col-sm-6,.vc_col-sm-7,.vc_col-sm-8,.vc_col-sm-9{float:left}[dir=rtl] .vc_rtl-columns-reverse :is(.vc_col-sm-1,.vc_col-sm-10,.vc_col-sm-11,.vc_col-sm-12,.vc_col-sm-2,.vc_col-sm-3,.vc_col-sm-4,.vc_col-sm-5,.vc_col-sm-6,.vc_col-sm-7,.vc_col-sm-8,.vc_col-sm-9){float:right}.vc_col-sm-12{width:100%}.vc_col-sm-11{width:91.66666667%}.vc_col-sm-10{width:83.33333333%}.vc_col-sm-9{width:75%}.vc_col-sm-8{width:66.66666667%}.vc_col-sm-7{width:58.33333333%}.vc_col-sm-6{width:50%}.vc_col-sm-5{width:41.66666667%}.vc_col-sm-4{width:33.33333333%}.vc_col-sm-3{width:25%}.vc_col-sm-2{width:16.66666667%}.vc_col-sm-1{width:8.33333333%}.vc_col-sm-pull-12{right:100%}.vc_col-sm-pull-11{right:91.66666667%}.vc_col-sm-pull-10{right:83.33333333%}.vc_col-sm-pull-9{right:75%}.vc_col-sm-pull-8{right:66.66666667%}.vc_col-sm-pull-7{right:58.33333333%}.vc_col-sm-pull-6{right:50%}.vc_col-sm-pull-5{right:41.66666667%}.vc_col-sm-pull-4{right:33.33333333%}.vc_col-sm-pull-3{right:25%}.vc_col-sm-pull-2{right:16.66666667%}.vc_col-sm-pull-1{right:8.33333333%}.vc_col-sm-pull-0{right:auto}.vc_col-sm-push-12{left:100%}.vc_col-sm-push-11{left:91.66666667%}.vc_col-sm-push-10{left:83.33333333%}.vc_col-sm-push-9{left:75%}.vc_col-sm-push-8{left:66.66666667%}.vc_col-sm-push-7{left:58.33333333%}.vc_col-sm-push-6{left:50%}.vc_col-sm-push-5{left:41.66666667%}.vc_col-sm-push-4{left:33.33333333%}.vc_col-sm-push-3{left:25%}.vc_col-sm-push-2{left:16.66666667%}.vc_col-sm-push-1{left:8.33333333%}.vc_col-sm-push-0{left:auto}.vc_col-sm-offset-12{margin-left:100%}.vc_col-sm-offset-11{margin-left:91.66666667%}.vc_col-sm-offset-10{margin-left:83.33333333%}.vc_col-sm-offset-9{margin-left:75%}.vc_col-sm-offset-8{margin-left:66.66666667%}.vc_col-sm-offset-7{margin-left:58.33333333%}.vc_col-sm-offset-6{margin-left:50%}.vc_col-sm-offset-5{margin-left:41.66666667%}.vc_col-sm-offset-4{margin-left:33.33333333%}.vc_col-sm-offset-3{margin-left:25%}.vc_col-sm-offset-2{margin-left:16.66666667%}.vc_col-sm-offset-1{margin-left:8.33333333%}.vc_col-sm-offset-0{margin-left:0}.vc_col-sm-1\/5,.vc_col-sm-2\/5,.vc_col-sm-3\/5,.vc_col-sm-4\/5,.vc_col-sm-5\/5{float:left}[dir=rtl] .vc_rtl-columns-reverse :is(.vc_col-sm-1\/5,.vc_col-sm-2\/5,.vc_col-sm-3\/5,.vc_col-sm-4\/5,.vc_col-sm-5\/5){float:right}.vc_col-sm-5\/5{width:100%}.vc_col-sm-4\/5{width:80%}.vc_col-sm-3\/5{width:60%}.vc_col-sm-2\/5{width:40%}.vc_col-sm-1\/5{width:20%}.vc_col-sm-pull-5\/5{right:100%}.vc_col-sm-pull-4\/5{right:80%}.vc_col-sm-pull-3\/5{right:60%}.vc_col-sm-pull-2\/5{right:40%}.vc_col-sm-pull-1\/5{right:20%}.vc_col-sm-pull-0\/5{right:auto}.vc_col-sm-push-5\/5{left:100%}.vc_col-sm-push-4\/5{left:80%}.vc_col-sm-push-3\/5{left:60%}.vc_col-sm-push-2\/5{left:40%}.vc_col-sm-push-1\/5{left:20%}.vc_col-sm-push-0\/5{left:auto}.vc_col-sm-offset-5\/5{margin-left:100%}.vc_col-sm-offset-4\/5{margin-left:80%}.vc_col-sm-offset-3\/5{margin-left:60%}.vc_col-sm-offset-2\/5{margin-left:40%}.vc_col-sm-offset-1\/5{margin-left:20%}.vc_col-sm-offset-0\/5{margin-left:0}}@media (min-width:992px){.vc_col-md-1,.vc_col-md-10,.vc_col-md-11,.vc_col-md-12,.vc_col-md-2,.vc_col-md-3,.vc_col-md-4,.vc_col-md-5,.vc_col-md-6,.vc_col-md-7,.vc_col-md-8,.vc_col-md-9{float:left}[dir=rtl] .vc_rtl-columns-reverse :is(.vc_col-md-1,.vc_col-md-10,.vc_col-md-11,.vc_col-md-12,.vc_col-md-2,.vc_col-md-3,.vc_col-md-4,.vc_col-md-5,.vc_col-md-6,.vc_col-md-7,.vc_col-md-8,.vc_col-md-9){float:right}.vc_col-md-12{width:100%}.vc_col-md-11{width:91.66666667%}.vc_col-md-10{width:83.33333333%}.vc_col-md-9{width:75%}.vc_col-md-8{width:66.66666667%}.vc_col-md-7{width:58.33333333%}.vc_col-md-6{width:50%}.vc_col-md-5{width:41.66666667%}.vc_col-md-4{width:33.33333333%}.vc_col-md-3{width:25%}.vc_col-md-2{width:16.66666667%}.vc_col-md-1{width:8.33333333%}.vc_col-md-pull-12{right:100%}.vc_col-md-pull-11{right:91.66666667%}.vc_col-md-pull-10{right:83.33333333%}.vc_col-md-pull-9{right:75%}.vc_col-md-pull-8{right:66.66666667%}.vc_col-md-pull-7{right:58.33333333%}.vc_col-md-pull-6{right:50%}.vc_col-md-pull-5{right:41.66666667%}.vc_col-md-pull-4{right:33.33333333%}.vc_col-md-pull-3{right:25%}.vc_col-md-pull-2{right:16.66666667%}.vc_col-md-pull-1{right:8.33333333%}.vc_col-md-pull-0{right:auto}.vc_col-md-push-12{left:100%}.vc_col-md-push-11{left:91.66666667%}.vc_col-md-push-10{left:83.33333333%}.vc_col-md-push-9{left:75%}.vc_col-md-push-8{left:66.66666667%}.vc_col-md-push-7{left:58.33333333%}.vc_col-md-push-6{left:50%}.vc_col-md-push-5{left:41.66666667%}.vc_col-md-push-4{left:33.33333333%}.vc_col-md-push-3{left:25%}.vc_col-md-push-2{left:16.66666667%}.vc_col-md-push-1{left:8.33333333%}.vc_col-md-push-0{left:auto}.vc_col-md-offset-12{margin-left:100%}.vc_col-md-offset-11{margin-left:91.66666667%}.vc_col-md-offset-10{margin-left:83.33333333%}.vc_col-md-offset-9{margin-left:75%}.vc_col-md-offset-8{margin-left:66.66666667%}.vc_col-md-offset-7{margin-left:58.33333333%}.vc_col-md-offset-6{margin-left:50%}.vc_col-md-offset-5{margin-left:41.66666667%}.vc_col-md-offset-4{margin-left:33.33333333%}.vc_col-md-offset-3{margin-left:25%}.vc_col-md-offset-2{margin-left:16.66666667%}.vc_col-md-offset-1{margin-left:8.33333333%}.vc_col-md-offset-0{margin-left:0}.vc_col-md-1\/5,.vc_col-md-2\/5,.vc_col-md-3\/5,.vc_col-md-4\/5,.vc_col-md-5\/5{float:left}[dir=rtl] .vc_rtl-columns-reverse :is(.vc_col-sm-1\/5,.vc_col-sm-2\/5,.vc_col-sm-3\/5,.vc_col-sm-4\/5,.vc_col-sm-5\/5){float:right}.vc_col-md-5\/5{width:100%}.vc_col-md-4\/5{width:80%}.vc_col-md-3\/5{width:60%}.vc_col-md-2\/5{width:40%}.vc_col-md-1\/5{width:20%}.vc_col-md-pull-5\/5{right:100%}.vc_col-md-pull-4\/5{right:80%}.vc_col-md-pull-3\/5{right:60%}.vc_col-md-pull-2\/5{right:40%}.vc_col-md-pull-1\/5{right:20%}.vc_col-md-pull-0\/5{right:auto}.vc_col-md-push-5\/5{left:100%}.vc_col-md-push-4\/5{left:80%}.vc_col-md-push-3\/5{left:60%}.vc_col-md-push-2\/5{left:40%}.vc_col-md-push-1\/5{left:20%}.vc_col-md-push-0\/5{left:auto}.vc_col-md-offset-5\/5{margin-left:100%}.vc_col-md-offset-4\/5{margin-left:80%}.vc_col-md-offset-3\/5{margin-left:60%}.vc_col-md-offset-2\/5{margin-left:40%}.vc_col-md-offset-1\/5{margin-left:20%}.vc_col-md-offset-0\/5{margin-left:0}}@media (min-width:1200px){.vc_col-lg-1,.vc_col-lg-10,.vc_col-lg-11,.vc_col-lg-12,.vc_col-lg-2,.vc_col-lg-3,.vc_col-lg-4,.vc_col-lg-5,.vc_col-lg-6,.vc_col-lg-7,.vc_col-lg-8,.vc_col-lg-9{float:left}[dir=rtl] .vc_rtl-columns-reverse :is(.vc_col-lg-1,.vc_col-lg-10,.vc_col-lg-11,.vc_col-lg-12,.vc_col-lg-2,.vc_col-lg-3,.vc_col-lg-4,.vc_col-lg-5,.vc_col-lg-6,.vc_col-lg-7,.vc_col-lg-8,.vc_col-lg-9){float:right}.vc_col-lg-12{width:100%}.vc_col-lg-11{width:91.66666667%}.vc_col-lg-10{width:83.33333333%}.vc_col-lg-9{width:75%}.vc_col-lg-8{width:66.66666667%}.vc_col-lg-7{width:58.33333333%}.vc_col-lg-6{width:50%}.vc_col-lg-5{width:41.66666667%}.vc_col-lg-4{width:33.33333333%}.vc_col-lg-3{width:25%}.vc_col-lg-2{width:16.66666667%}.vc_col-lg-1{width:8.33333333%}.vc_col-lg-pull-12{right:100%}.vc_col-lg-pull-11{right:91.66666667%}.vc_col-lg-pull-10{right:83.33333333%}.vc_col-lg-pull-9{right:75%}.vc_col-lg-pull-8{right:66.66666667%}.vc_col-lg-pull-7{right:58.33333333%}.vc_col-lg-pull-6{right:50%}.vc_col-lg-pull-5{right:41.66666667%}.vc_col-lg-pull-4{right:33.33333333%}.vc_col-lg-pull-3{right:25%}.vc_col-lg-pull-2{right:16.66666667%}.vc_col-lg-pull-1{right:8.33333333%}.vc_col-lg-pull-0{right:auto}.vc_col-lg-push-12{left:100%}.vc_col-lg-push-11{left:91.66666667%}.vc_col-lg-push-10{left:83.33333333%}.vc_col-lg-push-9{left:75%}.vc_col-lg-push-8{left:66.66666667%}.vc_col-lg-push-7{left:58.33333333%}.vc_col-lg-push-6{left:50%}.vc_col-lg-push-5{left:41.66666667%}.vc_col-lg-push-4{left:33.33333333%}.vc_col-lg-push-3{left:25%}.vc_col-lg-push-2{left:16.66666667%}.vc_col-lg-push-1{left:8.33333333%}.vc_col-lg-push-0{left:auto}.vc_col-lg-offset-12{margin-left:100%}.vc_col-lg-offset-11{margin-left:91.66666667%}.vc_col-lg-offset-10{margin-left:83.33333333%}.vc_col-lg-offset-9{margin-left:75%}.vc_col-lg-offset-8{margin-left:66.66666667%}.vc_col-lg-offset-7{margin-left:58.33333333%}.vc_col-lg-offset-6{margin-left:50%}.vc_col-lg-offset-5{margin-left:41.66666667%}.vc_col-lg-offset-4{margin-left:33.33333333%}.vc_col-lg-offset-3{margin-left:25%}.vc_col-lg-offset-2{margin-left:16.66666667%}.vc_col-lg-offset-1{margin-left:8.33333333%}.vc_col-lg-offset-0{margin-left:0}.vc_col-lg-1\/5,.vc_col-lg-2\/5,.vc_col-lg-3\/5,.vc_col-lg-4\/5,.vc_col-lg-5\/5{float:left}[dir=rtl] .vc_rtl-columns-reverse :is(.vc_col-sm-1\/5,.vc_col-sm-2\/5,.vc_col-sm-3\/5,.vc_col-sm-4\/5,.vc_col-sm-5\/5){float:right}.vc_col-lg-5\/5{width:100%}.vc_col-lg-4\/5{width:80%}.vc_col-lg-3\/5{width:60%}.vc_col-lg-2\/5{width:40%}.vc_col-lg-1\/5{width:20%}.vc_col-lg-pull-5\/5{right:100%}.vc_col-lg-pull-4\/5{right:80%}.vc_col-lg-pull-3\/5{right:60%}.vc_col-lg-pull-2\/5{right:40%}.vc_col-lg-pull-1\/5{right:20%}.vc_col-lg-pull-0\/5{right:auto}.vc_col-lg-push-5\/5{left:100%}.vc_col-lg-push-4\/5{left:80%}.vc_col-lg-push-3\/5{left:60%}.vc_col-lg-push-2\/5{left:40%}.vc_col-lg-push-1\/5{left:20%}.vc_col-lg-push-0\/5{left:auto}.vc_col-lg-offset-5\/5{margin-left:100%}.vc_col-lg-offset-4\/5{margin-left:80%}.vc_col-lg-offset-3\/5{margin-left:60%}.vc_col-lg-offset-2\/5{margin-left:40%}.vc_col-lg-offset-1\/5{margin-left:20%}.vc_col-lg-offset-0\/5{margin-left:0}}@media (min-width:1400px){.vc_col-xl-1,.vc_col-xl-10,.vc_col-xl-11,.vc_col-xl-12,.vc_col-xl-2,.vc_col-xl-3,.vc_col-xl-4,.vc_col-xl-5,.vc_col-xl-6,.vc_col-xl-7,.vc_col-xl-8,.vc_col-xl-9{float:left}[dir=rtl] .vc_rtl-columns-reverse :is(.vc_col-xl-1,.vc_col-xl-10,.vc_col-xl-11,.vc_col-xl-12,.vc_col-xl-2,.vc_col-xl-3,.vc_col-xl-4,.vc_col-xl-5,.vc_col-xl-6,.vc_col-xl-7,.vc_col-xl-8,.vc_col-xl-9){float:right}.vc_col-xl-12{width:100%}.vc_col-xl-11{width:91.66666667%}.vc_col-xl-10{width:83.33333333%}.vc_col-xl-9{width:75%}.vc_col-xl-8{width:66.66666667%}.vc_col-xl-7{width:58.33333333%}.vc_col-xl-6{width:50%}.vc_col-xl-5{width:41.66666667%}.vc_col-xl-4{width:33.33333333%}.vc_col-xl-3{width:25%}.vc_col-xl-2{width:16.66666667%}.vc_col-xl-1{width:8.33333333%}.vc_col-xl-pull-12{right:100%}.vc_col-xl-pull-11{right:91.66666667%}.vc_col-xl-pull-10{right:83.33333333%}.vc_col-xl-pull-9{right:75%}.vc_col-xl-pull-8{right:66.66666667%}.vc_col-xl-pull-7{right:58.33333333%}.vc_col-xl-pull-6{right:50%}.vc_col-xl-pull-5{right:41.66666667%}.vc_col-xl-pull-4{right:33.33333333%}.vc_col-xl-pull-3{right:25%}.vc_col-xl-pull-2{right:16.66666667%}.vc_col-xl-pull-1{right:8.33333333%}.vc_col-xl-pull-0{right:auto}.vc_col-xl-push-12{left:100%}.vc_col-xl-push-11{left:91.66666667%}.vc_col-xl-push-10{left:83.33333333%}.vc_col-xl-push-9{left:75%}.vc_col-xl-push-8{left:66.66666667%}.vc_col-xl-push-7{left:58.33333333%}.vc_col-xl-push-6{left:50%}.vc_col-xl-push-5{left:41.66666667%}.vc_col-xl-push-4{left:33.33333333%}.vc_col-xl-push-3{left:25%}.vc_col-xl-push-2{left:16.66666667%}.vc_col-xl-push-1{left:8.33333333%}.vc_col-xl-push-0{left:auto}.vc_col-xl-offset-12{margin-left:100%}.vc_col-xl-offset-11{margin-left:91.66666667%}.vc_col-xl-offset-10{margin-left:83.33333333%}.vc_col-xl-offset-9{margin-left:75%}.vc_col-xl-offset-8{margin-left:66.66666667%}.vc_col-xl-offset-7{margin-left:58.33333333%}.vc_col-xl-offset-6{margin-left:50%}.vc_col-xl-offset-5{margin-left:41.66666667%}.vc_col-xl-offset-4{margin-left:33.33333333%}.vc_col-xl-offset-3{margin-left:25%}.vc_col-xl-offset-2{margin-left:16.66666667%}.vc_col-xl-offset-1{margin-left:8.33333333%}.vc_col-xl-offset-0{margin-left:0}.vc_col-xl-1\/5,.vc_col-xl-2\/5,.vc_col-xl-3\/5,.vc_col-xl-4\/5,.vc_col-xl-5\/5{float:left}[dir=rtl] .vc_rtl-columns-reverse :is(.vc_col-xl-1\/5,.vc_col-xl-2\/5,.vc_col-xl-3\/5,.vc_col-xl-4\/5,.vc_col-xl-5\/5){float:right}.vc_col-xl-5\/5{width:100%}.vc_col-xl-4\/5{width:80%}.vc_col-xl-3\/5{width:60%}.vc_col-xl-2\/5{width:40%}.vc_col-xl-1\/5{width:20%}.vc_col-xl-pull-5\/5{right:100%}.vc_col-xl-pull-4\/5{right:80%}.vc_col-xl-pull-3\/5{right:60%}.vc_col-xl-pull-2\/5{right:40%}.vc_col-xl-pull-1\/5{right:20%}.vc_col-xl-pull-0\/5{right:auto}.vc_col-xl-push-5\/5{left:100%}.vc_col-xl-push-4\/5{left:80%}.vc_col-xl-push-3\/5{left:60%}.vc_col-xl-push-2\/5{left:40%}.vc_col-xl-push-1\/5{left:20%}.vc_col-xl-push-0\/5{left:auto}.vc_col-xl-offset-5\/5{margin-left:100%}.vc_col-xl-offset-4\/5{margin-left:80%}.vc_col-xl-offset-3\/5{margin-left:60%}.vc_col-xl-offset-2\/5{margin-left:40%}.vc_col-xl-offset-1\/5{margin-left:20%}.vc_col-xl-offset-0\/5{margin-left:0}}.vc_pull-right{float:right!important}.vc_pull-left{float:left!important}.vc_clearfix:after,.vc_clearfix:before{content:" ";display:table}.vc_clearfix:after,.vc_el-clearfix{clear:both}@media (max-width:767px){.vc_el-clearfix-xs{clear:both}}@media (min-width:768px) and (max-width:991px){.vc_el-clearfix-sm{clear:both}}@media (min-width:992px) and (max-width:1199px){.vc_el-clearfix-md{clear:both}}@media (min-width:1200px) and (max-width:1399px){.vc_el-clearfix-lg{clear:both}}@media (min-width:1400px){.vc_el-clearfix-xl{clear:both}}.vc_visible{display:block}.vc_table{border-collapse:collapse;margin-bottom:20px;max-width:100%;width:100%}.vc_table>:is(tbody>tr>td,tbody>tr>th,tfoot>tr>td,tfoot>tr>th,thead>tr>td,thead>tr>th){border-top:1px solid #ddd;line-height:1.42857143;padding:8px;vertical-align:top}.vc_table>thead>tr>th{border-bottom:2px solid #ddd;vertical-align:bottom}.vc_table>caption+thead>tr:first-child>td,.vc_table>caption+thead>tr:first-child>th,.vc_table>colgroup+thead>tr:first-child>td,.vc_table>colgroup+thead>tr:first-child>th,.vc_table>thead:first-child>tr:first-child>td,.vc_table>thead:first-child>tr:first-child>th{border-top:0}.vc_table>tbody+tbody{border-top:2px solid #ddd}.vc_table .table{background-color:#fff}.vc_table-bordered,.vc_table-bordered>:is(tbody>tr>td,tbody>tr>th,tfoot>tr>td,tfoot>tr>th,thead>tr>td,thead>tr>th){border:1px solid #ddd}.vc_table-bordered>thead>tr>:is(td,th){border-bottom-width:2px}.vc_pixel_icon{background-position:0 0;background-repeat:no-repeat;display:inline-block;height:16px;vertical-align:middle;width:16px}.vc_pixel_icon-alert{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../vc/alert.png)}.vc_pixel_icon-info{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../vc/info.png)}.vc_pixel_icon-tick{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../vc/tick.png)}.vc_pixel_icon-explanation{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../vc/exclamation.png)}.vc_pixel_icon-address_book{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/address-book.png)}.vc_pixel_icon-alarm_clock{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/alarm-clock.png)}.vc_pixel_icon-anchor{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/anchor.png)}.vc_pixel_icon-application_image{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/application-image.png)}.vc_pixel_icon-arrow{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/arrow.png)}.vc_pixel_icon-asterisk{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/asterisk.png)}.vc_pixel_icon-hammer{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/auction-hammer.png)}.vc_pixel_icon-balloon{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/balloon.png)}.vc_pixel_icon-balloon_buzz{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/balloon-buzz.png)}.vc_pixel_icon-balloon_facebook{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/balloon-facebook.png)}.vc_pixel_icon-balloon_twitter{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/balloon-twitter.png)}.vc_pixel_icon-battery{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/battery-full.png)}.vc_pixel_icon-binocular{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/binocular.png)}.vc_pixel_icon-document_excel{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-excel.png)}.vc_pixel_icon-document_image{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-image.png)}.vc_pixel_icon-document_music{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-music.png)}.vc_pixel_icon-document_office{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-office.png)}.vc_pixel_icon-document_pdf{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-pdf.png)}.vc_pixel_icon-document_powerpoint{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-powerpoint.png)}.vc_pixel_icon-document_word{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-word.png)}.vc_pixel_icon-bookmark{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/bookmark.png)}.vc_pixel_icon-camcorder{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/camcorder.png)}.vc_pixel_icon-camera{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/camera.png)}.vc_pixel_icon-chart{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/chart.png)}.vc_pixel_icon-chart_pie{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/chart-pie.png)}.vc_pixel_icon-clock{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/clock.png)}.vc_pixel_icon-play{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/control.png)}.vc_pixel_icon-fire{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/fire.png)}.vc_pixel_icon-heart{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/heart.png)}.vc_pixel_icon-mail{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/mail.png)}.vc_pixel_icon-shield{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/plus-shield.png)}.vc_pixel_icon-video{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/video.png)}@font-face{font-display:block;font-family:vcpb-plugin-icons;font-style:normal;font-weight:400;src:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../fonts/vc_icons/fonts/vcpb-plugin-icons.ttf?jg06m5) format("truetype"),url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../fonts/vc_icons/fonts/vcpb-plugin-icons.woff?jg06m5) format("woff"),url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../fonts/vc_icons/fonts/vcpb-plugin-icons.svg?jg06m5#vcpb-plugin-icons) format("svg")}.vc-composer-icon{font-family:vcpb-plugin-icons!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vc-c-warning-triangle:before{content:"\e956"}.vc-c-template-layout:before{content:"\e952"}.vc-c-wpb-logo:before{content:"\e953"}.vc-c-download:before{content:"\e954"}.vc-c-locked:before{content:"\e955"}.vc-c-controls-menu:before{content:"\e94e"}.vc-c-add-circle:before{content:"\e94f"}.vc-c-layout:before{content:"\e950"}.vc-c-trash:before{content:"\e951"}.vc-c-viewport-mobile-portrait:before{content:"\e906"}.vc-c-viewport-mobile-landscape:before{content:"\e907"}.vc-c-viewport-tablet-portrait:before{content:"\e90a"}.vc-c-viewport-tablet-landscape:before{content:"\e90c"}.vc-c-viewport-desktop:before{content:"\e90e"}.vc-c-cog-filled-2:before{content:"\e904"}.vc-c-menu:before{content:"\e94d"}.vc-c-icon-panel-minimize:before{content:"\e94b"}.vc-c-cog-filled:before{content:"\e94c"}.vc-c-images:before{content:"\e947"}.vc-c-image:before{content:"\e948"}.vc-c-edit:before{content:"\e949"}.vc-c-upload:before{content:"\e94a"}.vc-c-param-group-dragndrop:before{content:"\e946"}.vc-c-param-group-add:before{content:"\e943"}.vc-c-param-group-copy:before{content:"\e944"}.vc-c-param-group-delete:before{content:"\e945"}.vc-c-token-close:before{content:"\e942"}.vc-c-justify-vertical-between:before{content:"\e931"}.vc-c-justify-vertical-bottom:before{content:"\e932"}.vc-c-justify-vertical-center:before{content:"\e933"}.vc-c-justify-vertical-top:before{content:"\e934"}.vc-c-arrow-down:before{content:"\e935"}.vc-c-arrow-left:before{content:"\e936"}.vc-c-arrow-right:before{content:"\e937"}.vc-c-arrow-up:before{content:"\e938"}.vc-c-justify-between:before{content:"\e939"}.vc-c-justify-right:before{content:"\e93a"}.vc-c-justify-center:before{content:"\e93b"}.vc-c-justify-left:before{content:"\e93c"}.vc-c-alignment:before{content:"\e93d"}.vc-c-alignment-left:before{content:"\e93e"}.vc-c-alignment-right:before{content:"\e93f"}.vc-c-alignment-center:before{content:"\e940"}.vc-c-chevron-down:before{content:"\e941"}.vc-c-number-arrow-down:before{content:"\e92f"}.vc-c-number-arrow-up:before{content:"\e930"}.vc-c-linked:before{content:"\e91a"}.vc-c-not-linked:before{content:"\e92e"}.vc-c-icon-code:before{content:"\e919"}.vc-c-icon-layout_portrait-tablets:before{content:"\e917"}.vc-c-icon-layout_portrait-smartphones:before{content:"\e918"}.vc-c-icon-layout_landscape-smartphones:before{content:"\e928"}.vc-c-icon-layout_landscape-tablets:before{content:"\e929"}.vc-c-icon-save-draft:before{content:"\e92a"}.vc-c-icon-backend-editor:before{content:"\e92b"}.vc-c-icon-publish:before{content:"\e92c"}.vc-c-icon-preview:before{content:"\e92d"}.vc-c-icon-seo:before{content:"\e927"}.vc-c-icon-clone:before{content:"\e926"}.vc-c-icon-paste:before{content:"\e924"}.vc-c-icon-copy:before{content:"\e925"}.vc-c-icon-layout_default:before{content:"\e91b"}.vc-c-icon-cog:before{content:"\e91f"}.vc-c-icon-add_template:before{content:"\e920"}.vc-c-icon-more:before{content:"\e923"}.vc-c-icon-text-block:before{content:"\e903"}.vc-c-icon-fullscreen_exit:before{content:"\e90d"}.vc-c-icon-fullscreen:before{content:"\e910"}.vc-c-icon-close:before{content:"\e914"}.vc-c-icon-add_element:before{content:"\e915"}.vc-c-icon-redo:before{content:"\e921"}.vc-c-icon-undo:before{content:"\e922"}.vc-c-icon-minimize:before{content:"\e91c"}.vc-c-icon-arrow_back:before{content:"\e5c4"}.vc-c-icon-arrow_drop_down:before{content:"\e5c5"}.vc-c-icon-arrow_drop_up:before{content:"\e5c7"}.vc-c-icon-arrow_forward:before{content:"\e5c8"}.vc-c-icon-check:before{content:"\e5ca"}.vc-c-icon-arrow_upward:before{content:"\e5d8"}.vc-c-icon-arrow_downward:before{content:"\e5db"}.vc-c-icon-sync:before{content:"\e627"}.vc-c-icon-search:before{content:"\e8b6"}.vc-c-icon-1-1:before{content:"\e900"}.vc-c-icon-1-2_1-2:before{content:"\e901"}.vc-c-icon-1-3_1-3_1-3:before{content:"\e902"}.vc-c-icon-1-4_1-4_1-4_1-4:before{content:"\e905"}.vc-c-icon-1-6_1-6_1-6_1-6_1-6_1-6:before{content:"\e908"}.vc-c-icon-l_15_15_15_15_15:before{content:"\e909"}.vc-c-icon-2-3_1-3:before{content:"\e90b"}.vc-c-icon-add:before{content:"\e90f"}.vc-c-icon-content_copy:before{content:"\e911"}.vc-c-icon-delete_empty:before{content:"\e912"}.vc-c-icon-dragndrop:before{content:"\e913"}.vc-c-icon-arrow_drop_right:before{content:"\e916"}.vc-c-icon-mode_edit:before{content:"\e91d"}.vc-c-icon-row_default_fe:before{content:"\e91e"}.vc_txt_align_left{text-align:left}.vc_txt_align_right{text-align:right}.vc_txt_align_center{text-align:center}.vc_txt_align_justify{text-align:justify;text-justify:inter-word}.vc_el_width_50{width:50%}.vc_el_width_50,.vc_el_width_60{margin-left:auto!important;margin-right:auto!important}.vc_el_width_60{width:60%}.vc_el_width_70{width:70%}.vc_el_width_70,.vc_el_width_80{margin-left:auto!important;margin-right:auto!important}.vc_el_width_80{width:80%}.vc_el_width_90{width:90%}.vc_el_width_100,.vc_el_width_90{margin-left:auto!important;margin-right:auto!important}.vc_el_width_100{width:100%}.vc_btn,a.vc_btn,button.vc_btn{border-radius:4px;box-shadow:none;cursor:pointer;display:inline-block;font-size:100%;line-height:20px;padding:9px 12px;text-decoration:none!important}.vc_btn,.vc_btn:focus,.vc_btn:hover,a.vc_btn,a.vc_btn:focus,a.vc_btn:hover,button.vc_btn,button.vc_btn:focus,button.vc_btn:hover{border:1px solid #0000;box-shadow:none}.vc_btn-lg,a.vc_btn-lg,button.vc_btn-lg{border-radius:6px;font-size:18px;line-height:1.3333333;padding:10px 16px}.vc_btn-sm,a.vc_btn-sm,button.vc_btn-sm{border-radius:3px;font-size:12px;line-height:1.5;padding:5px 10px}.vc_btn-xs,a.vc_btn-xs,button.vc_btn-xs{border-radius:3px;font-size:12px;line-height:1.5;padding:1px 5px}.vc_btn_square,a.vc_btn_square,button.vc_btn_square{border-radius:0}.vc_btn_square_outlined,a.vc_btn_square_outlined,button.vc_btn_square_outlined{background:none!important;border-radius:0}.vc_btn_square_outlined,.vc_btn_square_outlined:focus,.vc_btn_square_outlined:hover,a.vc_btn_square_outlined,a.vc_btn_square_outlined:focus,a.vc_btn_square_outlined:hover,button.vc_btn_square_outlined,button.vc_btn_square_outlined:focus,button.vc_btn_square_outlined:hover{border:2px solid}.vc_btn_round,a.vc_btn_round,button.vc_btn_round{border-radius:25px}.vc_btn_outlined,a.vc_btn_outlined,button.vc_btn_outlined{background:none!important}.vc_btn_outlined,.vc_btn_outlined:focus,.vc_btn_outlined:hover,a.vc_btn_outlined,a.vc_btn_outlined:focus,a.vc_btn_outlined:hover,button.vc_btn_outlined,button.vc_btn_outlined:focus,button.vc_btn_outlined:hover{border:2px solid}.vc_btn-blue,a.vc_btn-blue,button.vc_btn-blue{background-color:#5472d2;color:#fff!important;transition:all .5s}.vc_btn-blue:hover,a.vc_btn-blue:hover,button.vc_btn-blue:hover{background-color:#3c5ecc;color:#f7f7f7!important}.vc_btn-blue.vc_btn_outlined,.vc_btn-blue.vc_btn_square_outlined,a.vc_btn-blue.vc_btn_outlined,a.vc_btn-blue.vc_btn_square_outlined,button.vc_btn-blue.vc_btn_outlined,button.vc_btn-blue.vc_btn_square_outlined{color:#5472d2!important}.vc_btn-blue.vc_btn_outlined:hover,.vc_btn-blue.vc_btn_square_outlined:hover,a.vc_btn-blue.vc_btn_outlined:hover,a.vc_btn-blue.vc_btn_square_outlined:hover,button.vc_btn-blue.vc_btn_outlined:hover,button.vc_btn-blue.vc_btn_square_outlined:hover{border-color:#3c5ecc}.vc_btn-blue.vc_btn_3d,a.vc_btn-blue.vc_btn_3d,button.vc_btn-blue.vc_btn_3d{box-shadow:0 5px 0 #3253bc;margin-bottom:5px}.vc_btn-blue.vc_btn_3d.vc_btn_xs,a.vc_btn-blue.vc_btn_3d.vc_btn_xs,button.vc_btn-blue.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #3253bc;margin-bottom:3px}.vc_btn-blue.vc_btn_3d.vc_btn_sm,a.vc_btn-blue.vc_btn_3d.vc_btn_sm,button.vc_btn-blue.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #3253bc;margin-bottom:4px}.vc_btn-turquoise,a.vc_btn-turquoise,button.vc_btn-turquoise{background-color:#00c1cf;color:#fff!important;transition:all .5s}.vc_btn-turquoise:hover,a.vc_btn-turquoise:hover,button.vc_btn-turquoise:hover{background-color:#00a4b0;color:#f7f7f7!important}.vc_btn-turquoise.vc_btn_outlined,.vc_btn-turquoise.vc_btn_square_outlined,a.vc_btn-turquoise.vc_btn_outlined,a.vc_btn-turquoise.vc_btn_square_outlined,button.vc_btn-turquoise.vc_btn_outlined,button.vc_btn-turquoise.vc_btn_square_outlined{color:#00c1cf!important}.vc_btn-turquoise.vc_btn_outlined:hover,.vc_btn-turquoise.vc_btn_square_outlined:hover,a.vc_btn-turquoise.vc_btn_outlined:hover,a.vc_btn-turquoise.vc_btn_square_outlined:hover,button.vc_btn-turquoise.vc_btn_outlined:hover,button.vc_btn-turquoise.vc_btn_square_outlined:hover{border-color:#00a4b0}.vc_btn-turquoise.vc_btn_3d,a.vc_btn-turquoise.vc_btn_3d,button.vc_btn-turquoise.vc_btn_3d{box-shadow:0 5px 0 #008d97;margin-bottom:5px}.vc_btn-turquoise.vc_btn_3d.vc_btn_xs,a.vc_btn-turquoise.vc_btn_3d.vc_btn_xs,button.vc_btn-turquoise.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #008d97;margin-bottom:3px}.vc_btn-turquoise.vc_btn_3d.vc_btn_sm,a.vc_btn-turquoise.vc_btn_3d.vc_btn_sm,button.vc_btn-turquoise.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #008d97;margin-bottom:4px}.vc_btn-pink,a.vc_btn-pink,button.vc_btn-pink{background-color:#fe6c61;color:#fff!important;transition:all .5s}.vc_btn-pink:hover,a.vc_btn-pink:hover,button.vc_btn-pink:hover{background-color:#fe5043;color:#f7f7f7!important}.vc_btn-pink.vc_btn_outlined,.vc_btn-pink.vc_btn_square_outlined,a.vc_btn-pink.vc_btn_outlined,a.vc_btn-pink.vc_btn_square_outlined,button.vc_btn-pink.vc_btn_outlined,button.vc_btn-pink.vc_btn_square_outlined{color:#fe6c61!important}.vc_btn-pink.vc_btn_outlined:hover,.vc_btn-pink.vc_btn_square_outlined:hover,a.vc_btn-pink.vc_btn_outlined:hover,a.vc_btn-pink.vc_btn_square_outlined:hover,button.vc_btn-pink.vc_btn_outlined:hover,button.vc_btn-pink.vc_btn_square_outlined:hover{border-color:#fe5043}.vc_btn-pink.vc_btn_3d,a.vc_btn-pink.vc_btn_3d,button.vc_btn-pink.vc_btn_3d{box-shadow:0 5px 0 #fe3829;margin-bottom:5px}.vc_btn-pink.vc_btn_3d.vc_btn_xs,a.vc_btn-pink.vc_btn_3d.vc_btn_xs,button.vc_btn-pink.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #fe3829;margin-bottom:3px}.vc_btn-pink.vc_btn_3d.vc_btn_sm,a.vc_btn-pink.vc_btn_3d.vc_btn_sm,button.vc_btn-pink.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #fe3829;margin-bottom:4px}.vc_btn-violet,a.vc_btn-violet,button.vc_btn-violet{background-color:#8d6dc4;color:#fff!important;transition:all .5s}.vc_btn-violet:hover,a.vc_btn-violet:hover,button.vc_btn-violet:hover{background-color:#7c57bb;color:#f7f7f7!important}.vc_btn-violet.vc_btn_outlined,.vc_btn-violet.vc_btn_square_outlined,a.vc_btn-violet.vc_btn_outlined,a.vc_btn-violet.vc_btn_square_outlined,button.vc_btn-violet.vc_btn_outlined,button.vc_btn-violet.vc_btn_square_outlined{color:#8d6dc4!important}.vc_btn-violet.vc_btn_outlined:hover,.vc_btn-violet.vc_btn_square_outlined:hover,a.vc_btn-violet.vc_btn_outlined:hover,a.vc_btn-violet.vc_btn_square_outlined:hover,button.vc_btn-violet.vc_btn_outlined:hover,button.vc_btn-violet.vc_btn_square_outlined:hover{border-color:#7c57bb}.vc_btn-violet.vc_btn_3d,a.vc_btn-violet.vc_btn_3d,button.vc_btn-violet.vc_btn_3d{box-shadow:0 5px 0 #6e48b1;margin-bottom:5px}.vc_btn-violet.vc_btn_3d.vc_btn_xs,a.vc_btn-violet.vc_btn_3d.vc_btn_xs,button.vc_btn-violet.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #6e48b1;margin-bottom:3px}.vc_btn-violet.vc_btn_3d.vc_btn_sm,a.vc_btn-violet.vc_btn_3d.vc_btn_sm,button.vc_btn-violet.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #6e48b1;margin-bottom:4px}.vc_btn-peacoc,a.vc_btn-peacoc,button.vc_btn-peacoc{background-color:#4cadc9;color:#fff!important;transition:all .5s}.vc_btn-peacoc:hover,a.vc_btn-peacoc:hover,button.vc_btn-peacoc:hover{background-color:#39a0bd;color:#f7f7f7!important}.vc_btn-peacoc.vc_btn_outlined,.vc_btn-peacoc.vc_btn_square_outlined,a.vc_btn-peacoc.vc_btn_outlined,a.vc_btn-peacoc.vc_btn_square_outlined,button.vc_btn-peacoc.vc_btn_outlined,button.vc_btn-peacoc.vc_btn_square_outlined{color:#4cadc9!important}.vc_btn-peacoc.vc_btn_outlined:hover,.vc_btn-peacoc.vc_btn_square_outlined:hover,a.vc_btn-peacoc.vc_btn_outlined:hover,a.vc_btn-peacoc.vc_btn_square_outlined:hover,button.vc_btn-peacoc.vc_btn_outlined:hover,button.vc_btn-peacoc.vc_btn_square_outlined:hover{border-color:#39a0bd}.vc_btn-peacoc.vc_btn_3d,a.vc_btn-peacoc.vc_btn_3d,button.vc_btn-peacoc.vc_btn_3d{box-shadow:0 5px 0 #338faa;margin-bottom:5px}.vc_btn-peacoc.vc_btn_3d.vc_btn_xs,a.vc_btn-peacoc.vc_btn_3d.vc_btn_xs,button.vc_btn-peacoc.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #338faa;margin-bottom:3px}.vc_btn-peacoc.vc_btn_3d.vc_btn_sm,a.vc_btn-peacoc.vc_btn_3d.vc_btn_sm,button.vc_btn-peacoc.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #338faa;margin-bottom:4px}.vc_btn-chino,a.vc_btn-chino,button.vc_btn-chino{background-color:#cec2ab;color:#fff!important;transition:all .5s}.vc_btn-chino:hover,a.vc_btn-chino:hover,button.vc_btn-chino:hover{background-color:#c3b498;color:#f7f7f7!important}.vc_btn-chino.vc_btn_outlined,.vc_btn-chino.vc_btn_square_outlined,a.vc_btn-chino.vc_btn_outlined,a.vc_btn-chino.vc_btn_square_outlined,button.vc_btn-chino.vc_btn_outlined,button.vc_btn-chino.vc_btn_square_outlined{color:#cec2ab!important}.vc_btn-chino.vc_btn_outlined:hover,.vc_btn-chino.vc_btn_square_outlined:hover,a.vc_btn-chino.vc_btn_outlined:hover,a.vc_btn-chino.vc_btn_square_outlined:hover,button.vc_btn-chino.vc_btn_outlined:hover,button.vc_btn-chino.vc_btn_square_outlined:hover{border-color:#c3b498}.vc_btn-chino.vc_btn_3d,a.vc_btn-chino.vc_btn_3d,button.vc_btn-chino.vc_btn_3d{box-shadow:0 5px 0 #b9a888;margin-bottom:5px}.vc_btn-chino.vc_btn_3d.vc_btn_xs,a.vc_btn-chino.vc_btn_3d.vc_btn_xs,button.vc_btn-chino.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #b9a888;margin-bottom:3px}.vc_btn-chino.vc_btn_3d.vc_btn_sm,a.vc_btn-chino.vc_btn_3d.vc_btn_sm,button.vc_btn-chino.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #b9a888;margin-bottom:4px}.vc_btn-mulled_wine,a.vc_btn-mulled_wine,button.vc_btn-mulled_wine{background-color:#50485b;color:#fff!important;transition:all .5s}.vc_btn-mulled_wine:hover,a.vc_btn-mulled_wine:hover,button.vc_btn-mulled_wine:hover{background-color:#413a4a;color:#f7f7f7!important}.vc_btn-mulled_wine.vc_btn_outlined,.vc_btn-mulled_wine.vc_btn_square_outlined,a.vc_btn-mulled_wine.vc_btn_outlined,a.vc_btn-mulled_wine.vc_btn_square_outlined,button.vc_btn-mulled_wine.vc_btn_outlined,button.vc_btn-mulled_wine.vc_btn_square_outlined{color:#50485b!important}.vc_btn-mulled_wine.vc_btn_outlined:hover,.vc_btn-mulled_wine.vc_btn_square_outlined:hover,a.vc_btn-mulled_wine.vc_btn_outlined:hover,a.vc_btn-mulled_wine.vc_btn_square_outlined:hover,button.vc_btn-mulled_wine.vc_btn_outlined:hover,button.vc_btn-mulled_wine.vc_btn_square_outlined:hover{border-color:#413a4a}.vc_btn-mulled_wine.vc_btn_3d,a.vc_btn-mulled_wine.vc_btn_3d,button.vc_btn-mulled_wine.vc_btn_3d{box-shadow:0 5px 0 #342f3c;margin-bottom:5px}.vc_btn-mulled_wine.vc_btn_3d.vc_btn_xs,a.vc_btn-mulled_wine.vc_btn_3d.vc_btn_xs,button.vc_btn-mulled_wine.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #342f3c;margin-bottom:3px}.vc_btn-mulled_wine.vc_btn_3d.vc_btn_sm,a.vc_btn-mulled_wine.vc_btn_3d.vc_btn_sm,button.vc_btn-mulled_wine.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #342f3c;margin-bottom:4px}.vc_btn-vista_blue,a.vc_btn-vista_blue,button.vc_btn-vista_blue{background-color:#75d69c;color:#fff!important;transition:all .5s}.vc_btn-vista_blue:hover,a.vc_btn-vista_blue:hover,button.vc_btn-vista_blue:hover{background-color:#5dcf8b;color:#f7f7f7!important}.vc_btn-vista_blue.vc_btn_outlined,.vc_btn-vista_blue.vc_btn_square_outlined,a.vc_btn-vista_blue.vc_btn_outlined,a.vc_btn-vista_blue.vc_btn_square_outlined,button.vc_btn-vista_blue.vc_btn_outlined,button.vc_btn-vista_blue.vc_btn_square_outlined{color:#75d69c!important}.vc_btn-vista_blue.vc_btn_outlined:hover,.vc_btn-vista_blue.vc_btn_square_outlined:hover,a.vc_btn-vista_blue.vc_btn_outlined:hover,a.vc_btn-vista_blue.vc_btn_square_outlined:hover,button.vc_btn-vista_blue.vc_btn_outlined:hover,button.vc_btn-vista_blue.vc_btn_square_outlined:hover{border-color:#5dcf8b}.vc_btn-vista_blue.vc_btn_3d,a.vc_btn-vista_blue.vc_btn_3d,button.vc_btn-vista_blue.vc_btn_3d{box-shadow:0 5px 0 #4ac97d;margin-bottom:5px}.vc_btn-vista_blue.vc_btn_3d.vc_btn_xs,a.vc_btn-vista_blue.vc_btn_3d.vc_btn_xs,button.vc_btn-vista_blue.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #4ac97d;margin-bottom:3px}.vc_btn-vista_blue.vc_btn_3d.vc_btn_sm,a.vc_btn-vista_blue.vc_btn_3d.vc_btn_sm,button.vc_btn-vista_blue.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #4ac97d;margin-bottom:4px}.vc_btn-black,a.vc_btn-black,button.vc_btn-black{background-color:#2a2a2a;color:#fff!important;transition:all .5s}.vc_btn-black:hover,a.vc_btn-black:hover,button.vc_btn-black:hover{background-color:#1b1b1b;color:#f7f7f7!important}.vc_btn-black.vc_btn_outlined,.vc_btn-black.vc_btn_square_outlined,a.vc_btn-black.vc_btn_outlined,a.vc_btn-black.vc_btn_square_outlined,button.vc_btn-black.vc_btn_outlined,button.vc_btn-black.vc_btn_square_outlined{color:#2a2a2a!important}.vc_btn-black.vc_btn_outlined:hover,.vc_btn-black.vc_btn_square_outlined:hover,a.vc_btn-black.vc_btn_outlined:hover,a.vc_btn-black.vc_btn_square_outlined:hover,button.vc_btn-black.vc_btn_outlined:hover,button.vc_btn-black.vc_btn_square_outlined:hover{border-color:#1b1b1b}.vc_btn-black.vc_btn_3d,a.vc_btn-black.vc_btn_3d,button.vc_btn-black.vc_btn_3d{box-shadow:0 5px 0 #0e0e0e;margin-bottom:5px}.vc_btn-black.vc_btn_3d.vc_btn_xs,a.vc_btn-black.vc_btn_3d.vc_btn_xs,button.vc_btn-black.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #0e0e0e;margin-bottom:3px}.vc_btn-black.vc_btn_3d.vc_btn_sm,a.vc_btn-black.vc_btn_3d.vc_btn_sm,button.vc_btn-black.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #0e0e0e;margin-bottom:4px}.vc_btn-grey,a.vc_btn-grey,button.vc_btn-grey{background-color:#ebebeb;color:#666!important;transition:all .5s}.vc_btn-grey:hover,a.vc_btn-grey:hover,button.vc_btn-grey:hover{background-color:#dcdcdc;color:#5e5e5e!important}.vc_btn-grey.vc_btn_outlined,.vc_btn-grey.vc_btn_square_outlined,a.vc_btn-grey.vc_btn_outlined,a.vc_btn-grey.vc_btn_square_outlined,button.vc_btn-grey.vc_btn_outlined,button.vc_btn-grey.vc_btn_square_outlined{color:#ebebeb!important}.vc_btn-grey.vc_btn_outlined:hover,.vc_btn-grey.vc_btn_square_outlined:hover,a.vc_btn-grey.vc_btn_outlined:hover,a.vc_btn-grey.vc_btn_square_outlined:hover,button.vc_btn-grey.vc_btn_outlined:hover,button.vc_btn-grey.vc_btn_square_outlined:hover{border-color:#dcdcdc}.vc_btn-grey.vc_btn_3d,a.vc_btn-grey.vc_btn_3d,button.vc_btn-grey.vc_btn_3d{box-shadow:0 5px 0 #cfcfcf;margin-bottom:5px}.vc_btn-grey.vc_btn_3d.vc_btn_xs,a.vc_btn-grey.vc_btn_3d.vc_btn_xs,button.vc_btn-grey.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #cfcfcf;margin-bottom:3px}.vc_btn-grey.vc_btn_3d.vc_btn_sm,a.vc_btn-grey.vc_btn_3d.vc_btn_sm,button.vc_btn-grey.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #cfcfcf;margin-bottom:4px}.vc_btn-orange,a.vc_btn-orange,button.vc_btn-orange{background-color:#f7be68;color:#fff!important;transition:all .5s}.vc_btn-orange:hover,a.vc_btn-orange:hover,button.vc_btn-orange:hover{background-color:#f5b14b;color:#f7f7f7!important}.vc_btn-orange.vc_btn_outlined,.vc_btn-orange.vc_btn_square_outlined,a.vc_btn-orange.vc_btn_outlined,a.vc_btn-orange.vc_btn_square_outlined,button.vc_btn-orange.vc_btn_outlined,button.vc_btn-orange.vc_btn_square_outlined{color:#f7be68!important}.vc_btn-orange.vc_btn_outlined:hover,.vc_btn-orange.vc_btn_square_outlined:hover,a.vc_btn-orange.vc_btn_outlined:hover,a.vc_btn-orange.vc_btn_square_outlined:hover,button.vc_btn-orange.vc_btn_outlined:hover,button.vc_btn-orange.vc_btn_square_outlined:hover{border-color:#f5b14b}.vc_btn-orange.vc_btn_3d,a.vc_btn-orange.vc_btn_3d,button.vc_btn-orange.vc_btn_3d{box-shadow:0 5px 0 #f4a733;margin-bottom:5px}.vc_btn-orange.vc_btn_3d.vc_btn_xs,a.vc_btn-orange.vc_btn_3d.vc_btn_xs,button.vc_btn-orange.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #f4a733;margin-bottom:3px}.vc_btn-orange.vc_btn_3d.vc_btn_sm,a.vc_btn-orange.vc_btn_3d.vc_btn_sm,button.vc_btn-orange.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #f4a733;margin-bottom:4px}.vc_btn-sky,a.vc_btn-sky,button.vc_btn-sky{background-color:#5aa1e3;color:#fff!important;transition:all .5s}.vc_btn-sky:hover,a.vc_btn-sky:hover,button.vc_btn-sky:hover{background-color:#4092df;color:#f7f7f7!important}.vc_btn-sky.vc_btn_outlined,.vc_btn-sky.vc_btn_square_outlined,a.vc_btn-sky.vc_btn_outlined,a.vc_btn-sky.vc_btn_square_outlined,button.vc_btn-sky.vc_btn_outlined,button.vc_btn-sky.vc_btn_square_outlined{color:#5aa1e3!important}.vc_btn-sky.vc_btn_outlined:hover,.vc_btn-sky.vc_btn_square_outlined:hover,a.vc_btn-sky.vc_btn_outlined:hover,a.vc_btn-sky.vc_btn_square_outlined:hover,button.vc_btn-sky.vc_btn_outlined:hover,button.vc_btn-sky.vc_btn_square_outlined:hover{border-color:#4092df}.vc_btn-sky.vc_btn_3d,a.vc_btn-sky.vc_btn_3d,button.vc_btn-sky.vc_btn_3d{box-shadow:0 5px 0 #2a86db;margin-bottom:5px}.vc_btn-sky.vc_btn_3d.vc_btn_xs,a.vc_btn-sky.vc_btn_3d.vc_btn_xs,button.vc_btn-sky.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #2a86db;margin-bottom:3px}.vc_btn-sky.vc_btn_3d.vc_btn_sm,a.vc_btn-sky.vc_btn_3d.vc_btn_sm,button.vc_btn-sky.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #2a86db;margin-bottom:4px}.vc_btn-green,a.vc_btn-green,button.vc_btn-green{background-color:#6dab3c;color:#fff!important;transition:all .5s}.vc_btn-green:hover,a.vc_btn-green:hover,button.vc_btn-green:hover{background-color:#5f9434;color:#f7f7f7!important}.vc_btn-green.vc_btn_outlined,.vc_btn-green.vc_btn_square_outlined,a.vc_btn-green.vc_btn_outlined,a.vc_btn-green.vc_btn_square_outlined,button.vc_btn-green.vc_btn_outlined,button.vc_btn-green.vc_btn_square_outlined{color:#6dab3c!important}.vc_btn-green.vc_btn_outlined:hover,.vc_btn-green.vc_btn_square_outlined:hover,a.vc_btn-green.vc_btn_outlined:hover,a.vc_btn-green.vc_btn_square_outlined:hover,button.vc_btn-green.vc_btn_outlined:hover,button.vc_btn-green.vc_btn_square_outlined:hover{border-color:#5f9434}.vc_btn-green.vc_btn_3d,a.vc_btn-green.vc_btn_3d,button.vc_btn-green.vc_btn_3d{box-shadow:0 5px 0 #53812d;margin-bottom:5px}.vc_btn-green.vc_btn_3d.vc_btn_xs,a.vc_btn-green.vc_btn_3d.vc_btn_xs,button.vc_btn-green.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #53812d;margin-bottom:3px}.vc_btn-green.vc_btn_3d.vc_btn_sm,a.vc_btn-green.vc_btn_3d.vc_btn_sm,button.vc_btn-green.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #53812d;margin-bottom:4px}.vc_btn-juicy_pink,a.vc_btn-juicy_pink,button.vc_btn-juicy_pink{background-color:#f4524d;color:#fff!important;transition:all .5s}.vc_btn-juicy_pink:hover,a.vc_btn-juicy_pink:hover,button.vc_btn-juicy_pink:hover{background-color:#f23630;color:#f7f7f7!important}.vc_btn-juicy_pink.vc_btn_outlined,.vc_btn-juicy_pink.vc_btn_square_outlined,a.vc_btn-juicy_pink.vc_btn_outlined,a.vc_btn-juicy_pink.vc_btn_square_outlined,button.vc_btn-juicy_pink.vc_btn_outlined,button.vc_btn-juicy_pink.vc_btn_square_outlined{color:#f4524d!important}.vc_btn-juicy_pink.vc_btn_outlined:hover,.vc_btn-juicy_pink.vc_btn_square_outlined:hover,a.vc_btn-juicy_pink.vc_btn_outlined:hover,a.vc_btn-juicy_pink.vc_btn_square_outlined:hover,button.vc_btn-juicy_pink.vc_btn_outlined:hover,button.vc_btn-juicy_pink.vc_btn_square_outlined:hover{border-color:#f23630}.vc_btn-juicy_pink.vc_btn_3d,a.vc_btn-juicy_pink.vc_btn_3d,button.vc_btn-juicy_pink.vc_btn_3d{box-shadow:0 5px 0 #f11f18;margin-bottom:5px}.vc_btn-juicy_pink.vc_btn_3d.vc_btn_xs,a.vc_btn-juicy_pink.vc_btn_3d.vc_btn_xs,button.vc_btn-juicy_pink.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #f11f18;margin-bottom:3px}.vc_btn-juicy_pink.vc_btn_3d.vc_btn_sm,a.vc_btn-juicy_pink.vc_btn_3d.vc_btn_sm,button.vc_btn-juicy_pink.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #f11f18;margin-bottom:4px}.vc_btn-sandy_brown,a.vc_btn-sandy_brown,button.vc_btn-sandy_brown{background-color:#f79468;color:#fff!important;transition:all .5s}.vc_btn-sandy_brown:hover,a.vc_btn-sandy_brown:hover,button.vc_btn-sandy_brown:hover{background-color:#f57f4b;color:#f7f7f7!important}.vc_btn-sandy_brown.vc_btn_outlined,.vc_btn-sandy_brown.vc_btn_square_outlined,a.vc_btn-sandy_brown.vc_btn_outlined,a.vc_btn-sandy_brown.vc_btn_square_outlined,button.vc_btn-sandy_brown.vc_btn_outlined,button.vc_btn-sandy_brown.vc_btn_square_outlined{color:#f79468!important}.vc_btn-sandy_brown.vc_btn_outlined:hover,.vc_btn-sandy_brown.vc_btn_square_outlined:hover,a.vc_btn-sandy_brown.vc_btn_outlined:hover,a.vc_btn-sandy_brown.vc_btn_square_outlined:hover,button.vc_btn-sandy_brown.vc_btn_outlined:hover,button.vc_btn-sandy_brown.vc_btn_square_outlined:hover{border-color:#f57f4b}.vc_btn-sandy_brown.vc_btn_3d,a.vc_btn-sandy_brown.vc_btn_3d,button.vc_btn-sandy_brown.vc_btn_3d{box-shadow:0 5px 0 #f46e33;margin-bottom:5px}.vc_btn-sandy_brown.vc_btn_3d.vc_btn_xs,a.vc_btn-sandy_brown.vc_btn_3d.vc_btn_xs,button.vc_btn-sandy_brown.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #f46e33;margin-bottom:3px}.vc_btn-sandy_brown.vc_btn_3d.vc_btn_sm,a.vc_btn-sandy_brown.vc_btn_3d.vc_btn_sm,button.vc_btn-sandy_brown.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #f46e33;margin-bottom:4px}.vc_btn-purple,a.vc_btn-purple,button.vc_btn-purple{background-color:#b97ebb;color:#fff!important;transition:all .5s}.vc_btn-purple:hover,a.vc_btn-purple:hover,button.vc_btn-purple:hover{background-color:#ae6ab0;color:#f7f7f7!important}.vc_btn-purple.vc_btn_outlined,.vc_btn-purple.vc_btn_square_outlined,a.vc_btn-purple.vc_btn_outlined,a.vc_btn-purple.vc_btn_square_outlined,button.vc_btn-purple.vc_btn_outlined,button.vc_btn-purple.vc_btn_square_outlined{color:#b97ebb!important}.vc_btn-purple.vc_btn_outlined:hover,.vc_btn-purple.vc_btn_square_outlined:hover,a.vc_btn-purple.vc_btn_outlined:hover,a.vc_btn-purple.vc_btn_square_outlined:hover,button.vc_btn-purple.vc_btn_outlined:hover,button.vc_btn-purple.vc_btn_square_outlined:hover{border-color:#ae6ab0}.vc_btn-purple.vc_btn_3d,a.vc_btn-purple.vc_btn_3d,button.vc_btn-purple.vc_btn_3d{box-shadow:0 5px 0 #a559a8;margin-bottom:5px}.vc_btn-purple.vc_btn_3d.vc_btn_xs,a.vc_btn-purple.vc_btn_3d.vc_btn_xs,button.vc_btn-purple.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #a559a8;margin-bottom:3px}.vc_btn-purple.vc_btn_3d.vc_btn_sm,a.vc_btn-purple.vc_btn_3d.vc_btn_sm,button.vc_btn-purple.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #a559a8;margin-bottom:4px}.vc_btn-white,a.vc_btn-white,button.vc_btn-white{background-color:#fff;color:#666!important;transition:all .5s}.vc_btn-white:hover,a.vc_btn-white:hover,button.vc_btn-white:hover{background-color:#f0f0f0;color:#5e5e5e!important}.vc_btn-white.vc_btn_outlined,.vc_btn-white.vc_btn_square_outlined,a.vc_btn-white.vc_btn_outlined,a.vc_btn-white.vc_btn_square_outlined,button.vc_btn-white.vc_btn_outlined,button.vc_btn-white.vc_btn_square_outlined{color:#fff!important}.vc_btn-white.vc_btn_outlined:hover,.vc_btn-white.vc_btn_square_outlined:hover,a.vc_btn-white.vc_btn_outlined:hover,a.vc_btn-white.vc_btn_square_outlined:hover,button.vc_btn-white.vc_btn_outlined:hover,button.vc_btn-white.vc_btn_square_outlined:hover{border-color:#f0f0f0}.vc_btn-white.vc_btn_3d,a.vc_btn-white.vc_btn_3d,button.vc_btn-white.vc_btn_3d{box-shadow:0 5px 0 #e3e3e3;margin-bottom:5px}.vc_btn-white.vc_btn_3d.vc_btn_xs,a.vc_btn-white.vc_btn_3d.vc_btn_xs,button.vc_btn-white.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #e3e3e3;margin-bottom:3px}.vc_btn-white.vc_btn_3d.vc_btn_sm,a.vc_btn-white.vc_btn_3d.vc_btn_sm,button.vc_btn-white.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #e3e3e3;margin-bottom:4px}.vc_btn-grace,a.vc_btn-grace,button.vc_btn-grace{background-color:#aed13b;color:#fff!important;transition:all .5s}.vc_btn-grace:hover,a.vc_btn-grace:hover,button.vc_btn-grace:hover{background-color:#9ec02d;color:#f7f7f7!important}.vc_btn-grace.vc_btn_outlined,.vc_btn-grace.vc_btn_square_outlined,a.vc_btn-grace.vc_btn_outlined,a.vc_btn-grace.vc_btn_square_outlined,button.vc_btn-grace.vc_btn_outlined,button.vc_btn-grace.vc_btn_square_outlined{color:#aed13b!important}.vc_btn-grace.vc_btn_outlined:hover,.vc_btn-grace.vc_btn_square_outlined:hover,a.vc_btn-grace.vc_btn_outlined:hover,a.vc_btn-grace.vc_btn_square_outlined:hover,button.vc_btn-grace.vc_btn_outlined:hover,button.vc_btn-grace.vc_btn_square_outlined:hover{border-color:#9ec02d}.vc_btn-grace.vc_btn_3d,a.vc_btn-grace.vc_btn_3d,button.vc_btn-grace.vc_btn_3d{box-shadow:0 5px 0 #8dac28;margin-bottom:5px}.vc_btn-grace.vc_btn_3d.vc_btn_xs,a.vc_btn-grace.vc_btn_3d.vc_btn_xs,button.vc_btn-grace.vc_btn_3d.vc_btn_xs{box-shadow:0 3px 0 #8dac28;margin-bottom:3px}.vc_btn-grace.vc_btn_3d.vc_btn_sm,a.vc_btn-grace.vc_btn_3d.vc_btn_sm,button.vc_btn-grace.vc_btn_3d.vc_btn_sm{box-shadow:0 4px 0 #8dac28;margin-bottom:4px}.vc_btn-default,a.vc_btn-default,button.vc_btn-default{background-color:#fff;border-color:#0000;color:#7d7d7d}.open>.dropdown-toggle.vc_btn-default,.open>.dropdown-togglea.vc_btn-default,.open>.dropdown-togglebutton.vc_btn-default,.vc_btn-default.active,.vc_btn-default.focus,.vc_btn-default:active,.vc_btn-default:focus,.vc_btn-default:hover,a.vc_btn-default.active,a.vc_btn-default.focus,a.vc_btn-default:active,a.vc_btn-default:focus,a.vc_btn-default:hover,button.vc_btn-default.active,button.vc_btn-default.focus,button.vc_btn-default:active,button.vc_btn-default:focus,button.vc_btn-default:hover{background-color:#e6e6e6;border-color:#0000;color:#7d7d7d}.open>.dropdown-toggle.vc_btn-default.focus,.open>.dropdown-toggle.vc_btn-default:focus,.open>.dropdown-toggle.vc_btn-default:hover,.open>.dropdown-togglea.vc_btn-default.focus,.open>.dropdown-togglea.vc_btn-default:focus,.open>.dropdown-togglea.vc_btn-default:hover,.open>.dropdown-togglebutton.vc_btn-default.focus,.open>.dropdown-togglebutton.vc_btn-default:focus,.open>.dropdown-togglebutton.vc_btn-default:hover,.vc_btn-default.active.focus,.vc_btn-default.active:focus,.vc_btn-default.active:hover,.vc_btn-default:active.focus,.vc_btn-default:active:focus,.vc_btn-default:active:hover,a.vc_btn-default.active.focus,a.vc_btn-default.active:focus,a.vc_btn-default.active:hover,a.vc_btn-default:active.focus,a.vc_btn-default:active:focus,a.vc_btn-default:active:hover,button.vc_btn-default.active.focus,button.vc_btn-default.active:focus,button.vc_btn-default.active:hover,button.vc_btn-default:active.focus,button.vc_btn-default:active:focus,button.vc_btn-default:active:hover{background-color:#d4d4d4;border-color:#0000;color:#7d7d7d}.open>.dropdown-toggle.vc_btn-default,.open>.dropdown-togglea.vc_btn-default,.open>.dropdown-togglebutton.vc_btn-default,.vc_btn-default.active,.vc_btn-default:active,a.vc_btn-default.active,a.vc_btn-default:active,button.vc_btn-default.active,button.vc_btn-default:active{background-image:none}.vc_btn-default.disabled,.vc_btn-default.disabled.active,.vc_btn-default.disabled.focus,.vc_btn-default.disabled:active,.vc_btn-default.disabled:focus,.vc_btn-default.disabled:hover,.vc_btn-default[disabled],.vc_btn-default[disabled].active,.vc_btn-default[disabled].focus,.vc_btn-default[disabled]:active,.vc_btn-default[disabled]:focus,.vc_btn-default[disabled]:hover,a.vc_btn-default.disabled,a.vc_btn-default.disabled.active,a.vc_btn-default.disabled.focus,a.vc_btn-default.disabled:active,a.vc_btn-default.disabled:focus,a.vc_btn-default.disabled:hover,a.vc_btn-default[disabled],a.vc_btn-default[disabled].active,a.vc_btn-default[disabled].focus,a.vc_btn-default[disabled]:active,a.vc_btn-default[disabled]:focus,a.vc_btn-default[disabled]:hover,button.vc_btn-default.disabled,button.vc_btn-default.disabled.active,button.vc_btn-default.disabled.focus,button.vc_btn-default.disabled:active,button.vc_btn-default.disabled:focus,button.vc_btn-default.disabled:hover,button.vc_btn-default[disabled],button.vc_btn-default[disabled].active,button.vc_btn-default[disabled].focus,button.vc_btn-default[disabled]:active,button.vc_btn-default[disabled]:focus,button.vc_btn-default[disabled]:hover,fieldset[disabled] .vc_btn-default,fieldset[disabled] .vc_btn-default.active,fieldset[disabled] .vc_btn-default.focus,fieldset[disabled] .vc_btn-default:active,fieldset[disabled] .vc_btn-default:focus,fieldset[disabled] .vc_btn-default:hover,fieldset[disabled] a.vc_btn-default,fieldset[disabled] a.vc_btn-default.active,fieldset[disabled] a.vc_btn-default.focus,fieldset[disabled] a.vc_btn-default:active,fieldset[disabled] a.vc_btn-default:focus,fieldset[disabled] a.vc_btn-default:hover,fieldset[disabled] button.vc_btn-default,fieldset[disabled] button.vc_btn-default.active,fieldset[disabled] button.vc_btn-default.focus,fieldset[disabled] button.vc_btn-default:active,fieldset[disabled] button.vc_btn-default:focus,fieldset[disabled] button.vc_btn-default:hover{background-color:#fff;border-color:#0000}.vc_btn-default .badge,a.vc_btn-default .badge,button.vc_btn-default .badge{background-color:#7d7d7d;color:#fff}.vc_btn-primary,a.vc_btn-primary,button.vc_btn-primary{background-color:#00aef0;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-primary,.open>.dropdown-togglea.vc_btn-primary,.open>.dropdown-togglebutton.vc_btn-primary,.vc_btn-primary.active,.vc_btn-primary.focus,.vc_btn-primary:active,.vc_btn-primary:focus,.vc_btn-primary:hover,a.vc_btn-primary.active,a.vc_btn-primary.focus,a.vc_btn-primary:active,a.vc_btn-primary:focus,a.vc_btn-primary:hover,button.vc_btn-primary.active,button.vc_btn-primary.focus,button.vc_btn-primary:active,button.vc_btn-primary:focus,button.vc_btn-primary:hover{background-color:#0089bd;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-primary.focus,.open>.dropdown-toggle.vc_btn-primary:focus,.open>.dropdown-toggle.vc_btn-primary:hover,.open>.dropdown-togglea.vc_btn-primary.focus,.open>.dropdown-togglea.vc_btn-primary:focus,.open>.dropdown-togglea.vc_btn-primary:hover,.open>.dropdown-togglebutton.vc_btn-primary.focus,.open>.dropdown-togglebutton.vc_btn-primary:focus,.open>.dropdown-togglebutton.vc_btn-primary:hover,.vc_btn-primary.active.focus,.vc_btn-primary.active:focus,.vc_btn-primary.active:hover,.vc_btn-primary:active.focus,.vc_btn-primary:active:focus,.vc_btn-primary:active:hover,a.vc_btn-primary.active.focus,a.vc_btn-primary.active:focus,a.vc_btn-primary.active:hover,a.vc_btn-primary:active.focus,a.vc_btn-primary:active:focus,a.vc_btn-primary:active:hover,button.vc_btn-primary.active.focus,button.vc_btn-primary.active:focus,button.vc_btn-primary.active:hover,button.vc_btn-primary:active.focus,button.vc_btn-primary:active:focus,button.vc_btn-primary:active:hover{background-color:#006f99;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-primary,.open>.dropdown-togglea.vc_btn-primary,.open>.dropdown-togglebutton.vc_btn-primary,.vc_btn-primary.active,.vc_btn-primary:active,a.vc_btn-primary.active,a.vc_btn-primary:active,button.vc_btn-primary.active,button.vc_btn-primary:active{background-image:none}.vc_btn-primary.disabled,.vc_btn-primary.disabled.active,.vc_btn-primary.disabled.focus,.vc_btn-primary.disabled:active,.vc_btn-primary.disabled:focus,.vc_btn-primary.disabled:hover,.vc_btn-primary[disabled],.vc_btn-primary[disabled].active,.vc_btn-primary[disabled].focus,.vc_btn-primary[disabled]:active,.vc_btn-primary[disabled]:focus,.vc_btn-primary[disabled]:hover,a.vc_btn-primary.disabled,a.vc_btn-primary.disabled.active,a.vc_btn-primary.disabled.focus,a.vc_btn-primary.disabled:active,a.vc_btn-primary.disabled:focus,a.vc_btn-primary.disabled:hover,a.vc_btn-primary[disabled],a.vc_btn-primary[disabled].active,a.vc_btn-primary[disabled].focus,a.vc_btn-primary[disabled]:active,a.vc_btn-primary[disabled]:focus,a.vc_btn-primary[disabled]:hover,button.vc_btn-primary.disabled,button.vc_btn-primary.disabled.active,button.vc_btn-primary.disabled.focus,button.vc_btn-primary.disabled:active,button.vc_btn-primary.disabled:focus,button.vc_btn-primary.disabled:hover,button.vc_btn-primary[disabled],button.vc_btn-primary[disabled].active,button.vc_btn-primary[disabled].focus,button.vc_btn-primary[disabled]:active,button.vc_btn-primary[disabled]:focus,button.vc_btn-primary[disabled]:hover,fieldset[disabled] .vc_btn-primary,fieldset[disabled] .vc_btn-primary.active,fieldset[disabled] .vc_btn-primary.focus,fieldset[disabled] .vc_btn-primary:active,fieldset[disabled] .vc_btn-primary:focus,fieldset[disabled] .vc_btn-primary:hover,fieldset[disabled] a.vc_btn-primary,fieldset[disabled] a.vc_btn-primary.active,fieldset[disabled] a.vc_btn-primary.focus,fieldset[disabled] a.vc_btn-primary:active,fieldset[disabled] a.vc_btn-primary:focus,fieldset[disabled] a.vc_btn-primary:hover,fieldset[disabled] button.vc_btn-primary,fieldset[disabled] button.vc_btn-primary.active,fieldset[disabled] button.vc_btn-primary.focus,fieldset[disabled] button.vc_btn-primary:active,fieldset[disabled] button.vc_btn-primary:focus,fieldset[disabled] button.vc_btn-primary:hover{background-color:#00aef0;border-color:#0000}.vc_btn-primary .badge,a.vc_btn-primary .badge,button.vc_btn-primary .badge{background-color:#fff;color:#00aef0}.vc_btn-success,a.vc_btn-success,button.vc_btn-success{background-color:#5cb85c;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-success,.open>.dropdown-togglea.vc_btn-success,.open>.dropdown-togglebutton.vc_btn-success,.vc_btn-success.active,.vc_btn-success.focus,.vc_btn-success:active,.vc_btn-success:focus,.vc_btn-success:hover,a.vc_btn-success.active,a.vc_btn-success.focus,a.vc_btn-success:active,a.vc_btn-success:focus,a.vc_btn-success:hover,button.vc_btn-success.active,button.vc_btn-success.focus,button.vc_btn-success:active,button.vc_btn-success:focus,button.vc_btn-success:hover{background-color:#449d44;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-success.focus,.open>.dropdown-toggle.vc_btn-success:focus,.open>.dropdown-toggle.vc_btn-success:hover,.open>.dropdown-togglea.vc_btn-success.focus,.open>.dropdown-togglea.vc_btn-success:focus,.open>.dropdown-togglea.vc_btn-success:hover,.open>.dropdown-togglebutton.vc_btn-success.focus,.open>.dropdown-togglebutton.vc_btn-success:focus,.open>.dropdown-togglebutton.vc_btn-success:hover,.vc_btn-success.active.focus,.vc_btn-success.active:focus,.vc_btn-success.active:hover,.vc_btn-success:active.focus,.vc_btn-success:active:focus,.vc_btn-success:active:hover,a.vc_btn-success.active.focus,a.vc_btn-success.active:focus,a.vc_btn-success.active:hover,a.vc_btn-success:active.focus,a.vc_btn-success:active:focus,a.vc_btn-success:active:hover,button.vc_btn-success.active.focus,button.vc_btn-success.active:focus,button.vc_btn-success.active:hover,button.vc_btn-success:active.focus,button.vc_btn-success:active:focus,button.vc_btn-success:active:hover{background-color:#398439;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-success,.open>.dropdown-togglea.vc_btn-success,.open>.dropdown-togglebutton.vc_btn-success,.vc_btn-success.active,.vc_btn-success:active,a.vc_btn-success.active,a.vc_btn-success:active,button.vc_btn-success.active,button.vc_btn-success:active{background-image:none}.vc_btn-success.disabled,.vc_btn-success.disabled.active,.vc_btn-success.disabled.focus,.vc_btn-success.disabled:active,.vc_btn-success.disabled:focus,.vc_btn-success.disabled:hover,.vc_btn-success[disabled],.vc_btn-success[disabled].active,.vc_btn-success[disabled].focus,.vc_btn-success[disabled]:active,.vc_btn-success[disabled]:focus,.vc_btn-success[disabled]:hover,a.vc_btn-success.disabled,a.vc_btn-success.disabled.active,a.vc_btn-success.disabled.focus,a.vc_btn-success.disabled:active,a.vc_btn-success.disabled:focus,a.vc_btn-success.disabled:hover,a.vc_btn-success[disabled],a.vc_btn-success[disabled].active,a.vc_btn-success[disabled].focus,a.vc_btn-success[disabled]:active,a.vc_btn-success[disabled]:focus,a.vc_btn-success[disabled]:hover,button.vc_btn-success.disabled,button.vc_btn-success.disabled.active,button.vc_btn-success.disabled.focus,button.vc_btn-success.disabled:active,button.vc_btn-success.disabled:focus,button.vc_btn-success.disabled:hover,button.vc_btn-success[disabled],button.vc_btn-success[disabled].active,button.vc_btn-success[disabled].focus,button.vc_btn-success[disabled]:active,button.vc_btn-success[disabled]:focus,button.vc_btn-success[disabled]:hover,fieldset[disabled] .vc_btn-success,fieldset[disabled] .vc_btn-success.active,fieldset[disabled] .vc_btn-success.focus,fieldset[disabled] .vc_btn-success:active,fieldset[disabled] .vc_btn-success:focus,fieldset[disabled] .vc_btn-success:hover,fieldset[disabled] a.vc_btn-success,fieldset[disabled] a.vc_btn-success.active,fieldset[disabled] a.vc_btn-success.focus,fieldset[disabled] a.vc_btn-success:active,fieldset[disabled] a.vc_btn-success:focus,fieldset[disabled] a.vc_btn-success:hover,fieldset[disabled] button.vc_btn-success,fieldset[disabled] button.vc_btn-success.active,fieldset[disabled] button.vc_btn-success.focus,fieldset[disabled] button.vc_btn-success:active,fieldset[disabled] button.vc_btn-success:focus,fieldset[disabled] button.vc_btn-success:hover{background-color:#5cb85c;border-color:#0000}.vc_btn-success .badge,a.vc_btn-success .badge,button.vc_btn-success .badge{background-color:#fff;color:#5cb85c}.vc_btn-info,a.vc_btn-info,button.vc_btn-info{background-color:#5bc0de;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-info,.open>.dropdown-togglea.vc_btn-info,.open>.dropdown-togglebutton.vc_btn-info,.vc_btn-info.active,.vc_btn-info.focus,.vc_btn-info:active,.vc_btn-info:focus,.vc_btn-info:hover,a.vc_btn-info.active,a.vc_btn-info.focus,a.vc_btn-info:active,a.vc_btn-info:focus,a.vc_btn-info:hover,button.vc_btn-info.active,button.vc_btn-info.focus,button.vc_btn-info:active,button.vc_btn-info:focus,button.vc_btn-info:hover{background-color:#31b0d5;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-info.focus,.open>.dropdown-toggle.vc_btn-info:focus,.open>.dropdown-toggle.vc_btn-info:hover,.open>.dropdown-togglea.vc_btn-info.focus,.open>.dropdown-togglea.vc_btn-info:focus,.open>.dropdown-togglea.vc_btn-info:hover,.open>.dropdown-togglebutton.vc_btn-info.focus,.open>.dropdown-togglebutton.vc_btn-info:focus,.open>.dropdown-togglebutton.vc_btn-info:hover,.vc_btn-info.active.focus,.vc_btn-info.active:focus,.vc_btn-info.active:hover,.vc_btn-info:active.focus,.vc_btn-info:active:focus,.vc_btn-info:active:hover,a.vc_btn-info.active.focus,a.vc_btn-info.active:focus,a.vc_btn-info.active:hover,a.vc_btn-info:active.focus,a.vc_btn-info:active:focus,a.vc_btn-info:active:hover,button.vc_btn-info.active.focus,button.vc_btn-info.active:focus,button.vc_btn-info.active:hover,button.vc_btn-info:active.focus,button.vc_btn-info:active:focus,button.vc_btn-info:active:hover{background-color:#269abc;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-info,.open>.dropdown-togglea.vc_btn-info,.open>.dropdown-togglebutton.vc_btn-info,.vc_btn-info.active,.vc_btn-info:active,a.vc_btn-info.active,a.vc_btn-info:active,button.vc_btn-info.active,button.vc_btn-info:active{background-image:none}.vc_btn-info.disabled,.vc_btn-info.disabled.active,.vc_btn-info.disabled.focus,.vc_btn-info.disabled:active,.vc_btn-info.disabled:focus,.vc_btn-info.disabled:hover,.vc_btn-info[disabled],.vc_btn-info[disabled].active,.vc_btn-info[disabled].focus,.vc_btn-info[disabled]:active,.vc_btn-info[disabled]:focus,.vc_btn-info[disabled]:hover,a.vc_btn-info.disabled,a.vc_btn-info.disabled.active,a.vc_btn-info.disabled.focus,a.vc_btn-info.disabled:active,a.vc_btn-info.disabled:focus,a.vc_btn-info.disabled:hover,a.vc_btn-info[disabled],a.vc_btn-info[disabled].active,a.vc_btn-info[disabled].focus,a.vc_btn-info[disabled]:active,a.vc_btn-info[disabled]:focus,a.vc_btn-info[disabled]:hover,button.vc_btn-info.disabled,button.vc_btn-info.disabled.active,button.vc_btn-info.disabled.focus,button.vc_btn-info.disabled:active,button.vc_btn-info.disabled:focus,button.vc_btn-info.disabled:hover,button.vc_btn-info[disabled],button.vc_btn-info[disabled].active,button.vc_btn-info[disabled].focus,button.vc_btn-info[disabled]:active,button.vc_btn-info[disabled]:focus,button.vc_btn-info[disabled]:hover,fieldset[disabled] .vc_btn-info,fieldset[disabled] .vc_btn-info.active,fieldset[disabled] .vc_btn-info.focus,fieldset[disabled] .vc_btn-info:active,fieldset[disabled] .vc_btn-info:focus,fieldset[disabled] .vc_btn-info:hover,fieldset[disabled] a.vc_btn-info,fieldset[disabled] a.vc_btn-info.active,fieldset[disabled] a.vc_btn-info.focus,fieldset[disabled] a.vc_btn-info:active,fieldset[disabled] a.vc_btn-info:focus,fieldset[disabled] a.vc_btn-info:hover,fieldset[disabled] button.vc_btn-info,fieldset[disabled] button.vc_btn-info.active,fieldset[disabled] button.vc_btn-info.focus,fieldset[disabled] button.vc_btn-info:active,fieldset[disabled] button.vc_btn-info:focus,fieldset[disabled] button.vc_btn-info:hover{background-color:#5bc0de;border-color:#0000}.vc_btn-info .badge,a.vc_btn-info .badge,button.vc_btn-info .badge{background-color:#fff;color:#5bc0de}.vc_btn-warning,a.vc_btn-warning,button.vc_btn-warning{background-color:#f0ad4e;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-warning,.open>.dropdown-togglea.vc_btn-warning,.open>.dropdown-togglebutton.vc_btn-warning,.vc_btn-warning.active,.vc_btn-warning.focus,.vc_btn-warning:active,.vc_btn-warning:focus,.vc_btn-warning:hover,a.vc_btn-warning.active,a.vc_btn-warning.focus,a.vc_btn-warning:active,a.vc_btn-warning:focus,a.vc_btn-warning:hover,button.vc_btn-warning.active,button.vc_btn-warning.focus,button.vc_btn-warning:active,button.vc_btn-warning:focus,button.vc_btn-warning:hover{background-color:#ec971f;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-warning.focus,.open>.dropdown-toggle.vc_btn-warning:focus,.open>.dropdown-toggle.vc_btn-warning:hover,.open>.dropdown-togglea.vc_btn-warning.focus,.open>.dropdown-togglea.vc_btn-warning:focus,.open>.dropdown-togglea.vc_btn-warning:hover,.open>.dropdown-togglebutton.vc_btn-warning.focus,.open>.dropdown-togglebutton.vc_btn-warning:focus,.open>.dropdown-togglebutton.vc_btn-warning:hover,.vc_btn-warning.active.focus,.vc_btn-warning.active:focus,.vc_btn-warning.active:hover,.vc_btn-warning:active.focus,.vc_btn-warning:active:focus,.vc_btn-warning:active:hover,a.vc_btn-warning.active.focus,a.vc_btn-warning.active:focus,a.vc_btn-warning.active:hover,a.vc_btn-warning:active.focus,a.vc_btn-warning:active:focus,a.vc_btn-warning:active:hover,button.vc_btn-warning.active.focus,button.vc_btn-warning.active:focus,button.vc_btn-warning.active:hover,button.vc_btn-warning:active.focus,button.vc_btn-warning:active:focus,button.vc_btn-warning:active:hover{background-color:#d58512;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-warning,.open>.dropdown-togglea.vc_btn-warning,.open>.dropdown-togglebutton.vc_btn-warning,.vc_btn-warning.active,.vc_btn-warning:active,a.vc_btn-warning.active,a.vc_btn-warning:active,button.vc_btn-warning.active,button.vc_btn-warning:active{background-image:none}.vc_btn-warning.disabled,.vc_btn-warning.disabled.active,.vc_btn-warning.disabled.focus,.vc_btn-warning.disabled:active,.vc_btn-warning.disabled:focus,.vc_btn-warning.disabled:hover,.vc_btn-warning[disabled],.vc_btn-warning[disabled].active,.vc_btn-warning[disabled].focus,.vc_btn-warning[disabled]:active,.vc_btn-warning[disabled]:focus,.vc_btn-warning[disabled]:hover,a.vc_btn-warning.disabled,a.vc_btn-warning.disabled.active,a.vc_btn-warning.disabled.focus,a.vc_btn-warning.disabled:active,a.vc_btn-warning.disabled:focus,a.vc_btn-warning.disabled:hover,a.vc_btn-warning[disabled],a.vc_btn-warning[disabled].active,a.vc_btn-warning[disabled].focus,a.vc_btn-warning[disabled]:active,a.vc_btn-warning[disabled]:focus,a.vc_btn-warning[disabled]:hover,button.vc_btn-warning.disabled,button.vc_btn-warning.disabled.active,button.vc_btn-warning.disabled.focus,button.vc_btn-warning.disabled:active,button.vc_btn-warning.disabled:focus,button.vc_btn-warning.disabled:hover,button.vc_btn-warning[disabled],button.vc_btn-warning[disabled].active,button.vc_btn-warning[disabled].focus,button.vc_btn-warning[disabled]:active,button.vc_btn-warning[disabled]:focus,button.vc_btn-warning[disabled]:hover,fieldset[disabled] .vc_btn-warning,fieldset[disabled] .vc_btn-warning.active,fieldset[disabled] .vc_btn-warning.focus,fieldset[disabled] .vc_btn-warning:active,fieldset[disabled] .vc_btn-warning:focus,fieldset[disabled] .vc_btn-warning:hover,fieldset[disabled] a.vc_btn-warning,fieldset[disabled] a.vc_btn-warning.active,fieldset[disabled] a.vc_btn-warning.focus,fieldset[disabled] a.vc_btn-warning:active,fieldset[disabled] a.vc_btn-warning:focus,fieldset[disabled] a.vc_btn-warning:hover,fieldset[disabled] button.vc_btn-warning,fieldset[disabled] button.vc_btn-warning.active,fieldset[disabled] button.vc_btn-warning.focus,fieldset[disabled] button.vc_btn-warning:active,fieldset[disabled] button.vc_btn-warning:focus,fieldset[disabled] button.vc_btn-warning:hover{background-color:#f0ad4e;border-color:#0000}.vc_btn-warning .badge,a.vc_btn-warning .badge,button.vc_btn-warning .badge{background-color:#fff;color:#f0ad4e}.vc_btn-danger,a.vc_btn-danger,button.vc_btn-danger{background-color:#d9534f;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-danger,.open>.dropdown-togglea.vc_btn-danger,.open>.dropdown-togglebutton.vc_btn-danger,.vc_btn-danger.active,.vc_btn-danger.focus,.vc_btn-danger:active,.vc_btn-danger:focus,.vc_btn-danger:hover,a.vc_btn-danger.active,a.vc_btn-danger.focus,a.vc_btn-danger:active,a.vc_btn-danger:focus,a.vc_btn-danger:hover,button.vc_btn-danger.active,button.vc_btn-danger.focus,button.vc_btn-danger:active,button.vc_btn-danger:focus,button.vc_btn-danger:hover{background-color:#c9302c;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-danger.focus,.open>.dropdown-toggle.vc_btn-danger:focus,.open>.dropdown-toggle.vc_btn-danger:hover,.open>.dropdown-togglea.vc_btn-danger.focus,.open>.dropdown-togglea.vc_btn-danger:focus,.open>.dropdown-togglea.vc_btn-danger:hover,.open>.dropdown-togglebutton.vc_btn-danger.focus,.open>.dropdown-togglebutton.vc_btn-danger:focus,.open>.dropdown-togglebutton.vc_btn-danger:hover,.vc_btn-danger.active.focus,.vc_btn-danger.active:focus,.vc_btn-danger.active:hover,.vc_btn-danger:active.focus,.vc_btn-danger:active:focus,.vc_btn-danger:active:hover,a.vc_btn-danger.active.focus,a.vc_btn-danger.active:focus,a.vc_btn-danger.active:hover,a.vc_btn-danger:active.focus,a.vc_btn-danger:active:focus,a.vc_btn-danger:active:hover,button.vc_btn-danger.active.focus,button.vc_btn-danger.active:focus,button.vc_btn-danger.active:hover,button.vc_btn-danger:active.focus,button.vc_btn-danger:active:focus,button.vc_btn-danger:active:hover{background-color:#ac2925;border-color:#0000;color:#fff}.open>.dropdown-toggle.vc_btn-danger,.open>.dropdown-togglea.vc_btn-danger,.open>.dropdown-togglebutton.vc_btn-danger,.vc_btn-danger.active,.vc_btn-danger:active,a.vc_btn-danger.active,a.vc_btn-danger:active,button.vc_btn-danger.active,button.vc_btn-danger:active{background-image:none}.vc_btn-danger.disabled,.vc_btn-danger.disabled.active,.vc_btn-danger.disabled.focus,.vc_btn-danger.disabled:active,.vc_btn-danger.disabled:focus,.vc_btn-danger.disabled:hover,.vc_btn-danger[disabled],.vc_btn-danger[disabled].active,.vc_btn-danger[disabled].focus,.vc_btn-danger[disabled]:active,.vc_btn-danger[disabled]:focus,.vc_btn-danger[disabled]:hover,a.vc_btn-danger.disabled,a.vc_btn-danger.disabled.active,a.vc_btn-danger.disabled.focus,a.vc_btn-danger.disabled:active,a.vc_btn-danger.disabled:focus,a.vc_btn-danger.disabled:hover,a.vc_btn-danger[disabled],a.vc_btn-danger[disabled].active,a.vc_btn-danger[disabled].focus,a.vc_btn-danger[disabled]:active,a.vc_btn-danger[disabled]:focus,a.vc_btn-danger[disabled]:hover,button.vc_btn-danger.disabled,button.vc_btn-danger.disabled.active,button.vc_btn-danger.disabled.focus,button.vc_btn-danger.disabled:active,button.vc_btn-danger.disabled:focus,button.vc_btn-danger.disabled:hover,button.vc_btn-danger[disabled],button.vc_btn-danger[disabled].active,button.vc_btn-danger[disabled].focus,button.vc_btn-danger[disabled]:active,button.vc_btn-danger[disabled]:focus,button.vc_btn-danger[disabled]:hover,fieldset[disabled] .vc_btn-danger,fieldset[disabled] .vc_btn-danger.active,fieldset[disabled] .vc_btn-danger.focus,fieldset[disabled] .vc_btn-danger:active,fieldset[disabled] .vc_btn-danger:focus,fieldset[disabled] .vc_btn-danger:hover,fieldset[disabled] a.vc_btn-danger,fieldset[disabled] a.vc_btn-danger.active,fieldset[disabled] a.vc_btn-danger.focus,fieldset[disabled] a.vc_btn-danger:active,fieldset[disabled] a.vc_btn-danger:focus,fieldset[disabled] a.vc_btn-danger:hover,fieldset[disabled] button.vc_btn-danger,fieldset[disabled] button.vc_btn-danger.active,fieldset[disabled] button.vc_btn-danger.focus,fieldset[disabled] button.vc_btn-danger:active,fieldset[disabled] button.vc_btn-danger:focus,fieldset[disabled] button.vc_btn-danger:hover{background-color:#d9534f;border-color:#0000}.vc_btn-danger .badge,a.vc_btn-danger .badge,button.vc_btn-danger .badge{background-color:#fff;color:#d9534f}i.icon{display:inline-block;height:16px;line-height:16px;margin-left:5px;vertical-align:text-top;width:16px}.wpb_btn-large i.icon{height:19px;margin-left:9px}.wpb_btn-small i.icon{height:15px}.wpb_btn-mini i.icon{display:none}.wpb_address_book i.icon,option.wpb_address_book{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/address-book.png) no-repeat 100%}.wpb_alarm_clock i.icon,option.wpb_alarm_clock{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/alarm-clock.png) no-repeat 100%}.wpb_anchor i.icon,option.wpb_anchor{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/anchor.png) no-repeat 100%}.wpb_application_image i.icon,option.wpb_application_image{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/application-image.png) no-repeat 100%}.wpb_arrow i.icon,option.wpb_arrow{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/arrow.png) no-repeat 100%}.wpb_asterisk i.icon,option.wpb_asterisk{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/asterisk.png) no-repeat 100%}.wpb_hammer i.icon,option.wpb_hammer{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/auction-hammer.png) no-repeat 100%}.wpb_balloon i.icon,option.wpb_balloon{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/balloon.png) no-repeat 100%}.wpb_balloon_buzz i.icon,option.wpb_balloon_buzz{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/balloon-buzz.png) no-repeat 100%}.wpb_balloon_facebook i.icon,option.wpb_balloon_facebook{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/balloon-facebook.png) no-repeat 100%}.wpb_balloon_twitter i.icon,option.wpb_balloon_twitter{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/balloon-twitter.png) no-repeat 100%}.wpb_battery i.icon,option.wpb_battery{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/battery-full.png) no-repeat 100%}.wpb_binocular i.icon,option.wpb_binocular{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/binocular.png) no-repeat 100%}.wpb_document_excel i.icon,option.wpb_document_excel{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-excel.png) no-repeat 100%}.wpb_document_image i.icon,option.wpb_document_image{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-image.png) no-repeat 100%}.wpb_document_music i.icon,option.wpb_document_music{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-music.png) no-repeat 100%}.wpb_document_office i.icon,option.wpb_document_office{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-office.png) no-repeat 100%}.wpb_document_pdf i.icon,option.wpb_document_pdf{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-pdf.png) no-repeat 100%}.wpb_document_powerpoint i.icon,option.wpb_document_powerpoint{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-powerpoint.png) no-repeat 100%}.wpb_document_word i.icon,option.wpb_document_word{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/blue-document-word.png) no-repeat 100%}.wpb_bookmark i.icon,option.wpb_bookmark{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/bookmark.png) no-repeat 100%}.wpb_camcorder i.icon,option.wpb_camcorder{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/camcorder.png) no-repeat 100%}.wpb_camera i.icon,option.wpb_camera{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/camera.png) no-repeat 100%}.wpb_chart i.icon,option.wpb_chart{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/chart.png) no-repeat 100%}.wpb_chart_pie i.icon,option.wpb_chart_pie{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/chart-pie.png) no-repeat 100%}.wpb_clock i.icon,option.wpb_clock{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/clock.png) no-repeat 100%}.wpb_play i.icon,option.wpb_play{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/control.png) no-repeat 100%}.wpb_fire i.icon,option.wpb_fire{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/fire.png) no-repeat 100%}.wpb_heart i.icon,option.wpb_heart{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/heart.png) no-repeat 100%}.wpb_mail i.icon,option.wpb_mail{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/mail.png) no-repeat 100%}.wpb_shield i.icon,option.wpb_shield{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/plus-shield.png) no-repeat 100%}.wpb_video i.icon,option.wpb_video{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/icons/video.png) no-repeat 100%}.vc_column_container :is(.vc_btn,.wpb_button){margin-bottom:5px;margin-top:5px}.vc_message_box{border:1px solid #0000;box-sizing:border-box;display:block;font-size:1em;margin:0 0 21.73913043px;overflow:hidden;padding:1em 1em 1em 4em;position:relative}.vc_message_box>p:first-child{margin-top:0}.vc_message_box>p:last-child{margin-bottom:0}.vc_message_box-icon{bottom:0;font-size:1em;font-style:normal;left:0;position:absolute;top:0;width:4em}.vc_message_box-icon>*{font-style:normal;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.vc_message_box-icon>*,.vc_message_box-icon>.fa{font-size:1.7em;line-height:1}.vc_color-blue.vc_message_box{background-color:#edf1fa;border-color:#c5cff0;color:#364a8a}.vc_color-blue.vc_message_box .vc_message_box-icon{color:#5472d2}.vc_color-blue.vc_message_box-solid{background-color:#5472d2;border-color:#0000;color:#fff}.vc_color-blue.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-blue.vc_message_box-outline,.vc_color-blue.vc_message_box-solid-icon{background-color:initial;border-color:#5472d2;color:#364a8a}:is(.vc_color-blue.vc_message_box-outline,.vc_color-blue.vc_message_box-solid-icon) .vc_message_box-icon{color:#5472d2}.vc_color-blue.vc_message_box-solid-icon .vc_message_box-icon{background-color:#5472d2;color:#fff}.vc_color-blue.vc_message_box-3d{box-shadow:0 5px 0 #9daee5}.vc_color-turquoise.vc_message_box{background-color:#ebfcfd;border-color:#c6ecee;color:#085b61}.vc_color-turquoise.vc_message_box .vc_message_box-icon{color:#00c1cf}.vc_color-turquoise.vc_message_box-solid{background-color:#00c1cf;border-color:#0000;color:#fff}.vc_color-turquoise.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-turquoise.vc_message_box-outline,.vc_color-turquoise.vc_message_box-solid-icon{background-color:initial;border-color:#00c1cf;color:#085b61}:is(.vc_color-turquoise.vc_message_box-outline,.vc_color-turquoise.vc_message_box-solid-icon) .vc_message_box-icon{color:#00c1cf}.vc_color-turquoise.vc_message_box-solid-icon .vc_message_box-icon{background-color:#00c1cf;color:#fff}.vc_color-turquoise.vc_message_box-3d{box-shadow:0 5px 0 #9fdee3}.vc_color-pink.vc_message_box{background-color:#fff0ef;border-color:#ffd8d6;color:#d82e21}.vc_color-pink.vc_message_box .vc_message_box-icon{color:#fe6c61}.vc_color-pink.vc_message_box-solid{background-color:#fe6c61;border-color:#0000;color:#fff}.vc_color-pink.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-pink.vc_message_box-outline,.vc_color-pink.vc_message_box-solid-icon{background-color:initial;border-color:#fe6c61;color:#d82e21}:is(.vc_color-pink.vc_message_box-outline,.vc_color-pink.vc_message_box-solid-icon) .vc_message_box-icon{color:#fe6c61}.vc_color-pink.vc_message_box-solid-icon .vc_message_box-icon{background-color:#fe6c61;color:#fff}.vc_color-pink.vc_message_box-3d{box-shadow:0 5px 0 #fea9a3}.vc_color-violet.vc_message_box{background-color:#f0ecf7;border-color:#d4c8e9;color:#5e4a81}.vc_color-violet.vc_message_box .vc_message_box-icon{color:#8d6dc4}.vc_color-violet.vc_message_box-solid{background-color:#8d6dc4;border-color:#0000;color:#fff}.vc_color-violet.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-violet.vc_message_box-outline,.vc_color-violet.vc_message_box-solid-icon{background-color:initial;border-color:#8d6dc4;color:#5e4a81}:is(.vc_color-violet.vc_message_box-outline,.vc_color-violet.vc_message_box-solid-icon) .vc_message_box-icon{color:#8d6dc4}.vc_color-violet.vc_message_box-solid-icon .vc_message_box-icon{background-color:#8d6dc4;color:#fff}.vc_color-violet.vc_message_box-3d{box-shadow:0 5px 0 #b8a3da}.vc_color-peacoc.vc_message_box{background-color:#e9f5f8;border-color:#c2e3ec;color:#366a79}.vc_color-peacoc.vc_message_box .vc_message_box-icon{color:#4cadc9}.vc_color-peacoc.vc_message_box-solid{background-color:#4cadc9;border-color:#0000;color:#fff}.vc_color-peacoc.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-peacoc.vc_message_box-outline,.vc_color-peacoc.vc_message_box-solid-icon{background-color:initial;border-color:#4cadc9;color:#366a79}:is(.vc_color-peacoc.vc_message_box-outline,.vc_color-peacoc.vc_message_box-solid-icon) .vc_message_box-icon{color:#4cadc9}.vc_color-peacoc.vc_message_box-solid-icon .vc_message_box-icon{background-color:#4cadc9;color:#fff}.vc_color-peacoc.vc_message_box-3d{box-shadow:0 5px 0 #9ad1e1}.vc_color-chino.vc_message_box{background-color:#f7f5f2;border-color:#e5ded2;color:#978258}.vc_color-chino.vc_message_box .vc_message_box-icon{color:#cec2ab}.vc_color-chino.vc_message_box-solid{background-color:#cec2ab;border-color:#0000;color:#fff}.vc_color-chino.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-chino.vc_message_box-outline,.vc_color-chino.vc_message_box-solid-icon{background-color:initial;border-color:#cec2ab;color:#978258}:is(.vc_color-chino.vc_message_box-outline,.vc_color-chino.vc_message_box-solid-icon) .vc_message_box-icon{color:#cec2ab}.vc_color-chino.vc_message_box-solid-icon .vc_message_box-icon{background-color:#cec2ab;color:#fff}.vc_color-chino.vc_message_box-3d{box-shadow:0 5px 0 #d2c7b1}.vc_color-mulled_wine.vc_message_box{background-color:#eae8ed;border-color:#d0ccd6;color:#1e1b22}.vc_color-mulled_wine.vc_message_box .vc_message_box-icon{color:#50485b}.vc_color-mulled_wine.vc_message_box-solid{background-color:#50485b;border-color:#0000;color:#fff}.vc_color-mulled_wine.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-mulled_wine.vc_message_box-outline,.vc_color-mulled_wine.vc_message_box-solid-icon{background-color:initial;border-color:#50485b;color:#1e1b22}:is(.vc_color-mulled_wine.vc_message_box-outline,.vc_color-mulled_wine.vc_message_box-solid-icon) .vc_message_box-icon{color:#50485b}.vc_color-mulled_wine.vc_message_box-solid-icon .vc_message_box-icon{background-color:#50485b;color:#fff}.vc_color-mulled_wine.vc_message_box-3d{box-shadow:0 5px 0 #b6afc0}.vc_color-vista_blue.vc_message_box{background-color:#e3f7eb;border-color:#bcebcf;color:#3e8e5e}.vc_color-vista_blue.vc_message_box .vc_message_box-icon{color:#75d69c}.vc_color-vista_blue.vc_message_box-solid{background-color:#75d69c;border-color:#0000;color:#fff}.vc_color-vista_blue.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-vista_blue.vc_message_box-outline,.vc_color-vista_blue.vc_message_box-solid-icon{background-color:initial;border-color:#75d69c;color:#3e8e5e}:is(.vc_color-vista_blue.vc_message_box-outline,.vc_color-vista_blue.vc_message_box-solid-icon) .vc_message_box-icon{color:#75d69c}.vc_color-vista_blue.vc_message_box-solid-icon .vc_message_box-icon{background-color:#75d69c;color:#fff}.vc_color-vista_blue.vc_message_box-3d{box-shadow:0 5px 0 #94dfb3}.vc_color-orange.vc_message_box{background-color:#fef6eb;border-color:#fbe1ba;color:#c3811c}.vc_color-orange.vc_message_box .vc_message_box-icon{color:#f7be68}.vc_color-orange.vc_message_box-solid{background-color:#f7be68;border-color:#0000;color:#fff}.vc_color-orange.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-orange.vc_message_box-outline,.vc_color-orange.vc_message_box-solid-icon{background-color:initial;border-color:#f7be68;color:#c3811c}:is(.vc_color-orange.vc_message_box-outline,.vc_color-orange.vc_message_box-solid-icon) .vc_message_box-icon{color:#f7be68}.vc_color-orange.vc_message_box-solid-icon .vc_message_box-icon{background-color:#f7be68;color:#fff}.vc_color-orange.vc_message_box-3d{box-shadow:0 5px 0 #f9cd8a}.vc_color-sky.vc_message_box{background-color:#eaf3fb;border-color:#bedaf4;color:#2a6194}.vc_color-sky.vc_message_box .vc_message_box-icon{color:#5aa1e3}.vc_color-sky.vc_message_box-solid{background-color:#5aa1e3;border-color:#0000;color:#fff}.vc_color-sky.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-sky.vc_message_box-outline,.vc_color-sky.vc_message_box-solid-icon{background-color:initial;border-color:#5aa1e3;color:#2a6194}:is(.vc_color-sky.vc_message_box-outline,.vc_color-sky.vc_message_box-solid-icon) .vc_message_box-icon{color:#5aa1e3}.vc_color-sky.vc_message_box-solid-icon .vc_message_box-icon{background-color:#5aa1e3;color:#fff}.vc_color-sky.vc_message_box-3d{box-shadow:0 5px 0 #93c1ed}.vc_color-green.vc_message_box{background-color:#eaf5e2;border-color:#c2e1a9;color:#3e562b}.vc_color-green.vc_message_box .vc_message_box-icon{color:#6dab3c}.vc_color-green.vc_message_box-solid{background-color:#6dab3c;border-color:#0000;color:#fff}.vc_color-green.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-green.vc_message_box-outline,.vc_color-green.vc_message_box-solid-icon{background-color:initial;border-color:#6dab3c;color:#3e562b}:is(.vc_color-green.vc_message_box-outline,.vc_color-green.vc_message_box-solid-icon) .vc_message_box-icon{color:#6dab3c}.vc_color-green.vc_message_box-solid-icon .vc_message_box-icon{background-color:#6dab3c;color:#fff}.vc_color-green.vc_message_box-3d{box-shadow:0 5px 0 #a7d484}.vc_color-juicy_pink.vc_message_box{background-color:#fef5f5;border-color:#fbc7c5;color:#a3231f}.vc_color-juicy_pink.vc_message_box .vc_message_box-icon{color:#f4524d}.vc_color-juicy_pink.vc_message_box-solid{background-color:#f4524d;border-color:#0000;color:#fff}.vc_color-juicy_pink.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-juicy_pink.vc_message_box-outline,.vc_color-juicy_pink.vc_message_box-solid-icon{background-color:initial;border-color:#f4524d;color:#a3231f}:is(.vc_color-juicy_pink.vc_message_box-outline,.vc_color-juicy_pink.vc_message_box-solid-icon) .vc_message_box-icon{color:#f4524d}.vc_color-juicy_pink.vc_message_box-solid-icon .vc_message_box-icon{background-color:#f4524d;color:#fff}.vc_color-juicy_pink.vc_message_box-3d{box-shadow:0 5px 0 #f89895}.vc_color-sandy_brown.vc_message_box{background-color:#fef1eb;border-color:#fbceba;color:#c3501c}.vc_color-sandy_brown.vc_message_box .vc_message_box-icon{color:#f79468}.vc_color-sandy_brown.vc_message_box-solid{background-color:#f79468;border-color:#0000;color:#fff}.vc_color-sandy_brown.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-sandy_brown.vc_message_box-outline,.vc_color-sandy_brown.vc_message_box-solid-icon{background-color:initial;border-color:#f79468;color:#c3501c}:is(.vc_color-sandy_brown.vc_message_box-outline,.vc_color-sandy_brown.vc_message_box-solid-icon) .vc_message_box-icon{color:#f79468}.vc_color-sandy_brown.vc_message_box-solid-icon .vc_message_box-icon{background-color:#f79468;color:#fff}.vc_color-sandy_brown.vc_message_box-3d{box-shadow:0 5px 0 #f9ac8a}.vc_color-purple.vc_message_box{background-color:#f5ecf5;border-color:#e3cbe3;color:#886389}.vc_color-purple.vc_message_box .vc_message_box-icon{color:#b97ebb}.vc_color-purple.vc_message_box-solid{background-color:#b97ebb;border-color:#0000;color:#fff}.vc_color-purple.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-purple.vc_message_box-outline,.vc_color-purple.vc_message_box-solid-icon{background-color:initial;border-color:#b97ebb;color:#886389}:is(.vc_color-purple.vc_message_box-outline,.vc_color-purple.vc_message_box-solid-icon) .vc_message_box-icon{color:#b97ebb}.vc_color-purple.vc_message_box-solid-icon .vc_message_box-icon{background-color:#b97ebb;color:#fff}.vc_color-purple.vc_message_box-3d{box-shadow:0 5px 0 #d1a9d2}.vc_color-black.vc_message_box{background-color:#3c3c3c;border-color:#2a2a2a;color:#fff}.vc_color-black.vc_message_box .vc_message_box-icon{color:#2a2a2a}.vc_color-black.vc_message_box-solid{background-color:#2a2a2a;border-color:#0000;color:#fff}.vc_color-black.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-black.vc_message_box-outline,.vc_color-black.vc_message_box-solid-icon{background-color:initial;border-color:#2a2a2a;color:#fff}:is(.vc_color-black.vc_message_box-outline,.vc_color-black.vc_message_box-solid-icon) .vc_message_box-icon{color:#2a2a2a}.vc_color-black.vc_message_box-solid-icon .vc_message_box-icon{background-color:#2a2a2a;color:#fff}.vc_color-black.vc_message_box-3d{box-shadow:0 5px 0 #101010}.vc_color-grey.vc_message_box{background-color:#ebebeb;border-color:#d2d2d2;color:#858585}.vc_color-grey.vc_message_box .vc_message_box-icon{color:#ebebeb}.vc_color-grey.vc_message_box-solid{background-color:#ebebeb;border-color:#0000;color:#858585}.vc_color-grey.vc_message_box-solid .vc_message_box-icon{color:#858585}.vc_color-grey.vc_message_box-outline,.vc_color-grey.vc_message_box-solid-icon{background-color:initial;border-color:#ebebeb;color:#858585}:is(.vc_color-grey.vc_message_box-outline,.vc_color-grey.vc_message_box-solid-icon) .vc_message_box-icon{color:#ebebeb}.vc_color-grey.vc_message_box-solid-icon .vc_message_box-icon{background-color:#ebebeb;color:#858585}.vc_color-grey.vc_message_box-3d{box-shadow:0 5px 0 #b8b8b8}.vc_color-white.vc_message_box{background-color:#fff;border-color:#e6e6e6;color:#b3b3b3}.vc_color-white.vc_message_box .vc_message_box-icon{color:#fff}.vc_color-white.vc_message_box-solid{background-color:#fff;border-color:#0000;color:#b3b3b3}.vc_color-white.vc_message_box-solid .vc_message_box-icon{color:#b3b3b3}.vc_color-white.vc_message_box-outline,.vc_color-white.vc_message_box-solid-icon{background-color:initial;border-color:#fff;color:#b3b3b3}:is(.vc_color-white.vc_message_box-outline,.vc_color-white.vc_message_box-solid-icon) .vc_message_box-icon{color:#fff}.vc_color-white.vc_message_box-solid-icon .vc_message_box-icon{background-color:#fff;color:#b3b3b3}.vc_color-white.vc_message_box-3d{box-shadow:0 5px 0 #ccc}.vc_color-info.vc_message_box{background-color:#dff2fe;border-color:#cfebfe;color:#5e7f96}.vc_color-info.vc_message_box .vc_message_box-icon{color:#56b0ee}.vc_color-info.vc_message_box-solid{background-color:#56b0ee;border-color:#0000;color:#fff}.vc_color-info.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-info.vc_message_box-outline,.vc_color-info.vc_message_box-solid-icon{background-color:initial;border-color:#56b0ee;color:#5e7f96}:is(.vc_color-info.vc_message_box-outline,.vc_color-info.vc_message_box-solid-icon) .vc_message_box-icon{color:#56b0ee}.vc_color-info.vc_message_box-solid-icon .vc_message_box-icon{background-color:#56b0ee;color:#fff}.vc_color-info.vc_message_box-3d{box-shadow:0 5px 0 #9dd6fd}.vc_color-success.vc_message_box{background-color:#e6fdf8;border-color:#cfebfe;color:#5e7f96}.vc_color-success.vc_message_box .vc_message_box-icon{color:#1bbc9b}.vc_color-success.vc_message_box-solid{background-color:#1bbc9b;border-color:#0000;color:#fff}.vc_color-success.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-success.vc_message_box-outline,.vc_color-success.vc_message_box-solid-icon{background-color:initial;border-color:#1bbc9b;color:#5e7f96}:is(.vc_color-success.vc_message_box-outline,.vc_color-success.vc_message_box-solid-icon) .vc_message_box-icon{color:#1bbc9b}.vc_color-success.vc_message_box-solid-icon .vc_message_box-icon{background-color:#1bbc9b;color:#fff}.vc_color-success.vc_message_box-3d{box-shadow:0 5px 0 #9dd6fd}.vc_color-warning.vc_message_box{background-color:#fff4e2;border-color:#ffeccc;color:#9d8967}.vc_color-warning.vc_message_box .vc_message_box-icon{color:#fcb53f}.vc_color-warning.vc_message_box-solid{background-color:#fcb53f;border-color:#0000;color:#fff}.vc_color-warning.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-warning.vc_message_box-outline,.vc_color-warning.vc_message_box-solid-icon{background-color:initial;border-color:#fcb53f;color:#9d8967}:is(.vc_color-warning.vc_message_box-outline,.vc_color-warning.vc_message_box-solid-icon) .vc_message_box-icon{color:#fcb53f}.vc_color-warning.vc_message_box-solid-icon .vc_message_box-icon{background-color:#fcb53f;color:#fff}.vc_color-warning.vc_message_box-3d{box-shadow:0 5px 0 #ffd999}.vc_color-danger.vc_message_box{background-color:#fdeaea;border-color:#fedede;color:#a85959}.vc_color-danger.vc_message_box .vc_message_box-icon{color:#ff7877}.vc_color-danger.vc_message_box-solid{background-color:#ff7877;border-color:#0000;color:#fff}.vc_color-danger.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-danger.vc_message_box-outline,.vc_color-danger.vc_message_box-solid-icon{background-color:initial;border-color:#ff7877;color:#a85959}:is(.vc_color-danger.vc_message_box-outline,.vc_color-danger.vc_message_box-solid-icon) .vc_message_box-icon{color:#ff7877}.vc_color-danger.vc_message_box-solid-icon .vc_message_box-icon{background-color:#ff7877;color:#fff}.vc_color-danger.vc_message_box-3d{box-shadow:0 5px 0 #fdacac}.vc_color-alert-info.vc_message_box{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.vc_color-alert-info.vc_message_box .vc_message_box-icon{color:#67cce0}.vc_color-alert-info.vc_message_box-solid{background-color:#67cce0;border-color:#0000;color:#fff}.vc_color-alert-info.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-alert-info.vc_message_box-outline,.vc_color-alert-info.vc_message_box-solid-icon{background-color:initial;border-color:#67cce0;color:#31708f}:is(.vc_color-alert-info.vc_message_box-outline,.vc_color-alert-info.vc_message_box-solid-icon) .vc_message_box-icon{color:#67cce0}.vc_color-alert-info.vc_message_box-solid-icon .vc_message_box-icon{background-color:#67cce0;color:#fff}.vc_color-alert-info.vc_message_box-3d{box-shadow:0 5px 0 #91d9e8}.vc_color-alert-success.vc_message_box{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.vc_color-alert-success.vc_message_box .vc_message_box-icon{color:#9ad36a}.vc_color-alert-success.vc_message_box-solid{background-color:#9ad36a;border-color:#0000;color:#fff}.vc_color-alert-success.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-alert-success.vc_message_box-outline,.vc_color-alert-success.vc_message_box-solid-icon{background-color:initial;border-color:#9ad36a;color:#3c763d}:is(.vc_color-alert-success.vc_message_box-outline,.vc_color-alert-success.vc_message_box-solid-icon) .vc_message_box-icon{color:#9ad36a}.vc_color-alert-success.vc_message_box-solid-icon .vc_message_box-icon{background-color:#9ad36a;color:#fff}.vc_color-alert-success.vc_message_box-3d{box-shadow:0 5px 0 #bbdba1}.vc_color-alert-warning.vc_message_box{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.vc_color-alert-warning.vc_message_box .vc_message_box-icon{color:#f9cf79}.vc_color-alert-warning.vc_message_box-solid{background-color:#f9cf79;border-color:#0000;color:#fff}.vc_color-alert-warning.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-alert-warning.vc_message_box-outline,.vc_color-alert-warning.vc_message_box-solid-icon{background-color:initial;border-color:#f9cf79;color:#8a6d3b}:is(.vc_color-alert-warning.vc_message_box-outline,.vc_color-alert-warning.vc_message_box-solid-icon) .vc_message_box-icon{color:#f9cf79}.vc_color-alert-warning.vc_message_box-solid-icon .vc_message_box-icon{background-color:#f9cf79;color:#fff}.vc_color-alert-warning.vc_message_box-3d{box-shadow:0 5px 0 #f5d89e}.vc_color-alert-danger.vc_message_box{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.vc_color-alert-danger.vc_message_box .vc_message_box-icon{color:#ef8495}.vc_color-alert-danger.vc_message_box-solid{background-color:#ef8495;border-color:#0000;color:#fff}.vc_color-alert-danger.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-alert-danger.vc_message_box-outline,.vc_color-alert-danger.vc_message_box-solid-icon{background-color:initial;border-color:#ef8495;color:#a94442}:is(.vc_color-alert-danger.vc_message_box-outline,.vc_color-alert-danger.vc_message_box-solid-icon) .vc_message_box-icon{color:#ef8495}.vc_color-alert-danger.vc_message_box-solid-icon .vc_message_box-icon{background-color:#ef8495;color:#fff}.vc_color-alert-danger.vc_message_box-3d{box-shadow:0 5px 0 #dca7b0}.vc_color-black.vc_message_box .vc_message_box-icon{color:#fff}.vc_color-black.vc_message_box-outline,.vc_color-black.vc_message_box-outline .vc_message_box-icon,.vc_color-black.vc_message_box-solid-icon{color:#2a2a2a}.vc_color-grey.vc_message_box .vc_message_box-icon{color:#858585}.vc_color-white.vc_message_box .vc_message_box-icon{color:#b3b3b3}.vc_color-white.vc_message_box-outline,.vc_color-white.vc_message_box-outline .vc_message_box-icon,.vc_color-white.vc_message_box-solid-icon{color:#fff}.vc_message_box-outline,.vc_message_box-solid-icon{border-width:2px}.vc_message_box-solid-icon .vc_message_box-icon{width:3.25em}.vc_message_box-rounded{border-radius:5px}.vc_message_box-round{border-radius:4em}#content .wpb_alert p:last-child,#content .wpb_text_column :last-child,#content .wpb_text_column p:last-child,.wpb_alert p:last-child,.wpb_text_column :last-child,.wpb_text_column p:last-child{margin-bottom:0}.wpb_button,.wpb_content_element,ul.wpb_thumbnails-fluid>li{margin-bottom:35px}.entry-content .twitter-share-button,.fb_like,.twitter-share-button,.wpb_accordion .wpb_content_element,.wpb_googleplus,.wpb_pinterest,.wpb_tab .wpb_content_element{margin-bottom:21.73913043px}.wpb-content-wrapper{border:none;display:block;margin:0;overflow:unset;padding:0}.wpb-content--blank .wpb-content-wrapper{margin:0 auto}@media (min-width:576px){.wpb-content--blank .wpb-content-wrapper{max-width:540px}}@media (min-width:768px){.wpb-content--blank .wpb-content-wrapper{max-width:720px}}@media (min-width:992px){.wpb-content--blank .wpb-content-wrapper{max-width:960px}}@media (min-width:1200px){.wpb-content--blank .wpb-content-wrapper{max-width:1140px}}.vc_parallax{overflow:hidden;position:relative}.vc_parallax>*{position:relative;z-index:1}.vc_parallax .vc_parallax-inner{background-attachment:scroll;background-color:initial;background-image:inherit;background-position:50% 0;background-size:cover;left:0;pointer-events:none;position:absolute;right:0;top:0;z-index:0}.vc_parallax-inner iframe{max-width:1000%}.vc_video-bg-container{position:relative}.vc_video-bg{height:100%;left:0;overflow:hidden;pointer-events:none;position:absolute;top:0;width:100%;z-index:0}.vc_video-bg iframe{max-width:1000%}.vc_row.vc_row-no-padding .vc_column-inner{padding-left:0;padding-right:0}.vc_row[data-vc-full-width]{overflow:hidden;transition:opacity .5s ease}.vc_row[data-vc-full-width].vc_hidden{opacity:0}.vc_row[data-vc-full-width-temp]{left:0;margin-left:calc(-50vw + 50%);right:0;width:100vw}.vc_editor .vc_row[data-vc-full-width] .vc_controls-bc{bottom:19px;z-index:1002}.vc_row-no-padding .vc_inner{margin-left:0;margin-right:0}.vc_row.vc_row-o-full-height{min-height:100vh}.vc_row.vc_row-flex{box-sizing:border-box;display:flex;flex-wrap:wrap}.vc_row.vc_row-flex>.vc_column_container{display:flex}.vc_row.vc_row-flex>.vc_column_container>.vc_column-inner{display:flex;flex-direction:column;flex-grow:1;z-index:1}@media (forced-colors:active),(forced-colors:none){.vc_row.vc_row-flex>.vc_column_container>.vc_column-inner>*{min-height:1em}}.vc_row.vc_row-flex:after,.vc_row.vc_row-flex:before{display:none}.vc_row.vc_row-o-columns-stretch{align-content:stretch}.vc_row.vc_row-o-columns-top{align-content:flex-start}.vc_row.vc_row-o-columns-bottom{align-content:flex-end}.vc_row.vc_row-o-columns-middle{align-content:center}.vc_row.vc_row-o-columns-bottom:after,.vc_row.vc_row-o-columns-middle:after,.vc_row.vc_row-o-columns-top:after{content:"";display:block;height:0;overflow:hidden;visibility:hidden;width:100%}.vc_row.vc_row-o-content-top>.vc_column_container>.vc_column-inner{justify-content:flex-start}.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height)>.vc_column_container{align-items:flex-start}.vc_row.vc_row-o-content-bottom>.vc_column_container>.vc_column-inner{justify-content:flex-end}.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height)>.vc_column_container{align-items:flex-end}.vc_row.vc_row-o-content-middle>.vc_column_container>.vc_column-inner{justify-content:center}.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height)>.vc_column_container{align-items:center}.vc_column-inner:after,.vc_column-inner:before{content:" ";display:table}.vc_column-inner:after{clear:both}.vc_ie-flexbox-fixer{display:flex;flex-direction:column}.vc_ie-flexbox-fixer>.vc_row{flex:1 1 auto}.vc_row.vc_column-gap-1{margin-left:-15.5px;margin-right:-15.5px}.vc_row.vc_column-gap-1>.vc_column_container{padding:.5px}.vc_row.vc_column-gap-2{margin-left:-16px;margin-right:-16px}.vc_row.vc_column-gap-2>.vc_column_container{padding:1px}.vc_row.vc_column-gap-3{margin-left:-16.5px;margin-right:-16.5px}.vc_row.vc_column-gap-3>.vc_column_container{padding:1.5px}.vc_row.vc_column-gap-4{margin-left:-17px;margin-right:-17px}.vc_row.vc_column-gap-4>.vc_column_container{padding:2px}.vc_row.vc_column-gap-5{margin-left:-17.5px;margin-right:-17.5px}.vc_row.vc_column-gap-5>.vc_column_container{padding:2.5px}.vc_row.vc_column-gap-10{margin-left:-20px;margin-right:-20px}.vc_row.vc_column-gap-10>.vc_column_container{padding:5px}.vc_row.vc_column-gap-15{margin-left:-22.5px;margin-right:-22.5px}.vc_row.vc_column-gap-15>.vc_column_container{padding:7.5px}.vc_row.vc_column-gap-20{margin-left:-25px;margin-right:-25px}.vc_row.vc_column-gap-20>.vc_column_container{padding:10px}.vc_row.vc_column-gap-25{margin-left:-27.5px;margin-right:-27.5px}.vc_row.vc_column-gap-25>.vc_column_container{padding:12.5px}.vc_row.vc_column-gap-30{margin-left:-30px;margin-right:-30px}.vc_row.vc_column-gap-30>.vc_column_container{padding:15px}.vc_row.vc_column-gap-35{margin-left:-32.5px;margin-right:-32.5px}.vc_row.vc_column-gap-35>.vc_column_container{padding:17.5px}.vc_row.wpb_column-gap{margin-left:calc((30px + var(--wpb-column-gap))*-1/2);margin-right:calc((30px + var(--wpb-column-gap))*-1/2)}.vc_row.wpb_column-gap>.vc_column_container{padding:calc(var(--wpb-column-gap)/2)}.vc_column_container{padding-left:0;padding-right:0}.vc_column_container>.vc_column-inner{box-sizing:border-box;padding-left:15px;padding-right:15px;width:100%}.vc_col-has-fill>.vc_column-inner,.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,.vc_row-has-fill>.vc_column_container>.vc_column-inner{padding-top:35px}.vc_section{margin-left:-15px;margin-right:-15px;padding-left:15px;padding-right:15px}.vc_section[data-vc-full-width]{overflow:hidden;transition:opacity .5s ease}.vc_section[data-vc-full-width].vc_hidden{opacity:0}.vc_section[data-vc-full-width]>.vc_row{margin-left:0;margin-right:0}.vc_section[data-vc-full-width-temp]{left:0;margin-left:calc(-50vw + 50%);right:0;width:100vw}.vc_section[data-vc-stretch-content]{padding-left:0;padding-right:0}.vc_section.vc_row-o-full-height{min-height:100vh}.vc_section.vc_section-flex{box-sizing:border-box;display:flex;flex-flow:column nowrap}.vc_section.vc_section-flex .vc_vc_row{width:100%}.vc_section.vc_section-o-content-top{justify-content:flex-start}.vc_section.vc_section-o-content-bottom{justify-content:flex-end}.vc_section.vc_section-o-content-middle{justify-content:center}.vc_section.vc_section-has-fill,.vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section,.vc_section.vc_section-has-fill+.vc_section{padding-top:35px}.vc_row.vc_column-gap-1>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:.5px;padding-right:.5px}.vc_row.vc_column-gap-2>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:1px;padding-right:1px}.vc_row.vc_column-gap-3>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:1.5px;padding-right:1.5px}.vc_row.vc_column-gap-4>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:2px;padding-right:2px}.vc_row.vc_column-gap-5>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:2.5px;padding-right:2.5px}.vc_row.vc_column-gap-10>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:5px;padding-right:5px}.vc_row.vc_column-gap-15>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:7.5px;padding-right:7.5px}.vc_row.vc_column-gap-20>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:10px;padding-right:10px}.vc_row.vc_column-gap-25>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:12.5px;padding-right:12.5px}.vc_row.vc_column-gap-30>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:15px;padding-right:15px}.vc_row.vc_column-gap-35>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:17.5px;padding-right:17.5px}.vc_row.wpb_column-gap>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{padding-left:calc(var(--wpb-column-gap)/2);padding-right:calc(var(--wpb-column-gap)/2)}.vc_vc_column,.vc_vc_column_inner{padding-left:0;padding-right:0}.vc_row.vc_row-flex>:is(.vc_vc_column,.vc_vc_column_inner){display:flex}.vc_row.vc_row-flex>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{display:flex;width:100%}.vc_row.vc_row-flex>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container>.vc_column-inner{display:flex;flex-direction:column;flex-grow:1}.vc_row.vc_row-o-equal-height>.vc_column_container{align-items:stretch}.vc_row.vc_row-o-content-top>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container>.vc_column-inner{justify-content:flex-start}.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height)>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{align-items:flex-start}.vc_row.vc_row-o-content-bottom>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container>.vc_column-inner{justify-content:flex-end}.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height)>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{align-items:flex-end}.vc_row.vc_row-o-content-middle>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container>.vc_column-inner{justify-content:center}.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height)>:is(.vc_vc_column,.vc_vc_column_inner)>.vc_column_container{align-items:center}.vc_empty-element>.vc_column-inner{min-height:100px}.vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,.vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,.vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,.vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner{padding-top:35px}.vc_grid_container{--col-width:1fr;column-gap:var(--col-gap);display:grid;grid-template-columns:repeat(var(--grid-cols),minmax(0,var(--col-width)));grid-template-rows:auto;margin-left:-15px;margin-right:-15px;row-gap:var(--row-gap)}.vc_grid_container_item,.vc_grid_container_item-inner,.vc_grid_container_item-inner>.wpb_wrapper,.vc_vc_grid_container_item{height:100%}.vc_vc_grid_container_item .wpb_wrapper{display:flex;flex-direction:column;height:100%}.vc_empty-element>.vc_grid_container_item-inner{min-height:100px}.vc_grid_container_item>.vc_grid_container_item-inner{padding:0 15px}.vc_flexbox_container{--gap:0px;display:flex;flex-wrap:wrap;gap:var(--gap);margin-left:-15px;margin-right:-15px}.vc_flexbox_container_item{flex:1 0 auto;max-width:100%}.vc_flexbox_container_item,.vc_flexbox_container_item-inner,.vc_flexbox_container_item-inner .wpb_wrapper{height:100%}.fb_type_standard,.fb_type_standard iframe{height:25px}.fb_type_button_count,.fb_type_button_count iframe{height:20px}.fb_type_box_count,.fb_type_box_count iframe{height:62px}.wpb_googleplus_type_standard{height:25px}.wpb_googleplus_type_small{height:19px}.wpb_googleplus_type_medium,.wpb_googleplus_type_tall{height:21px}.wpb_googleplus_type_tall.vc_googleplus-annotation-bubble{height:62px}.wpb_pinterest a{border-bottom:0}.wpb_pinterest_type_horizontal{height:21px}.wpb_pinterest_type_vertical{box-sizing:initial;height:21px;padding-top:29px}.wpb_pinterest_type_none{height:21px}iframe.twitter-share-button{margin:0}.vc_toggle{display:block;font-size:1em}.vc_toggle:last-of-type{margin-bottom:35px}.vc_toggle_title{cursor:pointer;display:block;font-weight:400;margin:0;padding:0;position:relative;-webkit-user-select:none;user-select:none}.vc_toggle_title>h4{display:inline}.vc_toggle_icon{display:none;position:relative;vertical-align:middle}.vc_toggle_content{display:none;margin-bottom:21.73913043px;margin-top:1em;overflow:hidden;padding:0}.vc_toggle.vc_toggle_active>.vc_toggle_content{display:block}.vc_toggle_simple .vc_toggle_icon{border:0 solid #0000;border-radius:0;display:inline-block}.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_simple .vc_toggle_icon:before{box-sizing:border-box;content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.vc_toggle_simple.vc_toggle_active .vc_toggle_icon:after{visibility:hidden}.vc_toggle_simple .vc_toggle_icon{height:22px;width:22px}.vc_toggle_simple .vc_toggle_icon:before{height:2px;width:10px}.vc_toggle_simple .vc_toggle_icon:after{height:10px;width:2px}.vc_toggle_simple .vc_toggle_icon{background-color:#2a2a2a}.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_simple .vc_toggle_icon:before{background-color:#fff}.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{border-color:#2a2a2a}.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#2a2a2a}.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon{background-color:#444}.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{border-color:#444}.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#444}.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_simple .vc_toggle_icon:before{background-color:#2a2a2a}.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#444}.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_simple .vc_toggle_icon{margin-left:2px}.vc_toggle_round .vc_toggle_icon{border:2px solid #0000;border-radius:50%;display:inline-block}.vc_toggle_round .vc_toggle_icon:after,.vc_toggle_round .vc_toggle_icon:before{box-sizing:border-box;content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.vc_toggle_round.vc_toggle_active .vc_toggle_icon:after{visibility:hidden}.vc_toggle_round .vc_toggle_icon{height:22px;width:22px}.vc_toggle_round .vc_toggle_icon:before{height:2px;width:10px}.vc_toggle_round .vc_toggle_icon:after{height:10px;width:2px}.vc_toggle_round .vc_toggle_icon{background-color:#2a2a2a;border-color:#0000}.vc_toggle_round .vc_toggle_icon:after,.vc_toggle_round .vc_toggle_icon:before{background-color:#fff}.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#2a2a2a}.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#2a2a2a}.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon{background-color:#444}.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#444}.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#444}.vc_toggle_rounded .vc_toggle_icon{border:2px solid #0000;border-radius:20%;display:inline-block}.vc_toggle_rounded .vc_toggle_icon:after,.vc_toggle_rounded .vc_toggle_icon:before{box-sizing:border-box;content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.vc_toggle_rounded.vc_toggle_active .vc_toggle_icon:after{visibility:hidden}.vc_toggle_rounded .vc_toggle_icon{height:22px;width:22px}.vc_toggle_rounded .vc_toggle_icon:before{height:2px;width:10px}.vc_toggle_rounded .vc_toggle_icon:after{height:10px;width:2px}.vc_toggle_rounded .vc_toggle_icon{background-color:#2a2a2a;border-color:#0000}.vc_toggle_rounded .vc_toggle_icon:after,.vc_toggle_rounded .vc_toggle_icon:before{background-color:#fff}.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#2a2a2a}.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#2a2a2a}.vc_toggle_rounded .vc_toggle_title:hover .vc_toggle_icon{background-color:#444}.vc_toggle_rounded .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_rounded .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#444}.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#444}.vc_toggle_square .vc_toggle_icon{border:2px solid #0000;border-radius:0;display:inline-block}.vc_toggle_square .vc_toggle_icon:after,.vc_toggle_square .vc_toggle_icon:before{box-sizing:border-box;content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.vc_toggle_square.vc_toggle_active .vc_toggle_icon:after{visibility:hidden}.vc_toggle_square .vc_toggle_icon{height:22px;width:22px}.vc_toggle_square .vc_toggle_icon:before{height:2px;width:10px}.vc_toggle_square .vc_toggle_icon:after{height:10px;width:2px}.vc_toggle_square .vc_toggle_icon{background-color:#2a2a2a;border-color:#0000}.vc_toggle_square .vc_toggle_icon:after,.vc_toggle_square .vc_toggle_icon:before{background-color:#fff}.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#2a2a2a}.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#2a2a2a}.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon{background-color:#444}.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#444}.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#444}.vc_toggle_text_only .vc_toggle_icon{display:none}.vc_toggle_arrow .vc_toggle_icon{display:inline-block}.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_arrow .vc_toggle_icon:before{border-style:solid;box-sizing:border-box;content:"";display:block;left:50%;position:absolute;top:50%;transform:rotate(45deg)}.vc_toggle_arrow .vc_toggle_icon:before{border-left:none;border-top:none}.vc_toggle_arrow .vc_toggle_icon:after{border-bottom:none;border-right:none;visibility:hidden}.vc_toggle_arrow.vc_toggle_active .vc_toggle_icon:before{visibility:hidden}.vc_toggle_arrow.vc_toggle_active .vc_toggle_icon:after{visibility:visible}.vc_toggle.vc_toggle_arrow .vc_toggle_icon{height:22px;width:22px}.vc_toggle.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle.vc_toggle_arrow .vc_toggle_icon:before{border-width:2px;height:10px;margin-left:-5px;width:10px}.vc_toggle.vc_toggle_arrow .vc_toggle_icon:before{margin-top:-10px}.vc_toggle.vc_toggle_arrow .vc_toggle_icon:after{margin-top:-5px}.vc_toggle.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#2a2a2a}.vc_toggle.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#444}.vc_toggle_default .vc_toggle_icon{background:#bababa;border:1px solid #acacac;box-sizing:border-box;transform:translateY(-50%)}.vc_toggle_default .vc_toggle_icon:after,.vc_toggle_default .vc_toggle_icon:before{background:#bababa;box-sizing:border-box;content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.vc_toggle_default .vc_toggle_icon:before{border:1px solid #acacac}.vc_toggle_default.vc_toggle_active .vc_toggle_icon:after,.vc_toggle_default.vc_toggle_active .vc_toggle_icon:before{visibility:hidden}.vc_toggle.vc_toggle_default .vc_toggle_icon{display:inline-block;height:4px;margin-left:5px;width:10px}.vc_toggle.vc_toggle_default .vc_toggle_icon:before{height:10px;width:4px}.vc_toggle.vc_toggle_default .vc_toggle_icon:after{height:2px;width:8px}.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_icon:before{background-color:#5472d2}.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#7c93dd}.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_blue .vc_toggle_icon{background-color:#5472d2;border-color:#0000}.vc_toggle_color_blue .vc_toggle_icon:after,.vc_toggle_color_blue .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#5472d2}.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#5472d2}.vc_toggle_color_blue .vc_toggle_title:hover .vc_toggle_icon{background-color:#7c93dd}.vc_toggle_color_blue .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_blue .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#7c93dd}.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#7c93dd}.vc_toggle_color_blue.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_blue.vc_toggle_default .vc_toggle_icon:before{background:#5472d2;border-color:#3354c0}.vc_toggle_color_blue.vc_toggle_default .vc_toggle_icon:after{background:#5472d2}.vc_toggle_color_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#7c93dd;border-color:#5472d2}.vc_toggle_color_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#7c93dd}.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#5472d2}.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#7c93dd}.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_icon:before{background-color:#00c1cf}.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#00919c}.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_turquoise .vc_toggle_icon{background-color:#00c1cf;border-color:#0000}.vc_toggle_color_turquoise .vc_toggle_icon:after,.vc_toggle_color_turquoise .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#00c1cf}.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#00c1cf}.vc_toggle_color_turquoise .vc_toggle_title:hover .vc_toggle_icon{background-color:#00919c}.vc_toggle_color_turquoise .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_turquoise .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#00919c}.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#00919c}.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_icon:before{background:#00c1cf;border-color:#00919c}.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_icon:after{background:#00c1cf}.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#00919c;border-color:#006269}.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#00919c}.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#00c1cf}.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#00919c}.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_icon:before{background-color:#fe6c61}.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fe9b94}.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_pink .vc_toggle_icon{background-color:#fe6c61;border-color:#0000}.vc_toggle_color_pink .vc_toggle_icon:after,.vc_toggle_color_pink .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#fe6c61}.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#fe6c61}.vc_toggle_color_pink .vc_toggle_title:hover .vc_toggle_icon{background-color:#fe9b94}.vc_toggle_color_pink .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_pink .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#fe9b94}.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fe9b94}.vc_toggle_color_pink.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_pink.vc_toggle_default .vc_toggle_icon:before{background:#fe6c61;border-color:#fe3d2e}.vc_toggle_color_pink.vc_toggle_default .vc_toggle_icon:after{background:#fe6c61}.vc_toggle_color_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#fe9b94;border-color:#fe6c61}.vc_toggle_color_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#fe9b94}.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#fe6c61}.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#fe9b94}.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_icon:before{background-color:#8d6dc4}.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#a991d3}.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_violet .vc_toggle_icon{background-color:#8d6dc4;border-color:#0000}.vc_toggle_color_violet .vc_toggle_icon:after,.vc_toggle_color_violet .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#8d6dc4}.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#8d6dc4}.vc_toggle_color_violet .vc_toggle_title:hover .vc_toggle_icon{background-color:#a991d3}.vc_toggle_color_violet .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_violet .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#a991d3}.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#a991d3}.vc_toggle_color_violet.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_violet.vc_toggle_default .vc_toggle_icon:before{background:#8d6dc4;border-color:#7149b5}.vc_toggle_color_violet.vc_toggle_default .vc_toggle_icon:after{background:#8d6dc4}.vc_toggle_color_violet.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_violet.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#a991d3;border-color:#8d6dc4}.vc_toggle_color_violet.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#a991d3}.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#8d6dc4}.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#a991d3}.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_icon:before{background-color:#4cadc9}.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#73bfd5}.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_peacoc .vc_toggle_icon{background-color:#4cadc9;border-color:#0000}.vc_toggle_color_peacoc .vc_toggle_icon:after,.vc_toggle_color_peacoc .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#4cadc9}.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#4cadc9}.vc_toggle_color_peacoc .vc_toggle_title:hover .vc_toggle_icon{background-color:#73bfd5}.vc_toggle_color_peacoc .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_peacoc .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#73bfd5}.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#73bfd5}.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_icon:before{background:#4cadc9;border-color:#3492ae}.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_icon:after{background:#4cadc9}.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#73bfd5;border-color:#4cadc9}.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#73bfd5}.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#4cadc9}.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#73bfd5}.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_icon:before{background-color:#cec2ab}.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#e1d9cb}.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_chino .vc_toggle_icon{background-color:#cec2ab;border-color:#0000}.vc_toggle_color_chino .vc_toggle_icon:after,.vc_toggle_color_chino .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#cec2ab}.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#cec2ab}.vc_toggle_color_chino .vc_toggle_title:hover .vc_toggle_icon{background-color:#e1d9cb}.vc_toggle_color_chino .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_chino .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#e1d9cb}.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#e1d9cb}.vc_toggle_color_chino.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_chino.vc_toggle_default .vc_toggle_icon:before{background:#cec2ab;border-color:#bbab8b}.vc_toggle_color_chino.vc_toggle_default .vc_toggle_icon:after{background:#cec2ab}.vc_toggle_color_chino.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_chino.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#e1d9cb;border-color:#cec2ab}.vc_toggle_color_chino.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#e1d9cb}.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#cec2ab}.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#e1d9cb}.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_icon:before{background-color:#50485b}.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#695f77}.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_mulled_wine .vc_toggle_icon{background-color:#50485b;border-color:#0000}.vc_toggle_color_mulled_wine .vc_toggle_icon:after,.vc_toggle_color_mulled_wine .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#50485b}.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#50485b}.vc_toggle_color_mulled_wine .vc_toggle_title:hover .vc_toggle_icon{background-color:#695f77}.vc_toggle_color_mulled_wine .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_mulled_wine .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#695f77}.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#695f77}.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_icon:before{background:#50485b;border-color:#37313f}.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_icon:after{background:#50485b}.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#695f77;border-color:#50485b}.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#695f77}.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#50485b}.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#695f77}.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_icon:before{background-color:#75d69c}.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#9ce2b8}.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_vista_blue .vc_toggle_icon{background-color:#75d69c;border-color:#0000}.vc_toggle_color_vista_blue .vc_toggle_icon:after,.vc_toggle_color_vista_blue .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#75d69c}.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#75d69c}.vc_toggle_color_vista_blue .vc_toggle_title:hover .vc_toggle_icon{background-color:#9ce2b8}.vc_toggle_color_vista_blue .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_vista_blue .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#9ce2b8}.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#9ce2b8}.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_icon:before{background:#75d69c;border-color:#4eca80}.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_icon:after{background:#75d69c}.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#9ce2b8;border-color:#75d69c}.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#9ce2b8}.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#75d69c}.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#9ce2b8}.vc_toggle_color_black.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_black.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_black.vc_toggle_simple .vc_toggle_icon:before{background-color:#2a2a2a}.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_black.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_black.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_black.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#444}.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_black .vc_toggle_icon{background-color:#2a2a2a;border-color:#0000}.vc_toggle_color_black .vc_toggle_icon:after,.vc_toggle_color_black .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#2a2a2a}.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#2a2a2a}.vc_toggle_color_black .vc_toggle_title:hover .vc_toggle_icon{background-color:#444}.vc_toggle_color_black .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_black .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#444}.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#444}.vc_toggle_color_black.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_black.vc_toggle_default .vc_toggle_icon:before{background:#2a2a2a;border-color:#101010}.vc_toggle_color_black.vc_toggle_default .vc_toggle_icon:after{background:#2a2a2a}.vc_toggle_color_black.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_black.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#444;border-color:#2a2a2a}.vc_toggle_color_black.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#444}.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#2a2a2a}.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#444}.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_icon:before{background-color:#ebebeb}.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#d2d2d2}.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_grey .vc_toggle_icon{background-color:#ebebeb;border-color:#0000}.vc_toggle_color_grey .vc_toggle_icon:after,.vc_toggle_color_grey .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#ebebeb}.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#ebebeb}.vc_toggle_color_grey .vc_toggle_title:hover .vc_toggle_icon{background-color:#d2d2d2}.vc_toggle_color_grey .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_grey .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#d2d2d2}.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#d2d2d2}.vc_toggle_color_grey.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_grey.vc_toggle_default .vc_toggle_icon:before{background:#ebebeb;border-color:#d2d2d2}.vc_toggle_color_grey.vc_toggle_default .vc_toggle_icon:after{background:#ebebeb}.vc_toggle_color_grey.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_grey.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#d2d2d2;border-color:#b8b8b8}.vc_toggle_color_grey.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#d2d2d2}.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#ebebeb}.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#d2d2d2}.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_icon:before{background-color:#f7be68}.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fad398}.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_orange .vc_toggle_icon{background-color:#f7be68;border-color:#0000}.vc_toggle_color_orange .vc_toggle_icon:after,.vc_toggle_color_orange .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#f7be68}.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#f7be68}.vc_toggle_color_orange .vc_toggle_title:hover .vc_toggle_icon{background-color:#fad398}.vc_toggle_color_orange .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_orange .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#fad398}.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fad398}.vc_toggle_color_orange.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_orange.vc_toggle_default .vc_toggle_icon:before{background:#f7be68;border-color:#f4a938}.vc_toggle_color_orange.vc_toggle_default .vc_toggle_icon:after{background:#f7be68}.vc_toggle_color_orange.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_orange.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#fad398;border-color:#f7be68}.vc_toggle_color_orange.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#fad398}.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#f7be68}.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#fad398}.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_icon:before{background-color:#5aa1e3}.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#86baea}.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_sky .vc_toggle_icon{background-color:#5aa1e3;border-color:#0000}.vc_toggle_color_sky .vc_toggle_icon:after,.vc_toggle_color_sky .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#5aa1e3}.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#5aa1e3}.vc_toggle_color_sky .vc_toggle_title:hover .vc_toggle_icon{background-color:#86baea}.vc_toggle_color_sky .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_sky .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#86baea}.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#86baea}.vc_toggle_color_sky.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_sky.vc_toggle_default .vc_toggle_icon:before{background:#5aa1e3;border-color:#2e88dc}.vc_toggle_color_sky.vc_toggle_default .vc_toggle_icon:after{background:#5aa1e3}.vc_toggle_color_sky.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_sky.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#86baea;border-color:#5aa1e3}.vc_toggle_color_sky.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#86baea}.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#5aa1e3}.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#86baea}.vc_toggle_color_green.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_green.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_green.vc_toggle_simple .vc_toggle_icon:before{background-color:#6dab3c}.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_green.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_green.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_green.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#87c456}.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_green .vc_toggle_icon{background-color:#6dab3c;border-color:#0000}.vc_toggle_color_green .vc_toggle_icon:after,.vc_toggle_color_green .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#6dab3c}.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#6dab3c}.vc_toggle_color_green .vc_toggle_title:hover .vc_toggle_icon{background-color:#87c456}.vc_toggle_color_green .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_green .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#87c456}.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#87c456}.vc_toggle_color_green.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_green.vc_toggle_default .vc_toggle_icon:before{background:#6dab3c;border-color:#55852f}.vc_toggle_color_green.vc_toggle_default .vc_toggle_icon:after{background:#6dab3c}.vc_toggle_color_green.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_green.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#87c456;border-color:#6dab3c}.vc_toggle_color_green.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#87c456}.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#6dab3c}.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#87c456}.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_icon:before{background-color:#f4524d}.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#f7817d}.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_juicy_pink .vc_toggle_icon{background-color:#f4524d;border-color:#0000}.vc_toggle_color_juicy_pink .vc_toggle_icon:after,.vc_toggle_color_juicy_pink .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#f4524d}.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#f4524d}.vc_toggle_color_juicy_pink .vc_toggle_title:hover .vc_toggle_icon{background-color:#f7817d}.vc_toggle_color_juicy_pink .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_juicy_pink .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#f7817d}.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#f7817d}.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_icon:before{background:#f4524d;border-color:#f1231d}.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_icon:after{background:#f4524d}.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#f7817d;border-color:#f4524d}.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#f7817d}.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#f4524d}.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#f7817d}.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_icon:before{background-color:#f79468}.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fab698}.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_sandy_brown .vc_toggle_icon{background-color:#f79468;border-color:#0000}.vc_toggle_color_sandy_brown .vc_toggle_icon:after,.vc_toggle_color_sandy_brown .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#f79468}.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#f79468}.vc_toggle_color_sandy_brown .vc_toggle_title:hover .vc_toggle_icon{background-color:#fab698}.vc_toggle_color_sandy_brown .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_sandy_brown .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#fab698}.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fab698}.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_icon:before{background:#f79468;border-color:#f47238}.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_icon:after{background:#f79468}.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#fab698;border-color:#f79468}.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#fab698}.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#f79468}.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#fab698}.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_icon:before{background-color:#b97ebb}.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#cb9fcd}.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_purple .vc_toggle_icon{background-color:#b97ebb;border-color:#0000}.vc_toggle_color_purple .vc_toggle_icon:after,.vc_toggle_color_purple .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#b97ebb}.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#b97ebb}.vc_toggle_color_purple .vc_toggle_title:hover .vc_toggle_icon{background-color:#cb9fcd}.vc_toggle_color_purple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_purple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#cb9fcd}.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#cb9fcd}.vc_toggle_color_purple.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_purple.vc_toggle_default .vc_toggle_icon:before{background:#b97ebb;border-color:#a75da9}.vc_toggle_color_purple.vc_toggle_default .vc_toggle_icon:after{background:#b97ebb}.vc_toggle_color_purple.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_purple.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#cb9fcd;border-color:#b97ebb}.vc_toggle_color_purple.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#cb9fcd}.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#b97ebb}.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#cb9fcd}.vc_toggle_color_white.vc_toggle_simple .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_white.vc_toggle_simple .vc_toggle_icon:after,.vc_toggle_color_white.vc_toggle_simple .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_white.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_white.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_white.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#e6e6e6}.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#0000}.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:initial}.vc_toggle_color_white .vc_toggle_icon{background-color:#fff;border-color:#0000}.vc_toggle_color_white .vc_toggle_icon:after,.vc_toggle_color_white .vc_toggle_icon:before{background-color:#2a2a2a}.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_icon{background-color:initial;border-color:#fff}.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_icon:after,.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_icon:before{background-color:#fff}.vc_toggle_color_white .vc_toggle_title:hover .vc_toggle_icon{background-color:#e6e6e6}.vc_toggle_color_white .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_white .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#2a2a2a}.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:initial;border-color:#e6e6e6}.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before{background-color:#e6e6e6}.vc_toggle_color_white.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_white.vc_toggle_default .vc_toggle_icon:before{background:#fff;border-color:#e6e6e6}.vc_toggle_color_white.vc_toggle_default .vc_toggle_icon:after{background:#fff}.vc_toggle_color_white.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_white.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:before{background:#e6e6e6;border-color:#ccc}.vc_toggle_color_white.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon:after{background:#e6e6e6}.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_icon{background:#0000}.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_icon:before{background:#0000;border-color:#fff}.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:#0000}.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after,.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before{background:#0000;border-color:#e6e6e6}.vc_toggle_size_sm .vc_toggle_icon{height:16px;width:16px}.vc_toggle_size_sm .vc_toggle_icon:before{height:2px;width:8px}.vc_toggle_size_sm .vc_toggle_icon:after{height:8px;width:2px}.vc_toggle_size_sm.vc_toggle_default .vc_toggle_icon{display:inline-block;height:2px;margin-left:4px;width:8px}.vc_toggle_size_sm.vc_toggle_default .vc_toggle_icon:before{height:8px;width:2px}.vc_toggle_size_sm.vc_toggle_default .vc_toggle_icon:after{height:0;width:6px}.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon{height:16px;width:16px}.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon:before{border-width:2px;height:8px;margin-left:-4px;width:8px}.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon:before{margin-top:-8px}.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon:after{margin-top:-4px}.vc_toggle_size_sm.vc_toggle_default .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_default .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_round .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_round .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_square .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_square .vc_toggle_title{padding-left:24px}:is(.vc_toggle_size_sm.vc_toggle_default .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_default .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_round .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_round .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_square .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_square .vc_toggle_title) .vc_toggle_icon{left:0;position:absolute;top:50%;transform:translateY(-50%)}.vc_toggle_size_sm.vc_toggle_default :is(.vc_toggle_content,.vc_toggle_title){padding-left:17.6px}.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon{margin-left:8px}.vc_toggle_size_md .vc_toggle_icon{height:22px;width:22px}.vc_toggle_size_md .vc_toggle_icon:before{height:2px;width:10px}.vc_toggle_size_md .vc_toggle_icon:after{height:10px;width:2px}.vc_toggle_size_md.vc_toggle_default .vc_toggle_icon{display:inline-block;height:4px;margin-left:5px;width:10px}.vc_toggle_size_md.vc_toggle_default .vc_toggle_icon:before{height:10px;width:4px}.vc_toggle_size_md.vc_toggle_default .vc_toggle_icon:after{height:2px;width:8px}.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon{height:22px;width:22px}.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon:before{border-width:2px;height:10px;margin-left:-5px;width:10px}.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon:before{margin-top:-10px}.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon:after{margin-top:-5px}.vc_toggle_size_md.vc_toggle_default .vc_toggle_content,.vc_toggle_size_md.vc_toggle_default .vc_toggle_title,.vc_toggle_size_md.vc_toggle_round .vc_toggle_content,.vc_toggle_size_md.vc_toggle_round .vc_toggle_title,.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_content,.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_title,.vc_toggle_size_md.vc_toggle_simple .vc_toggle_content,.vc_toggle_size_md.vc_toggle_simple .vc_toggle_title,.vc_toggle_size_md.vc_toggle_square .vc_toggle_content,.vc_toggle_size_md.vc_toggle_square .vc_toggle_title{padding-left:33px}:is(.vc_toggle_size_md.vc_toggle_default .vc_toggle_content,.vc_toggle_size_md.vc_toggle_default .vc_toggle_title,.vc_toggle_size_md.vc_toggle_round .vc_toggle_content,.vc_toggle_size_md.vc_toggle_round .vc_toggle_title,.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_content,.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_title,.vc_toggle_size_md.vc_toggle_simple .vc_toggle_content,.vc_toggle_size_md.vc_toggle_simple .vc_toggle_title,.vc_toggle_size_md.vc_toggle_square .vc_toggle_content,.vc_toggle_size_md.vc_toggle_square .vc_toggle_title) .vc_toggle_icon{left:0;position:absolute;top:50%;transform:translateY(-50%)}.vc_toggle_size_md.vc_toggle_default :is(.vc_toggle_content,.vc_toggle_title){padding-left:24.2px}.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon{margin-left:11px}.vc_toggle_size_lg .vc_toggle_icon{height:28px;width:28px}.vc_toggle_size_lg .vc_toggle_icon:before{height:2px;width:14px}.vc_toggle_size_lg .vc_toggle_icon:after{height:14px;width:2px}.vc_toggle_size_lg.vc_toggle_default .vc_toggle_icon{display:inline-block;height:4px;margin-left:7px;width:14px}.vc_toggle_size_lg.vc_toggle_default .vc_toggle_icon:before{height:14px;width:4px}.vc_toggle_size_lg.vc_toggle_default .vc_toggle_icon:after{height:2px;width:12px}.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon{height:28px;width:28px}.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon:after,.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon:before{border-width:2px;height:14px;margin-left:-7px;width:14px}.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon:before{margin-top:-14px}.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon:after{margin-top:-7px}.vc_toggle_size_lg.vc_toggle_default .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_default .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_round .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_round .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_square .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_square .vc_toggle_title{padding-left:42px}:is(.vc_toggle_size_lg.vc_toggle_default .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_default .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_round .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_round .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_square .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_square .vc_toggle_title) .vc_toggle_icon{left:0;position:absolute;top:50%;transform:translateY(-50%)}.vc_toggle_size_lg.vc_toggle_default :is(.vc_toggle_content,.vc_toggle_title){padding-left:30.8px}.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon{margin-left:14px}.vc_toggle_default .vc_toggle_content,.vc_toggle_default .vc_toggle_title,.vc_toggle_round .vc_toggle_content,.vc_toggle_round .vc_toggle_title,.vc_toggle_rounded .vc_toggle_content,.vc_toggle_rounded .vc_toggle_title,.vc_toggle_simple .vc_toggle_content,.vc_toggle_simple .vc_toggle_title,.vc_toggle_square .vc_toggle_content,.vc_toggle_square .vc_toggle_title{padding-left:33px}:is(.vc_toggle_default .vc_toggle_content,.vc_toggle_default .vc_toggle_title,.vc_toggle_round .vc_toggle_content,.vc_toggle_round .vc_toggle_title,.vc_toggle_rounded .vc_toggle_content,.vc_toggle_rounded .vc_toggle_title,.vc_toggle_simple .vc_toggle_content,.vc_toggle_simple .vc_toggle_title,.vc_toggle_square .vc_toggle_content,.vc_toggle_square .vc_toggle_title) .vc_toggle_icon{left:0;position:absolute;top:50%;transform:translateY(-50%)}.vc_toggle_default :is(.vc_toggle_content,.vc_toggle_title){padding-left:24.2px}.vc_toggle_arrow .vc_toggle_icon{margin-left:11px}.wpb-tta-toggle{appearance:none;border:none;border-radius:3em;cursor:pointer;display:inline-block;height:30px;margin:0 15px;position:relative;transition:background .2s ease-in-out,border-color .25s ease-in-out;width:60px}.wpb-tta-toggle:before{background:#fff;border-radius:inherit;content:"";height:22px;left:4px;position:absolute;top:4px;transition:left .25s ease-in-out;width:22px}.wpb-tta-toggle.wpb-tta-toggle-active:before{left:34px}.wpb-wrapper-tta-toggle .vc_pagination.vc_pagination-style-outline.vc_pagination-shape-square{height:0;margin:0;overflow:hidden;padding:0;text-align:left;width:0}.wpb-tta-toggle-wrapper{align-items:center;display:flex;justify-content:center}.wpb-tta-toggle-wrapper .vc_custom_heading{display:inline}.wpb-wrapper-tta-toggle .vc_tta-tabs.vc_tta-has-pagination.vc_tta-tabs-position-bottom{padding-top:10px}.compose-mode .wpb-wrapper-tta-toggle.wpb-toggle-position-top .vc_controls>.vc_controls-out-tr{top:-70px}.wpb_widgetised_column .wpb_wrapper>ul{margin:0}.wpb_widgetised_column .wpb_wrapper>ul>li{background-image:none;list-style:none!important;margin-left:0}.wpb_widgetised_column .wpb_wrapper>ul>li:after,.wpb_widgetised_column .wpb_wrapper>ul>li:before{display:none!important}.wpb_button{background-color:#f7f7f7;border:1px solid;border-color:#ccc #ccc #b3b3b3;border-radius:2px;box-shadow:none;color:#333;cursor:pointer;display:inline-block;font-size:13px;line-height:18px;margin-bottom:0;margin-top:0;padding:4px 10px;text-align:center;text-shadow:0 1px 1px #ffffffbf;vertical-align:middle}.wpb_button.active,.wpb_button.disabled,.wpb_button:active,.wpb_button:hover,.wpb_button[disabled]{background-color:#eaeaea}.vc_vc_button .vc_btn{margin-bottom:5px;margin-top:5px}.wpb_button:hover{background-color:#e6e6e6;color:#333;text-decoration:none;transition:background-color .1s linear}.wpb_button:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.wpb_button.active,.wpb_button:active{background-color:#e6e6e6;background-image:none;box-shadow:inset 0 2px 4px #00000026,0 1px 2px #0000000d;outline:0}button.wpb_btn-large,span.wpb_btn-large{border-radius:2px;font-size:15px;line-height:normal;padding:9px 14px}:is(button.wpb_btn-large,span.wpb_btn-large) [class^=icon-]{margin-top:1px}button.wpb_btn-small,span.wpb_btn-small{font-size:11px;line-height:16px;padding:5px 9px}:is(button.wpb_btn-small,span.wpb_btn-small) [class^=icon-]{margin-top:-1px}button.wpb_btn-mini,span.wpb_btn-mini{font-size:11px;line-height:14px;padding:2px 6px}.wpb_btn-danger,.wpb_btn-danger:hover,.wpb_btn-info,.wpb_btn-info:hover,.wpb_btn-inverse,.wpb_btn-inverse:hover,.wpb_btn-primary,.wpb_btn-primary:hover,.wpb_btn-success,.wpb_btn-success:hover,.wpb_btn-warning,.wpb_btn-warning:hover{color:#fff;text-shadow:0 -1px 0 #00000040}.wpb_btn-danger.active,.wpb_btn-info.active,.wpb_btn-inverse.active,.wpb_btn-primary.active,.wpb_btn-success.active,.wpb_btn-warning.active{color:#ffffffbf}.wpb_button{border-color:#0000001a}.wpb_btn-primary{background-color:#08c}.wpb_btn-primary.active,.wpb_btn-primary.disabled,.wpb_btn-primary:active,.wpb_btn-primary:hover,.wpb_btn-primary[disabled]{background-color:#0077b3}.wpb_btn-warning{background-color:#f90}.wpb_btn-warning.active,.wpb_btn-warning.disabled,.wpb_btn-warning:active,.wpb_btn-warning:hover,.wpb_btn-warning[disabled]{background-color:#e68a00}.wpb_btn-danger{background-color:#ff675b}.wpb_btn-danger.active,.wpb_btn-danger.disabled,.wpb_btn-danger:active,.wpb_btn-danger:hover,.wpb_btn-danger[disabled]{background-color:#ff4f42}.wpb_btn-success{background-color:#6ab165}.wpb_btn-success.active,.wpb_btn-success.disabled,.wpb_btn-success:active,.wpb_btn-success:hover,.wpb_btn-success[disabled]{background-color:#5aa855}.wpb_btn-info{background-color:#58b9da}.wpb_btn-info.active,.wpb_btn-info.disabled,.wpb_btn-info:active,.wpb_btn-info:hover,.wpb_btn-info[disabled]{background-color:#43b0d5}.wpb_btn-inverse{background-color:#555}.wpb_btn-inverse.active,.wpb_btn-inverse.disabled,.wpb_btn-inverse:active,.wpb_btn-inverse:hover,.wpb_btn-inverse[disabled]{background-color:#484848}button.wpb_button::-moz-focus-inner,input[type=submit].wpb_button::-moz-focus-inner{border:0;padding:0}a.wpb_button_a{border:none}a.wpb_button_a,a.wpb_button_a:hover{text-decoration:none}.wpb_button:hover{background-image:none}.vc_btn3-container{display:block;margin-bottom:21.73913043px;max-width:100%}.vc_btn3-container.vc_btn3-inline{display:inline-block;vertical-align:top}.vc_general.vc_btn3{background-color:initial;background-image:none;border:1px solid #0000;box-sizing:border-box;color:#5472d2;cursor:pointer;display:inline-block;margin-bottom:0;text-align:center;vertical-align:middle;word-wrap:break-word;box-shadow:none;font-size:14px;line-height:normal;padding:14px 20px;position:relative;text-decoration:none;top:0;transition:all .2s ease-in-out;-webkit-user-select:none;user-select:none}.vc_general.vc_btn3.vc_btn3-style-outline,.vc_general.vc_btn3.vc_btn3-style-outline-custom{padding:13px 19px}.vc_general.vc_btn3.active,.vc_general.vc_btn3:active,.vc_general.vc_btn3:focus{outline:0}.vc_general.vc_btn3:focus,.vc_general.vc_btn3:hover{border:1px solid #0000;color:#4868cf;text-decoration:none}.vc_general.vc_btn3 .vc_btn3-icon{font-size:16px;height:14px;line-height:1;vertical-align:top}.vc_general.vc_btn3 .vc_btn3-icon-inner{display:block;left:0;position:absolute;top:50%;transform:translateY(-50%)}.vc_general.vc_btn3 .vc_btn3-placeholder{display:inline-block;vertical-align:top;width:0}.vc_btn3.vc_btn3-icon-left,.vc_btn3.vc_btn3-icon-right{position:relative}:is(.vc_btn3.vc_btn3-icon-left,.vc_btn3.vc_btn3-icon-right) .vc_btn3-icon{display:block;position:absolute;top:50%;transform:translateY(-50%)}.vc_btn3.vc_btn3-icon-left{text-align:left}.vc_btn3.vc_btn3-icon-right{text-align:right}.vc_btn3.vc_btn3-icon-right:not(.vc_btn3-block) .vc_btn3-icon-inner{transform:translate(-75%,-50%)}.vc_btn3.vc_btn3-o-empty .vc_btn3-icon,.vc_btn3.vc_btn3-o-empty:not(.vc_btn3-block) .vc_btn3-icon-inner{transform:translate(-50%,-50%)}.vc_btn3.vc_btn3-style-classic{border-color:#0000001a}.vc_btn3.vc_btn3-style-modern{background-image:linear-gradient(180deg,#fff3 0,#ffffff03);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#33ffffff",endColorstr="#03ffffff",GradientType=0)}.vc_btn3.vc_btn3-style-outline,.vc_btn3.vc_btn3-style-outline-custom,.vc_btn3.vc_btn3-style-outline-custom:focus,.vc_btn3.vc_btn3-style-outline-custom:hover,.vc_btn3.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-style-outline:hover{border-width:2px}.vc_btn3.vc_btn3-style-custom{background-image:linear-gradient(#0000,#0000001a 50%,#0000001a);background-position:0 -100%;background-repeat:no-repeat;background-repeat:repeat-x;background-size:200%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#1a000000",GradientType=0)}.vc_btn3.vc_btn3-style-custom:focus,.vc_btn3.vc_btn3-style-custom:hover{background-position:0 100%}.vc_btn3.vc_btn3-block{display:block;text-align:inherit;width:100%}.vc_btn3.vc_btn3-shape-square{border-radius:0}.vc_btn3.vc_btn3-shape-rounded{border-radius:5px}.vc_btn3.vc_btn3-shape-round{border-radius:2em}.vc_btn3.vc_btn3-size-xs{font-size:11px;padding:8px 12px}.vc_btn3.vc_btn3-size-xs.vc_btn3-style-outline,.vc_btn3.vc_btn3-size-xs.vc_btn3-style-outline-custom{padding:7px 11px}.vc_btn3.vc_btn3-size-xs .vc_btn3-icon{font-size:14px;height:11px;line-height:11px}.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-left:not(.vc_btn3-o-empty){padding-left:31px}.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon{left:12px}.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-right:not(.vc_btn3-o-empty){padding-right:31px}.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon{right:12px}.vc_btn3.vc_btn3-size-sm{font-size:12px;padding:11px 16px}.vc_btn3.vc_btn3-size-sm.vc_btn3-style-outline,.vc_btn3.vc_btn3-size-sm.vc_btn3-style-outline-custom{padding:10px 15px}.vc_btn3.vc_btn3-size-sm .vc_btn3-icon{font-size:14px;height:12px;line-height:12px}.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-left:not(.vc_btn3-o-empty){padding-left:39px}.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon{left:16px}.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-right:not(.vc_btn3-o-empty){padding-right:39px}.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon{right:16px}.vc_btn3.vc_btn3-size-md{font-size:14px;padding:14px 20px}.vc_btn3.vc_btn3-size-md.vc_btn3-style-outline,.vc_btn3.vc_btn3-size-md.vc_btn3-style-outline-custom{padding:13px 19px}.vc_btn3.vc_btn3-size-md .vc_btn3-icon{font-size:16px;height:14px;line-height:14px}.vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty){padding-left:48px}.vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon{left:20px}.vc_btn3.vc_btn3-size-md.vc_btn3-icon-right:not(.vc_btn3-o-empty){padding-right:48px}.vc_btn3.vc_btn3-size-md.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon{right:20px}.vc_btn3.vc_btn3-size-lg{font-size:16px;padding:18px 25px}.vc_btn3.vc_btn3-size-lg.vc_btn3-style-outline,.vc_btn3.vc_btn3-size-lg.vc_btn3-style-outline-custom{padding:17px 24px}.vc_btn3.vc_btn3-size-lg .vc_btn3-icon{font-size:20px;height:16px;line-height:16px}.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-left:not(.vc_btn3-o-empty){padding-left:60px}.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon{left:25px}.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-right:not(.vc_btn3-o-empty){padding-right:60px}.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon{right:25px}.vc_btn3.vc_btn3-color-blue,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat{background-color:#5472d2;color:#fff}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-blue:focus,.vc_btn3.vc_btn3-color-blue:hover{background-color:#3c5ecc;color:#f7f7f7}.vc_btn3.vc_btn3-color-blue.active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-blue:active{background-color:#3558c8;color:#f2f2f2}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline{background-color:initial;border-color:#5472d2;color:#5472d2}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:hover{background-color:#5472d2;border-color:#5472d2;color:#fff}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d{background-color:#5472d2;box-shadow:0 5px 0 #3253bc;color:#fff}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:hover{background-color:#5472d2;color:#f7f7f7}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:active{background-color:#5472d2;color:#f2f2f2}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #3253bc;top:3px}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #3253bc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #3253bc;top:1px}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #3253bc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #3253bc;top:2px}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #3253bc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #3253bc;top:3px}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern{background-color:#5472d2;border-color:#5472d2;color:#fff}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:hover{background-color:#3c5ecc;border-color:#3c5ecc;color:#f7f7f7}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:active{background-color:#3558c8;border-color:#3558c8;color:#f2f2f2}.vc_btn3.vc_btn3-color-turquoise,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat{background-color:#00c1cf;color:#fff}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-turquoise:focus,.vc_btn3.vc_btn3-color-turquoise:hover{background-color:#00a4b0;color:#f7f7f7}.vc_btn3.vc_btn3-color-turquoise.active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-turquoise:active{background-color:#009ba6;color:#f2f2f2}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline{background-color:initial;border-color:#00c1cf;color:#00c1cf}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline:hover{background-color:#00c1cf;border-color:#00c1cf;color:#fff}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d{background-color:#00c1cf;box-shadow:0 5px 0 #008d97;color:#fff}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:hover{background-color:#00c1cf;color:#f7f7f7}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:active{background-color:#00c1cf;color:#f2f2f2}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #008d97;top:3px}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #008d97}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #008d97;top:1px}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #008d97}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #008d97;top:2px}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #008d97}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #008d97;top:3px}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern{background-color:#00c1cf;border-color:#00c1cf;color:#fff}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern:hover{background-color:#00a4b0;border-color:#00a4b0;color:#f7f7f7}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern:active{background-color:#009ba6;border-color:#009ba6;color:#f2f2f2}.vc_btn3.vc_btn3-color-pink,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat{background-color:#fe6c61;color:#fff}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-pink:focus,.vc_btn3.vc_btn3-color-pink:hover{background-color:#fe5043;color:#f7f7f7}.vc_btn3.vc_btn3-color-pink.active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-pink:active{background-color:#fe4638;color:#f2f2f2}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline{background-color:initial;border-color:#fe6c61;color:#fe6c61}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline:hover{background-color:#fe6c61;border-color:#fe6c61;color:#fff}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d{background-color:#fe6c61;box-shadow:0 5px 0 #fe3829;color:#fff}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:hover{background-color:#fe6c61;color:#f7f7f7}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:active{background-color:#fe6c61;color:#f2f2f2}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #fe3829;top:3px}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #fe3829}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #fe3829;top:1px}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #fe3829}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #fe3829;top:2px}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #fe3829}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #fe3829;top:3px}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern{background-color:#fe6c61;border-color:#fe6c61;color:#fff}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern:hover{background-color:#fe5043;border-color:#fe5043;color:#f7f7f7}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern:active{background-color:#fe4638;border-color:#fe4638;color:#f2f2f2}.vc_btn3.vc_btn3-color-violet,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat{background-color:#8d6dc4;color:#fff}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-violet:focus,.vc_btn3.vc_btn3-color-violet:hover{background-color:#7c57bb;color:#f7f7f7}.vc_btn3.vc_btn3-color-violet.active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-violet:active{background-color:#7650b8;color:#f2f2f2}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline{background-color:initial;border-color:#8d6dc4;color:#8d6dc4}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline:hover{background-color:#8d6dc4;border-color:#8d6dc4;color:#fff}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d{background-color:#8d6dc4;box-shadow:0 5px 0 #6e48b1;color:#fff}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:hover{background-color:#8d6dc4;color:#f7f7f7}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:active{background-color:#8d6dc4;color:#f2f2f2}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #6e48b1;top:3px}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #6e48b1}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #6e48b1;top:1px}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #6e48b1}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #6e48b1;top:2px}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #6e48b1}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #6e48b1;top:3px}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern{background-color:#8d6dc4;border-color:#8d6dc4;color:#fff}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern:hover{background-color:#7c57bb;border-color:#7c57bb;color:#f7f7f7}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern:active{background-color:#7650b8;border-color:#7650b8;color:#f2f2f2}.vc_btn3.vc_btn3-color-peacoc,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat{background-color:#4cadc9;color:#fff}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-peacoc:focus,.vc_btn3.vc_btn3-color-peacoc:hover{background-color:#39a0bd;color:#f7f7f7}.vc_btn3.vc_btn3-color-peacoc.active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-peacoc:active{background-color:#3799b5;color:#f2f2f2}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline{background-color:initial;border-color:#4cadc9;color:#4cadc9}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline:hover{background-color:#4cadc9;border-color:#4cadc9;color:#fff}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d{background-color:#4cadc9;box-shadow:0 5px 0 #338faa;color:#fff}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:hover{background-color:#4cadc9;color:#f7f7f7}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:active{background-color:#4cadc9;color:#f2f2f2}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #338faa;top:3px}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #338faa}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #338faa;top:1px}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #338faa}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #338faa;top:2px}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #338faa}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #338faa;top:3px}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern{background-color:#4cadc9;border-color:#4cadc9;color:#fff}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern:hover{background-color:#39a0bd;border-color:#39a0bd;color:#f7f7f7}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern:active{background-color:#3799b5;border-color:#3799b5;color:#f2f2f2}.vc_btn3.vc_btn3-color-chino,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat{background-color:#cec2ab;color:#fff}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-chino:focus,.vc_btn3.vc_btn3-color-chino:hover{background-color:#c3b498;color:#f7f7f7}.vc_btn3.vc_btn3-color-chino.active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-chino:active{background-color:#bfaf91;color:#f2f2f2}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline{background-color:initial;border-color:#cec2ab;color:#cec2ab}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline:hover{background-color:#cec2ab;border-color:#cec2ab;color:#fff}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d{background-color:#cec2ab;box-shadow:0 5px 0 #b9a888;color:#fff}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:hover{background-color:#cec2ab;color:#f7f7f7}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:active{background-color:#cec2ab;color:#f2f2f2}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #b9a888;top:3px}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #b9a888}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #b9a888;top:1px}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #b9a888}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #b9a888;top:2px}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #b9a888}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #b9a888;top:3px}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern{background-color:#cec2ab;border-color:#cec2ab;color:#fff}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern:hover{background-color:#c3b498;border-color:#c3b498;color:#f7f7f7}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern:active{background-color:#bfaf91;border-color:#bfaf91;color:#f2f2f2}.vc_btn3.vc_btn3-color-mulled-wine,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat{background-color:#50485b;color:#fff}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-mulled-wine:focus,.vc_btn3.vc_btn3-color-mulled-wine:hover{background-color:#413a4a;color:#f7f7f7}.vc_btn3.vc_btn3-color-mulled-wine.active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-mulled-wine:active{background-color:#3c3644;color:#f2f2f2}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline{background-color:initial;border-color:#50485b;color:#50485b}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline:hover{background-color:#50485b;border-color:#50485b;color:#fff}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d{background-color:#50485b;box-shadow:0 5px 0 #342f3c;color:#fff}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:hover{background-color:#50485b;color:#f7f7f7}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:active{background-color:#50485b;color:#f2f2f2}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #342f3c;top:3px}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #342f3c}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #342f3c;top:1px}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #342f3c}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #342f3c;top:2px}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #342f3c}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #342f3c;top:3px}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern{background-color:#50485b;border-color:#50485b;color:#fff}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern:hover{background-color:#413a4a;border-color:#413a4a;color:#f7f7f7}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern:active{background-color:#3c3644;border-color:#3c3644;color:#f2f2f2}.vc_btn3.vc_btn3-color-vista-blue,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat{background-color:#75d69c;color:#fff}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-vista-blue:focus,.vc_btn3.vc_btn3-color-vista-blue:hover{background-color:#5dcf8b;color:#f7f7f7}.vc_btn3.vc_btn3-color-vista-blue.active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-vista-blue:active{background-color:#56cd85;color:#f2f2f2}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline{background-color:initial;border-color:#75d69c;color:#75d69c}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline:hover{background-color:#75d69c;border-color:#75d69c;color:#fff}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d{background-color:#75d69c;box-shadow:0 5px 0 #4ac97d;color:#fff}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:hover{background-color:#75d69c;color:#f7f7f7}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:active{background-color:#75d69c;color:#f2f2f2}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #4ac97d;top:3px}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #4ac97d}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #4ac97d;top:1px}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #4ac97d}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #4ac97d;top:2px}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #4ac97d}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #4ac97d;top:3px}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern{background-color:#75d69c;border-color:#75d69c;color:#fff}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern:hover{background-color:#5dcf8b;border-color:#5dcf8b;color:#f7f7f7}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern:active{background-color:#56cd85;border-color:#56cd85;color:#f2f2f2}.vc_btn3.vc_btn3-color-orange,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat{background-color:#f7be68;color:#fff}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-orange:focus,.vc_btn3.vc_btn3-color-orange:hover{background-color:#f5b14b;color:#f7f7f7}.vc_btn3.vc_btn3-color-orange.active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-orange:active{background-color:#f5ad41;color:#f2f2f2}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline{background-color:initial;border-color:#f7be68;color:#f7be68}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline:hover{background-color:#f7be68;border-color:#f7be68;color:#fff}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d{background-color:#f7be68;box-shadow:0 5px 0 #f4a733;color:#fff}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:hover{background-color:#f7be68;color:#f7f7f7}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:active{background-color:#f7be68;color:#f2f2f2}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #f4a733;top:3px}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #f4a733}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #f4a733;top:1px}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #f4a733}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #f4a733;top:2px}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #f4a733}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #f4a733;top:3px}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern{background-color:#f7be68;border-color:#f7be68;color:#fff}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern:hover{background-color:#f5b14b;border-color:#f5b14b;color:#f7f7f7}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern:active{background-color:#f5ad41;border-color:#f5ad41;color:#f2f2f2}.vc_btn3.vc_btn3-color-sky,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat{background-color:#5aa1e3;color:#fff}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-sky:focus,.vc_btn3.vc_btn3-color-sky:hover{background-color:#4092df;color:#f7f7f7}.vc_btn3.vc_btn3-color-sky.active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-sky:active{background-color:#378ddd;color:#f2f2f2}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline{background-color:initial;border-color:#5aa1e3;color:#5aa1e3}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline:hover{background-color:#5aa1e3;border-color:#5aa1e3;color:#fff}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d{background-color:#5aa1e3;box-shadow:0 5px 0 #2a86db;color:#fff}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:hover{background-color:#5aa1e3;color:#f7f7f7}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:active{background-color:#5aa1e3;color:#f2f2f2}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #2a86db;top:3px}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #2a86db}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #2a86db;top:1px}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #2a86db}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #2a86db;top:2px}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #2a86db}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #2a86db;top:3px}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern{background-color:#5aa1e3;border-color:#5aa1e3;color:#fff}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern:hover{background-color:#4092df;border-color:#4092df;color:#f7f7f7}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern:active{background-color:#378ddd;border-color:#378ddd;color:#f2f2f2}.vc_btn3.vc_btn3-color-green,.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat{background-color:#6dab3c;color:#fff}.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-green:focus,.vc_btn3.vc_btn3-color-green:hover{background-color:#5f9434;color:#f7f7f7}.vc_btn3.vc_btn3-color-green.active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-green:active{background-color:#5a8d31;color:#f2f2f2}.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline{background-color:initial;border-color:#6dab3c;color:#6dab3c}.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline:hover{background-color:#6dab3c;border-color:#6dab3c;color:#fff}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d{background-color:#6dab3c;box-shadow:0 5px 0 #53812d;color:#fff}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:hover{background-color:#6dab3c;color:#f7f7f7}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:active{background-color:#6dab3c;color:#f2f2f2}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #53812d;top:3px}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #53812d}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #53812d;top:1px}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #53812d}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #53812d;top:2px}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #53812d}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #53812d;top:3px}.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern{background-color:#6dab3c;border-color:#6dab3c;color:#fff}.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern:hover{background-color:#5f9434;border-color:#5f9434;color:#f7f7f7}.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern:active{background-color:#5a8d31;border-color:#5a8d31;color:#f2f2f2}.vc_btn3.vc_btn3-color-juicy-pink,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat{background-color:#f4524d;color:#fff}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-juicy-pink:focus,.vc_btn3.vc_btn3-color-juicy-pink:hover{background-color:#f23630;color:#f7f7f7}.vc_btn3.vc_btn3-color-juicy-pink.active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-juicy-pink:active{background-color:#f22d27;color:#f2f2f2}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline{background-color:initial;border-color:#f4524d;color:#f4524d}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline:hover{background-color:#f4524d;border-color:#f4524d;color:#fff}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d{background-color:#f4524d;box-shadow:0 5px 0 #f11f18;color:#fff}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:hover{background-color:#f4524d;color:#f7f7f7}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:active{background-color:#f4524d;color:#f2f2f2}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #f11f18;top:3px}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #f11f18}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #f11f18;top:1px}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #f11f18}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #f11f18;top:2px}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #f11f18}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #f11f18;top:3px}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern{background-color:#f4524d;border-color:#f4524d;color:#fff}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern:hover{background-color:#f23630;border-color:#f23630;color:#f7f7f7}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern:active{background-color:#f22d27;border-color:#f22d27;color:#f2f2f2}.vc_btn3.vc_btn3-color-sandy-brown,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat{background-color:#f79468;color:#fff}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-sandy-brown:focus,.vc_btn3.vc_btn3-color-sandy-brown:hover{background-color:#f57f4b;color:#f7f7f7}.vc_btn3.vc_btn3-color-sandy-brown.active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-sandy-brown:active{background-color:#f57941;color:#f2f2f2}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline{background-color:initial;border-color:#f79468;color:#f79468}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline:hover{background-color:#f79468;border-color:#f79468;color:#fff}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d{background-color:#f79468;box-shadow:0 5px 0 #f46e33;color:#fff}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:hover{background-color:#f79468;color:#f7f7f7}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:active{background-color:#f79468;color:#f2f2f2}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #f46e33;top:3px}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #f46e33}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #f46e33;top:1px}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #f46e33}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #f46e33;top:2px}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #f46e33}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #f46e33;top:3px}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern{background-color:#f79468;border-color:#f79468;color:#fff}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern:hover{background-color:#f57f4b;border-color:#f57f4b;color:#f7f7f7}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern:active{background-color:#f57941;border-color:#f57941;color:#f2f2f2}.vc_btn3.vc_btn3-color-purple,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat{background-color:#b97ebb;color:#fff}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-purple:focus,.vc_btn3.vc_btn3-color-purple:hover{background-color:#ae6ab0;color:#f7f7f7}.vc_btn3.vc_btn3-color-purple.active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-purple:active{background-color:#ab63ad;color:#f2f2f2}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline{background-color:initial;border-color:#b97ebb;color:#b97ebb}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline:hover{background-color:#b97ebb;border-color:#b97ebb;color:#fff}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d{background-color:#b97ebb;box-shadow:0 5px 0 #a559a8;color:#fff}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:hover{background-color:#b97ebb;color:#f7f7f7}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:active{background-color:#b97ebb;color:#f2f2f2}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #a559a8;top:3px}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #a559a8}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #a559a8;top:1px}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #a559a8}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #a559a8;top:2px}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #a559a8}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #a559a8;top:3px}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern{background-color:#b97ebb;border-color:#b97ebb;color:#fff}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern:hover{background-color:#ae6ab0;border-color:#ae6ab0;color:#f7f7f7}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern:active{background-color:#ab63ad;border-color:#ab63ad;color:#f2f2f2}.vc_btn3.vc_btn3-color-black,.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat{background-color:#2a2a2a;color:#fff}.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-black:focus,.vc_btn3.vc_btn3-color-black:hover{background-color:#1b1b1b;color:#f7f7f7}.vc_btn3.vc_btn3-color-black.active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-black:active{background-color:#161616;color:#f2f2f2}.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline{background-color:initial;border-color:#2a2a2a;color:#fff}.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline:hover{background-color:#2a2a2a;border-color:#2a2a2a;color:#fff}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d{background-color:#2a2a2a;box-shadow:0 5px 0 #0e0e0e;color:#fff}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:hover{background-color:#2a2a2a;color:#f7f7f7}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:active{background-color:#2a2a2a;color:#f2f2f2}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #0e0e0e;top:3px}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #0e0e0e}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #0e0e0e;top:1px}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #0e0e0e}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #0e0e0e;top:2px}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #0e0e0e}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #0e0e0e;top:3px}.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern{background-color:#2a2a2a;border-color:#2a2a2a;color:#fff}.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern:hover{background-color:#1b1b1b;border-color:#1b1b1b;color:#f7f7f7}.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern:active{background-color:#161616;border-color:#161616;color:#f2f2f2}.vc_btn3.vc_btn3-color-grey,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat{background-color:#ebebeb;color:#666}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-grey:focus,.vc_btn3.vc_btn3-color-grey:hover{background-color:#dcdcdc;color:#5e5e5e}.vc_btn3.vc_btn3-color-grey.active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-grey:active{background-color:#d7d7d7;color:#595959}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline{background-color:initial;border-color:#ebebeb;color:#666}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline:hover{background-color:#ebebeb;border-color:#ebebeb;color:#666}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d{background-color:#ebebeb;box-shadow:0 5px 0 #cfcfcf;color:#666}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:hover{background-color:#ebebeb;color:#5e5e5e}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:active{background-color:#ebebeb;color:#595959}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #cfcfcf;top:3px}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #cfcfcf}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #cfcfcf;top:1px}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #cfcfcf}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #cfcfcf;top:2px}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #cfcfcf}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #cfcfcf;top:3px}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern{background-color:#ebebeb;border-color:#ebebeb;color:#666}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover{background-color:#dcdcdc;border-color:#dcdcdc;color:#5e5e5e}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:active{background-color:#d7d7d7;border-color:#d7d7d7;color:#595959}.vc_btn3.vc_btn3-color-white,.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat{background-color:#fff;color:#666}.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-white:focus,.vc_btn3.vc_btn3-color-white:hover{background-color:#f0f0f0;color:#5e5e5e}.vc_btn3.vc_btn3-color-white.active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-white:active{background-color:#ebebeb;color:#595959}.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline{background-color:initial;border-color:#fff;color:#666}.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:hover{background-color:#fff;border-color:#fff;color:#666}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d{background-color:#fff;box-shadow:0 5px 0 #e3e3e3;color:#666}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:hover{background-color:#fff;color:#5e5e5e}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:active{background-color:#fff;color:#595959}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #e3e3e3;top:3px}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #e3e3e3}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #e3e3e3;top:1px}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #e3e3e3}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #e3e3e3;top:2px}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #e3e3e3}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #e3e3e3;top:3px}.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern{background-color:#fff;border-color:#fff;color:#666}.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern:hover{background-color:#f0f0f0;border-color:#f0f0f0;color:#5e5e5e}.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern:active{background-color:#ebebeb;border-color:#ebebeb;color:#595959}.vc_btn3.vc_btn3-color-default,.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat{background-color:#f7f7f7;color:#333}.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-default:focus,.vc_btn3.vc_btn3-color-default:hover{background-color:#e8e8e8;color:#2b2b2b}.vc_btn3.vc_btn3-color-default.active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-default:active{background-color:#e3e3e3;color:#262626}.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline{background-color:initial;border-color:#f7f7f7;color:#f7f7f7}.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline:hover{background-color:#f7f7f7;border-color:#f7f7f7;color:#333}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d{background-color:#f7f7f7;box-shadow:0 5px 0 #dbdbdb;color:#333}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:hover{background-color:#f7f7f7;color:#2b2b2b}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:active{background-color:#f7f7f7;color:#262626}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #dbdbdb;top:3px}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #dbdbdb}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #dbdbdb;top:1px}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #dbdbdb}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #dbdbdb;top:2px}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #dbdbdb}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #dbdbdb;top:3px}.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern{background-color:#f7f7f7;border-color:#f7f7f7;color:#333}.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern:hover{background-color:#e8e8e8;border-color:#e8e8e8;color:#2b2b2b}.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern:active{background-color:#e3e3e3;border-color:#e3e3e3;color:#262626}.vc_btn3.vc_btn3-color-primary,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat{background-color:#08c;color:#fff}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-primary:focus,.vc_btn3.vc_btn3-color-primary:hover{background-color:#0074ad;color:#f7f7f7}.vc_btn3.vc_btn3-color-primary.active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-primary:active{background-color:#006da3;color:#f2f2f2}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline{background-color:initial;border-color:#08c;color:#08c}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline:hover{background-color:#08c;border-color:#08c;color:#fff}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d{background-color:#08c;box-shadow:0 5px 0 #006394;color:#fff}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:hover{background-color:#08c;color:#f7f7f7}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:active{background-color:#08c;color:#f2f2f2}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #006394;top:3px}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #006394}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #006394;top:1px}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #006394}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #006394;top:2px}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #006394}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #006394;top:3px}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern{background-color:#08c;border-color:#08c;color:#fff}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern:hover{background-color:#0074ad;border-color:#0074ad;color:#f7f7f7}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern:active{background-color:#006da3;border-color:#006da3;color:#f2f2f2}.vc_btn3.vc_btn3-color-info,.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat{background-color:#58b9da;color:#fff}.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-info:focus,.vc_btn3.vc_btn3-color-info:hover{background-color:#3fafd4;color:#f7f7f7}.vc_btn3.vc_btn3-color-info.active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-info:active{background-color:#37abd3;color:#f2f2f2}.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline{background-color:initial;border-color:#58b9da;color:#58b9da}.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline:hover{background-color:#58b9da;border-color:#58b9da;color:#fff}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d{background-color:#58b9da;box-shadow:0 5px 0 #2da4cd;color:#fff}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:hover{background-color:#58b9da;color:#f7f7f7}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:active{background-color:#58b9da;color:#f2f2f2}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #2da4cd;top:3px}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #2da4cd}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #2da4cd;top:1px}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #2da4cd}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #2da4cd;top:2px}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #2da4cd}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #2da4cd;top:3px}.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern{background-color:#58b9da;border-color:#58b9da;color:#fff}.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern:hover{background-color:#3fafd4;border-color:#3fafd4;color:#f7f7f7}.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern:active{background-color:#37abd3;border-color:#37abd3;color:#f2f2f2}.vc_btn3.vc_btn3-color-success,.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat{background-color:#6ab165;color:#fff}.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-success:focus,.vc_btn3.vc_btn3-color-success:hover{background-color:#59a453;color:#f7f7f7}.vc_btn3.vc_btn3-color-success.active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-success:active{background-color:#559d50;color:#f2f2f2}.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline{background-color:initial;border-color:#6ab165;color:#6ab165}.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline:hover{background-color:#6ab165;border-color:#6ab165;color:#fff}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d{background-color:#6ab165;box-shadow:0 5px 0 #4f934b;color:#fff}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:hover{background-color:#6ab165;color:#f7f7f7}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:active{background-color:#6ab165;color:#f2f2f2}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #4f934b;top:3px}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #4f934b}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #4f934b;top:1px}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #4f934b}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #4f934b;top:2px}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #4f934b}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #4f934b;top:3px}.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern{background-color:#6ab165;border-color:#6ab165;color:#fff}.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern:hover{background-color:#59a453;border-color:#59a453;color:#f7f7f7}.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern:active{background-color:#559d50;border-color:#559d50;color:#f2f2f2}.vc_btn3.vc_btn3-color-warning,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat{background-color:#f90;color:#fff}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-warning:focus,.vc_btn3.vc_btn3-color-warning:hover{background-color:#e08700;color:#f7f7f7}.vc_btn3.vc_btn3-color-warning.active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-warning:active{background-color:#d68100;color:#f2f2f2}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline{background-color:initial;border-color:#f90;color:#f90}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline:hover{background-color:#f90;border-color:#f90;color:#fff}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d{background-color:#f90;box-shadow:0 5px 0 #c77700;color:#fff}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:hover{background-color:#f90;color:#f7f7f7}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:active{background-color:#f90;color:#f2f2f2}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #c77700;top:3px}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #c77700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #c77700;top:1px}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #c77700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #c77700;top:2px}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #c77700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #c77700;top:3px}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern{background-color:#f90;border-color:#f90;color:#fff}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern:hover{background-color:#e08700;border-color:#e08700;color:#f7f7f7}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern:active{background-color:#d68100;border-color:#d68100;color:#f2f2f2}.vc_btn3.vc_btn3-color-danger,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat{background-color:#ff675b;color:#fff}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-danger:focus,.vc_btn3.vc_btn3-color-danger:hover{background-color:#ff4b3c;color:#f7f7f7}.vc_btn3.vc_btn3-color-danger.active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-danger:active{background-color:#ff4132;color:#f2f2f2}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline{background-color:initial;border-color:#ff675b;color:#ff675b}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline:hover{background-color:#ff675b;border-color:#ff675b;color:#fff}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d{background-color:#ff675b;box-shadow:0 5px 0 #ff3323;color:#fff}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:hover{background-color:#ff675b;color:#f7f7f7}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:active{background-color:#ff675b;color:#f2f2f2}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #ff3323;top:3px}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #ff3323}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #ff3323;top:1px}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #ff3323}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #ff3323;top:2px}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #ff3323}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #ff3323;top:3px}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern{background-color:#ff675b;border-color:#ff675b;color:#fff}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern:hover{background-color:#ff4b3c;border-color:#ff4b3c;color:#f7f7f7}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern:active{background-color:#ff4132;border-color:#ff4132;color:#f2f2f2}.vc_btn3.vc_btn3-color-inverse,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat{background-color:#555;color:#fff}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-inverse:focus,.vc_btn3.vc_btn3-color-inverse:hover{background-color:#464646;color:#f7f7f7}.vc_btn3.vc_btn3-color-inverse.active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-inverse:active{background-color:#414141;color:#f2f2f2}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline{background-color:initial;border-color:#555;color:#555}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline:hover{background-color:#555;border-color:#555;color:#fff}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d{background-color:#555;box-shadow:0 5px 0 #393939;color:#fff}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:hover{background-color:#555;color:#f7f7f7}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:active{background-color:#555;color:#f2f2f2}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:hover{box-shadow:0 2px 0 #393939;top:3px}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #393939}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-xs:hover{box-shadow:0 2px 0 #393939;top:1px}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #393939}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-sm:hover{box-shadow:0 2px 0 #393939;top:2px}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #393939}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-lg:hover{box-shadow:0 2px 0 #393939;top:3px}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern{background-color:#555;border-color:#555;color:#fff}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern:hover{background-color:#464646;border-color:#464646;color:#f7f7f7}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern:active{background-color:#414141;border-color:#414141;color:#f2f2f2}.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline{color:#2a2a2a}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline{color:#ebebeb}.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline{color:#fff}.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern{background-image:linear-gradient(180deg,#00000003 0,#00000005);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#03000000",endColorstr="#05000000",GradientType=0)}.vc_btn3-container.vc_btn3-center{text-align:center}.vc_btn3-container.vc_btn3-left{text-align:left}.vc_btn3-container.vc_btn3-right{text-align:right}.vc_btn3-container.vc_btn3-center :is(.vc_btn3-block.vc_btn3-icon-left,.vc_btn3-block.vc_btn3-icon-right) .vc_btn3-icon{display:inline-block;min-width:1em;position:static;transform:translate(0)}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon{margin-right:.5em}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon{margin-left:.5em}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-xs{font-size:11px;padding:8px 12px}.vc_btn3-container.vc_btn3-center :is(.vc_btn3-block.vc_btn3-size-xs.vc_btn3-style-outline,.vc_btn3-block.vc_btn3-size-xs.vc_btn3-style-outline-custom){padding:7px 11px}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-sm{font-size:12px;padding:11px 16px}.vc_btn3-container.vc_btn3-center :is(.vc_btn3-block.vc_btn3-size-sm.vc_btn3-style-outline,.vc_btn3-block.vc_btn3-size-sm.vc_btn3-style-outline-custom){padding:10px 15px}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-md{font-size:14px;padding:14px 20px}.vc_btn3-container.vc_btn3-center :is(.vc_btn3-block.vc_btn3-size-md.vc_btn3-style-outline,.vc_btn3-block.vc_btn3-size-md.vc_btn3-style-outline-custom){padding:13px 19px}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-lg{font-size:16px;padding:18px 25px}.vc_btn3-container.vc_btn3-center :is(.vc_btn3-block.vc_btn3-size-lg.vc_btn3-style-outline,.vc_btn3-block.vc_btn3-size-lg.vc_btn3-style-outline-custom){padding:17px 24px}.vc_btn3-container :is(.vc_btn3-block.vc_btn3-icon-left,.vc_btn3-block.vc_btn3-icon-right){text-align:inherit}.vc_custom_heading{overflow-wrap:break-word}.vc_custom_heading a,.vc_custom_heading a:focus,.vc_custom_heading a:hover,.vc_custom_heading a:visited{border:none;color:inherit;text-decoration:inherit}.vc_custom_heading a{opacity:1;transition:all .2s ease-in-out}.vc_custom_heading a:hover{opacity:.85}.wpb-pricing-table{word-wrap:break-word}.wpb-plan-title{margin:0 0 10px;text-align:center}.wpb-plan-description{margin:0;text-align:center}.wpb-price-container{color:#333;padding:15px 0;text-align:center}.wpb-currency{font-size:13px;position:relative;top:-20px}.wpb-price{font-size:52px;font-weight:700;margin:0 5px}.wpb-period{bottom:3px;font-size:13px;position:relative}.wpb-plan-features{margin:20px 0 0;padding:0}.wpb-plan-features li{list-style:none}.vc_call_to_action{background-color:#ebebeb;border:2px solid #ebebeb;border-radius:5px;padding:2em}.vc_call_to_action :last-child{margin-bottom:0}.vc_call_to_action.vc_cta_square{border-radius:0}.vc_call_to_action.vc_cta_square_outlined{background:none!important;border-radius:0}.vc_call_to_action.vc_cta_round{border-radius:50px}.vc_call_to_action.vc_cta_outlined{background:none!important}.vc_call_to_action hgroup :is(h2,h4){clear:none;margin:0}.vc_call_to_action hgroup+p{margin-top:1em}.vc_call_to_action.vc_cta_btn_pos_right .vc_cta_btn{float:right;margin-left:2em}.vc_call_to_action.vc_cta_btn_pos_left .vc_cta_btn{float:left;margin-right:2em}.wpb_call_to_action{background-color:#f7f7f7;border:1px solid #f0f0f0;box-sizing:border-box;padding:35px;position:relative}.wpb_call_to_action .wpb_button{box-sizing:border-box;margin:0}.cta_align_left .wpb_button{float:left}.cta_align_right .wpb_button{float:right}:is(.cta_align_left,.cta_align_right) .wpb_button{max-width:27.5%}:is(.cta_align_left,.cta_align_right) .wpb_call_text{clear:none;float:left;width:70%}.cta_align_left .wpb_call_text{float:right}#content .wpb_call_to_action .wpb_call_text,.wpb_call_to_action .wpb_call_text{margin:0;padding-top:0}.cta_align_bottom{text-align:center}.cta_align_bottom .wpb_button{display:inline-block;margin-top:21.73913043px;position:static}.cta_no_button .wpb_call_text{float:none;width:auto}@media (max-width:600px){.vc_responsive :is(.cta_align_left,.cta_align_right) .wpb_button{display:block;float:none;margin:3% auto;max-width:70%;width:70%}.vc_responsive :is(.cta_align_left,.cta_align_right) .wpb_call_text{max-width:none;text-align:center;width:auto}}.vc_cta3-container{margin-left:auto;margin-right:auto}.vc_cta3-container:after,.vc_cta3-container:before{content:" ";display:table}.vc_cta3-container.vc_cta3-size-xs{width:50%}.vc_cta3-container.vc_cta3-size-sm{width:60%}.vc_cta3-container.vc_cta3-size-md{width:70%}.vc_cta3-container.vc_cta3-size-lg{width:80%}.vc_cta3-container.vc_cta3-size-xl{width:90%}.vc_general.vc_cta3{border:1px solid #0000;font-size:1em;word-wrap:break-word}.vc_general.vc_cta3 .vc_cta3-content{vertical-align:top}.vc_general.vc_cta3 :is(.vc_cta3-content,.vc_cta3-icons)>:last-child{margin-bottom:0}.vc_general.vc_cta3 .vc_cta3-actions{vertical-align:middle;white-space:nowrap}@media (min-width:768px){.vc_general.vc_cta3 .vc_cta3-actions .vc_btn3-container{margin:0}}.vc_general.vc_cta3 .vc_cta3-icons{vertical-align:middle}.vc_general.vc_cta3 :is(h2,h4){margin-left:0;margin-right:0;margin-top:0}.vc_general.vc_cta3.vc_cta3-align-left .vc_cta3-content{text-align:left}.vc_general.vc_cta3.vc_cta3-align-right .vc_cta3-content{text-align:right}.vc_general.vc_cta3.vc_cta3-align-center .vc_cta3-content{text-align:center}.vc_general.vc_cta3.vc_cta3-align-justify .vc_cta3-content{text-align:justify}.vc_general.vc_cta3.vc_cta3-icons-top .vc_cta3_content-container{padding-top:1em}.vc_general.vc_cta3.vc_cta3-icons-top .vc_cta3-icons{text-align:center}.vc_general.vc_cta3.vc_cta3-icons-top .vc_cta3-icons .vc_icon_element{display:inline-block}.vc_general.vc_cta3.vc_cta3-icons-bottom .vc_cta3_content-container{padding-bottom:1em}.vc_general.vc_cta3.vc_cta3-icons-bottom .vc_cta3-icons{text-align:center}.vc_general.vc_cta3.vc_cta3-icons-bottom .vc_cta3-icons .vc_icon_element{display:inline-block}.vc_general.vc_cta3.vc_cta3-icons-left .vc_cta3-icons{display:table-cell}.vc_general.vc_cta3.vc_cta3-icons-left .vc_cta3_content-container{display:table-cell;padding-left:1em}.vc_general.vc_cta3.vc_cta3-icons-right .vc_cta3-icons{display:table-cell}.vc_general.vc_cta3.vc_cta3-icons-right .vc_cta3_content-container{display:table-cell;padding-right:1em}.vc_general.vc_cta3.vc_cta3-icons-on-border{position:relative}.vc_general.vc_cta3.vc_cta3-icons-on-border .vc_cta3-icons{position:absolute}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right .vc_cta3-icons{right:0;top:50%;transform:translate(50%,-50%)}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xs{margin-right:17px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xs .vc_cta3_content-container{padding-right:0}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container{padding-right:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-sm{margin-right:22px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-sm .vc_cta3_content-container{padding-right:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container{padding-right:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-md{margin-right:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-md .vc_cta3_content-container{padding-right:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container{padding-right:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-lg{margin-right:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-lg .vc_cta3_content-container{padding-right:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container{padding-right:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xl{margin-right:50px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xl .vc_cta3_content-container{padding-right:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container{padding-right:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left .vc_cta3-icons{left:0;top:50%;transform:translate(-50%,-50%)}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xs{margin-left:17px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xs .vc_cta3_content-container{padding-left:0}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container{padding-left:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-sm{margin-left:22px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-sm .vc_cta3_content-container{padding-left:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container{padding-left:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-md{margin-left:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-md .vc_cta3_content-container{padding-left:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container{padding-left:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-lg{margin-left:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-lg .vc_cta3_content-container{padding-left:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container{padding-left:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xl{margin-left:50px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xl .vc_cta3_content-container{padding-left:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container{padding-left:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top .vc_cta3-icons{left:50%;top:0;transform:translate(-50%,-50%)}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xs{margin-top:17px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xs .vc_cta3_content-container{padding-top:0}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container{padding-top:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-sm{margin-top:22px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-sm .vc_cta3_content-container{padding-top:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container{padding-top:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-md{margin-top:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-md .vc_cta3_content-container{padding-top:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container{padding-top:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-lg{margin-top:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-lg .vc_cta3_content-container{padding-top:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container{padding-top:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xl{margin-top:50px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xl .vc_cta3_content-container{padding-top:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container{padding-top:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom .vc_cta3-icons{bottom:0;left:50%;transform:translate(-50%,50%)}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xs{margin-bottom:17px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xs .vc_cta3_content-container{padding-bottom:0}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container{padding-bottom:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-sm{margin-bottom:22px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-sm .vc_cta3_content-container{padding-bottom:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container{padding-bottom:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-md{margin-bottom:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-md .vc_cta3_content-container{padding-bottom:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container{padding-bottom:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-lg{margin-bottom:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-lg .vc_cta3_content-container{padding-bottom:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container{padding-bottom:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xl{margin-bottom:50px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xl .vc_cta3_content-container{padding-bottom:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container{padding-bottom:35px}.vc_general.vc_cta3.vc_cta3-actions-top .vc_cta3-content{margin-top:1em}.vc_general.vc_cta3.vc_cta3-actions-bottom .vc_cta3-content{margin-bottom:1em}@media (min-width:768px){.vc_general.vc_cta3.vc_cta3-actions-left .vc_cta3-actions{display:table-cell;max-width:30%}.vc_general.vc_cta3.vc_cta3-actions-left .vc_cta3-content{display:table-cell;padding-left:28px}.vc_general.vc_cta3.vc_cta3-actions-right .vc_cta3-actions{display:table-cell;max-width:30%}.vc_general.vc_cta3.vc_cta3-actions-right .vc_cta3-content{display:table-cell;padding-right:28px;width:100%}}.vc_general.vc_cta3.vc_cta3-style-classic{background-color:#f7f7f7;border-color:#f0f0f0}.vc_general.vc_cta3.vc_cta3-style-classic:not(.vc_cta3-color-classic) .vc_cta3-content-header :is(h2,h4),.vc_general.vc_cta3.vc_cta3-style-flat .vc_cta3-content-header :is(h2,h4){color:inherit}.vc_general.vc_cta3.vc_cta3-style-outline{border-width:3px}.vc_general.vc_cta3.vc_cta3-style-3d .vc_cta3-content-header :is(h2,h4),.vc_general.vc_cta3.vc_cta3-style-outline:not(.vc_cta3-color-classic) .vc_cta3-content-header :is(h2,h4){color:inherit}.vc_general.vc_cta3.vc_cta3-style-custom{background-color:#f7f7f7;border-color:#f0f0f0}.vc_general.vc_cta3.vc_cta3-shape-square{border-radius:0}.vc_general.vc_cta3.vc_cta3-shape-rounded{border-radius:5px}.vc_general.vc_cta3.vc_cta3-shape-round{border-radius:4em}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-classic .vc_cta3-content-header{color:#5472d2}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-flat{background-color:#5472d2;border-color:#0000;color:#c9d2f0}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-3d{background-color:#5472d2;border-color:#0000;box-shadow:0 5px 0 #3253bc;color:#c9d2f0}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-outline{background-color:initial;border-color:#5472d2}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-outline .vc_cta3-content-header{color:#5472d2}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-classic .vc_cta3-content-header{color:#00c1cf}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-flat{background-color:#00c1cf;border-color:#0000;color:#d3f5f1}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-3d{background-color:#00c1cf;border-color:#0000;box-shadow:0 5px 0 #008d97;color:#d3f5f1}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-outline{background-color:initial;border-color:#00c1cf}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-outline .vc_cta3-content-header{color:#00c1cf}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-classic .vc_cta3-content-header{color:#fe6c61}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-flat{background-color:#fe6c61;border-color:#0000;color:#fcdbd7}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-3d{background-color:#fe6c61;border-color:#0000;box-shadow:0 5px 0 #fe3829;color:#fcdbd7}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-outline{background-color:initial;border-color:#fe6c61}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-outline .vc_cta3-content-header{color:#fe6c61}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-classic .vc_cta3-content-header{color:#8d6dc4}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-flat{background-color:#8d6dc4;border-color:#0000;color:#e1d5f5}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-3d{background-color:#8d6dc4;border-color:#0000;box-shadow:0 5px 0 #6e48b1;color:#e1d5f5}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-outline{background-color:initial;border-color:#8d6dc4}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-outline .vc_cta3-content-header{color:#8d6dc4}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-classic .vc_cta3-content-header{color:#4cadc9}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-flat{background-color:#4cadc9;border-color:#0000;color:#d0edf5}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-3d{background-color:#4cadc9;border-color:#0000;box-shadow:0 5px 0 #338faa;color:#d0edf5}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-outline{background-color:initial;border-color:#4cadc9}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-outline .vc_cta3-content-header{color:#4cadc9}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-classic .vc_cta3-content-header{color:#cec2ab}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-flat{background-color:#cec2ab;border-color:#0000;color:#f7f3eb}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-3d{background-color:#cec2ab;border-color:#0000;box-shadow:0 5px 0 #b9a888;color:#f7f3eb}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-outline{background-color:initial;border-color:#cec2ab}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-outline .vc_cta3-content-header{color:#cec2ab}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-classic .vc_cta3-content-header{color:#50485b}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-flat{background-color:#50485b;border-color:#0000;color:#e2ddeb}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-3d{background-color:#50485b;border-color:#0000;box-shadow:0 5px 0 #342f3c;color:#e2ddeb}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-outline{background-color:initial;border-color:#50485b}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-outline .vc_cta3-content-header{color:#50485b}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-classic .vc_cta3-content-header{color:#75d69c}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-flat{background-color:#75d69c;border-color:#0000;color:#e1f5e9}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-3d{background-color:#75d69c;border-color:#0000;box-shadow:0 5px 0 #4ac97d;color:#e1f5e9}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-outline{background-color:initial;border-color:#75d69c}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-outline .vc_cta3-content-header{color:#75d69c}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-classic .vc_cta3-content-header{color:#f7be68}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-flat{background-color:#f7be68;border-color:#0000;color:#faf0e1}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-3d{background-color:#f7be68;border-color:#0000;box-shadow:0 5px 0 #f4a733;color:#faf0e1}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-outline{background-color:initial;border-color:#f7be68}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-outline .vc_cta3-content-header{color:#f7be68}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-classic .vc_cta3-content-header{color:#5aa1e3}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-flat{background-color:#5aa1e3;border-color:#0000;color:#dce9f5}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-3d{background-color:#5aa1e3;border-color:#0000;box-shadow:0 5px 0 #2a86db;color:#dce9f5}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-outline{background-color:initial;border-color:#5aa1e3}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-outline .vc_cta3-content-header{color:#5aa1e3}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-classic .vc_cta3-content-header{color:#6dab3c}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-flat{background-color:#6dab3c;border-color:#0000;color:#e5f2da}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-3d{background-color:#6dab3c;border-color:#0000;box-shadow:0 5px 0 #53812d;color:#e5f2da}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-outline{background-color:initial;border-color:#6dab3c}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-outline .vc_cta3-content-header{color:#6dab3c}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-classic .vc_cta3-content-header{color:#f4524d}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-flat{background-color:#f4524d;border-color:#0000;color:#fce2e1}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-3d{background-color:#f4524d;border-color:#0000;box-shadow:0 5px 0 #f11f18;color:#fce2e1}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-outline{background-color:initial;border-color:#f4524d}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-outline .vc_cta3-content-header{color:#f4524d}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-classic .vc_cta3-content-header{color:#f79468}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-flat{background-color:#f79468;border-color:#0000;color:#f7e1d7}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-3d{background-color:#f79468;border-color:#0000;box-shadow:0 5px 0 #f46e33;color:#f7e1d7}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-outline{background-color:initial;border-color:#f79468}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-outline .vc_cta3-content-header{color:#f79468}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-classic .vc_cta3-content-header{color:#b97ebb}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-flat{background-color:#b97ebb;border-color:#0000;color:#f4dff5}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-3d{background-color:#b97ebb;border-color:#0000;box-shadow:0 5px 0 #a559a8;color:#f4dff5}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-outline{background-color:initial;border-color:#b97ebb}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-outline .vc_cta3-content-header{color:#b97ebb}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-classic .vc_cta3-content-header{color:#2a2a2a}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-flat{background-color:#2a2a2a;border-color:#0000;color:#d9d9d9}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-3d{background-color:#2a2a2a;border-color:#0000;box-shadow:0 5px 0 #0e0e0e;color:#d9d9d9}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-outline{background-color:initial;border-color:#2a2a2a}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-outline .vc_cta3-content-header{color:#2a2a2a}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-classic .vc_cta3-content-header{color:#ebebeb}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-flat{background-color:#ebebeb;border-color:#0000;color:#9d9d9e}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-flat .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-3d{background-color:#ebebeb;border-color:#0000;box-shadow:0 5px 0 #cfcfcf;color:#9d9d9e}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-3d .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-outline{background-color:initial;border-color:#ebebeb}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-outline .vc_cta3-content-header{color:#ebebeb}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-classic .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-flat{background-color:#fff;border-color:#0000;color:#9d9d9e}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-flat .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-3d{background-color:#fff;border-color:#0000;box-shadow:0 5px 0 #e3e3e3;color:#9d9d9e}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-3d .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-outline{background-color:initial;border-color:#fff}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-outline .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-flat{background-color:#f0f0f0;border-color:#0000;color:#9d9d9e}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-flat .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-3d{background-color:#f0f0f0;border-color:#0000;box-shadow:0 5px 0 #d4d4d4;color:#9d9d9e}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-3d .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-outline{background-color:initial;border-color:#f0f0f0}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-outline .vc_cta3-content-header{color:#f0f0f0}.vc_cta3.vc_cta3-icon-size-xs .vc_icon_element .vc_icon_element-inner{height:1em;width:1em}.vc_cta3.vc_cta3-icon-size-sm .vc_icon_element .vc_icon_element-inner{height:2em;width:2em}.vc_cta3.vc_cta3-icon-size-md .vc_icon_element .vc_icon_element-inner{height:3em;width:3em}.vc_cta3.vc_cta3-icon-size-lg .vc_icon_element .vc_icon_element-inner{height:4em;width:4em}.vc_cta3.vc_cta3-icon-size-xl .vc_icon_element .vc_icon_element-inner{height:5em;width:5em}.wpb_gmaps_widget .wpb_wrapper{background-color:#f7f7f7;padding:5px}.wpb_gmaps_widget .wpb_map_wraper iframe{border:none;display:block;margin-bottom:0;padding:0;width:100%}.wpb_gmaps_widget.vc_map_responsive .wpb_map_wraper{height:0;padding-bottom:56.25%;position:relative}.wpb_gmaps_widget.vc_map_responsive .wpb_map_wraper iframe{height:100%;left:0;position:absolute;top:0}.wpb_accordion_section .wpb_accordion_header a:focus,.wpb_content_element .wpb_tabs_nav li a:focus,.wpb_tour_next_prev_nav a:focus{outline:none}.wpb_content_element :is(.wpb_tabs_nav,.wpb_tour_tabs_wrapper){padding:0}.wpb_content_element .wpb_tabs_nav{margin:0;padding-left:0!important;text-indent:inherit!important}#content .wpb_content_element .wpb_tabs_nav{margin:0}.wpb_content_element .wpb_tabs_nav li{background-color:#fff;background-image:none;list-style:none!important;padding:0;white-space:nowrap}.wpb_content_element .wpb_tabs_nav li:after,.wpb_content_element .wpb_tabs_nav li:before{display:none!important}.wpb_content_element .wpb_tabs_nav :is(li.ui-tabs-active,li:hover){background-color:#f7f7f7}.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a{cursor:default}.wpb_content_element .wpb_tour_tabs_wrapper .wpb_ui-tabs-hide{display:none}.wpb_content_element .wpb_accordion_header a,.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a{border-bottom:none;display:block;padding:.5em 1em;text-decoration:none}.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_header,.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab{background-color:#f7f7f7}.wpb_content_element :is(.wpb_accordion_wrapper .wpb_accordion_content,.wpb_tour_tabs_wrapper .wpb_tab){padding:1em}.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content .wpb_row:last-child>div>div.wpb_wrapper .wpb_content_element:last-child,.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content>.wpb_content_element:last-child,.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab .wpb_row:last-child>div>div.wpb_wrapper .wpb_content_element:last-child,.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab>.wpb_content_element:last-child{margin-bottom:0}.wpb_tabs .wpb_tabs_nav li{float:left;margin:0 1px 0 0}.wpb_tour .wpb_tabs_nav{float:left;width:31.66666667%}.wpb_tour .wpb_tabs_nav li{clear:left;margin:0 0 1px;width:100%}.wpb_tour .wpb_tabs_nav a{width:100%}.wpb_tour .wpb_tour_tabs_wrapper .wpb_tab{border:none;box-sizing:border-box;float:left;padding:0 0 0 21.73913043px;width:68.33333333%}.wpb_tour_next_prev_nav{font-size:80%;margin-left:31.66666667%;padding-left:21.73913043px}.wpb_tour_next_prev_nav a{border-bottom:1px dotted;text-decoration:none}.wpb_tour_next_prev_nav a:hover{border-bottom:none;text-decoration:none}.wpb_tour_next_prev_nav span{display:inline-block;float:left;padding-top:1em;width:48%}.wpb_tour_next_prev_nav span.wpb_next_slide{float:right;text-align:right}.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header{font-family:inherit;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0 0 1px;padding-top:0;position:relative;text-transform:none}.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a{padding-left:1em}.wpb_accordion .wpb_accordion_wrapper :is(.ui-state-active,.ui-state-default) .ui-icon{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/toggle_open.png);background-repeat:no-repeat;display:block;height:16px;position:absolute;right:.7em;top:.7em;width:16px}.wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/toggle_close.png)}@media (max-width:480px){.vc_responsive .wpb_tour .wpb_tab,.vc_responsive .wpb_tour .wpb_tour_tabs_wrapper .wpb_tabs_nav,.vc_responsive .wpb_tour_next_prev_nav{float:none;margin-left:0;width:100%}.vc_responsive .wpb_tour_next_prev_nav{padding:0 1em;width:auto}.vc_responsive #content .wpb_tour .wpb_tour_tabs_wrapper .wpb_tabs_nav{margin-bottom:1em}.vc_responsive .wpb_tour .wpb_tab{padding-left:1em;padding-right:1em}}.wpb_column .wpb_wrapper .wpb_teaser_grid{float:none}body ul.wpb_thumbnails-fluid li{background-image:none;list-style:none!important;margin-left:0;padding:0}body ul.wpb_thumbnails-fluid li:after,body ul.wpb_thumbnails-fluid li:before{display:none!important}body ul.wpb_thumbnails-fluid li .entry-content :last-child{margin-bottom:0}.wpb_row :is(.wpb_filtered_grid,.wpb_grid) ul.wpb_thumbnails-fluid{overflow:visible!important;padding:0}.wpb_teaser_grid .entry-content{margin:0;padding:0;width:100%}.grid_layout-thumbnail .post-thumb{margin-bottom:0}.grid_layout-thumbnail .post-thumb img{max-width:100%}.wpb_carousel .wpb_wrapper{position:relative}.wpb_carousel :is(.next,.prev){background-color:#f7f7f7;font-size:12px;padding:0 6px;position:absolute;text-decoration:none;top:3px;transition:all .2s linear;transition:all .15s ease;z-index:10}.wpb_carousel :is(.next:hover,.prev:hover){background-color:#f0f0f0}.wpb_carousel :is(.next:focus,.prev:focus){outline:none;text-decoration:none}.wpb_carousel .prev{right:30px}.wpb_carousel .next{right:0}.wpb_carousel .wpb_thumbnails-fluid{width:100%}.wpb_carousel .wpb_thumbnails-fluid>[class*=vc_span]{height:auto!important}.wpb_categories_filter,.wpb_teaser_grid .categories_filter{list-style:none;list-style-type:none;margin:0 0 10px;padding:0}.wpb_categories_filter li,.wpb_teaser_grid .categories_filter li{background-image:none;display:block;float:left;list-style:none!important;margin:0 10px 10px 0}.wpb_categories_filter li:after,.wpb_categories_filter li:before,.wpb_teaser_grid .categories_filter li:after,.wpb_teaser_grid .categories_filter li:before{display:none!important}.wpb_categories_filter li a,.wpb_teaser_grid .categories_filter li a{border:none;text-decoration:none}.wpb_categories_filter li a:hover,.wpb_categories_filter li.active a,.wpb_teaser_grid .categories_filter li a:hover,.wpb_teaser_grid .categories_filter li.active a{border-bottom:1px dotted}@media (max-width:480px){.vc_responsive .wpb_row ul.wpb_thumbnails-fluid{margin-left:0;width:auto}.vc_responsive .wpb_row .wpb_teaser_grid ul.wpb_thumbnails-fluid [class*=vc_col-]{display:block;float:none;margin-left:0;margin-right:0;width:100%}}.wpb_image_grid .wpb_image_grid_ul{margin:0;padding:0}.wpb_image_grid .wpb_image_grid_ul>li{background-image:none;list-style:none!important}.wpb_image_grid .wpb_image_grid_ul>li:after,.wpb_image_grid .wpb_image_grid_ul>li:before{display:none!important}.wpb_image_grid .wpb_image_grid_ul .isotope-item{float:left;list-style:none;margin:0 1px 1px 0;max-width:100%}.wpb_image_grid .wpb_image_grid_ul a{display:block}.wpb_image_grid .wpb_image_grid_ul img{display:block;height:auto;max-width:100%}.wpb_gallery .theme-default .nivoSlider{margin-bottom:0}.wpb_gallery .theme-default .nivoSlider img{height:auto}.wpb_gallery .theme-default .nivo-controlNav{padding:10px 0 3px}.wpb_gallery .wpb_flexslider .flex-control-nav{bottom:auto;margin-top:15px;top:100%}.wpb_gallery .wpb_flexslider .flex-caption{cursor:default}.wpb_gallery .wpb_flexslider .flex-direction-nav a{border:none;box-shadow:none}.wpb_gallery .wpb_flexslider .flex-direction-nav a:hover{box-shadow:none}.wpb_gallery .wpb_flexslider .flex-direction-nav a:before{line-height:1}.wpb_gallery .wpb_flexslider .flex-control-paging{z-index:10}#content .wpb_gallery_slides ul.flex-direction-nav,#content .wpb_gallery_slides ul.slides,.content .wpb_gallery_slides ul.flex-direction-nav,.content .wpb_gallery_slides ul.slides,.wpb_content_element .wpb_gallery_slides ul li,.wpb_gallery_slides ul.flex-direction-nav,.wpb_gallery_slides ul.slides,body .wpb_gallery_slides ul li{background-image:none;list-style:none;margin:0;padding:0}.flickr_badge_image{background:none;float:left;height:72px;margin:0 10px 10px 0;padding:0;width:72px}.flickr_badge_image a{border:none}.flickr_badge_image img{height:100%;margin:0;max-height:100%;max-width:100%;object-fit:cover;overflow:hidden;position:relative;width:100%}.wpb_flickr_widget p.flickr_stream_wrap{clear:both;font-size:80%;margin-bottom:0}.wpb_flickr_widget p.flickr_stream_wrap a{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/flickr.png);background-position:0;background-repeat:no-repeat;display:inline-block;padding-left:25px}.wpb_video_widget .wpb_video_wrapper{padding-top:56.25%;position:relative;width:100%}.wpb_video_widget .wpb_video_wrapper>div{padding-top:0!important;position:static}.wpb_video_widget.vc_video-aspect-ratio-169 .wpb_video_wrapper{padding-top:56.25%}.wpb_video_widget.vc_video-aspect-ratio-43 .wpb_video_wrapper{padding-top:75%}.wpb_video_widget.vc_video-aspect-ratio-235 .wpb_video_wrapper{padding-top:42.55319149%}.wpb_video_widget.vc_video-aspect-ratio-916 .wpb_video_wrapper{padding-top:177.77777778%}.wpb_video_widget.vc_video-aspect-ratio-34 .wpb_video_wrapper{padding-top:133.33333333%}.wpb_video_widget.vc_video-aspect-ratio-1235 .wpb_video_wrapper{padding-top:235%}.wpb_video_widget.vc_video-align-left .wpb_wrapper{float:left}.wpb_video_widget.vc_video-align-center .wpb_wrapper{margin:0 auto}.wpb_video_widget.vc_video-align-right .wpb_wrapper{float:right}.wpb_video_widget .wpb_wrapper{position:relative}.wpb_video_widget .wpb_wrapper iframe{box-sizing:border-box;display:block;height:100%;left:0;margin:0;position:absolute;top:0;width:100%}.wpb_video_wrapper .fluid-width-video-wrapper{padding-top:0!important;position:static}.wpb_posts_slider :is(.flex-caption,.nivo-caption){background-color:#f7f7f7;color:inherit;filter:alpha(opacity=100);opacity:1;padding:10px 15px;position:static}.wpb_posts_slider .wpb_gallery_slides>ul>li{background-image:none;list-style:none!important}.wpb_posts_slider .wpb_gallery_slides>ul>li:after,.wpb_posts_slider .wpb_gallery_slides>ul>li:before{display:none!important}.vc_progress_bar .vc_single_bar{background:#f7f7f7;border-radius:3px;box-shadow:inset 0 1px 2px #0000001a;margin-bottom:11.66666667px;position:relative}.vc_progress_bar .vc_single_bar:last-child{margin-bottom:0}.vc_progress_bar .vc_single_bar .vc_label{display:block;padding:.5em 1em;position:relative;z-index:1}.vc_progress_bar .vc_single_bar .vc_bar{background-color:#e0e0e0;border-radius:3px;display:block;height:100%;left:0;position:absolute;top:0;transition:width 1s linear;-moz-transition:width 1s linear;-webkit-transition:width 1s linear;-o-transition:width 1s linear;width:0}.vc_progress_bar .vc_single_bar .vc_bar.striped{background-image:linear-gradient(45deg,#ffffff26 25%,#0000 0,#0000 50%,#ffffff26 0,#ffffff26 75%,#0000 0,#0000);background-size:40px 40px}.vc_progress_bar .vc_single_bar .vc_bar.animated{animation:progress-bar-stripes 2s linear infinite}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}.vc_pie_chart{filter:alpha(opacity=0);opacity:0;text-align:center;z-index:0}.vc_pie_chart.vc_ready{filter:alpha(opacity=100);opacity:1}.vc_pie_chart .vc_pie_wrapper{margin:0 auto;position:relative}.vc_pie_chart canvas{position:relative;z-index:1}.vc_pie_chart .vc_pie_chart_value{font-size:200%;text-align:center}.vc_pie_chart .vc_pie_chart_value,.vc_pie_chart_back{display:block;height:100%;left:0;position:absolute;top:0;width:100%}.vc_pie_chart_back{border:6px solid #f7f7f7;border-radius:999px;border-radius:50%;box-sizing:border-box;filter:alpha(opacity=30);opacity:.3}.vc_images_carousel .vc_carousel-control{border:none}.vc_carousel .vc_carousel-control{border:none;text-shadow:none;transition:all .2s linear;transition:all .15s ease}.vc_carousel :is(.vc_carousel-control:active,.vc_carousel-control:focus){outline:none}.vc_carousel .vc_carousel-indicators li{border-color:#f7f7f7;height:5px;margin:0;transition:all .2s linear;transition:all .15s ease;width:5px}.vc_separator{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap}.vc_separator h4{font-size:100%;line-height:1em;margin:0;word-wrap:break-word;flex:0 1 auto}.vc_separator h4 .normal{font-size:12px;font-weight:400}.vc_separator .vc_sep_holder{flex:1 1 auto;height:1px;min-width:10%;position:relative}.vc_separator .vc_sep_holder .vc_sep_line{border-top:1px solid #ebebeb;display:block;height:1px;position:relative;top:1px;width:100%}.vc_separator.vc_separator_align_center h4{padding:0 .8em}.vc_separator.vc_separator_align_left h4{padding:0 .8em 0 0}.vc_separator.vc_separator_align_left .vc_sep_holder.vc_sep_holder_l{display:none}.vc_separator.vc_separator_align_right h4{margin:0!important;padding:0 0 0 .8em}.vc_separator.vc_separator_align_right .vc_sep_holder.vc_sep_holder_r{display:none}.vc_separator.vc_sep_double{height:3px}.vc_separator.vc_sep_double .vc_sep_line{border-bottom:1px solid #ebebeb;border-top:1px solid #ebebeb;height:3px}.vc_separator.vc_sep_dashed .vc_sep_line{border-top-style:dashed}.vc_separator.vc_sep_dotted .vc_sep_line{border-top-style:dotted}.vc_separator.vc_sep_shadow .vc_sep_line{border:none;height:20px;overflow:hidden;position:relative;top:0}.vc_separator.vc_sep_shadow .vc_sep_line:after{border-radius:100%;content:"";display:block;height:10px;left:0;position:absolute;right:0;top:-20px}.vc_separator.vc_sep_shadow .vc_sep_holder_l .vc_sep_line:after{box-shadow:10px 10px 10px 1px;right:-100%}.vc_separator.vc_sep_shadow .vc_sep_holder_r .vc_sep_line:after{box-shadow:-10px 10px 10px 1px;left:-100%}.vc_separator.vc_separator_no_text:not(.vc_sep_shadow) .vc_sep_holder_l{width:100%}.vc_separator.vc_separator_no_text:not(.vc_sep_shadow) .vc_sep_holder_r{display:none}.vc_separator .vc_icon_element{margin-bottom:0}.vc_separator .vc_icon_element:not(.vc_icon_element-have-style)+h4{padding-left:0}.vc_separator .vc_icon_element:not(.vc_icon_element-have-style) .vc_icon_element-size-xl{margin-left:.8em;margin-right:.8em}:is(.vc_separator.vc_separator-has-text.vc_separator_align_center,.vc_separator.vc_separator-has-text.vc_separator_align_right) .vc_icon_element.vc_icon_element-have-style{margin-left:.8em}.vc_separator.vc_separator_align_left .vc_icon_element.vc_icon_element-have-style+h4{padding-left:.8em}.vc_separator.vc_sep_border_width_1 .vc_sep_holder .vc_sep_line{border-top-width:1px}.vc_separator.vc_sep_border_width_1.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:1px;top:0}.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_line{top:0}.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_holder_l .vc_sep_line:after{box-shadow:10px 10px 10px 1px}.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_holder_r .vc_sep_line:after{box-shadow:-10px 10px 10px 1px}.vc_separator.vc_sep_border_width_2 .vc_sep_holder .vc_sep_line{border-top-width:2px}.vc_separator.vc_sep_border_width_2.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:2px;top:-1px}.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_line{top:-1px}.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_holder_l .vc_sep_line:after{box-shadow:10px 10px 10px 2px}.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_holder_r .vc_sep_line:after{box-shadow:-10px 10px 10px 2px}.vc_separator.vc_sep_border_width_3 .vc_sep_holder .vc_sep_line{border-top-width:3px}.vc_separator.vc_sep_border_width_3.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:3px;top:-1px}.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_line{top:-1px}.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_holder_l .vc_sep_line:after{box-shadow:10px 10px 10px 3px}.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_holder_r .vc_sep_line:after{box-shadow:-10px 10px 10px 3px}.vc_separator.vc_sep_border_width_4 .vc_sep_holder .vc_sep_line{border-top-width:4px}.vc_separator.vc_sep_border_width_4.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:4px;top:-2px}.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_line{top:-2px}.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_holder_l .vc_sep_line:after{box-shadow:10px 10px 10px 4px}.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_holder_r .vc_sep_line:after{box-shadow:-10px 10px 10px 4px}.vc_separator.vc_sep_border_width_5 .vc_sep_holder .vc_sep_line{border-top-width:5px}.vc_separator.vc_sep_border_width_5.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:5px;top:-2px}.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_line{top:-2px}.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_holder_l .vc_sep_line:after{box-shadow:10px 10px 10px 5px}.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_holder_r .vc_sep_line:after{box-shadow:-10px 10px 10px 5px}.vc_separator.vc_sep_border_width_6 .vc_sep_holder .vc_sep_line{border-top-width:6px}.vc_separator.vc_sep_border_width_6.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:6px;top:-3px}.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_line{top:-3px}.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_holder_l .vc_sep_line:after{box-shadow:10px 10px 10px 6px}.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_holder_r .vc_sep_line:after{box-shadow:-10px 10px 10px 6px}.vc_separator.vc_sep_border_width_7 .vc_sep_holder .vc_sep_line{border-top-width:7px}.vc_separator.vc_sep_border_width_7.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:7px;top:-3px}.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_line{top:-3px}.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_holder_l .vc_sep_line:after{box-shadow:10px 10px 10px 7px}.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_holder_r .vc_sep_line:after{box-shadow:-10px 10px 10px 7px}.vc_separator.vc_sep_border_width_8 .vc_sep_holder .vc_sep_line{border-top-width:8px}.vc_separator.vc_sep_border_width_8.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:8px;top:-4px}.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_line{top:-4px}.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_holder_l .vc_sep_line:after{box-shadow:10px 10px 10px 8px}.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_holder_r .vc_sep_line:after{box-shadow:-10px 10px 10px 8px}.vc_separator.vc_sep_border_width_9 .vc_sep_holder .vc_sep_line{border-top-width:9px}.vc_separator.vc_sep_border_width_9.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:9px;top:-4px}.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_line{top:-4px}.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_holder_l .vc_sep_line:after{box-shadow:10px 10px 10px 9px}.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_holder_r .vc_sep_line:after{box-shadow:-10px 10px 10px 9px}.vc_separator.vc_sep_border_width_10 .vc_sep_holder .vc_sep_line{border-top-width:10px}.vc_separator.vc_sep_border_width_10.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:10px;top:-5px}.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_line{top:-5px}.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_holder_l .vc_sep_line:after{box-shadow:10px 10px 10px 10px}.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_holder_r .vc_sep_line:after{box-shadow:-10px 10px 10px 10px}.vc_separator.vc_sep_color_blue .vc_sep_line{border-color:#5472d2}.vc_separator.vc_sep_color_blue.vc_sep_shadow .vc_sep_holder{color:#5472d2}.vc_separator.vc_sep_color_turquoise .vc_sep_line{border-color:#00c1cf}.vc_separator.vc_sep_color_turquoise.vc_sep_shadow .vc_sep_holder{color:#00c1cf}.vc_separator.vc_sep_color_pink .vc_sep_line{border-color:#fe6c61}.vc_separator.vc_sep_color_pink.vc_sep_shadow .vc_sep_holder{color:#fe6c61}.vc_separator.vc_sep_color_violet .vc_sep_line{border-color:#8d6dc4}.vc_separator.vc_sep_color_violet.vc_sep_shadow .vc_sep_holder{color:#8d6dc4}.vc_separator.vc_sep_color_peacoc .vc_sep_line{border-color:#4cadc9}.vc_separator.vc_sep_color_peacoc.vc_sep_shadow .vc_sep_holder{color:#4cadc9}.vc_separator.vc_sep_color_chino .vc_sep_line{border-color:#cec2ab}.vc_separator.vc_sep_color_chino.vc_sep_shadow .vc_sep_holder{color:#cec2ab}.vc_separator.vc_sep_color_mulled_wine .vc_sep_line{border-color:#50485b}.vc_separator.vc_sep_color_mulled_wine.vc_sep_shadow .vc_sep_holder{color:#50485b}.vc_separator.vc_sep_color_vista_blue .vc_sep_line{border-color:#75d69c}.vc_separator.vc_sep_color_vista_blue.vc_sep_shadow .vc_sep_holder{color:#75d69c}.vc_separator.vc_sep_color_black .vc_sep_line{border-color:#2a2a2a}.vc_separator.vc_sep_color_black.vc_sep_shadow .vc_sep_holder{color:#2a2a2a}.vc_separator.vc_sep_color_grey .vc_sep_line{border-color:#ebebeb}.vc_separator.vc_sep_color_grey.vc_sep_shadow .vc_sep_holder{color:#ebebeb}.vc_separator.vc_sep_color_orange .vc_sep_line{border-color:#f7be68}.vc_separator.vc_sep_color_orange.vc_sep_shadow .vc_sep_holder{color:#f7be68}.vc_separator.vc_sep_color_sky .vc_sep_line{border-color:#5aa1e3}.vc_separator.vc_sep_color_sky.vc_sep_shadow .vc_sep_holder{color:#5aa1e3}.vc_separator.vc_sep_color_green .vc_sep_line{border-color:#6dab3c}.vc_separator.vc_sep_color_green.vc_sep_shadow .vc_sep_holder{color:#6dab3c}.vc_separator.vc_sep_color_juicy_pink .vc_sep_line{border-color:#f4524d}.vc_separator.vc_sep_color_juicy_pink.vc_sep_shadow .vc_sep_holder{color:#f4524d}.vc_separator.vc_sep_color_sandy_brown .vc_sep_line{border-color:#f79468}.vc_separator.vc_sep_color_sandy_brown.vc_sep_shadow .vc_sep_holder{color:#f79468}.vc_separator.vc_sep_color_purple .vc_sep_line{border-color:#b97ebb}.vc_separator.vc_sep_color_purple.vc_sep_shadow .vc_sep_holder{color:#b97ebb}.vc_separator.vc_sep_color_white .vc_sep_line{border-color:#fff}.vc_separator.vc_sep_color_white.vc_sep_shadow .vc_sep_holder{color:#fff}.vc_text_separator,.wpb_separator{border-bottom:1px solid #ebebeb}.vc_sep_pos_align_center{margin-left:auto;margin-right:auto}.vc_sep_pos_align_left{margin-left:0;margin-right:auto}.vc_sep_pos_align_right{margin-left:auto;margin-right:0}.vc_text_separator,.wpb_separator{clear:both;height:1px}.vc_text_separator div{background-color:#fff;display:inline-block;padding:1px 1em;position:relative;top:-9px}.separator_align_center{text-align:center}.separator_align_left{text-align:left}.separator_align_right{text-align:right}.vc-zigzag-wrapper{text-align:center}.vc-zigzag-wrapper.vc-zigzag-align-left{text-align:left}.vc-zigzag-wrapper.vc-zigzag-align-right{text-align:right}.vc-zigzag-inner{display:inline-block}.wpb_single_image a{border:none;outline:none}.wpb_single_image img{height:auto;max-width:100%;vertical-align:top}.wpb_single_image img.vc_img-placeholder{width:100%}.wpb_single_image .vc_single_image-wrapper{display:inline-block;max-width:100%;vertical-align:top}.wpb_single_image .vc_single_image-wrapper.vc_box_rounded,.wpb_single_image .vc_single_image-wrapper.vc_box_rounded img{border-radius:4px;box-shadow:none}.wpb_single_image :is(.vc_single_image-wrapper.vc_box_outline,.vc_single_image-wrapper.vc_box_outline_circle){border:1px solid #ebebeb;border-radius:0;box-shadow:none;padding:6px}.wpb_single_image :is(.vc_single_image-wrapper.vc_box_outline,.vc_single_image-wrapper.vc_box_outline_circle) img{border:1px solid #ebebeb;border-radius:0;box-shadow:none}.wpb_single_image :is(.vc_single_image-wrapper.vc_box_border,.vc_single_image-wrapper.vc_box_border_circle){border:none;border-radius:0;box-shadow:none;padding:6px}.wpb_single_image :is(.vc_single_image-wrapper.vc_box_border,.vc_single_image-wrapper.vc_box_border_circle) img{border:none;border-radius:0;box-shadow:none}.wpb_single_image :is(.vc_single_image-wrapper.vc_box_shadow,.vc_single_image-wrapper.vc_box_shadow_border,.vc_single_image-wrapper.vc_box_shadow_border_circle,.vc_single_image-wrapper.vc_box_shadow_circle),.wpb_single_image :is(.vc_single_image-wrapper.vc_box_shadow,.vc_single_image-wrapper.vc_box_shadow_border,.vc_single_image-wrapper.vc_box_shadow_border_circle,.vc_single_image-wrapper.vc_box_shadow_circle) img{border-radius:0;box-shadow:0 0 5px #0000001a}.wpb_single_image :is(.vc_single_image-wrapper.vc_box_shadow_border,.vc_single_image-wrapper.vc_box_shadow_border_circle){padding:6px}.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_3d{border-radius:0;box-shadow:none;margin-bottom:15px}.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_3d img{border-radius:0;box-shadow:none}.wpb_single_image :is(.vc_single_image-wrapper.vc_box_border_circle,.vc_single_image-wrapper.vc_box_circle,.vc_single_image-wrapper.vc_box_outline_circle,.vc_single_image-wrapper.vc_box_shadow_border_circle,.vc_single_image-wrapper.vc_box_shadow_circle),.wpb_single_image :is(.vc_single_image-wrapper.vc_box_border_circle,.vc_single_image-wrapper.vc_box_circle,.vc_single_image-wrapper.vc_box_outline_circle,.vc_single_image-wrapper.vc_box_shadow_border_circle,.vc_single_image-wrapper.vc_box_shadow_circle) img{border-radius:50%;box-shadow:none;overflow:hidden}.wpb_single_image :is(.vc_single_image-wrapper.vc_box_shadow_border_circle,.vc_single_image-wrapper.vc_box_shadow_circle),.wpb_single_image :is(.vc_single_image-wrapper.vc_box_shadow_border_circle,.vc_single_image-wrapper.vc_box_shadow_circle) img{box-shadow:0 0 5px #0000001a}.wpb_single_image.vc_align_center{text-align:center}.wpb_single_image.vc_align_right{text-align:right}.wpb_single_image.vc_align_left{text-align:left}.wpb_single_image .vc_box_shadow_3d{display:inline-block;max-width:100%;position:relative;z-index:0}.wpb_single_image .vc_box_shadow_3d:after,.wpb_single_image .vc_box_shadow_3d:before{border-radius:inherit;bottom:8px;box-shadow:0 15px 10px #0009;content:"";height:30%;left:5px;position:absolute;right:50%;transform:skewY(-6deg);transform-origin:0 0;z-index:-1}.wpb_single_image .vc_box_shadow_3d:after{left:50%;right:5px;transform:skewY(6deg);transform-origin:100% 0}.wpb_single_image .vc_figure{display:inline-block;margin:0;max-width:100%;vertical-align:top}.wpb_single_image .vc_figure-caption{font-size:.8em;margin-top:.2em}.wpb_single_image :is(.vc_box_outline.vc_box_border_blue,.vc_box_outline_circle.vc_box_border_blue){border-color:#5472d2}.wpb_single_image :is(.vc_box_border.vc_box_border_blue,.vc_box_border_circle.vc_box_border_blue){background-color:#5472d2}.wpb_single_image :is(.vc_box_outline.vc_box_border_turquoise,.vc_box_outline_circle.vc_box_border_turquoise){border-color:#00c1cf}.wpb_single_image :is(.vc_box_border.vc_box_border_turquoise,.vc_box_border_circle.vc_box_border_turquoise){background-color:#00c1cf}.wpb_single_image :is(.vc_box_outline.vc_box_border_pink,.vc_box_outline_circle.vc_box_border_pink){border-color:#fe6c61}.wpb_single_image :is(.vc_box_border.vc_box_border_pink,.vc_box_border_circle.vc_box_border_pink){background-color:#fe6c61}.wpb_single_image :is(.vc_box_outline.vc_box_border_violet,.vc_box_outline_circle.vc_box_border_violet){border-color:#8d6dc4}.wpb_single_image :is(.vc_box_border.vc_box_border_violet,.vc_box_border_circle.vc_box_border_violet){background-color:#8d6dc4}.wpb_single_image :is(.vc_box_outline.vc_box_border_peacoc,.vc_box_outline_circle.vc_box_border_peacoc){border-color:#4cadc9}.wpb_single_image :is(.vc_box_border.vc_box_border_peacoc,.vc_box_border_circle.vc_box_border_peacoc){background-color:#4cadc9}.wpb_single_image :is(.vc_box_outline.vc_box_border_chino,.vc_box_outline_circle.vc_box_border_chino){border-color:#cec2ab}.wpb_single_image :is(.vc_box_border.vc_box_border_chino,.vc_box_border_circle.vc_box_border_chino){background-color:#cec2ab}.wpb_single_image :is(.vc_box_outline.vc_box_border_mulled_wine,.vc_box_outline_circle.vc_box_border_mulled_wine){border-color:#50485b}.wpb_single_image :is(.vc_box_border.vc_box_border_mulled_wine,.vc_box_border_circle.vc_box_border_mulled_wine){background-color:#50485b}.wpb_single_image :is(.vc_box_outline.vc_box_border_vista_blue,.vc_box_outline_circle.vc_box_border_vista_blue){border-color:#75d69c}.wpb_single_image :is(.vc_box_border.vc_box_border_vista_blue,.vc_box_border_circle.vc_box_border_vista_blue){background-color:#75d69c}.wpb_single_image :is(.vc_box_outline.vc_box_border_black,.vc_box_outline_circle.vc_box_border_black){border-color:#2a2a2a}.wpb_single_image :is(.vc_box_border.vc_box_border_black,.vc_box_border_circle.vc_box_border_black){background-color:#2a2a2a}.wpb_single_image :is(.vc_box_outline.vc_box_border_grey,.vc_box_outline_circle.vc_box_border_grey){border-color:#ebebeb}.wpb_single_image :is(.vc_box_border.vc_box_border_grey,.vc_box_border_circle.vc_box_border_grey){background-color:#ebebeb}.wpb_single_image :is(.vc_box_outline.vc_box_border_orange,.vc_box_outline_circle.vc_box_border_orange){border-color:#f7be68}.wpb_single_image :is(.vc_box_border.vc_box_border_orange,.vc_box_border_circle.vc_box_border_orange){background-color:#f7be68}.wpb_single_image :is(.vc_box_outline.vc_box_border_sky,.vc_box_outline_circle.vc_box_border_sky){border-color:#5aa1e3}.wpb_single_image :is(.vc_box_border.vc_box_border_sky,.vc_box_border_circle.vc_box_border_sky){background-color:#5aa1e3}.wpb_single_image :is(.vc_box_outline.vc_box_border_green,.vc_box_outline_circle.vc_box_border_green){border-color:#6dab3c}.wpb_single_image :is(.vc_box_border.vc_box_border_green,.vc_box_border_circle.vc_box_border_green){background-color:#6dab3c}.wpb_single_image :is(.vc_box_outline.vc_box_border_juicy_pink,.vc_box_outline_circle.vc_box_border_juicy_pink){border-color:#f4524d}.wpb_single_image :is(.vc_box_border.vc_box_border_juicy_pink,.vc_box_border_circle.vc_box_border_juicy_pink){background-color:#f4524d}.wpb_single_image :is(.vc_box_outline.vc_box_border_sandy_brown,.vc_box_outline_circle.vc_box_border_sandy_brown){border-color:#f79468}.wpb_single_image :is(.vc_box_border.vc_box_border_sandy_brown,.vc_box_border_circle.vc_box_border_sandy_brown){background-color:#f79468}.wpb_single_image :is(.vc_box_outline.vc_box_border_purple,.vc_box_outline_circle.vc_box_border_purple){border-color:#b97ebb}.wpb_single_image :is(.vc_box_border.vc_box_border_purple,.vc_box_border_circle.vc_box_border_purple){background-color:#b97ebb}.wpb_single_image :is(.vc_box_outline.vc_box_border_white,.vc_box_outline_circle.vc_box_border_white){border-color:#fff}.wpb_single_image :is(.vc_box_border.vc_box_border_white,.vc_box_border_circle.vc_box_border_white){background-color:#fff}.vc_icon_element{font-size:14px;line-height:0;margin-bottom:35px}.vc_icon_element.vc_icon_element-outer{box-sizing:border-box;text-align:center}.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-left{text-align:left}.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-center{text-align:center}.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-right{text-align:right}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner{border:2px solid #0000;box-sizing:initial;display:inline-block;height:4em;position:relative;text-align:center;width:4em}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon{display:inline-block;font-feature-settings:normal;font-kerning:auto;font-language-override:normal;font-size:2.15em;font-size-adjust:none;font-stretch:normal;font-style:normal;font-synthesis:weight style;font-variant:normal;left:50%;line-height:1!important;position:absolute;text-rendering:auto;top:50%;transform:translate(-50%,-50%)}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon:before{display:inline-block;font-size:1em;font-style:normal;height:inherit;text-align:center;text-decoration:inherit;text-rendering:optimizelegibility;width:inherit}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner :is(.vc_gitem-link,.vc_icon_element-link){border:none;box-sizing:initial;display:block;height:100%;position:absolute;top:0;width:100%}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs{line-height:1.2em!important;max-width:100%!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs.vc_icon_element-have-style-inner{height:2.5em!important;width:2.5em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs .vc_icon_element-icon{font-size:1.2em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm{line-height:1.6em!important;max-width:100%!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm.vc_icon_element-have-style-inner{height:3.15em!important;width:3.15em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm .vc_icon_element-icon{font-size:1.6em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md{line-height:2.15em!important;max-width:100%!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md.vc_icon_element-have-style-inner{height:4em!important;width:4em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md .vc_icon_element-icon{font-size:2.15em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg{line-height:2.85em!important;max-width:100%!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg.vc_icon_element-have-style-inner{height:5em!important;width:5em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg .vc_icon_element-icon{font-size:2.85em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl{line-height:5em!important;max-width:100%!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl.vc_icon_element-have-style-inner{height:7.15em!important;width:7.15em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl .vc_icon_element-icon{font-size:5em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded :is(.vc_gitem-link,.vc_icon_element-link),.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-outline,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-outline :is(.vc_gitem-link,.vc_icon_element-link){border-radius:50%}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less :is(.vc_gitem-link,.vc_icon_element-link),.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less-outline,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less-outline :is(.vc_gitem-link,.vc_icon_element-link){border-radius:5px}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-blue .vc_icon_element-icon{color:#5472d2}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-turquoise .vc_icon_element-icon{color:#00c1cf}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-pink .vc_icon_element-icon{color:#fe6c61}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-violet .vc_icon_element-icon{color:#8d6dc4}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-peacoc .vc_icon_element-icon{color:#4cadc9}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-chino .vc_icon_element-icon{color:#cec2ab}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-mulled_wine .vc_icon_element-icon{color:#50485b}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-vista_blue .vc_icon_element-icon{color:#75d69c}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-black .vc_icon_element-icon{color:#2a2a2a}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-grey .vc_icon_element-icon{color:#ebebeb}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-orange .vc_icon_element-icon{color:#f7be68}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-sky .vc_icon_element-icon{color:#5aa1e3}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-green .vc_icon_element-icon{color:#6dab3c}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-juicy_pink .vc_icon_element-icon{color:#f4524d}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-sandy_brown .vc_icon_element-icon{color:#f79468}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-purple .vc_icon_element-icon{color:#b97ebb}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-white .vc_icon_element-icon{color:#fff}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-blue.vc_icon_element-outline{border-color:#5472d2}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-blue.vc_icon_element-background{background-color:#5472d2}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-turquoise.vc_icon_element-outline{border-color:#00c1cf}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-turquoise.vc_icon_element-background{background-color:#00c1cf}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-pink.vc_icon_element-outline{border-color:#fe6c61}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-pink.vc_icon_element-background{background-color:#fe6c61}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-violet.vc_icon_element-outline{border-color:#8d6dc4}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-violet.vc_icon_element-background{background-color:#8d6dc4}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-peacoc.vc_icon_element-outline{border-color:#4cadc9}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-peacoc.vc_icon_element-background{background-color:#4cadc9}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-chino.vc_icon_element-outline{border-color:#cec2ab}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-chino.vc_icon_element-background{background-color:#cec2ab}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-mulled_wine.vc_icon_element-outline{border-color:#50485b}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-mulled_wine.vc_icon_element-background{background-color:#50485b}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-vista_blue.vc_icon_element-outline{border-color:#75d69c}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-vista_blue.vc_icon_element-background{background-color:#75d69c}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-black.vc_icon_element-outline{border-color:#2a2a2a}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-black.vc_icon_element-background{background-color:#2a2a2a}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-grey.vc_icon_element-outline{border-color:#ebebeb}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-grey.vc_icon_element-background{background-color:#ebebeb}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-orange.vc_icon_element-outline{border-color:#f7be68}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-orange.vc_icon_element-background{background-color:#f7be68}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sky.vc_icon_element-outline{border-color:#5aa1e3}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sky.vc_icon_element-background{background-color:#5aa1e3}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-green.vc_icon_element-outline{border-color:#6dab3c}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-green.vc_icon_element-background{background-color:#6dab3c}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-juicy_pink.vc_icon_element-outline{border-color:#f4524d}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-juicy_pink.vc_icon_element-background{background-color:#f4524d}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sandy_brown.vc_icon_element-outline{border-color:#f79468}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sandy_brown.vc_icon_element-background{background-color:#f79468}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-purple.vc_icon_element-outline{border-color:#b97ebb}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-purple.vc_icon_element-background{background-color:#b97ebb}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-outline{border-color:#fff}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-background{background-color:#fff}.wpb_single_image .wpb_wrapper .vc_single_image-wrapper .zoomImg{border-radius:0}.wpb_single_image [class*=_circle] .vc-zoom-wrapper{border-radius:50%}.wpb_single_image [class*=_rounded] .vc-zoom-wrapper{border-radius:4px}.vc_general.vc_pagination{display:block;margin:0;padding:0;text-align:center}.vc_general.vc_pagination .vc_pagination-item{display:inline-block;margin:0;padding:0;vertical-align:middle}.vc_general.vc_pagination .vc_pagination-trigger{background:#0000;border:none;cursor:pointer;display:block;height:10px;margin:5px 7px;text-decoration:none;transition:all .2s ease-in-out;width:10px}.vc_general.vc_pagination .vc_pagination-trigger:focus{outline:none}.vc_general.vc_pagination .vc_active .vc_pagination-trigger{cursor:default}.vc_pagination.vc_pagination-style-outline .vc_pagination-trigger{border:3px solid #0000}.vc_pagination.vc_pagination-style-flat .vc_pagination-trigger{opacity:.6}.vc_pagination.vc_pagination-style-flat .vc_active .vc_pagination-trigger,.vc_pagination.vc_pagination-style-flat .vc_pagination-trigger:hover{opacity:1}.vc_pagination.vc_pagination-shape-round .vc_pagination-trigger{border-radius:50%}.vc_pagination.vc_pagination-shape-rounded .vc_pagination-trigger{border-radius:3px}.vc_pagination-color-blue.vc_pagination-style-outline .vc_pagination-trigger{border-color:#5472d2}.vc_pagination-color-blue.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-blue.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-blue.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#5472d2}.vc_pagination-color-turquoise.vc_pagination-style-outline .vc_pagination-trigger{border-color:#00c1cf}.vc_pagination-color-turquoise.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-turquoise.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-turquoise.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#00c1cf}.vc_pagination-color-pink.vc_pagination-style-outline .vc_pagination-trigger{border-color:#fe6c61}.vc_pagination-color-pink.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-pink.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-pink.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#fe6c61}.vc_pagination-color-violet.vc_pagination-style-outline .vc_pagination-trigger{border-color:#8d6dc4}.vc_pagination-color-violet.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-violet.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-violet.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#8d6dc4}.vc_pagination-color-peacoc.vc_pagination-style-outline .vc_pagination-trigger{border-color:#4cadc9}.vc_pagination-color-peacoc.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-peacoc.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-peacoc.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#4cadc9}.vc_pagination-color-chino.vc_pagination-style-outline .vc_pagination-trigger{border-color:#cec2ab}.vc_pagination-color-chino.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-chino.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-chino.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#cec2ab}.vc_pagination-color-mulled-wine.vc_pagination-style-outline .vc_pagination-trigger{border-color:#50485b}.vc_pagination-color-mulled-wine.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-mulled-wine.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-mulled-wine.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#50485b}.vc_pagination-color-vista-blue.vc_pagination-style-outline .vc_pagination-trigger{border-color:#75d69c}.vc_pagination-color-vista-blue.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-vista-blue.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-vista-blue.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#75d69c}.vc_pagination-color-orange.vc_pagination-style-outline .vc_pagination-trigger{border-color:#f7be68}.vc_pagination-color-orange.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-orange.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-orange.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#f7be68}.vc_pagination-color-sky.vc_pagination-style-outline .vc_pagination-trigger{border-color:#5aa1e3}.vc_pagination-color-sky.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-sky.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-sky.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#5aa1e3}.vc_pagination-color-green.vc_pagination-style-outline .vc_pagination-trigger{border-color:#6dab3c}.vc_pagination-color-green.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-green.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-green.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#6dab3c}.vc_pagination-color-juicy-pink.vc_pagination-style-outline .vc_pagination-trigger{border-color:#f4524d}.vc_pagination-color-juicy-pink.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-juicy-pink.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-juicy-pink.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#f4524d}.vc_pagination-color-sandy-brown.vc_pagination-style-outline .vc_pagination-trigger{border-color:#f79468}.vc_pagination-color-sandy-brown.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-sandy-brown.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-sandy-brown.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#f79468}.vc_pagination-color-purple.vc_pagination-style-outline .vc_pagination-trigger{border-color:#b97ebb}.vc_pagination-color-purple.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-purple.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-purple.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#b97ebb}.vc_pagination-color-black.vc_pagination-style-outline .vc_pagination-trigger{border-color:#2a2a2a}.vc_pagination-color-black.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-black.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-black.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#2a2a2a}.vc_pagination-color-grey.vc_pagination-style-outline .vc_pagination-trigger{border-color:#ebebeb}.vc_pagination-color-grey.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-grey.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-grey.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#ebebeb}.vc_pagination-color-white.vc_pagination-style-outline .vc_pagination-trigger{border-color:#fff}.vc_pagination-color-white.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-white.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-white.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#fff}.vc_pagination.vc_pagination-color-custom.vc_pagination-style-outline .vc_pagination-trigger{border-color:var(--vc-pagination-color)}.vc_pagination.vc_pagination-color-custom.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination.vc_pagination-color-custom.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination.vc_pagination-color-custom.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:var(--vc-pagination-color)}.vc_grid.vc_row{margin-left:0;margin-right:0;padding-left:0;padding-right:0}.vc-row[data-vc-full-width] .vc_grid.vc_row{overflow:hidden}.vc_grid.vc_row.vc_grid-gutter-1px{margin-bottom:-1px}.vc_grid.vc_row.vc_grid-gutter-1px .vc_pageable-slide-wrapper{margin-right:-1px}.vc_grid.vc_row.vc_grid-gutter-1px .vc_grid-item{padding-bottom:1px;padding-right:1px}.vc_grid.vc_row.vc_grid-gutter-2px{margin-bottom:-2px}.vc_grid.vc_row.vc_grid-gutter-2px .vc_pageable-slide-wrapper{margin-right:-2px}.vc_grid.vc_row.vc_grid-gutter-2px .vc_grid-item{padding-bottom:2px;padding-right:2px}.vc_grid.vc_row.vc_grid-gutter-3px{margin-bottom:-3px}.vc_grid.vc_row.vc_grid-gutter-3px .vc_pageable-slide-wrapper{margin-right:-3px}.vc_grid.vc_row.vc_grid-gutter-3px .vc_grid-item{padding-bottom:3px;padding-right:3px}.vc_grid.vc_row.vc_grid-gutter-4px{margin-bottom:-4px}.vc_grid.vc_row.vc_grid-gutter-4px .vc_pageable-slide-wrapper{margin-right:-4px}.vc_grid.vc_row.vc_grid-gutter-4px .vc_grid-item{padding-bottom:4px;padding-right:4px}.vc_grid.vc_row.vc_grid-gutter-5px{margin-bottom:-5px}.vc_grid.vc_row.vc_grid-gutter-5px .vc_pageable-slide-wrapper{margin-right:-5px}.vc_grid.vc_row.vc_grid-gutter-5px .vc_grid-item{padding-bottom:5px;padding-right:5px}.vc_grid.vc_row.vc_grid-gutter-10px{margin-bottom:-10px}.vc_grid.vc_row.vc_grid-gutter-10px .vc_pageable-slide-wrapper{margin-right:-10px}.vc_grid.vc_row.vc_grid-gutter-10px .vc_grid-item{padding-bottom:10px;padding-right:10px}.vc_grid.vc_row.vc_grid-gutter-15px{margin-bottom:-15px}.vc_grid.vc_row.vc_grid-gutter-15px .vc_pageable-slide-wrapper{margin-right:-15px}.vc_grid.vc_row.vc_grid-gutter-15px .vc_grid-item{padding-bottom:15px;padding-right:15px}.vc_grid.vc_row.vc_grid-gutter-20px{margin-bottom:-20px}.vc_grid.vc_row.vc_grid-gutter-20px .vc_pageable-slide-wrapper{margin-right:-20px}.vc_grid.vc_row.vc_grid-gutter-20px .vc_grid-item{padding-bottom:20px;padding-right:20px}.vc_grid.vc_row.vc_grid-gutter-25px{margin-bottom:-25px}.vc_grid.vc_row.vc_grid-gutter-25px .vc_pageable-slide-wrapper{margin-right:-25px}.vc_grid.vc_row.vc_grid-gutter-25px .vc_grid-item{padding-bottom:25px;padding-right:25px}.vc_grid.vc_row.vc_grid-gutter-30px{margin-bottom:-30px}.vc_grid.vc_row.vc_grid-gutter-30px .vc_pageable-slide-wrapper{margin-right:-30px}.vc_grid.vc_row.vc_grid-gutter-30px .vc_grid-item{padding-bottom:30px;padding-right:30px}.vc_grid.vc_row.vc_grid-gutter-35px{margin-bottom:-35px}.vc_grid.vc_row.vc_grid-gutter-35px .vc_pageable-slide-wrapper{margin-right:-35px}.vc_grid.vc_row.vc_grid-gutter-35px .vc_grid-item{padding-bottom:35px;padding-right:35px}.vc_grid.vc_row.vc_grid-gutter{margin-bottom:calc(var(--vc-grid-gap, 0px)*-1)}.vc_grid.vc_row.vc_grid-gutter .vc_pageable-slide-wrapper{margin-right:calc(var(--vc-grid-gap, 0px)*-1)}.vc_grid.vc_row.vc_grid-gutter .vc_grid-item{padding-bottom:var(--vc-grid-gap,0);padding-right:var(--vc-grid-gap,0)}.vc_grid.vc_row .vc_pageable-slide-wrapper .vc_grid-item.vc_visible-item:hover{z-index:3}.vc_grid.vc_row .vc_grid-item{box-sizing:border-box;display:none;float:none;padding:0;vertical-align:top;z-index:1}.vc_grid.vc_row .vc_grid-item .vc_grid-item-mini .vc_grid-item-content{overflow:hidden}.vc_grid.vc_row .vc_grid-item :is(.vc_btn,.vc_icon_element,.wpb_content_element){margin-bottom:15px}.vc_grid.vc_row .vc_grid-item :is(.vc_btn,.vc_icon_element,.wpb_content_element) a{border-bottom:0;text-decoration:none}.vc_grid-animation-none .vc_grid.vc_row .vc_grid-item{transition:none!important}.vc_grid .vc_gitem-link{border-bottom:none;box-shadow:none;outline:none}:is(.vc_masonry_grid,.vc_masonry_media_grid) .vc_grid.vc_row .vc_grid-item{position:static}:is(.vc_basic_grid,.vc_media_grid) .vc_grid.vc_row .vc_grid-item.vc_visible-item,:is(.vc_masonry_grid,.vc_masonry_media_grid) .vc_grid.vc_row .vc_grid-item.vc_visible-item{display:block}@media (min-width:768px){:is(.vc_basic_grid,.vc_media_grid) .vc_grid.vc_row .vc_grid-item.vc_visible-item{display:inline-block}}@-moz-document url-prefix(){:is(.vc_masonry_grid,.vc_masonry_media_grid) .vc_grid-item{margin-left:-.01px}}.vc_gitem-zone-b{display:none}.vc_gitem-float-none{float:none}.vc_gitem-float-left{float:left}.vc_gitem-float-right{float:right}.vc_gitem-align-center{text-align:center}.vc_gitem-align-right{text-align:right}.vc_gitem-align-justify{text-align:justify}.vc_gitem-block{overflow:hidden;position:relative}.vc_gitem-is-link{cursor:pointer}.vc_gitem-link{text-decoration:none}.vc_gitem_row{box-sizing:border-box;margin-left:0;margin-right:0;padding:inherit}.vc_gitem_row,.vc_gitem_row .vc_gitem_row{margin-bottom:0}:is(.vc_gitem-zone-a,.vc_gitem-zone-b) .vc_gitem-row-position-top{left:0;position:absolute;right:0;top:0}:is(.vc_gitem-zone-a,.vc_gitem-zone-b) .vc_gitem-row-position-middle{left:0;position:absolute;right:0;top:50%;transform:translateY(-50%)}:is(.vc_gitem-zone-a,.vc_gitem-zone-b) .vc_gitem-row-position-bottom{bottom:0;left:0;position:absolute;right:0}.vc_gitem_row .vc_gitem-col{padding:10px}.vc_gitem-zone,.vc_gitem_row .vc_gitem-col{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;box-sizing:border-box}.vc_gitem-zone{background-clip:initial;overflow:hidden;position:relative}.vc_gitem-zone .vc-zone-link{bottom:0;display:block;left:0;position:absolute;right:0;top:0;z-index:5}.vc_gitem-zone-img{display:block;height:auto;visibility:hidden;width:100%}.vc_gitem-zone-a .vc_gitem-zone-mini{bottom:0;box-sizing:border-box;left:0;padding:inherit;position:static;right:0;top:0}.vc_gitem-zone-b{overflow:hidden}.vc_gitem-zone-b .vc_gitem-zone-mini{bottom:0;left:0;margin:0;padding:inherit;position:static;right:0;top:0}.vc_grid-item-zone-c-left .vc_gitem-animated-block{float:right;width:50%}.vc_grid-item-zone-c-left .vc_gitem-zone-c,.vc_grid-item-zone-c-right .vc_gitem-animated-block{float:left;width:50%}.vc_grid-item-zone-c-right .vc_gitem-zone-c{float:right;width:50%}.vc-gitem-zone-height-mode-auto .vc_gitem-zone-img{display:none!important}.vc-gitem-zone-height-mode-auto:before{content:"";display:block;padding-top:100%}.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-4-3:before{padding-top:75%}.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-3-4:before{padding-top:133.33333333%}.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-16-9:before{padding-top:56.25%}.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-9-16:before{padding-top:177.77777778%}.vc_gitem-animated-block{position:relative}.vc_gitem-animate .vc_btn{transition:all 0s ease}.vc_gitem-animate .vc_gitem-zone-b{z-index:199}.vc_gitem-animate-none .vc_gitem-zone-b{bottom:0;box-sizing:border-box;display:block;filter:alpha(opacity=0);left:0;margin:0;opacity:0;position:absolute;right:0;top:0}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-none .vc_gitem-zone-b{filter:alpha(opacity=100);opacity:1}:is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut,.vc_gitem-animate-fadeIn,.vc_gitem-animate-scaleIn,.vc_gitem-animate-scaleRotateIn) .vc_gitem-zone-b{bottom:0;box-sizing:border-box;display:block;filter:alpha(opacity=0);left:0;margin:0;opacity:0;position:absolute;right:0;top:0;transition:all 1s ease}:is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut,.vc_gitem-animate-fadeIn,.vc_gitem-animate-scaleIn,.vc_gitem-animate-scaleRotateIn) .vc_gitem-zone-b .vc_separator{transition:all 1s ease;width:0}:is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut,.vc_gitem-animate-fadeIn,.vc_gitem-animate-scaleIn,.vc_gitem-animate-scaleRotateIn) .vc_gitem-zone-b .vc_btn{transform:scale(0);transition:all 1s ease}:is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut,.vc_gitem-animate-fadeIn,.vc_gitem-animate-scaleIn,.vc_gitem-animate-scaleRotateIn) .vc_gitem-zone-b .vc_post-title{-webkit-backface-visibility:hidden;display:inline-block;filter:alpha(opacity=0);opacity:0;-webkit-perspective:1000;transform:translate3d(0,-100%,0);transition:transform 1s cubic-bezier(0,.275,.125,1),opacity .5s cubic-bezier(0,.275,.125,1)}.vc_grid-item-mini.vc_is-hover :is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut,.vc_gitem-animate-fadeIn,.vc_gitem-animate-scaleIn,.vc_gitem-animate-scaleRotateIn) .vc_gitem-zone-b .vc_post-title .vc_separator{transition:all 1s ease;width:50%}.vc_grid-item-mini.vc_is-hover :is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut,.vc_gitem-animate-fadeIn,.vc_gitem-animate-scaleIn,.vc_gitem-animate-scaleRotateIn) .vc_gitem-zone-b .vc_post-title .vc_btn{transform:scale(1);transition:all 1s ease}.vc_grid-item-mini.vc_is-hover :is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut,.vc_gitem-animate-fadeIn,.vc_gitem-animate-scaleIn,.vc_gitem-animate-scaleRotateIn) .vc_gitem-zone-b .vc_post-title .vc_post-title{filter:alpha(opacity=100);opacity:1;transform:translateZ(0)}.vc_grid-item-mini.vc_is-hover :is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut,.vc_gitem-animate-fadeIn,.vc_gitem-animate-scaleIn,.vc_gitem-animate-scaleRotateIn) .vc_gitem-zone-b{filter:alpha(opacity=100);opacity:1}.vc_grid-item-mini.vc_is-hover :is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut,.vc_gitem-animate-fadeIn,.vc_gitem-animate-scaleIn,.vc_gitem-animate-scaleRotateIn) .vc_gitem-zone-b .vc_separator{transition:all 1s ease;width:50%}.vc_grid-item-mini.vc_is-hover :is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut,.vc_gitem-animate-fadeIn,.vc_gitem-animate-scaleIn,.vc_gitem-animate-scaleRotateIn) .vc_gitem-zone-b .vc_btn{transform:scale(1);transition:all 1s ease}.vc_grid-item-mini.vc_is-hover :is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut,.vc_gitem-animate-fadeIn,.vc_gitem-animate-scaleIn,.vc_gitem-animate-scaleRotateIn) .vc_gitem-zone-b .vc_post-title{filter:alpha(opacity=100);opacity:1;transform:translateZ(0)}.vc_gitem-animate-scaleIn{overflow:hidden}.vc_gitem-animate-scaleIn .vc_gitem-zone-a{transform:scale(1);transition:transform .3s ease-in-out}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-a{transform:scale(1.1)}.vc_gitem-animate-scaleRotateIn{overflow:hidden}.vc_gitem-animate-scaleRotateIn .vc_gitem-zone-a{transform:scale(1);transition:transform .3s ease-in-out}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-a{transform:scale(1.5) rotate(10deg)}:is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut) .vc_gitem-zone-a{-webkit-backface-visibility:hidden;filter:blur(0);-moz-filter:blur(0);-ms-filter:blur(0);filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius="0");-webkit-perspective:1000;transform-origin:50% 50%;webkit-transition:filter .5s cubic-bezier(0,.275,.125,1),-webkit-transform .5s cubic-bezier(0,.275,.125,1);transition:filter .5s cubic-bezier(0,.275,.125,1),transform .5s cubic-bezier(0,.275,.125,1)}.vc_grid-item-mini.vc_is-hover :is(.vc_gitem-animate-blurOut,.vc_gitem-animate-blurScaleOut) .vc_gitem-zone-a{filter:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../vc/blur.svg#blur);-moz-filter:blur(2px);-ms-filter:blur(2px);filter:blur(2px);filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius="0")}.vc_gitem-animate-blurScaleOut{overflow:hidden}.vc_gitem-animate-blurScaleOut .vc_gitem-zone-a{transform:scale(1.1)}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-a{transform:scale(1)}.vc_gitem-animate-slideInRight{overflow:hidden}.vc_gitem-animate-slideInRight .vc_gitem-zone-b{bottom:0;display:block;filter:alpha(opacity=0);left:0;margin:0;opacity:0;position:absolute;right:0;top:0;transform:translateX(-100%);transition:all 1s ease}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideInRight .vc_gitem-zone-b{filter:alpha(opacity=100);opacity:1;transform:translateX(0)}.vc_gitem-animate-slideInLeft{overflow:hidden}.vc_gitem-animate-slideInLeft .vc_gitem-zone-b{bottom:0;display:block;filter:alpha(opacity=0);left:0;margin:0;opacity:0;position:absolute;right:0;top:0;transform:translateX(-100%);transition:all 1s ease}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideInLeft .vc_gitem-zone-b{filter:alpha(opacity=100);opacity:1;transform:translateX(0)}.vc_gitem-animate-slideBottom{overflow:hidden;position:relative}.vc_gitem-animate-slideBottom .vc_gitem-zone-b{display:block;height:100%;left:0;margin:0;position:absolute;right:0;top:100%;transition:all 1s ease;z-index:1000}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideBottom .vc_gitem-zone-b{top:0}.vc_gitem-animate-slideTop{overflow:hidden;position:relative}.vc_gitem-animate-slideTop .vc_gitem-zone-b{display:block;height:100%;left:0;margin:0;position:absolute;right:0;top:-100%;transition:all 1s ease;z-index:1000}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideTop .vc_gitem-zone-b{top:0}.vc_gitem-animate-flipFadeIn{overflow:hidden}.vc_gitem-animate-flipFadeIn .vc_gitem-zone-a{backface-visibility:hidden;transform-style:preserve-3d;transition:transform 1s}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipFadeIn .vc_gitem-zone-a{transform:rotateX(180deg)}.vc_gitem-animate-flipFadeIn .vc_gitem-zone-b{backface-visibility:hidden;bottom:0;display:block;filter:alpha(opacity=0);left:0;opacity:0;position:absolute;right:0;top:0;transform:rotateX(180deg);transform-style:preserve-3d;transition:all .6s ease}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipFadeIn .vc_gitem-zone-b{filter:alpha(opacity=100);opacity:1;transform:rotateX(0deg)}.vc_gitem-animate-flipHorizontalFadeIn{overflow:hidden}.vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-a{backface-visibility:hidden;transform-style:preserve-3d;transition:transform 1s}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-a{transform:rotateY(180deg)}.vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-b{backface-visibility:hidden;bottom:0;display:block;filter:alpha(opacity=0);left:0;opacity:0;position:absolute;right:0;top:0;transform:rotateY(180deg);transform-style:preserve-3d;transition:all .6s ease}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-b{filter:alpha(opacity=100);opacity:1;transform:rotateY(0deg)}.vc_gitem-animate-goTop20{overflow:hidden}.vc_gitem-animate-goTop20 .vc_gitem-zone-a{position:relative;transform:translateY(0);transition:transform .5s ease}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goTop20 .vc_gitem-zone-a{transform:translateY(-20%)}.vc_gitem-animate-goTop20 .vc_gitem-zone-b{bottom:-100%;display:block;margin:0;position:absolute;transition:bottom .5s ease;width:100%;z-index:1000}.vc_gitem-animate-goTop20 .vc_gitem-zone-b .vc_gitem-zone-mini{position:static;transform:none}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goTop20 .vc_gitem-zone-b{bottom:0}.vc_gitem-animate-goBottom20{overflow:hidden}.vc_gitem-animate-goBottom20 .vc_gitem-zone-a{position:relative;transform:translateY(0);transition:transform .5s ease}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goBottom20 .vc_gitem-zone-a{transform:translateY(20%)}.vc_gitem-animate-goBottom20 .vc_gitem-zone-b{display:block;margin:0;position:absolute;top:-100%;transition:top .5s ease;width:100%;z-index:1000}.vc_gitem-animate-goBottom20 .vc_gitem-zone-b .vc_gitem-zone-mini{position:static;transform:none}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goBottom20 .vc_gitem-zone-b{top:0}.vc_gitem-post-data{margin-bottom:15px}.vc_gitem-post-data h2{margin:0}.vc_gitem-post-category-name .vc_gitem-link{color:inherit}.vc_grid .vc_pageable-load-more-btn{margin-top:25px;text-align:center}.vc_grid .vc_pageable-load-more-btn>.vc_btn{outline:none}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots{display:none;margin-top:20px;text-align:center;-webkit-tap-highlight-color:transparent}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots .vc_grid-owl-dot{cursor:pointer;display:inline-block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots .vc_grid-owl-dot span{-webkit-backface-visibility:visible;display:block;height:10px;margin:5px 7px;transition:opacity .2s ease;width:10px}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots{display:block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots .vc_grid-owl-dot span{border:3px solid;transition:background-color .2s ease}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots{display:block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots .vc_grid-owl-dot span{border:3px solid;border-radius:10px;transition:background-color .2s ease}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots{display:block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots .vc_grid-owl-dot span{border-radius:30px;filter:alpha(opacity=60);opacity:.6}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots :is(.vc_grid-owl-dot.active,.vc_grid-owl-dot:hover) span{filter:alpha(opacity=100);opacity:1}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots{display:block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots .vc_grid-owl-dot span{-webkit-backface-visibility:visible;display:block;filter:alpha(opacity=60);height:10px;margin:5px 7px;opacity:.6;transition:opacity .2s ease;width:10px}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots :is(.vc_grid-owl-dot.active,.vc_grid-owl-dot:hover) span{filter:alpha(opacity=100);opacity:1}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots{display:block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots .vc_grid-owl-dot span{-webkit-backface-visibility:visible;border-radius:3px;display:block;filter:alpha(opacity=60);height:10px;margin:5px 7px;opacity:.6;transition:opacity .2s ease;width:10px}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots :is(.vc_grid-owl-dot.active,.vc_grid-owl-dot:hover) span{filter:alpha(opacity=100);opacity:1}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-blue,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-blue) .vc_grid-owl-dot span{border-color:#5472d2!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot:hover) span{background-color:#5472d2!important;border-color:#5472d2!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-turquoise,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-turquoise) .vc_grid-owl-dot span{border-color:#00c1cf!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot:hover) span{background-color:#00c1cf!important;border-color:#00c1cf!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-pink,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-pink) .vc_grid-owl-dot span{border-color:#fe6c61!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot:hover) span{background-color:#fe6c61!important;border-color:#fe6c61!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-violet,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-violet) .vc_grid-owl-dot span{border-color:#8d6dc4!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot:hover) span{background-color:#8d6dc4!important;border-color:#8d6dc4!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-peacoc,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-peacoc) .vc_grid-owl-dot span{border-color:#4cadc9!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot:hover) span{background-color:#4cadc9!important;border-color:#4cadc9!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-chino,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-chino) .vc_grid-owl-dot span{border-color:#cec2ab!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot:hover) span{background-color:#cec2ab!important;border-color:#cec2ab!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-mulled_wine,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-mulled_wine) .vc_grid-owl-dot span{border-color:#50485b!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot:hover) span{background-color:#50485b!important;border-color:#50485b!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-vista_blue,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-vista_blue) .vc_grid-owl-dot span{border-color:#75d69c!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot:hover) span{background-color:#75d69c!important;border-color:#75d69c!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-black,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-black) .vc_grid-owl-dot span{border-color:#2a2a2a!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot:hover) span{background-color:#2a2a2a!important;border-color:#2a2a2a!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey) .vc_grid-owl-dot span{border-color:#ebebeb!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot:hover) span{background-color:#ebebeb!important;border-color:#ebebeb!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-orange,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-orange) .vc_grid-owl-dot span{border-color:#f7be68!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot:hover) span{background-color:#f7be68!important;border-color:#f7be68!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sky,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sky) .vc_grid-owl-dot span{border-color:#5aa1e3!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot:hover) span{background-color:#5aa1e3!important;border-color:#5aa1e3!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-green,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-green) .vc_grid-owl-dot span{border-color:#6dab3c!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot:hover) span{background-color:#6dab3c!important;border-color:#6dab3c!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-juicy_pink,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-juicy_pink) .vc_grid-owl-dot span{border-color:#f4524d!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot:hover) span{background-color:#f4524d!important;border-color:#f4524d!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sandy_brown,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sandy_brown) .vc_grid-owl-dot span{border-color:#f79468!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot:hover) span{background-color:#f79468!important;border-color:#f79468!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-purple,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-purple) .vc_grid-owl-dot span{border-color:#b97ebb!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot:hover) span{background-color:#b97ebb!important;border-color:#b97ebb!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-white,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-white) .vc_grid-owl-dot span{border-color:#fff!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot:hover) span{background-color:#fff!important;border-color:#fff!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-custom,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-custom) .vc_grid-owl-dot span{border-color:var(--vc-grid-paging-color)}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-custom .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-custom .vc_grid-owl-dot:hover,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-custom .vc_grid-owl-dot.active,.vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-custom .vc_grid-owl-dot:hover) span{background-color:var(--vc-grid-paging-color);border-color:var(--vc-grid-paging-color)}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-blue,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-blue,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-blue) .vc_grid-owl-dot span{background-color:#5472d2!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-turquoise,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-turquoise,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-turquoise) .vc_grid-owl-dot span{background-color:#00c1cf!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-pink,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-pink,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-pink) .vc_grid-owl-dot span{background-color:#fe6c61!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-violet,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-violet,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-violet) .vc_grid-owl-dot span{background-color:#8d6dc4!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-peacoc,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-peacoc,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-peacoc) .vc_grid-owl-dot span{background-color:#4cadc9!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-chino,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-chino,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-chino) .vc_grid-owl-dot span{background-color:#cec2ab!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-mulled_wine,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-mulled_wine,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-mulled_wine) .vc_grid-owl-dot span{background-color:#50485b!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-vista_blue,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-vista_blue,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-vista_blue) .vc_grid-owl-dot span{background-color:#75d69c!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-black,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-black,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-black) .vc_grid-owl-dot span{background-color:#2a2a2a!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-grey,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-grey,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-grey) .vc_grid-owl-dot span{background-color:#ebebeb!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-orange,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-orange,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-orange) .vc_grid-owl-dot span{background-color:#f7be68!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-sky,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-sky,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-sky) .vc_grid-owl-dot span{background-color:#5aa1e3!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-green,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-green,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-green) .vc_grid-owl-dot span{background-color:#6dab3c!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-juicy_pink,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-juicy_pink,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-juicy_pink) .vc_grid-owl-dot span{background-color:#f4524d!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-sandy_brown,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-sandy_brown,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-sandy_brown) .vc_grid-owl-dot span{background-color:#f79468!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-purple,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-purple,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-purple) .vc_grid-owl-dot span{background-color:#b97ebb!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-white,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-white,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-white) .vc_grid-owl-dot span{background-color:#fff!important}.vc_grid.vc_grid-owl-theme :is(.vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-custom,.vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-custom,.vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-custom) .vc_grid-owl-dot span{background-color:var(--vc-grid-paging-color)}.vc_grid.vc_grid-owl-theme:hover .vc_grid-owl-nav{filter:alpha(opacity=100);opacity:1}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav{cursor:pointer;filter:alpha(opacity=0);opacity:0;transition:opacity .3s ease-in 0s;-webkit-tap-highlight-color:transparent}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .disabled{display:none!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){cursor:pointer;display:inline-block;filter:alpha(opacity=50);font-size:25px;height:25px;line-height:25px;margin-top:-12.5px;opacity:.5;position:absolute;text-decoration:none;top:50%;transition:opacity .3s ease-in 0s}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav :is(.vc_grid-owl-next:hover,.vc_grid-owl-prev:hover){filter:alpha(opacity=100);opacity:1}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-prev{left:5px}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-prev.vc_grid-nav-prev-outside{left:-30px}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-next{right:5px}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-next.vc_grid-nav-next-outside{right:-30px}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-blue{color:#5472d2!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-turquoise{color:#00c1cf!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-pink{color:#fe6c61!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-violet{color:#8d6dc4!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-peacoc{color:#4cadc9!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-chino{color:#cec2ab!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-mulled_wine{color:#50485b!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-vista_blue{color:#75d69c!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-black{color:#2a2a2a!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-grey{color:#ebebeb!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-orange{color:#f7be68!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-sky{color:#5aa1e3!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-green{color:#6dab3c!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-juicy_pink{color:#f4524d!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-sandy_brown{color:#f79468!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-purple{color:#b97ebb!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-white{color:#fff!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-custom{color:var(--vc-grid-arrows-color)!important}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-1px .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:-13px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-2px .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:-13.5px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-3px .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:-14px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-4px .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:-14.5px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-5px .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:-15px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-10px .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:-17.5px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-15px .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:-20px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-20px .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:-22.5px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-25px .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:-25px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-30px .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:-27.5px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-35px .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:-30px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter .vc_grid-owl-nav :is(.vc_grid-owl-next,.vc_grid-owl-prev){margin-top:calc(-12.5px + var(--vc-grid-gap, 0px)/2*-1)}.vc_grid-pagination .vc_grid-pagination-list{border-radius:2px;display:block;margin:20px 0 0!important;outline:none;padding-left:0;text-align:center}.vc_grid-pagination .vc_grid-pagination-list>li{border:0 solid #0000;display:inline-block;margin:0}.vc_grid-pagination .vc_grid-pagination-list>li>:is(a,span){background-color:#337ab7;border:1px solid #337ab7;color:#fff;filter:alpha(opacity=50);float:left;font-size:10px;line-height:1.42857143;margin-left:-1px;opacity:.5;padding:3px 10px;position:relative;text-decoration:none;transition:opacity .3s ease-in 0s}.vc_grid-pagination .vc_grid-pagination-list>li:first-child>:is(a,span){margin-left:0}.vc_grid-pagination .vc_grid-pagination-list>:is(li:focus a,li:focus span,li:hover a,li:hover span){filter:alpha(opacity=100);opacity:1}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-prev>a:after{content:"\e61b";display:inline-block;font-family:vc_grid_v1}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-next>a:after{content:"\e61a";display:inline-block;font-family:vc_grid_v1}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-first>a:after{content:"\e618";display:inline-block;font-family:vc_grid_v1}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-last>a:after{content:"\e619";display:inline-block;font-family:vc_grid_v1}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>a,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>a:focus,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>a:hover,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>span,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>span:focus,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>span:hover{cursor:default;filter:alpha(opacity=100);opacity:1;z-index:2}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>a,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>a:focus,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>a:hover,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>span,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>span:focus,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>span:hover{display:none}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-blue>li{border-color:#5472d2!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-blue>li>:is(a,span){background-color:#5472d2!important;border-color:#5472d2!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-turquoise>li{border-color:#00c1cf!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-turquoise>li>:is(a,span){background-color:#00c1cf!important;border-color:#00c1cf!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-pink>li{border-color:#fe6c61!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-pink>li>:is(a,span){background-color:#fe6c61!important;border-color:#fe6c61!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-violet>li{border-color:#8d6dc4!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-violet>li>:is(a,span){background-color:#8d6dc4!important;border-color:#8d6dc4!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-peacoc>li{border-color:#4cadc9!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-peacoc>li>:is(a,span){background-color:#4cadc9!important;border-color:#4cadc9!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-chino>li{border-color:#cec2ab!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-chino>li>:is(a,span){background-color:#cec2ab!important;border-color:#cec2ab!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-mulled_wine>li{border-color:#50485b!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-mulled_wine>li>:is(a,span){background-color:#50485b!important;border-color:#50485b!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-vista_blue>li{border-color:#75d69c!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-vista_blue>li>:is(a,span){background-color:#75d69c!important;border-color:#75d69c!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-black>li{border-color:#2a2a2a!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-black>li>:is(a,span){background-color:#2a2a2a!important;border-color:#2a2a2a!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-grey>li{border-color:#ebebeb!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-grey>li>:is(a,span){background-color:#ebebeb!important;border-color:#ebebeb!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-orange>li{border-color:#f7be68!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-orange>li>:is(a,span){background-color:#f7be68!important;border-color:#f7be68!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sky>li{border-color:#5aa1e3!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sky>li>:is(a,span){background-color:#5aa1e3!important;border-color:#5aa1e3!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-green>li{border-color:#6dab3c!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-green>li>:is(a,span){background-color:#6dab3c!important;border-color:#6dab3c!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-juicy_pink>li{border-color:#f4524d!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-juicy_pink>li>:is(a,span){background-color:#f4524d!important;border-color:#f4524d!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sandy_brown>li{border-color:#f79468!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sandy_brown>li>:is(a,span){background-color:#f79468!important;border-color:#f79468!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-purple>li{border-color:#b97ebb!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-purple>li>:is(a,span){background-color:#b97ebb!important;border-color:#b97ebb!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-white>li{border-color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-white>li>:is(a,span){background-color:#fff!important;border-color:#fff!important;color:#2a2a2a!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-custom>li{border-color:var(--vc-grid-paging-color)}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-custom>li>:is(a,span){background-color:var(--vc-grid-paging-color);border-color:var(--vc-grid-paging-color);color:var(--vc-grid-paging-color-contrast)}.vc_grid-pagination :is(.vc_grid-pagination-list.vc_grid-pagination_default>li>a,.vc_grid-pagination-list.vc_grid-pagination_default>li>span,.vc_grid-pagination-list.vc_grid-pagination_default_dark>li>a,.vc_grid-pagination-list.vc_grid-pagination_default_dark>li>span,.vc_grid-pagination-list.vc_grid-pagination_default_light>li>a,.vc_grid-pagination-list.vc_grid-pagination_default_light>li>span){box-sizing:border-box;min-height:22px;min-width:28px}.vc_grid-pagination :is(.vc_grid-pagination-list.vc_grid-pagination_default>li:first-child>a,.vc_grid-pagination-list.vc_grid-pagination_default>li:first-child>span,.vc_grid-pagination-list.vc_grid-pagination_default_dark>li:first-child>a,.vc_grid-pagination-list.vc_grid-pagination_default_dark>li:first-child>span,.vc_grid-pagination-list.vc_grid-pagination_default_light>li:first-child>a,.vc_grid-pagination-list.vc_grid-pagination_default_light>li:first-child>span){border-bottom-left-radius:2px;border-top-left-radius:2px}.vc_grid-pagination :is(.vc_grid-pagination-list.vc_grid-pagination_default>li:last-child>a,.vc_grid-pagination-list.vc_grid-pagination_default>li:last-child>span,.vc_grid-pagination-list.vc_grid-pagination_default_dark>li:last-child>a,.vc_grid-pagination-list.vc_grid-pagination_default_dark>li:last-child>span,.vc_grid-pagination-list.vc_grid-pagination_default_light>li:last-child>a,.vc_grid-pagination-list.vc_grid-pagination_default_light>li:last-child>span){border-bottom-right-radius:2px;border-top-right-radius:2px}.vc_grid-pagination :is(.vc_grid-pagination-list.vc_grid-pagination_square>li>a,.vc_grid-pagination-list.vc_grid-pagination_square>li>span,.vc_grid-pagination-list.vc_grid-pagination_square_dark>li>a,.vc_grid-pagination-list.vc_grid-pagination_square_dark>li>span,.vc_grid-pagination-list.vc_grid-pagination_square_light>li>a,.vc_grid-pagination-list.vc_grid-pagination_square_light>li>span){box-sizing:border-box;margin-left:5px;min-height:22px;min-width:22px;padding:3px}.vc_grid-pagination :is(.vc_grid-pagination-list.vc_grid-pagination_rounded>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded>li>span,.vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>span,.vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>span,.vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>span,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>span,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>span){border-radius:30px;box-sizing:border-box;margin-left:5px;min-height:22px;min-width:22px;padding:3px}.vc_grid-pagination :is(.vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>span,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>span,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>span){border-radius:5px;box-sizing:border-box;min-height:22px;min-width:22px;padding:3px}.vc_grid-pagination :is(.vc_grid-pagination-list.vc_grid-pagination_default_dark>li>a,.vc_grid-pagination-list.vc_grid-pagination_default_dark>li>span,.vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>span,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>span,.vc_grid-pagination-list.vc_grid-pagination_square_dark>li>a,.vc_grid-pagination-list.vc_grid-pagination_square_dark>li>span){background-color:initial!important;color:#000!important}.vc_grid-pagination :is(.vc_grid-pagination-list.vc_grid-pagination_default_light>li>a,.vc_grid-pagination-list.vc_grid-pagination_default_light>li>span,.vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>span,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>a,.vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>span,.vc_grid-pagination-list.vc_grid-pagination_square_light>li>a,.vc_grid-pagination-list.vc_grid-pagination_square_light>li>span){background-color:initial!important;color:#fff!important}.vc_grid-pagination :is(.vc_grid-pagination-list.vc_grid-pagination_stripes_dark,.vc_grid-pagination-list.vc_grid-pagination_stripes_light)>li{border-left-width:1px!important}.vc_grid-pagination :is(.vc_grid-pagination-list.vc_grid-pagination_stripes_dark,.vc_grid-pagination-list.vc_grid-pagination_stripes_light)>li>a{background:none repeat scroll 0 0 #0000!important;border-width:0}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark li.vc_grid-disabled+li,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark>li:first-child,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light li.vc_grid-disabled+li,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light>li:first-child{border-width:0!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark>li>a{color:#000!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light>li>a{color:#fff!important}.vc_grid-loading{animation-delay:.16s;font-size:10px;height:20px;margin:2em auto;position:relative;text-indent:-9999em}.vc_grid-loading,.vc_grid-loading:after,.vc_grid-loading:before{animation-fill-mode:both;animation:load7 1.8s ease-in-out infinite;border-radius:50%;height:12px;width:12px}.vc_grid-loading:before{left:-20px}.vc_grid-loading:after{animation-delay:.32s;left:20px}.vc_grid-loading:after,.vc_grid-loading:before{content:"";position:absolute;top:0}@keyframes load7{0%,80%,to{box-shadow:0 2.5em 0 -1.3em #ebebebbf}40%{box-shadow:0 2.5em 0 0 #ebebebbf}}.vc_grid-filter{list-style:none;margin-bottom:20px;margin-left:0;padding:0}.vc_grid-filter.vc_grid-filter-center{text-align:center}.vc_grid-filter.vc_grid-filter-right{text-align:right}.vc_grid-filter.vc_grid-filter-left{text-align:left}.vc_grid-filter.vc_grid-filter-color-blue>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#5472d2}.vc_grid-filter.vc_grid-filter-color-blue>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-turquoise>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#00c1cf}.vc_grid-filter.vc_grid-filter-color-turquoise>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-pink>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#fe6c61}.vc_grid-filter.vc_grid-filter-color-pink>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-violet>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#8d6dc4}.vc_grid-filter.vc_grid-filter-color-violet>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-peacoc>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#4cadc9}.vc_grid-filter.vc_grid-filter-color-peacoc>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-chino>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#cec2ab}.vc_grid-filter.vc_grid-filter-color-chino>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-mulled_wine>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#50485b}.vc_grid-filter.vc_grid-filter-color-mulled_wine>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-vista_blue>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#75d69c}.vc_grid-filter.vc_grid-filter-color-vista_blue>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-black>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#2a2a2a}.vc_grid-filter.vc_grid-filter-color-black>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-grey>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#ebebeb}.vc_grid-filter.vc_grid-filter-color-grey>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#666}.vc_grid-filter.vc_grid-filter-color-orange>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#f7be68}.vc_grid-filter.vc_grid-filter-color-orange>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-sky>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#5aa1e3}.vc_grid-filter.vc_grid-filter-color-sky>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-green>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#6dab3c}.vc_grid-filter.vc_grid-filter-color-green>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-juicy_pink>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#f4524d}.vc_grid-filter.vc_grid-filter-color-juicy_pink>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-sandy_brown>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#f79468}.vc_grid-filter.vc_grid-filter-color-sandy_brown>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-purple>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#b97ebb}.vc_grid-filter.vc_grid-filter-color-purple>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#fff}.vc_grid-filter.vc_grid-filter-color-white>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:#fff}.vc_grid-filter.vc_grid-filter-color-white>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:#666}.vc_grid-filter.vc_grid-filter-color-custom>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover){background-color:var(--vc-filter-bg)}.vc_grid-filter.vc_grid-filter-color-custom>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{color:var(--vc-filter-bg-contrast)}.vc_grid-filter>.vc_grid-filter-item{background:#0000;cursor:pointer;display:inline-block;padding:4px 10px;transition:background-color .1s linear}.vc_grid-filter>.vc_grid-filter-item:first-child{margin-left:0!important}.vc_grid-filter>.vc_grid-filter-item>span{outline:none;padding:0;text-decoration:none;transition:color .1s linear}.vc_grid-filter>:is(.vc_grid-filter-item.vc_active,.vc_grid-filter-item:hover)>span{text-decoration:none}.vc_grid-filter.vc_grid-filter-default>.vc_grid-filter-item{border-radius:30px;margin:0 5px 5px 0}:is(.vc_grid-filter.vc_grid-filter-,.vc_grid-filter.vc_grid-filter-comma) .vc_grid-filter-item{padding:0!important}.vc_grid-filter.vc_grid-filter-default-less-rounded>.vc_grid-filter-item{border-radius:5px;margin:0 5px 5px 0}:is(.vc_grid-filter.vc_grid-filter-bordered-rounded-less,.vc_grid-filter.vc_grid-filter-bordered-rounded,.vc_grid-filter.vc_grid-filter-bordered)>.vc_grid-filter-item{border:1px solid #ebebebcc;border-collapse:collapse;margin:0}:is(.vc_grid-filter.vc_grid-filter-bordered-rounded-less,.vc_grid-filter.vc_grid-filter-bordered-rounded,.vc_grid-filter.vc_grid-filter-bordered)>.vc_grid-filter-item:nth-child(n+2){margin-left:-1px;margin-top:-1px}.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item:hover{border-color:#0000;position:relative;z-index:1}:is(.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item:hover)>a{text-decoration:none}.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:first-child{border-bottom-left-radius:30px;border-top-left-radius:30px}.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:last-child{border-bottom-right-radius:30px;border-top-right-radius:30px}.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:first-child{border-bottom-left-radius:3px;border-top-left-radius:3px}.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:last-child{border-bottom-right-radius:3px;border-top-right-radius:3px}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue)>.vc_grid-filter-item{background-color:#7c93dd}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item:hover{background-color:#5472d2}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise)>.vc_grid-filter-item{background-color:#00919c}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover{background-color:#00c1cf}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink)>.vc_grid-filter-item{background-color:#fe9b94}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item:hover{background-color:#fe6c61}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet)>.vc_grid-filter-item{background-color:#a991d3}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item:hover{background-color:#8d6dc4}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc)>.vc_grid-filter-item{background-color:#73bfd5}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover{background-color:#4cadc9}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino)>.vc_grid-filter-item{background-color:#e1d9cb}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item:hover{background-color:#cec2ab}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine)>.vc_grid-filter-item{background-color:#695f77}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover{background-color:#50485b}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue)>.vc_grid-filter-item{background-color:#9ce2b8}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover{background-color:#75d69c}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black)>.vc_grid-filter-item{background-color:#444}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item:hover{background-color:#2a2a2a}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey)>.vc_grid-filter-item{background-color:#d2d2d2}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey)>.vc_grid-filter-item>span{color:#666}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item:hover{background-color:#ebebeb}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item:hover)>span{color:#666}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange)>.vc_grid-filter-item{background-color:#fad398}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item:hover{background-color:#f7be68}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky)>.vc_grid-filter-item{background-color:#86baea}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item:hover{background-color:#5aa1e3}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green)>.vc_grid-filter-item{background-color:#87c456}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item:hover{background-color:#6dab3c}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink)>.vc_grid-filter-item{background-color:#f7817d}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover{background-color:#f4524d}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown)>.vc_grid-filter-item{background-color:#fab698}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover{background-color:#f79468}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple)>.vc_grid-filter-item{background-color:#cb9fcd}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple)>.vc_grid-filter-item>span{color:#fff}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item:hover{background-color:#b97ebb}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item:hover)>span{color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white)>.vc_grid-filter-item{background-color:#e6e6e6}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white)>.vc_grid-filter-item>span{color:#666}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item:hover{background-color:#fff}:is(.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item:hover)>span{color:#666}:is(.vc_grid-filter.vc_grid-filter-filled-rounded,.vc_grid-filter.vc_grid-filter-filled)>.vc_grid-filter-item{background-color:var(--vc-filter-bg);border:1px solid #0000;border-collapse:collapse;margin:0;padding:3px 7px;transition:background-color .2s ease}:is(.vc_grid-filter.vc_grid-filter-filled-rounded,.vc_grid-filter.vc_grid-filter-filled)>.vc_grid-filter-item>span{color:var(--vc-filter-bg-contrast)}.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item:hover{background-color:color-mix(in srgb,var(--vc-filter-bg),#000 12%)}:is(.vc_grid-filter.vc_grid-filter-filled-rounded,.vc_grid-filter.vc_grid-filter-filled)>.vc_grid-filter-item:nth-child(n+2){border-left:none;border-top:none;margin-left:1px;margin-top:1px}:is(.vc_grid-filter.vc_grid-filter-filled-rounded,.vc_grid-filter.vc_grid-filter-filled)>.vc_grid-filter-item:first-child{border-bottom-left-radius:3px;border-top:0;border-top-left-radius:3px}:is(.vc_grid-filter.vc_grid-filter-filled-rounded,.vc_grid-filter.vc_grid-filter-filled)>.vc_grid-filter-item:last-child{border-bottom-right-radius:3px;border-top-right-radius:3px}.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:first-child{border-bottom-left-radius:30px;border-top:0;border-top-left-radius:30px}.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:last-child{border-bottom-right-radius:30px;border-top-right-radius:30px}.vc_grid-filter.vc_grid-filter-filled-rounded-all>.vc_grid-filter-item{border-radius:3px!important}.vc_grid-filter.vc_grid-filter-filled-round-all>.vc_grid-filter-item{border-radius:30px!important}.vc_grid-filter.vc_grid-filter-size-xs .vc_grid-filter-item{font-size:12px;padding:1px 5px}.vc_grid-filter.vc_grid-filter-size-sm .vc_grid-filter-item{font-size:13px;padding:2px 7px}.vc_grid-filter.vc_grid-filter-size-md .vc_grid-filter-item{font-size:100%;padding:2px 10px}.vc_grid-filter.vc_grid-filter-size-lg .vc_grid-filter-item{font-size:18px;padding:4px 10px}.vc_grid-filter-select{display:none}.vc_grid-filter-dropdown,.vc_grid-filter-select{font-size:12px;margin-bottom:20px}.vc_grid-filter-dropdown.vc_grid-filter-center,.vc_grid-filter-select.vc_grid-filter-center{text-align:center}.vc_grid-filter-dropdown.vc_grid-filter-right,.vc_grid-filter-select.vc_grid-filter-right{text-align:right}.vc_grid-filter-dropdown.vc_grid-filter-left,.vc_grid-filter-select.vc_grid-filter-left{text-align:left}:is(.vc_grid-filter-dropdown,.vc_grid-filter-select) .vc_grid-styled-select .vc_arrow-icon-navicon{display:none}:is(.vc_grid-filter-dropdown,.vc_grid-filter-select) .vc_grid-styled-select select{display:inline-block;outline:none}@media (min-width:768px){:is(.vc_grid-filter-dropdown.vc_grid-filter-color-blue,.vc_grid-filter-select.vc_grid-filter-color-blue) .vc_arrow-icon-navicon{color:#5472d2}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-turquoise,.vc_grid-filter-select.vc_grid-filter-color-turquoise) .vc_arrow-icon-navicon{color:#00c1cf}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-pink,.vc_grid-filter-select.vc_grid-filter-color-pink) .vc_arrow-icon-navicon{color:#fe6c61}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-violet,.vc_grid-filter-select.vc_grid-filter-color-violet) .vc_arrow-icon-navicon{color:#8d6dc4}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-peacoc,.vc_grid-filter-select.vc_grid-filter-color-peacoc) .vc_arrow-icon-navicon{color:#4cadc9}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-chino,.vc_grid-filter-select.vc_grid-filter-color-chino) .vc_arrow-icon-navicon{color:#cec2ab}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-mulled_wine,.vc_grid-filter-select.vc_grid-filter-color-mulled_wine) .vc_arrow-icon-navicon{color:#50485b}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-vista_blue,.vc_grid-filter-select.vc_grid-filter-color-vista_blue) .vc_arrow-icon-navicon{color:#75d69c}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-black,.vc_grid-filter-select.vc_grid-filter-color-black) .vc_arrow-icon-navicon{color:#2a2a2a}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-grey,.vc_grid-filter-select.vc_grid-filter-color-grey) .vc_arrow-icon-navicon{color:#ebebeb}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-orange,.vc_grid-filter-select.vc_grid-filter-color-orange) .vc_arrow-icon-navicon{color:#f7be68}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-sky,.vc_grid-filter-select.vc_grid-filter-color-sky) .vc_arrow-icon-navicon{color:#5aa1e3}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-green,.vc_grid-filter-select.vc_grid-filter-color-green) .vc_arrow-icon-navicon{color:#6dab3c}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-juicy_pink,.vc_grid-filter-select.vc_grid-filter-color-juicy_pink) .vc_arrow-icon-navicon{color:#f4524d}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-sandy_brown,.vc_grid-filter-select.vc_grid-filter-color-sandy_brown) .vc_arrow-icon-navicon{color:#f79468}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-purple,.vc_grid-filter-select.vc_grid-filter-color-purple) .vc_arrow-icon-navicon{color:#b97ebb}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-white,.vc_grid-filter-select.vc_grid-filter-color-white) .vc_arrow-icon-navicon{color:#fff}:is(.vc_grid-filter-dropdown.vc_grid-filter-color-custom,.vc_grid-filter-select.vc_grid-filter-color-custom) .vc_arrow-icon-navicon{color:var(--vc-filter-bg)}:is(.vc_grid-filter-dropdown,.vc_grid-filter-select) .vc_grid-styled-select{border:1px solid #ccc;display:inline-block;height:30px;overflow:hidden;padding-right:5px;text-align:left;vertical-align:middle;width:auto}:is(.vc_grid-filter-dropdown,.vc_grid-filter-select) .vc_grid-styled-select .vc_arrow-icon-navicon{display:inline;font-size:17px;vertical-align:middle}:is(.vc_grid-filter-dropdown,.vc_grid-filter-select) .vc_grid-styled-select select{background:none repeat scroll 0 0 #0000;border:0;border-radius:0;cursor:pointer;font-size:12px;height:30px;line-height:1;margin-right:-50px;max-width:inherit!important;padding:5px;position:relative;z-index:0}}@media (max-width:768px){.vc_responsive .vc_grid-filter-select{display:block}.vc_responsive .vc_grid-filter:not(.vc_gitem-post-data){display:none!important}}.owl-carousel .owl-item .vc_grid-item{transform:translateZ(0)}.owl-carousel .owl-animated-out{z-index:0}.owl-carousel .owl-animated-in{z-index:1}.vc-hoverbox-wrapper,.vc-hoverbox-wrapper *{box-sizing:border-box}.vc-hoverbox-wrapper.vc-hoverbox-shape--rounded :is(.vc-hoverbox-back,.vc-hoverbox-front){border-radius:10px}.vc-hoverbox-wrapper.vc-hoverbox-shape--round :is(.vc-hoverbox-back,.vc-hoverbox-front){border-radius:50px}.vc-hoverbox-wrapper.vc-hoverbox-align--center{text-align:center}.vc-hoverbox-wrapper.vc-hoverbox-align--left{text-align:left}.vc-hoverbox-wrapper.vc-hoverbox-align--right{text-align:right}.vc-hoverbox-wrapper .vc-hoverbox{display:inline-block;position:relative;text-align:center;width:100%}.vc-hoverbox-inner{display:inline-block;min-height:250px;width:100%}.vc-hoverbox-inner :last-child{margin-bottom:0}.vc-hoverbox-block{backface-visibility:hidden;background-position:50%;background-size:cover;display:flex;flex-direction:column;height:100%;justify-content:center;left:0;position:absolute;top:0;transform-style:preserve-3d;transition:transform .5s ease-in-out;width:100%}.vc-hoverbox-block-inner{flex-shrink:0;padding:20px}.vc-hoverbox-front{transform:rotateY(0deg)}.vc-hoverbox-back{transform:rotateY(180deg)}.vc-hoverbox:hover .vc-hoverbox-front{transform:rotateY(-180deg)}.vc-hoverbox:hover .vc-hoverbox-back{transform:rotateY(0deg)}.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox-front{transform:rotateY(180deg)}.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox-back{transform:rotateY(0deg);z-index:2}.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox:hover .vc-hoverbox-front{transform:rotateY(0deg)}.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox:hover .vc-hoverbox-back{transform:rotateY(-180deg)}.wpb_copyright_element{display:flex;word-break:break-word}.wpb_copyright_element.wpb_copyright_element-align-left{justify-content:flex-start}.wpb_copyright_element.wpb_copyright_element-align-center{justify-content:center}.wpb_copyright_element.wpb_copyright_element-align-right{justify-content:flex-end}@font-face{font-family:vc_grid_v1;font-style:normal;font-weight:400;src:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../fonts/vc_grid/vc_grid_v1.eot?-9hbgac);src:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../fonts/vc_grid/vc_grid_v1.eot?#iefix-9hbgac) format("embedded-opentype"),url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../fonts/vc_grid/vc_grid_v1.woff?-9hbgac) format("woff"),url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../fonts/vc_grid/vc_grid_v1.ttf?-9hbgac) format("truetype"),url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../fonts/vc_grid/vc_grid_v1.svg?-9hbgac#vc_grid_v1) format("svg")}[class*=" vc_arrow-icon-"],[class^=vc_arrow-icon-]{font-family:vc_grid_v1;speak:none;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vc_arrow-icon-minus:before{content:"\e61c"}.vc_arrow-icon-plus:before{content:"\e61d"}.vc_arrow-icon-arrow_down:before{content:"\e61e"}.vc_arrow-icon-arrow_up:before{content:"\e61f"}.vc_arrow-icon-arrow_01_left:before{content:"\e600"}.vc_arrow-icon-arrow_01_right:before{content:"\e601"}.vc_arrow-icon-arrow_02_left:before{content:"\e602"}.vc_arrow-icon-arrow_02_right:before{content:"\e603"}.vc_arrow-icon-arrow_03_left:before{content:"\e604"}.vc_arrow-icon-arrow_03_right:before{content:"\e605"}.vc_arrow-icon-arrow_04_left:before{content:"\e606"}.vc_arrow-icon-arrow_04_right:before{content:"\e607"}.vc_arrow-icon-arrow_05_left:before{content:"\e608"}.vc_arrow-icon-arrow_05_right:before{content:"\e609"}.vc_arrow-icon-arrow_06_left:before{content:"\e60a"}.vc_arrow-icon-arrow_06_right:before{content:"\e60b"}.vc_arrow-icon-arrow_07_left:before{content:"\e60c"}.vc_arrow-icon-arrow_07_right:before{content:"\e60d"}.vc_arrow-icon-arrow_08_left:before{content:"\e60e"}.vc_arrow-icon-arrow_08_right:before{content:"\e60f"}.vc_arrow-icon-arrow_09_left:before{content:"\e610"}.vc_arrow-icon-arrow_09_right:before{content:"\e611"}.vc_arrow-icon-arrow_10_left:before{content:"\e612"}.vc_arrow-icon-arrow_10_right:before{content:"\e613"}.vc_arrow-icon-arrow_11_left:before{content:"\e614"}.vc_arrow-icon-arrow_11_right:before{content:"\e615"}.vc_arrow-icon-arrow_12_left:before{content:"\e616"}.vc_arrow-icon-arrow_12_right:before{content:"\e617"}.vc_arrow-icon-navicon:before{content:"\f0c9"}.wpb_animate_when_almost_visible{filter:alpha(opacity=0);opacity:0}.wpb_animate_when_almost_visible:not(.wpb_start_animation){animation:none}.top-to-bottom,.wpb_top-to-bottom{animation:wpb_ttb .7s cubic-bezier(.175,.885,.32,1.275) 1}.bottom-to-top,.wpb_bottom-to-top{animation:wpb_btt .7s cubic-bezier(.175,.885,.32,1.275) 1}.left-to-right,.wpb_left-to-right{animation:wpb_ltr .7s cubic-bezier(.175,.885,.32,1.275) 1}.right-to-left,.wpb_right-to-left{animation:wpb_rtl .7s cubic-bezier(.175,.885,.32,1.275) 1}.appear,.wpb_appear{animation:wpb_appear .7s cubic-bezier(.175,.885,.32,1.275) 1;transform:scale(1)}.wpb_start_animation{filter:alpha(opacity=100);opacity:1}@keyframes wpb_ttb{0%{filter:alpha(opacity=0);opacity:0;transform:translateY(-10%)}to{filter:alpha(opacity=100);opacity:1;transform:translate(0)}}@keyframes wpb_btt{0%{filter:alpha(opacity=0);opacity:0;transform:translateY(10%)}to{filter:alpha(opacity=100);opacity:1;transform:translate(0)}}@keyframes wpb_ltr{0%{filter:alpha(opacity=0);opacity:0;transform:translate(-10%)}to{filter:alpha(opacity=100);opacity:1;transform:translate(0)}}@keyframes wpb_rtl{0%{filter:alpha(opacity=0);opacity:0;transform:translate(10%)}to{filter:alpha(opacity=100);opacity:1;transform:translate(0)}}@keyframes wpb_appear{0%{filter:alpha(opacity=10);opacity:.1;transform:scale(.5)}to{filter:alpha(opacity=100);opacity:1;transform:scale(1)}}.vc-spinner:before{background:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../images/spinner.gif) no-repeat;background-position-x:center;background-position-y:center;content:"";display:inline-block;height:16px;margin-top:6px;pointer-events:none;width:16px}.vc-spinner.vc-spinner-complete:before{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../vc/tick.png)}.vc-spinner.vc-spinner-failed:before{background-image:url(https://shop.ariservices.co/wp-content/plugins/js_composer/assets/css/../vc/remove.png)}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini{position:relative}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_gitem-zone{filter:alpha(opacity=0)!important;opacity:0!important;transform:none!important;transition:none!important}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader-wrapper{left:0;margin-top:-50px;position:absolute;right:0;top:50%}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader{animation-delay:.16s;font-size:10px;height:50px;margin:2em auto;position:relative;text-indent:-9999em}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader,.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:after,.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:before{animation-fill-mode:both;animation:vc_woo-add-cart-load 1.8s ease-in-out infinite;border-radius:50%;height:12px;width:12px}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:before{left:-20px}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:after{animation-delay:.32s;left:20px}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:after,.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:before{content:"";position:absolute;top:0}@keyframes vc_woo-add-cart-load{0%,80%,to{box-shadow:0 2.5em 0 -1.3em #ebebebbf}40%{box-shadow:0 2.5em 0 0 #ebebebbf}}.vc_grid-item-mini .added_to_cart.wc-forward{display:none}
.vc_row {
	margin-left: -21px;
	margin-right: -21px;
}
@media (max-width: 1199px) {
	.vc_row.disable-custom-paggings-tablet {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.vc_column_container.disable-custom-paggings-tablet > .vc_column-inner {
		padding-left: 21px !important;
		padding-right: 21px !important;
	}
}
@media (max-width: 767px) {
	.vc_row.disable-custom-paggings-mobile {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.vc_column_container.disable-custom-paggings-mobile > .vc_column-inner {
		padding-left: 21px !important;
		padding-right: 21px !important;
	}
	.vc_vc_column:not([class*="vc_col-xs-"]),
	.vc_vc_column_inner:not([class*="vc_col-xs-"]) {
		width: 100%;
	}
}
.vc_row {
	margin-left: -21px;
	margin-right: -21px;
}
.vc_column_container > .vc_column-inner {
	padding-left: 21px;
	padding-right: 21px;
}
.vc_gitem_row {
	margin-left: 0;
	margin-right: 0;
}
/* Post Grid Basic */

.thegem-styles .gem-basic-grid-default {

}
.gem-basic-grid .vc_grid-item-mini {
	padding: 25px;
}
.gem-basic-grid .vc_gitem-col{
	padding: 0;
}
.gem-basic-grid .vc_gitem-zone-c a.gem-button{
	margin-top: 20px;
}
body .vc_grid-container ul.vc_grid-filter{
	margin-bottom: 60px;
}
body .vc_grid-container ul.vc_grid-filter li.vc_grid-filter-item{
	background: #dee5eb;
	padding: 3px 20px;
}
body .vc_grid-container ul.vc_grid-filter li.vc_grid-filter-item > span{
	text-transform: uppercase;
}
.gem-basic-grid .post-title h4.entry-title a{
	letter-spacing: 1.2px;
	display: block;
}
.gem-basic-grid .post-title h4.entry-title {
	margin-bottom: 0;
}
body .gem-basic-grid .vc_gitem-post-data p
{
	margin-bottom: 0;
}
body .gem-basic-grid .vc_gitem-zone-c .vc_gitem-post-data p,
body .gem-basic-grid-2 .vc_gitem-zone-c .vc_gitem-post-data p
{
	font-size: 16px;
}
body .gem-basic-grid .vc_gitem-post-data p:nth-child(2)
{
	margin-top: 20px;
	margin-bottom: 5px;
}
.gem-basic-grid .gem-button-container a{
	margin-top: 30px;
	margin-bottom: 0;
}
.gem-basic-grid-2 .vc_gitem-zone-c .vc_gitem-col{
	padding-left: 25px;
	padding-right: 25px;
}
.gem-basic-grid-2 .vc_gitem-zone-c a.gem-button{
	margin-top: 20px;
	margin-bottom: 15px;
}
.gem-basic-grid-2 .vc_gitem-zone-c .post-title a{
	display: block;
}


/* MEDIA GRID */

.gem-media-grid .vc_gitem-animated-block{
	border-radius: 25px;
}
.vc_grid .animated{
	animation-fill-mode: none;
}
.gem-media-grid .vc_gitem-post-data-source-post_title a{
	font-size: 28px;
	line-height: 42px;
	letter-spacing: 0.05em;
	margin-bottom: 1.13em;
	margin-left: 0;
	margin-right: 0;
	margin-top: 1.13em;
	text-transform: uppercase;
	display: block;
}
.gem-media-grid-2 .vc_gitem-post-data-source-post_title a{
	font-size: 28px;
	line-height: 42px;
	letter-spacing: 0.05em;
	margin-bottom: 1.13em;
	margin-left: 0;
	margin-right: 0;
	margin-top: 1.13em;
	text-transform: uppercase;
	display: block;
}
.gem-media-grid .vc_gitem-animated-block .vc_gitem-zone-b {
	padding-right: 20px;
	padding-left: 20px;
	background-color: #2c2e3d;
}
.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b {
	padding-right: 20px;
	padding-left: 20px;
}
.gem-media-grid .vc_gitem-animated-block .vc_gitem-zone-b .vc_separator{
	margin-top: 25px;
	margin-bottom: 30px;
	width: 85px;
}
.gem-media-grid .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div,
.midia-grid-item-post-author
{
	padding-left: 0;
	padding-right: 0;
	text-align: center;
}
.gem-media-grid-2 .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-post-data-source-post_excerpt > div {
	color: #2c2e3d;
	padding-left: 0;
	padding-right: 0;
}
.gem-media-grid-2 .midia-grid-item-post-author,
.gem-media-grid-2 .midia-grid-item-post-author span a
{
	padding-left: 0;
	padding-right: 0;
	text-align: left;
	margin-top: 10px;
	margin-bottom: 10px;
}
.gem-media-grid-2 .vc_grid-item-mini{
	padding: 20px;
}
.gem-media-grid-2 .vc_gitem-zone-b .vc_gitem-zone-mini{
	height: 100%;
}
.gem-media-grid-2 .vc_gitem-row-position-middle{
	height: 100%;
	transform: none;
	-webkit-transform: none;
	top: 0;
}
.gem-media-grid-2 .vc_gitem-zone-b > .vc_gitem-col{
	position: relative;
	height: inherit;
	width: 100%;
}
.gem-media-grid-2 .vc_gitem-zone-b  .vc_gitem-col{
	height: inherit;
}
.gem-media-grid-2 .vc_gitem-zone-b .vc_gitem-post-data-source-post_title{
	position: absolute;
	bottom: 0;
}
.gem-media-grid,
.gem-media-grid .vc_grid-item-mini,
.gem-media-grid .vc_grid-item-mini .vc_gitem-animated-block,
.gem-media-grid .vc_grid-item-mini .vc_gitem-animated-block .vc_gitem-zone-a,
.gem-media-grid .vc_grid-item-mini .vc_gitem-animated-block .vc_gitem-zone-b,
.gem-media-grid .vc_grid-item-mini .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-zone-mini,
.gem-media-grid .vc_grid-item-mini .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-zone-mini .vc_gitem_row,
.gem-media-grid .vc_grid-item-mini .vc_gitem-animated-block .vc_gitem-zone-b .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-col
{
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}
.gem-media-grid .vc_grid-item-mini,
.gem-media-grid .vc_grid-item-mini .vc_gitem-animated-block{
	z-index: 1100;
	overflow: hidden;
}
.gem-media-grid .vc_grid-item-mini .vc_gitem-col{
	margin-top: -30px;
}
.gem-media-grid-2 .vc_grid-item-mini .vc_gitem-post-data-source-post_title{
	margin-bottom: -15px;
}
@media (min-width: 769px) and (max-width: 1150px){
	.gem-media-grid,
	.gem-media-grid-2{
		width: 50%;
	}
}




/* PAGINATION NUMBERS */
body .vc_grid-pagination{
	margin-top: 70px;
}
body .vc_grid-pagination .vc_grid-pagination-list li a{
	width: 30px;
	height: 30px;
	margin-left: 10px;
	margin-right: 10px;
	font-size: 14px;
	line-height: 19px;
	border-radius: 3px;
	opacity: 1;
	padding-left: 9px;
}

body .vc_grid-pagination .vc_grid-pagination-list > li > a,
body .vc_grid-pagination .vc_grid-pagination-list > li > span {
	background-color: inherit;
	border: inherit;
	color: transparent;
	text-decoration: none;
	transition: none;
}
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-prev a,
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-next a
{
	width: 30px;
	height: 30px;
	margin-left: 10px;
	margin-right: 10px;
	line-height: 19px;
	border-radius: 3px;
	opacity: 1;
	text-align: left;
	padding-left: 7px;
}
body .vc_grid-pagination .vc_grid-pagination-list li.vc_grid-next a{
	padding-left: 8px;
}


body .vc_grid-owl-dots.vc_grid-radio_dots .vc_grid-owl-dot span{
	width: 24px !important;
	height: 24px !important;
	background: #b6c6c9 !important;
	border-color: #b6c6c9 !important;
}
body .vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots .vc_grid-owl-dot span{
	border-radius: 50%;
}
body .vc_grid-owl-dots.vc_grid-radio_dots .vc_grid-owl-dot.active span,
body .vc_grid-owl-dots.vc_grid-radio_dots .vc_grid-owl-dot.active span:hover
{
	background: #fff !important;
}
body .vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span,
body .vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span {
	border-color: #b6c6c9 !important;
	border-width: 4px;
	width: 24px;
	height: 24px;
}
body .vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot.active span,
body .vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot.active span,
body .vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot:hover span,
body .vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot:hover span
{
	background: #fff !important;
	border-color: #b6c6c9 !important;
	border-width: 4px;
}
.gem-camel-text-devider p{
	font-family: "Montserrat UltraLight";
	font-size: 36px;
	font-weight: normal;
	color: #3c3950 !important;
}
.gem-camel-text-devider p strong{
	font-family: "Montserrat";
	font-weight: bold;
}




.vc_grid .gem-button-separator{
	margin-bottom: 50px;
}
.vc_grid .gem-button-separator-button{
	padding: 0 20px;
}

.thegem-te-menu {
    position: relative;
    width: fit-content;
}

/* Menu toggle button style */
.thegem-te-menu .menu-toggle,
.thegem-te-menu__hamburger.desktop-view .menu-toggle,
.thegem-te-menu__overlay.desktop-view .menu-toggle{
    position: relative;
    width: 36px;
    height: 30px;
    display: flex;
    border: none;
    cursor: pointer;
    outline: none;
    background: transparent;
    padding: 0;
    font-size: 0;
    line-height: 0;
}
.thegem-te-menu .menu-toggle.small,
.thegem-te-menu .menu-toggle.dl-trigger,
.thegem-te-menu-mobile__overlay.mobile-view .menu-toggle{
    width: 18px;
}
@media (max-width: 767px) {
    .thegem-te-menu-mobile__overlay .menu-toggle{
        width: 18px;
    }
}
.thegem-te-menu .menu-toggle .menu-line-1,
.thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-1,
.thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-1,
.thegem-te-menu .menu-toggle .menu-line-2,
.thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-2,
.thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-2,
.thegem-te-menu .menu-toggle .menu-line-3,
.thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-3,
.thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-3{
    position: absolute;
    height: 4px;
    width: 100%;
    left: 0;
    -webkit-transition: all 0.5s, top .3s, height .3s;
    transition: all 0.5s, top .3s, height .3s;
}
.thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-1,
.thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-1,
.thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-2,
.thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-2,
.thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-3,
.thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-3{
    background: var(--thegem-to-hamburger-menu-icon-color, #3C3950);
}
.thegem-te-menu .menu-toggle .menu-line-1,
.thegem-te-menu .menu-toggle .menu-line-2,
.thegem-te-menu .menu-toggle .menu-line-3 {
    background: var(--thegem-to-mobile-menu-btn-color, #3C3950);
}
.thegem-te-menu .menu-toggle.small .menu-line-1,
.thegem-te-menu .menu-toggle.dl-trigger .menu-line-1,
.thegem-te-menu-mobile__overlay.mobile-view .menu-toggle .menu-line-1,
.thegem-te-menu .menu-toggle.small .menu-line-2,
.thegem-te-menu .menu-toggle.dl-trigger .menu-line-2,
.thegem-te-menu-mobile__overlay.mobile-view .menu-toggle .menu-line-2,
.thegem-te-menu .menu-toggle.small .menu-line-3,
.thegem-te-menu .menu-toggle.dl-trigger .menu-line-3,
.thegem-te-menu-mobile__overlay.mobile-view .menu-toggle .menu-line-3{
    height: 2px;
    width: 18px;
}
@media (max-width: 767px) {
    .thegem-te-menu-mobile__overlay .menu-toggle .menu-line-1,
    .thegem-te-menu-mobile__overlay .menu-toggle .menu-line-2,
    .thegem-te-menu-mobile__overlay .menu-toggle .menu-line-3{
        height: 2px;
        width: 18px;
    }
}
.thegem-te-menu .menu-toggle .menu-line-1,
.thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-1,
.thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-1{
    top: 3px;
}
.thegem-te-menu .menu-toggle.small .menu-line-1,
.thegem-te-menu .menu-toggle.dl-trigger .menu-line-1,
.thegem-te-menu-mobile__overlay.mobile-view .menu-toggle .menu-line-1{
    top: 9px;
}
@media (max-width: 767px) {
    .thegem-te-menu-mobile__overlay .menu-toggle .menu-line-1{
        top: 9px;
    }
}
.thegem-te-menu .menu-toggle .menu-line-2,
.thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-2,
.thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-2{
    top: 13px;
}
.thegem-te-menu .menu-toggle.small .menu-line-2,
.thegem-te-menu .menu-toggle.dl-trigger .menu-line-2,
.thegem-te-menu-mobile__overlay.mobile-view .menu-toggle .menu-line-2{
    top: 14px;
}
@media (max-width: 767px) {
    .thegem-te-menu-mobile__overlay .menu-toggle .menu-line-2{
        top: 14px;
    }
}
.thegem-te-menu .menu-toggle .menu-line-3,
.thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-3,
.thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-3{
    top: 23px;
}
.thegem-te-menu .menu-toggle.small .menu-line-3,
.thegem-te-menu .menu-toggle.dl-trigger .menu-line-3,
.thegem-te-menu-mobile__overlay.mobile-view .menu-toggle .menu-line-3{
    top: 19px;
}
@media (max-width: 767px) {
    .thegem-te-menu-mobile__overlay .menu-toggle .menu-line-3{
        top: 19px;
    }
}
@media (-webkit-device-pixel-ratio: 1.25) {
    .thegem-te-menu .menu-toggle.small .menu-line-1,
    .thegem-te-menu .menu-toggle.dl-trigger .menu-line-1,
    .thegem-te-menu-mobile__overlay.mobile-view .menu-toggle .menu-line-1,
    .thegem-te-menu .menu-toggle.small .menu-line-2,
    .thegem-te-menu .menu-toggle.dl-trigger .menu-line-2,
    .thegem-te-menu-mobile__overlay.mobile-view .menu-toggle .menu-line-2,
    .thegem-te-menu .menu-toggle.small .menu-line-3,
    .thegem-te-menu .menu-toggle.dl-trigger .menu-line-3,
    .thegem-te-menu-mobile__overlay.mobile-view .menu-toggle .menu-line-3{
        height: 1.6px;
    }
}

.thegem-te-menu .nav-menu > li > a {
    position: relative;
}

/* Mega Menu Styles*/
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header a {
    font-family: var(--thegem-to-menu-font-family, 'Montserrat');
    font-style: var(--thegem-to-menu-font-style, normal);
    font-weight: var(--thegem-to-menu-font-weight, 700);
    font-size: var(--thegem-to-menu-font-size, 14px);
    line-height: var(--thegem-to-menu-line-height, 25px);
    letter-spacing: var(--thegem-to-menu-letter-spacing, 0);
    text-transform: var(--thegem-to-menu-text-transform, uppercase);
    text-decoration: none;
    color: var(--thegem-to-menu-level1-color, #3C3950);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul li > a {
    font-family: var(--thegem-to-submenu-font-family, 'Source Sans Pro');
    font-style: var(--thegem-to-submenu-font-style, normal);
    font-weight: var(--thegem-to-submenu-font-weight, normal);
    font-size: var(--thegem-to-submenu-font-size, 16px);
    line-height: var(--thegem-to-submenu-line-height, 20px);
    letter-spacing: var(--thegem-to-submenu-letter-spacing, 0);
    text-transform: var(--thegem-to-submenu-text-transform, none);
}
.thegem-te-menu nav.mobile-view .mega-label {
    display: none;
}
@media (max-width: 767px) {
    .thegem-te-menu .mega-label {
        display: none;
    }
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li .mega-label {
    color: var(--thegem-to-main-bg-color, #FFFFFF)
}
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li.menu-item-current > a,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li.menu-item-active > a,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li.menu-item-current > a,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li.menu-item-active > a,
.thegem-te-menu.menu--light-submenu.desktop-view .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-current > a,
.thegem-te-menu.menu--light-submenu.desktop-view .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-active > a,
.thegem-te-menu.menu--light-submenu.desktop-view .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li:hover > a {
    border-color: var(--thegem-to-styled-color1, #00BCD4);
}
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-current > a,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-active > a,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li:hover > a,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-current > a,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-active > a,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li:hover > a {
    /*border-color: var(--thegem-to-submenu-highlighter-color);*/
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li .mega-label {
    background-color: var(--thegem-to-styled-color3, #f44336);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul li > a:hover,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul li.menu-item-current > a,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul li.menu-item-active > a {
    background-color: var(--thegem-to-menu-level1-color-hover, #00bcd4);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li > a {
    color: var(--thegem-to-menu-level2-color, #5f727f);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li > a,
.thegem-te-menu nav:not(.mobile-view) .nav-menu> li.megamenu-enable.megamenu-style-grid > ul li > span.megamenu-column-header > a {
    background-color: var(--thegem-to-menu-level2-bg-color, #f4f6f7);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li:hover > a {
    color: var(--thegem-to-menu-level2-hover-color, #3c3950);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li:hover > a {
    background-color: var(--thegem-to-menu-level2-hover-bg-color, #ffffff);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li.menu-item-current > a,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li.menu-item-active > a {
    color: var(--thegem-to-menu-level2-active-color, #3c3950);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li.menu-item-current > a,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul li.menu-item-active > a {
    background-color: var(--thegem-to-menu-level2-active-bg-color, #ffffff);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header a,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header a.mega-no-link {
    color: var(--thegem-to-mega-menu-column-title-color, #3c3950);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header a:hover {
    color: var(--thegem-to-mega-menu-column-title-hover-color, #00bcd4);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li.menu-item-active > span.megamenu-column-header a {
    color: var(--thegem-to-mega-menu-column-title-active-color, #00bcd4);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li:not(.megamenu-template-enable):not(.menu-item-type-template) li li:hover > a,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul li.menu-item-current > a,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul li.menu-item-active > a {
    color: var(--thegem-to-menu-level3-hover-color, #ffffff);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header {
    border-top: 1px solid var(--thegem-to-menu-level2-border-color, #dfe5e8);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li {
    border-bottom: 1px solid var(--thegem-to-menu-level2-border-color, #dfe5e8);
    border-left: 1px solid var(--thegem-to-menu-level2-border-color, #dfe5e8);
    border-right: 1px solid var(--thegem-to-menu-level2-border-color, #dfe5e8);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header:not(:last-child) {
    border-bottom: 1px solid var(--thegem-to-menu-level2-border-color, #dfe5e8);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul {
    border: 1px solid var(--thegem-to-menu-level2-border-color, #dfe5e8);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header a.megamenu-has-icon:before,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li > ul > li > a:before {
    color: var(--thegem-to-mega-menu-icons-color, #5F727FFF);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header a:hover.megamenu-has-icon:before,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li > ul > li > a:hover:before {
    color: inherit;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul:not(.megamenu-item-inited) {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    -o-transform: translateY(20px) !important;
    -ms-transform: translateY(20px) !important;
    -moz-transform: translateY(20px) !important;
    -webkit-transform: translateY(20px) !important;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li > ul ul {
    display: none;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul {
    width: auto;
    white-space: nowrap;
    background-repeat: no-repeat;
    font-size: 0;
    line-height: 1;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul.megamenu-masonry.megamenu-masonry-inited > li {
    position: absolute;
}
#site-header.without-transition *,
.thegem-te-menu nav:not(.mobile-view) .nav-menu li > ul.without-transition,
#primary-navigation.without-transition ul {
    transition: none !important;
    -moz-transition: none !important;
    -webkit-transition: none !important;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable ul {
    width: auto;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul ul {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-left: 0 !important;
    border-right: 0 !important;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul:not(.megamenu-masonry) > li.megamenu-no-right-border,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul:not(.megamenu-masonry) > li.megamenu-no-right-border span.megamenu-column-header {
    border-right: 0;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li {
    display: inline-block;
    vertical-align: top;
    border: 0;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li {
    margin: 0 0 -1px -1px;
    border-top: 0 !important;
    /*border-bottom: 0 !important;*/
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul.megamenu-masonry > li {
    /*margin: -1px 0 -1px -1px;*/
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul > li {
    margin: 0 0 0 31px;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul > li.megamenu-first-element {
    margin-left: 0;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li.megamenu-new-row {
    display: block;
    font-size: 0;
    line-height: 1;
    height: 0;
    padding: 0 !important;
    margin: 0 0 1px 0;
    border: none;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul.megamenu-masonry > li.megamenu-new-row {
    /*margin-bottom: 0;*/
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul > li.megamenu-new-row {
    margin: 0 0 7px 0;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default ul ul {
    border: 0;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default li,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default li.menu-item-current,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default li.menu-item-active {
    background: none;
    border: 0;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header {
    display: block;
    border-top: 0;
    position: relative;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul > li span.megamenu-column-header {
    padding-top: 8px;
    padding-bottom: 12px;
    margin-bottom: 11px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul > li a {
    display: block;
    background: none;
    padding: 0;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul li:hover > a,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default li.menu-item-current > a,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default li.menu-item-active > a {
    border: 0;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default li.menu-item-parent > a:after {
    display: none;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header a {
    text-transform: uppercase;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul > li span.megamenu-column-header a {
    padding: 0;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li span.megamenu-column-header a {
    display: block;
    padding-top: 13px;
    padding-bottom: 13px;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header a.mega-no-link {
    pointer-events: none;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header.mega-not-show {
    display: none;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul > li span.megamenu-column-header a.megamenu-has-icon {
    padding-left: 26px;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li span.megamenu-column-header a.megamenu-has-icon {
    padding-left: 56px;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li span.megamenu-column-header a.megamenu-has-icon:before {
    position: absolute;
    left: 0;
    display: inline-block;
    font-weight: normal;
    font-family: 'FontAwesome';
    content: attr(data-icon);
    font-size: 14px;
    vertical-align: baseline;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li span.megamenu-column-header a.megamenu-has-icon:before {
    left: 30px;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li .mega-label {
    display: inline;
    font-size: 65%;
    line-height: 1;
    text-transform: uppercase;
    padding: 0 4px 0px 4px;
    margin: 0 0 0 10px;

}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li > a,
#thegem-perspective .perspective-navigation .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li > a {
    padding-left: 55px;
}
.header-layout-fullwidth_hamburger.logo-position-right .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li > a,
.header-layout-fullwidth_hamburger.logo-position-right .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li > a,
.header-layout-fullwidth_hamburger.logo-position-right .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li > a,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li > a,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li > a,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li > a,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li > a,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li > a,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li > a {
    padding-left: 52px;
}
.header-layout-fullwidth_hamburger.logo-position-right .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-current > a,
.header-layout-fullwidth_hamburger.logo-position-right .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-active > a,
.header-layout-fullwidth_hamburger.logo-position-right .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li:hover > a,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-current > a,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-active > a,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li:hover > a,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-current > a,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-active > a,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li:hover > a {
    padding-left: 52px;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul > li > ul li > a {
    position: relative;
    padding: 8px 12px 8px 47px;
    vertical-align: middle;
    margin-left: -20px;
    border-left: 0 none;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li > ul > li > a:before {
    display: inline-block;
    font-weight: normal;
    font-family: 'FontAwesome';
    content: "\f105";
    font-size: 14px;
    vertical-align: baseline;
    width: 25px;
    text-align: left;
    margin-left: -13px;
    padding-left: 4px;
    position: absolute;
    left: 34px;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul > li > a:before {
    margin: 0;
    left: 27px;
}
.header-layout-fullwidth_hamburger.logo-position-right .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-current > a:before,
.header-layout-fullwidth_hamburger.logo-position-right .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-active > a:before,
.header-layout-fullwidth_hamburger.logo-position-right .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li:hover > a:before,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-current > a:before,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-active > a:before,
.header-style-2 .thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li:hover > a:before,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-current > a:before,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li.menu-item-active > a:before,
.thegem-te-menu.menu--light-submenu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-grid > ul > li > ul li:hover > a:before {
    left: 27px;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li > ul > li.megamenu-has-icon > a::before {
    content: attr(data-icon);
    padding: 0;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul > li > ul > li > a:before {
    margin-right: 0;
    font-size: 14px;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable.megamenu-style-default > ul > li > ul > li.megamenu-has-icon > a::before {
    font-family: 'FontAwesome';
    content: attr(data-icon);
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable > ul > li > ul {
    position: static !important;
    transform: translateX(0) !important;
    -o-transform: translateX(0) !important;
    -ms-transform: translateX(0)!important;
    -moz-transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
}
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable:hover > ul > li > ul,
.thegem-te-menu nav:not(.mobile-view) .nav-menu > li.menu-item.megamenu-enable:focus-within > ul > li > ul {
    visibility: visible;
    opacity: 1;
}

.thegem-te-menu .nav-menu.submenu-icon > li:not(.menu-item-has-children):not(.menu-item-type-socials-widget) > a i,
.thegem-te-menu .nav-menu.submenu-icon > li.menu-item-has-children:not(.menu-item-type-socials-widget) li a i,
.thegem-te-menu .nav-menu.submenu-icon > li:not(.menu-item-has-children):not(.menu-item-type-socials-widget) > a svg,
.thegem-te-menu .nav-menu.submenu-icon > li.menu-item-has-children:not(.menu-item-type-socials-widget) li a svg {
    display: none;
}
@media screen and (max-width: 979px) {
    .thegem-te-menu .nav-menu.submenu-icon li:not(.menu-item-type-socials-widget) a i,
    .thegem-te-menu .nav-menu.submenu-icon li:not(.menu-item-type-socials-widget) a svg {
        display: none !important;
    }
}
.thegem-te-menu .nav-menu.submenu-icon > li.menu-item-has-children:not(.menu-item-type-socials-widget) > a i,
.thegem-te-menu .nav-menu.submenu-icon > li.menu-item-has-children:not(.menu-item-type-socials-widget) > a svg {
    display: inline-block;
    font-style: normal;
    font-size: var(--thegem-to-body-tiny-font-size);
    line-height: 1;
    font-weight: normal;
    vertical-align: middle;
}
.thegem-te-menu .nav-menu.submenu-icon > li.menu-item-has-children:not(.menu-item-type-socials-widget) > a svg {
    max-width: var(--thegem-to-body-tiny-font-size);
    max-height: var(--thegem-to-body-tiny-font-size);
}
.thegem-te-menu .nav-menu.submenu-icon > li.menu-item-has-children:not(.menu-item-type-socials-widget) > a i.default:before {
    content: '\e602';
    font-family: 'thegem-icons';
}
.thegem-te-menu nav.desktop-view .nav-menu.submenu-hide-border > li ul,
.thegem-te-menu nav.desktop-view .nav-menu.submenu-hide-border > li ul li {
    border: none !important;
}
.thegem-te-menu nav.desktop-view .nav-menu.submenu-hide-border > li.megamenu-enable.megamenu-style-grid ul li {
    margin: 0 !important;
}

/*Use Light Color Scheme*/
#site-header.header-light .thegem-te-menu__default.desktop-view ul.nav-menu > li > a{
    color: var(--header-builder-light-color, #FFFFFF);
}
#site-header.header-light .thegem-te-menu__default.desktop-view ul.nav-menu > li:hover > a{
    color: var(--header-builder-light-color-hover, var(--thegem-to-menu-level1-color-hover));
}
#site-header.header-light .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-active > a,
#site-header.header-light .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-active > a:hover,
#site-header.header-light .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-current > a,
#site-header.header-light .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-current > a:hover{
    color: var(--header-builder-light-color, #FFFFFF);
}
#site-header.header-light .thegem-te-menu .menu-toggle .menu-line-1,
#site-header.header-light .thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-1,
#site-header.header-light .thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-1,
#site-header.header-light .thegem-te-menu .menu-toggle .menu-line-2,
#site-header.header-light .thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-2,
#site-header.header-light .thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-2,
#site-header.header-light .thegem-te-menu .menu-toggle .menu-line-3,
#site-header.header-light .thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-3,
#site-header.header-light .thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-3{
    background: var(--header-builder-light-color);
}

.thegem-te-menu nav.different-source-mobile.desktop-view ul.nav-menu.mobile-menu-source,
.thegem-te-menu nav.different-source-mobile.mobile-view ul.nav-menu:not(.mobile-menu-source) {
    display: none;
}


/* Hover and Active Pointers */

.thegem-te-menu nav.desktop-view ul.nav-menu > li > a:after,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a:before {
    display: block;
    position: absolute;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transition-timing-function: cubic-bezier(.58,.3,.005,1);
    -o-transition-timing-function: cubic-bezier(.58,.3,.005,1);
    transition-timing-function: cubic-bezier(.58,.3,.005,1);
}

.thegem-te-menu nav.desktop-view ul.nav-menu > li > a:before {
    z-index: -1;
}

.thegem-te-menu nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:after,
.thegem-te-menu nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before {
    opacity: 0;
}

/* Style Hover Framed */

.style-hover-framed.style-hover-type-frame-rounded nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-active-framed.style-active-type-frame-rounded nav.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-framed.style-active-type-frame-rounded nav.desktop-view ul.nav-menu > li.menu-item-current > a,
.style-hover-framed.style-hover-type-frame-rounded nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-active-framed.style-active-type-frame-rounded nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-framed.style-active-type-frame-rounded nav.desktop-view ul.nav-menu > li.menu-item-current > a:before,
.style-hover-framed.style-hover-type-frame-rounded nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
.style-active-framed.style-active-type-frame-rounded nav.desktop-view ul.nav-menu > li.menu-item-active > a:after,
.style-active-framed.style-active-type-frame-rounded nav.desktop-view ul.nav-menu > li.menu-item-current > a:after {
    border-radius: 20px;
}

.style-hover-framed nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-active-framed nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-framed nav.desktop-view ul.nav-menu > li.menu-item-current > a:before,
.style-hover-framed nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
.style-active-framed nav.desktop-view ul.nav-menu > li.menu-item-active > a:after,
.style-active-framed nav.desktop-view ul.nav-menu > li.menu-item-current > a:after {
    background: transparent;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: 2px solid var(--thegem-to-menu-level1-active-bg-color, #3c3950);
}

#site-header.header-light .style-hover-framed nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
#site-header.header-light .style-active-framed nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
#site-header.header-light .style-active-framed nav.desktop-view ul.nav-menu > li.menu-item-current > a:before,
#site-header.header-light .style-hover-framed nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
#site-header.header-light .style-active-framed nav.desktop-view ul.nav-menu > li.menu-item-active > a:after,
#site-header.header-light .style-active-framed nav.desktop-view ul.nav-menu > li.menu-item-current > a:after {
    border-color: var(--header-builder-light-color, #FFFFFF);
}

.style-hover-framed nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-active-framed nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-framed nav.desktop-view ul.nav-menu > li.menu-item-current > a:before {
    content: '';
}

.style-hover-framed.style-hover-animation-grow nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before {
    transform: scale(0.75);
}

.style-hover-framed.style-hover-animation-shrink nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before {
    transform: scale(1.25);
}

.style-hover-framed.style-hover-animation-grow nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-framed.style-hover-animation-shrink nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before {
    transition: opacity 0.2s, transform 0.4s;
}

.style-hover-framed.style-hover-animation-draw nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-framed.style-hover-animation-draw nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after {
    width: 2px;
    height: 2px;
}

.style-hover-framed.style-hover-animation-draw nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before {
    border-width: 0 0 2px 2px;
    transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
}

.style-hover-framed.style-hover-animation-draw nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after {
    content: '';
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    border-width: 2px 2px 0 0;
    transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
}

.style-hover-framed.style-hover-animation-draw nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a:before,
.style-hover-framed.style-hover-animation-draw nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a:after {
    width: 100% !important;
    height: 100% !important;
}

.style-hover-framed.style-hover-animation-draw nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a:before {
    transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
}

.style-hover-framed.style-hover-animation-draw nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a:after {
    transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
}

.style-hover-framed.style-hover-animation-corners nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-framed.style-hover-animation-corners nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after {
    width: 2px;
    height: 2px;
}

.style-hover-framed.style-hover-animation-corners nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before {
    border-width: 2px 0 0 2px;
}

.style-hover-framed.style-hover-animation-corners nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after {
    content: '';
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    border-width: 0 2px 2px 0;
}

.style-hover-framed.style-hover-animation-corners nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a:before,
.style-hover-framed.style-hover-animation-corners nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a:after {
    width: 100% !important;
    height: 100% !important;
    transition: opacity 0.002s, width 0.4s, height 0.4s;
}

.style-hover-framed.style-hover-animation-none,
.style-hover-framed.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a {
    transition-duration: 0s;
}

.style-hover-framed.style-hover-animation-none:before,
.style-hover-framed.style-hover-animation-none:after,
.style-hover-framed.style-hover-animation-none:hover,
.style-hover-framed.style-hover-animation-none:focus,
.style-hover-framed.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-framed.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
.style-hover-framed.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a {
    transition-duration: 0s;
}


/* Style Hover Lined */

.style-hover-lined nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-active-lined nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-lined nav.desktop-view ul.nav-menu > li.menu-item-current > a:before {
    content: '';
    top: 0;
}

.style-hover-lined nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
.style-active-lined nav.desktop-view ul.nav-menu > li.menu-item-active > a:after,
.style-active-lined nav.desktop-view ul.nav-menu > li.menu-item-current > a:after {
    content: '';
    bottom: 0;
}

.style-hover-lined.style-hover-type-line-underline-1 nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-lined.style-hover-type-line-underline-2 nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-lined.style-hover-type-line-overline-1 nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
.style-hover-lined.style-hover-type-line-overline-2 nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
.style-active-lined.style-active-type-line-underline-1 nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-lined.style-active-type-line-underline-2 nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-lined.style-active-type-line-overline-1 nav.desktop-view ul.nav-menu > li.menu-item-active > a:after,
.style-active-lined.style-active-type-line-overline-2 nav.desktop-view ul.nav-menu > li.menu-item-active > a:after,
.style-active-lined.style-active-type-line-underline-1 nav.desktop-view ul.nav-menu > li.menu-item-current > a:before,
.style-active-lined.style-active-type-line-underline-2 nav.desktop-view ul.nav-menu > li.menu-item-current > a:before,
.style-active-lined.style-active-type-line-overline-1 nav.desktop-view ul.nav-menu > li.menu-item-current > a:after,
.style-active-lined.style-active-type-line-overline-2 nav.desktop-view ul.nav-menu > li.menu-item-current > a:after {
    content: none;
}

.style-hover-lined nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-active-lined nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-lined nav.desktop-view ul.nav-menu > li.menu-item-current > a:before,
.style-hover-lined nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
.style-active-lined nav.desktop-view ul.nav-menu > li.menu-item-active > a:after,
.style-active-lined nav.desktop-view ul.nav-menu > li.menu-item-current > a:after {
    height: 2px;
    width: 100%;
    left: 0;
    background-color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
    z-index: 2;
}

.style-hover-lined.style-hover-type-line-top-bottom nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-active-lined.style-active-type-line-top-bottom nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-lined.style-active-type-line-top-bottom nav.desktop-view ul.nav-menu > li.menu-item-current > a:before,
.style-hover-lined.style-hover-type-line-top-bottom nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
.style-active-lined.style-active-type-line-top-bottom nav.desktop-view ul.nav-menu > li.menu-item-active > a:after,
.style-active-lined.style-active-type-line-top-bottom nav.desktop-view ul.nav-menu > li.menu-item-current > a:after {
    background-color: var(--thegem-to-menu-level1-active-bg-color, #3c3950);
}

#site-header.header-light .style-hover-lined.style-hover-type-line-top-bottom nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
#site-header.header-light .style-active-lined.style-active-type-line-top-bottom nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
#site-header.header-light .style-active-lined.style-active-type-line-top-bottom nav.desktop-view ul.nav-menu > li.menu-item-current > a:before,
#site-header.header-light .style-hover-lined.style-hover-type-line-top-bottom nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
#site-header.header-light .style-active-lined.style-active-type-line-top-bottom nav.desktop-view ul.nav-menu > li.menu-item-active > a:after,
#site-header.header-light .style-active-lined.style-active-type-line-top-bottom nav.desktop-view ul.nav-menu > li.menu-item-current > a:after {
    background-color: var(--header-builder-light-color, #FFFFFF);
}

.style-hover-lined.style-hover-animation-grow nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-lined.style-hover-animation-grow nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:after {
    height: 0;
    width: 0;
    left: 50%;
}

.style-hover-lined.style-hover-animation-drop-out nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before {
    top: 10px;
}

.style-hover-lined.style-hover-animation-drop-out nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:after {
    bottom: 10px;
}

.style-hover-lined.style-hover-animation-drop-in nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before {
    top: -10px;
}

.style-hover-lined.style-hover-animation-drop-in nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:after {
    bottom: -10px;
}

.style-hover-lined.style-hover-animation-none,
.style-hover-lined.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a {
    transition-duration: 0s;
}

.style-hover-lined.style-hover-animation-none:before,
.style-hover-lined.style-hover-animation-none:after,
.style-hover-lined.style-hover-animation-none:hover,
.style-hover-lined.style-hover-animation-none:focus,
.style-hover-lined.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-lined.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
.style-hover-lined.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:hover,
.style-hover-lined.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:focus {
    transition-duration: 0s;
}

.style-hover-lined.style-hover-animation-slide-right nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-lined.style-hover-animation-slide-right nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:after {
    width: 10px;
    left: -20px;
}

.style-hover-lined.style-hover-animation-slide-left nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-lined.style-hover-animation-slide-left nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:after {
    width: 10px;
    left: calc(100% + 20px);
}

/* Style Hover Background */

.style-hover-background nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-active-background nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-background nav.desktop-view ul.nav-menu > li.menu-item-current > a:before,
.style-hover-background nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
.style-active-background nav.desktop-view ul.nav-menu > li.menu-item-active > a:after,
.style-active-background nav.desktop-view ul.nav-menu > li.menu-item-current > a:after {
    content: '';
    transition: 0.3s;
}

.style-hover-background nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-active-background nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-background nav.desktop-view ul.nav-menu > li.menu-item-current > a:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--thegem-to-menu-level1-hover-bg-color, #F4F6F7);
    z-index: -1;
}

.style-hover-background.style-hover-type-background-underline nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after,
.style-active-background.style-active-type-background-underline nav.desktop-view ul.nav-menu > li.menu-item-active > a:after,
.style-active-background.style-active-type-background-underline nav.desktop-view ul.nav-menu > li.menu-item-current > a:after {
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thegem-to-menu-level2-border-color, #DFE5E8);
    z-index: 2;
}

.style-hover-background.style-hover-type-background-underline nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a,
.style-active-background.style-active-type-background-underline nav.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-background.style-active-type-background-underline nav.desktop-view ul.nav-menu > li.menu-item-current > a {
    color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}

.style-hover-background.style-hover-type-background-rounded nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a,
.style-active-background.style-active-type-background-rounded nav.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-background.style-active-type-background-rounded nav.desktop-view ul.nav-menu > li.menu-item-current > a {
    color: #fff;
}

.style-hover-background.style-hover-type-background-rounded nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a:before,
.style-active-background.style-active-type-background-rounded nav.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-background.style-active-type-background-rounded nav.desktop-view ul.nav-menu > li.menu-item-current > a:before {
    background-color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
    border-radius: 20px;
}

.style-hover-background.style-hover-animation-grow nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-background.style-hover-animation-grow nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after {
    transform: scale(0.5);
}

.style-hover-background.style-hover-animation-grow nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a:before,
.style-hover-background.style-hover-animation-grow nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a:after {
    transform: scale(1);
    opacity: 1;
}

.style-hover-background.style-hover-animation-shrink nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-background.style-hover-animation-shrink nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:after {
    transform: scale(1.2);
    transition: 0.3s;
}

.style-hover-background.style-hover-animation-shrink nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a:before,
.style-hover-background.style-hover-animation-shrink nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a:after {
    transition: opacity 0.15s, transform 0.4s;
}

.style-hover-background.style-hover-animation-sweep-left nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-background.style-hover-animation-sweep-left nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:after {
    left: 100%;
}

.style-hover-background.style-hover-animation-sweep-right nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-background.style-hover-animation-sweep-right nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:after {
    right: 100%;
}

.style-hover-background.style-hover-animation-sweep-up nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-background.style-hover-animation-sweep-up nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:after {
    top: 100%;
}

.style-hover-background.style-hover-animation-sweep-down nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-background.style-hover-animation-sweep-down nav.desktop-view ul.nav-menu > li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current) > a:after {
    bottom: 100%;
}

.style-hover-background.style-hover-animation-none,
.style-hover-background.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a {
    transition-duration: 0s;
}

.style-hover-background.style-hover-animation-none:before,
.style-hover-background.style-hover-animation-none:after,
.style-hover-background.style-hover-animation-none:hover,
.style-hover-background.style-hover-animation-none:focus,
.style-hover-background.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-hover-background.style-hover-animation-none nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:after {
    transition-duration: 0s;
}

/* Style Hover Text Color */

.style-hover-text nav.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current):hover > a {
    color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}

.style-active-text nav.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-text nav.desktop-view ul.nav-menu > li.menu-item-current > a {
    color: var(--thegem-to-menu-level1-active-color, #3C3950);
}

.thegem-te-menu nav.mobile-view .megamenu-template {
    display: none;
}

.thegem-te-menu nav.desktop-view ul.nav-menu > li.megamenu-template-enable .sub-menu {
    display: none !important;
}

.thegem-te-menu ul.nav-menu .megamenu-template {
    background-color: var(--thegem-to-main-bg-color, #FFFFFF);
    font-size: initial;
}

.thegem-te-menu ul.nav-menu .megamenu-template .container {
    max-width: 100%;
}

.thegem-te-menu ul.nav-menu .megamenu-template .wpb_row {
    margin-bottom: 0;
}

.thegem-te-menu ul.nav-menu .megamenu-template .vc_row {
    margin-left: -21px;
    margin-right: -21px;
}

.thegem-te-menu ul.nav-menu .megamenu-template.template-width-custom .container {
    width: 100%;
}

.thegem-te-menu ul.nav-menu .megamenu-template > .container > p:empty {
    display: none;
}

.thegem-te-menu nav.desktop-view ul.nav-menu > li.megamenu-template-enable:not(:hover) .megamenu-template * {
    transition: none !important;
}

.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h3,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h4,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h5,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h6,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.styled-subtitle,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-text-body,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-text-body-tiny {
    margin-top: 0;
    margin-bottom: 0;
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h3,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h3 ~ span{
    font-family: var(--thegem-to-h3-font-family);
    font-style: var(--thegem-to-h3-font-style);
    font-weight: var(--thegem-to-h3-font-weight);
    text-transform: var(--thegem-to-h3-text-transform);
    font-size: var(--thegem-to-h3-font-size);
    line-height: var(--thegem-to-h3-line-height);
    letter-spacing: var(--thegem-to-h3-letter-spacing);
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h3.light,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h3.light ~ span{
    font-family: var(--thegem-to-light-title-font-family);
    font-style: normal;
    font-weight: normal;
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h4,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h4 ~ span{
    font-family: var(--thegem-to-h4-font-family);
    font-style: var(--thegem-to-h4-font-style);
    font-weight: var(--thegem-to-h4-font-weight);
    text-transform: var(--thegem-to-h4-text-transform);
    font-size: var(--thegem-to-h4-font-size);
    line-height: var(--thegem-to-h4-line-height);
    letter-spacing: var(--thegem-to-h4-letter-spacing);
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h4.light,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h4.light ~ span{
    font-family: var(--thegem-to-light-title-font-family);
    font-style: normal;
    font-weight: normal;
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h5,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h5 ~ span{
    font-family: var(--thegem-to-h5-font-family);
    font-style: var(--thegem-to-h5-font-style);
    font-weight: var(--thegem-to-h5-font-weight);
    text-transform: var(--thegem-to-h5-text-transform);
    font-size: var(--thegem-to-h5-font-size);
    line-height: var(--thegem-to-h5-line-height);
    letter-spacing: var(--thegem-to-h5-letter-spacing);
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h5.light,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h5.light ~ span{
    font-family: var(--thegem-to-light-title-font-family);
    font-style: normal;
    font-weight: normal;
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h6,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h6 ~ span{
    font-family: var(--thegem-to-h6-font-family);
    font-style: var(--thegem-to-h6-font-style);
    font-weight: var(--thegem-to-h6-font-weight);
    text-transform: var(--thegem-to-h6-text-transform);
    font-size: var(--thegem-to-h6-font-size);
    line-height: var(--thegem-to-h6-line-height);
    letter-spacing: var(--thegem-to-h6-letter-spacing);
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h6.light,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-h6.light ~ span{
    font-family: var(--thegem-to-light-title-font-family);
    font-style: normal;
    font-weight: normal;
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.styled-subtitle,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.styled-subtitle ~ span{
    font-family: var(--thegem-to-styled-subtitle-font-family);
    font-style: var(--thegem-to-styled-subtitle-font-style);
    font-weight: var(--thegem-to-styled-subtitle-font-weight);
    text-transform: var(--thegem-to-styled-subtitle-text-transform);
    font-size: var(--thegem-to-styled-subtitle-font-size);
    line-height: var(--thegem-to-styled-subtitle-line-height);
    letter-spacing: var(--thegem-to-styled-subtitle-letter-spacing);
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.styled-subtitle.light,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.styled-subtitle.light ~ span{
    font-family: var(--thegem-to-light-title-font-family);
    font-style: normal;
    font-weight: normal;
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-text-body,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-text-body ~ span{
    font-family: var(--thegem-to-body-font-family);
    font-style: var(--thegem-to-body-font-style);
    font-weight: var(--thegem-to-body-font-weight);
    text-transform: var(--thegem-to-body-text-transform);
    font-size: var(--thegem-to-body-font-size);
    line-height: var(--thegem-to-body-line-height);
    letter-spacing: var(--thegem-to-body-letter-spacing);
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-text-body.light,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-text-body.light ~ span{
    font-family: var(--thegem-to-light-title-font-family);
    font-style: normal;
    font-weight: normal;
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-text-body-tiny,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-text-body-tiny ~ span{
    font-family: var(--thegem-to-body-tiny-font-family);
    font-style: var(--thegem-to-body-tiny-font-style);
    font-weight: var(--thegem-to-body-tiny-font-weight);
    text-transform: var(--thegem-to-body-tiny-text-transform);
    font-size: var(--thegem-to-body-tiny-font-size);
    line-height: var(--thegem-to-body-tiny-line-height);
    letter-spacing: var(--thegem-to-body-tiny-letter-spacing);
}
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-text-body-tiny.light,
.thegem-te-menu nav.desktop-view ul.nav-menu > li > a.title-text-body-tiny.light ~ span{
    font-family: var(--thegem-to-light-title-font-family);
    font-style: normal;
    font-weight: normal;
}

/* Hide toggle buttons */
.thegem-te-menu__hamburger.desktop-view .overlay-menu-back,
.thegem-te-menu__hamburger.desktop-view .dl-trigger,
.thegem-te-menu__hamburger.desktop-view .overlay-toggle,
.thegem-te-menu__hamburger.desktop-view .mobile-menu-slide-close{
	display: none;
}
/* Hide back item */
.thegem-te-menu__hamburger.desktop-view ul.nav-menu li.dl-back,
.thegem-te-menu__hamburger.desktop-view ul.nav-menu li.dl-parent{
	display: none !important;
}

/* Menu style default level1 */
.thegem-te-menu__hamburger.desktop-view ul.nav-menu{
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	width: 340px;
	height: 100vh;
	left: inherit !important;
	max-height: none !important;
	display: flex;
	flex-direction: column;
	-moz-transition: transform 1s;
	-webkit-transition: transform 1s;
	transition: transform 1s;
	background-image: var(--thegem-to-navigation-background-image);
	background-repeat: var(--thegem-to-navigation-background-repeat);
	background-size: var(--thegem-to-navigation-background-size);
	background-position-x: var(--thegem-to-navigation-background-position-x);
	background-position-y: var(--thegem-to-navigation-background-position-y);
	background-color: var(--thegem-to-navigation-background-color, #FFFFFF);
	padding: 100px 30px 30px 0;
	z-index: 10;
	-moz-transform: translateX(340px);
	-webkit-transform: translateX(340px);
	transform: translateX(340px);
	margin: 0;
}
.thegem-te-menu__hamburger.desktop-view.hamburger-position-left ul.nav-menu{
	right: inherit !important;
	left: 0 !important;
	-moz-transform: translateX(-340px);
	-webkit-transform: translateX(-340px);
	transform: translateX(-340px);
}
body.admin-bar .thegem-te-menu__hamburger.desktop-view ul.nav-menu {
	top: 32px;
	height: calc(100vh - 32px);
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu li.megamenu-enable ul {
	margin-top: -1px;
}
.thegem-te-menu__hamburger.desktop-view.hamburger-active ul.nav-menu{
	right: 0;
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li{
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 30px;
	padding-top: 11px;
	padding-bottom: 11px;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > a{
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 2px 16px;
	font-family: var(--thegem-to-menu-font-family, 'Montserrat');
	font-style: var(--thegem-to-menu-font-style, normal);
	font-weight: var(--thegem-to-menu-font-weight, 700);
	font-size: var(--thegem-to-menu-font-size, 14px);
	line-height: var(--thegem-to-menu-line-height, 25px);
	letter-spacing: var(--thegem-to-menu-letter-spacing, 0);
	text-transform: var(--thegem-to-menu-text-transform, uppercase);
	text-decoration: none;
	color: var(--thegem-to-menu-level1-color, #3C3950);
	background-color: var(--thegem-to-menu-level1-bg-color);
}

/* Menu style default level2 */
.thegem-te-menu__hamburger.desktop-view .nav-menu > li:not(.menu-item-type-template) ul:not(.nav-menu-custom),
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li .megamenu-template {
	position: absolute;
	top: 0;
	left: inherit !important;
	right: 100%;
	border: 1px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
	border-top: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 2;
}
.thegem-te-menu__hamburger.desktop-view.hamburger-position-left .nav-menu > li:not(.menu-item-type-template) ul:not(.nav-menu-custom),
.thegem-te-menu__hamburger.desktop-view.hamburger-position-left ul.nav-menu > li .megamenu-template {
	left: 100% !important;
	right: inherit !important;
}
@media (-webkit-device-pixel-ratio: 1.25) {
   .thegem-te-menu__hamburger.desktop-view .nav-menu > li:not(.menu-item-type-template) ul {
	   border: 0.8px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
   }
}

.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li:not(.megamenu-enable):not(.menu-item-type-template) ul:not(.nav-menu-custom) {
	max-height: none !important;
	width: 280px;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul,
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li .megamenu-template {
	transform: translateY(20px);
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu:hover > li:not(.menu-item-type-template) ul:not(.nav-menu-custom),
.thegem-te-menu__hamburger.desktop-view ul.nav-menu:hover > li .megamenu-template {
	visibility: hidden;
	opacity: 0;
	transition: transform 0.1s linear, opacity 0.1s linear, visibility 0.1s linear;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item:hover > ul,
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item:hover .megamenu-template,
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item:focus-within > ul,
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item:focus-within .megamenu-template {
	visibility: visible;
	opacity: 1;
	transition: transform 0.3s linear, opacity 0.3s linear, visibility 0.3s linear;
	transform: translateY(0);
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li{
	border-top: 1px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
}
@media (-webkit-device-pixel-ratio: 1.25) {
	.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li{
		border-top: 0.8px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
	}
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li a{
	position: relative;
	display: flex;
	align-items: center;
	padding: 15px 15px 15px 45px;
	font-family: var(--thegem-to-submenu-font-family, 'Source Sans Pro');
	font-style: var(--thegem-to-submenu-font-style, normal);
	font-weight: var(--thegem-to-submenu-font-weight, normal);
	font-size: var(--thegem-to-submenu-font-size, 16px);
	line-height: var(--thegem-to-submenu-line-height, 20px);
	letter-spacing: var(--thegem-to-submenu-letter-spacing, 0);
	text-transform: var(--thegem-to-submenu-text-transform, none);
	text-decoration: none;
	color: var(--thegem-to-menu-level2-color, #5F727F);
	background-color: var(--thegem-to-menu-level2-bg-color, #F4F6F7);
	border-right: 3px solid transparent;
	transition: color 0.3s, background-color 0.3s, border-left-color 0.3s;
}
.thegem-te-menu__hamburger.desktop-view .nav-menu > li:not(.menu-item-type-template) li.menu-item-parent > a:before{
	content: '\e603';
	font-family: 'thegem-icons';
	width: 16px;
	height: 16px;
	margin-left: -22px;
	font-size: 16px;
	margin-right: 6px;
	line-height: 1;
	color: var(--thegem-to-menu-submenu-highlighter-color);
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li:hover > a,
.thegem-te-menu__hamburger.desktop-view .nav-menu > li:not(.menu-item-type-template) li.menu-item-current > a,
.thegem-te-menu__hamburger.desktop-view .nav-menu > li:not(.menu-item-type-template) li.menu-item-active > a{
	border-color: var(--thegem-to-styled-color1, #00BCD4);
	background-color: var(--thegem-to-menu-level2-hover-bg-color, #FFFFFF);
	color: var(--thegem-to-menu-level2-hover-color, #3C3950);
}

/* Menu style default level3+ */
.thegem-te-menu__hamburger.desktop-view ul.nav-menu:hover li.menu-item:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	transition: transform 0.3s linear, opacity 0.3s linear, visibility 0.3s linear;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li ul{
	position: absolute;
	right: 100%;
	left: auto;
	top: 0;
	border: 1px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
	border-top: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	white-space: normal;
	transform: translateX(20px);
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li > ul li{
	border-top: 1px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
}
@media (-webkit-device-pixel-ratio: 1.25) {
	.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li ul{
		border: 0.8px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
		border-top: 0;
	}
	.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li > ul li{
		border-top: 0.8px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
	}
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li > ul li a{
	border-right: 3px solid transparent;
	background-color: var(--thegem-to-menu-level3-bg-color, #FFFFFF);
	color: var(--thegem-to-menu-level3-color, #5F727F);
	transition: color 0.3s, background-color 0.3s, border-left-color 0.3s;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li li:hover > a {
	border-color: var(--thegem-to-styled-color1, #00BCD4);
	background-color: var(--thegem-to-menu-level3-hover-bg-color, #FFFFFF);
	color: var(--thegem-to-menu-level3-hover-color, #5F727F);
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li li.menu-item-active > a,
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li > ul > li li.menu-item-current > a{
	border-color: var(--thegem-to-styled-color1, #00BCD4);
	background-color: var(--thegem-to-menu-level3-active-bg-color, #FFFFFF);
	color: var(--thegem-to-menu-level3-active-color, #5F727F);
}

/*Hamburger overlay*/
.thegem-te-menu__hamburger.desktop-view .hamburger-menu-back{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--thegem-to-overlay-menu-bg-color, #212331);
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	visibility: hidden;
	opacity: 0;
}
body.admin-bar .thegem-te-menu__hamburger.desktop-view .hamburger-menu-back{
	top: 32px;
	height: calc(100% - 32px);
}
.thegem-te-menu__hamburger.desktop-view .hamburger-menu-back.active{
	visibility: visible;
	opacity: 0.96;
}
/*Hamburger toggle*/
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close{
	position: absolute;
	right: 0;
	border: none;
	width: 36px;
	height: 30px;
	text-indent: 100%;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	background: transparent;
	padding: 0;
	transition: margin-right 1s, margin-left 1s, width .3s, height .2s, transform 1s;
	transform: translateX(0);
	margin: 35px;
}
.thegem-te-menu__hamburger.desktop-view.hamburger-position-left .hamburger-toggle-close{
	right: auto;
	left: 0;
}
.thegem-te-menu__hamburger.desktop-view.hamburger-active .hamburger-toggle-close{
	-moz-transform: translateX(-340px);
	-webkit-transform: translateX(-340px);
	transform: translateX(-340px);
}
.thegem-te-menu__hamburger.desktop-view.hamburger-active.hamburger-position-left .hamburger-toggle-close{
	-moz-transform: translateX(340px);
	-webkit-transform: translateX(340px);
	transform: translateX(340px);
}
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close .menu-line-1,
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close .menu-line-2,
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close .menu-line-3{
	position: absolute;
	height: 4px;
	width: 100%;
	left: 0;
	transition: all 0.5s, top .3s, height .3s;
	background-color:  var(--thegem-to-hamburger-menu-icon-light-color, #FFFFFF);
}
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close.small .menu-line-1,
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close.small .menu-line-2,
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close.small .menu-line-3{
	height: 2px;
	width: 18px;
	left: 9px;
}
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close .menu-line-1{
	top: 3px;
	transform: rotate(0);
}
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close.small .menu-line-1 {
	top: 8px;
}
.thegem-te-menu__hamburger.desktop-view.hamburger-active .hamburger-toggle-close .menu-line-1{
	transform: rotate(45deg);
	top: 13px;
}
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close .menu-line-2{
	top: 13px;
	opacity: 1;
}
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close.small .menu-line-2 {
	top: 13px;
}
.thegem-te-menu__hamburger.desktop-view.hamburger-active .hamburger-toggle-close .menu-line-2{
	opacity: 0;
}
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close .menu-line-3{
	top: 23px;
	transform: rotate(0);
}
.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close.small .menu-line-3 {
	top: 18px;
}
.thegem-te-menu__hamburger.desktop-view.hamburger-active .hamburger-toggle-close .menu-line-3{
	top: 13px;
	transform: rotate(-45deg);
}
@media (-webkit-device-pixel-ratio: 1.25) {
	.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close.small .menu-line-1,
	.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close.small .menu-line-2,
	.thegem-te-menu__hamburger.desktop-view .hamburger-toggle-close.small .menu-line-3{
		height: 1.6px;
	}
}

/*Search Widget*/
.thegem-te-menu__hamburger.show-desktop-search ul.nav-menu > li.menu-item-type-search-widget{
	display: block !important;
	margin-top: auto;
	padding-left: 45px;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-search-widget > a {
	display: none;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-search-widget .minisearch{
	position: relative;
	width: 100%;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-search-widget .minisearch form{
	position: relative;
	width: 100%;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-search-widget .minisearch .sf-input{
	position: relative;
	width: 100%;
	height: 40px;
	padding: 0 50px 0 10px;
	outline: none;
	border: none;

	background: #e0e5e9;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-search-widget .minisearch .sf-submit{
	position: absolute;
	right: 0;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	cursor: pointer;
	opacity: 0;
	z-index: 1;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-search-widget .minisearch .sf-submit:hover{
	background: transparent;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-search-widget .minisearch .sf-submit:focus{
	outline: none;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-search-widget .minisearch .sf-submit-icon{
	position: absolute;
	right: 0;
	width: 40px;
	height: 40px;
	z-index: 0;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-search-widget .minisearch .sf-submit-icon:after{
	content: "\e612";
	font-family: "thegem-icons";

	display: block;
	font-style: normal;
	font-size: 24px;
	font-weight: normal;
	line-height: 40px;
	text-align: center;
	vertical-align: top;
	width: 100%;
	height: 40px;
	color: #FFFFFF;
	background: #3d3950;
}

/*Socials Widget*/
.thegem-te-menu__hamburger.show-desktop-socials ul.nav-menu > li.menu-item-type-socials-widget{
	position: relative;
	display: block !important;
	margin-top: auto;
}
.thegem-te-menu__hamburger.show-desktop-search ul.nav-menu > li.menu-item-type-socials-widget{
	margin-top: 0;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-socials-widget .menu-item-socials{
	padding: 0 15px;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-socials-widget .menu-item-socials .socials{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-socials-widget .socials-item{
	padding: 8px;
	margin: 0;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu > li.menu-item-type-socials-widget .socials-item .socials-item-icon{
	font-size: 24px;
}

/* Hover Styles */

.style-hover-lined.style-hover-type-line-underline-1 .thegem-te-menu__hamburger.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-hover-lined.style-hover-type-line-overline-1 .thegem-te-menu__hamburger.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-hover-lined.style-hover-type-line-underline-2 .thegem-te-menu__hamburger.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-hover-lined.style-hover-type-line-overline-2 .thegem-te-menu__hamburger.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a {
	padding-left: 0;
	padding-right: 0;
}

.style-hover-lined.style-hover-type-line-top-bottom .thegem-te-menu__hamburger.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-hover-background.style-hover-type-background-color .thegem-te-menu__hamburger.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a {
	padding-left: 10px;
	padding-right: 10px;
}

.style-hover-background.style-hover-type-background-underline .thegem-te-menu__hamburger.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-hover-background.style-hover-type-background-extra-paddings .thegem-te-menu__hamburger.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a {
	padding-left: 15px;
	padding-right: 15px;
}

.style-hover-background.style-hover-type-background-extra-paddings .thegem-te-menu__hamburger.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before {
	border-radius: 3px;
}

.thegem-te-menu__hamburger.desktop-view ul.nav-menu.hamburger-with-template {
	padding: 0;
	overflow-y: auto;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu.hamburger-with-template > li {
	display: none;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu.hamburger-with-template > li.menu-item-type-template {
	display: block !important;
	padding: 0 21px;
}
.thegem-te-menu__hamburger.desktop-view ul.nav-menu.hamburger-with-template > li.menu-item-type-search-widget {
	display: none !important;
}

/* Hide toggle buttons */
.thegem-te-menu-mobile__default.mobile-view .overlay-toggle,
.thegem-te-menu-mobile__default.mobile-view .overlay-menu-back,
.thegem-te-menu-mobile__default.mobile-view .hamburger-toggle,
.thegem-te-menu-mobile__default.mobile-view .hamburger-menu-back{
    display: none;
}
.thegem-te-menu-mobile__default.mobile-view{
    position: relative;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-perspective-origin: 50% 200%;
    perspective-origin: 50% 200%;
    z-index: 999;
}
@media (max-width: 767px) {
    .thegem-te-menu-mobile__default{
        position: relative;
        -webkit-perspective: 1000px;
        perspective: 1000px;
        -webkit-perspective-origin: 50% 200%;
        perspective-origin: 50% 200%;
        z-index: 999;
    }
}
.thegem-te-menu-mobile__default.mobile-view ul{
    list-style: none;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 !important;
    background: none !important;
}
.thegem-te-menu-mobile__default.mobile-view li{
    position: relative;
    width: auto !important;
}
.thegem-te-menu-mobile__default.mobile-view li a{
    position: relative;
    display: block;
    padding: 16px 30px;
    margin: 0;
    outline: none;
    font-family: var(--thegem-to-mobile-menu-font-family, 'Source Sans Pro');
    font-style: var(--thegem-to-mobile-menu-font-style, normal);
    font-weight: var(--thegem-to-mobile-menu-font-weight, 400);
    font-size: var(--thegem-to-mobile-menu-font-size, 16px);
    line-height: var(--thegem-to-mobile-menu-line-height, 20px);
    letter-spacing: var(--thegem-to-mobile-menu-letter-spacing, 0);
    text-transform: var(--thegem-to-mobile-menu-text-transform, none);
    text-decoration: none;
    color: var(--thegem-to-mobile-menu-level1-color, #5F727F);
    background-color: var(--thegem-to-mobile-menu-level1-bg-color, #F4F6F7);
    border: 1px solid var(--thegem-to-mobile-menu-border-color, #DFE5E8);
}
.thegem-te-menu-mobile__default.mobile-view li + li > a,
.thegem-te-menu-mobile__default.mobile-view li + li > span > a{
    border-top: 0;
}
.thegem-te-menu-mobile__default.mobile-view li.menu-item-current > a,
.thegem-te-menu-mobile__default.mobile-view li.menu-item-active > a,
.thegem-te-menu-mobile__default.mobile-view li.menu-item-current > span > a,
.thegem-te-menu-mobile__default.mobile-view li.menu-item-active > span > a{
    padding-left: 26px;
    color: var(--thegem-to-mobile-menu-level1-active-color, #3C3950);
    background-color: var(--thegem-to-mobile-menu-level1-active-bg-color, #FFFFFF);
    border-left: 4px solid var(--thegem-to-styled-color1, #00BCD4);
}
.thegem-te-menu-mobile__default.mobile-view li.dl-back > a{
    text-align: right;
    padding-right: 20px;
    color: var(--thegem-to-mobile-menu-level2-color, #5F727F);
}
.thegem-te-menu-mobile__default.mobile-view li.dl-back:after,
.thegem-te-menu-mobile__default.mobile-view li.menu-item-parent > a:after,
.thegem-te-menu-mobile__default.mobile-view li.menu-item-parent > span > a:after,
.thegem-te-menu-mobile__default.mobile-view li.dl-parent > a:after {
    content: '\e601';
    font-family: 'thegem-icons';
    position: absolute;
    width: 9px;
    height: 16px;
    right: 20px;
    top: 50%;
    margin-top: -8px;
    font-size: 16px;
    line-height: 16px;
    color: inherit;
}
.thegem-te-menu-mobile__default.mobile-view li.dl-back:after{
    left: 33px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.thegem-te-menu-mobile__default.mobile-view .dl-menu{
    position: absolute;
    width: 100vw;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 21px;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
}
@media (max-width: 767px) {
    .thegem-te-menu-mobile__default .dl-menu{
        position: absolute;
        width: 100vw;
        left: 0;
        top: 100%;
        margin: 0;
        padding: 0 21px;
        opacity: 0;
        pointer-events: none;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

.thegem-te-menu-mobile__default.mobile-view .overlay-menu-wrapper{
    height: 0;
    width: 0;
}
.thegem-te-menu-mobile__default.mobile-view .mobile-menu-slide-wrapper {
    height: 0;
    width: 0;
}
.thegem-te-menu-mobile__default.mobile-view .hamburger-menu-back {
    height: 0;
    width: 0;
}

.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-menu-toggle{
    transition: all 0.3s ease;
}
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-menuopen{
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
/* Hide the inner submenus */
.thegem-te-menu-mobile__default.mobile-view li .dl-submenu{
    display: none;
}
/*
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link.
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li,
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subviewopen > a,
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subviewopen > span > a,
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subview > a,
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subview > span > a{
    display: none;
}
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subview,
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subview .dl-submenu,
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subviewopen,
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li{
    display: block;
}
/* Dynamically added submenu outside of the menu context */
.thegem-te-menu-mobile__default.mobile-view > .dl-submenu{
    position: absolute;
    width: 100vw;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 21px;
}
/* Animation classes for moving out and in */
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-animate-out {
    -webkit-animation: MenuAnimOut 0.4s;
    animation: MenuAnimOut 0.4s;
}
@-webkit-keyframes MenuAnimOut {
    0% { }
    50% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
    }
    75% {
        -webkit-transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }
    100% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}
@keyframes MenuAnimOut {
    0% { }
    50% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
        transform: translateZ(-250px) rotateY(30deg);
    }
    75% {
        -webkit-transform: translateZ(-372.5px) rotateY(15deg);
        transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }
    100% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}
.thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-animate-in {
    -webkit-animation: MenuAnimIn 0.3s;
    animation: MenuAnimIn 0.3s;
}
@-webkit-keyframes MenuAnimIn {
    0% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
    20% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translateZ(0px) rotateY(0deg);
        opacity: 1;
    }
}
@keyframes MenuAnimIn {
    0% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
    20% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
        transform: translateZ(-250px) rotateY(30deg);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translateZ(0px) rotateY(0deg);
        transform: translateZ(0px) rotateY(0deg);
        opacity: 1;
    }
}
.thegem-te-menu-mobile__default.mobile-view .dl-menu + .dl-submenu.dl-animate-in {
    -webkit-animation: SubMenuAnimIn 0.4s ease;
    animation: SubMenuAnimIn 0.4s ease;
}
@-webkit-keyframes SubMenuAnimIn {
    0% {
        -webkit-transform: translateX(50%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes SubMenuAnimIn {
    0% {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
        opacity: 1;
    }
}
.thegem-te-menu-mobile__default.mobile-view .dl-menu + .dl-submenu.dl-animate-out {
    -webkit-animation: SubMenuAnimOut 0.4s ease;
    animation: SubMenuAnimOut 0.4s ease;
}
@-webkit-keyframes SubMenuAnimOut {
    0% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(50%);
        opacity: 0;
    }
}
@keyframes SubMenuAnimOut {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
        opacity: 0;
    }
}
/* No JS Fallback */
.no-js .thegem-te-menu-mobile__default.mobile-view .dl-menu {
    position: relative;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
.no-js .thegem-te-menu-mobile__default.mobile-view li .dl-submenu {
    display: block;
}
.no-js .thegem-te-menu-mobile__default.mobile-view li.dl-back {
    display: none;
}
.no-js .thegem-te-menu-mobile__default.mobile-view li > a:not(:only-child):after {
    content: '';
}

/* Search Widget */
.thegem-te-menu-mobile__default.mobile-view.show-mobile-search li.menu-item-type-search-widget{
    display: block !important;
}
.thegem-te-menu-mobile__default.mobile-view.show-mobile-search li.menu-item-type-search-widget > a{
    display: none;
}
.thegem-te-menu-mobile__default.mobile-view ul.nav-menu > li.menu-item-type-search-widget > .minisearch {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    padding: 20px 30px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: var(--thegem-to-mobile-menu-level1-bg-color);
    border: 1px solid var(--thegem-to-mobile-menu-border-color);
    border-top: none;
}
.thegem-te-menu-mobile__default.mobile-view ul.nav-menu > li.menu-item-type-search-widget > .minisearch form{
    position: relative;
    width: 100%;
}
.thegem-te-menu-mobile__default.mobile-view ul.nav-menu > li.menu-item-type-search-widget > .minisearch .sf-input {
    position: relative;
    width: 100%;
    height: 40px;
    border-radius: 4px;
    padding-right: 40px;
    font-size: 16px;
    color: var(--thegem-to-mobile-menu-level1-active-color);
    border: 1px solid var(--thegem-to-mobile-menu-border-color);
    background-color: transparent;
    outline: none;
}
.thegem-te-menu-mobile__default.mobile-view ul.nav-menu > li.menu-item-type-search-widget > .minisearch .sf-input::placeholder{
    color: var(--thegem-to-mobile-menu-level1-color);
}
.thegem-te-menu-mobile__default.mobile-view ul.nav-menu > li.menu-item-type-search-widget > .minisearch .sf-submit-icon {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
}
.thegem-te-menu-mobile__default.mobile-view ul.nav-menu > li.menu-item-type-search-widget > .minisearch .sf-submit-icon:before {
    content: "\e612";
    display: block;
    font-family: "thegem-icons";
    font-style: normal;
    font-size: 24px;
    font-weight: normal;
    line-height: 40px;
    margin-right: 5px;
    padding-right: 3px;
    text-align: center;
    vertical-align: top;
    width: 100%;
    height: 40px;
    color: var(--thegem-to-mobile-menu-level1-active-color);
}
.thegem-te-menu-mobile__default.mobile-view ul.nav-menu > li.menu-item-type-search-widget > .minisearch .sf-submit {
    position: absolute;
    right: 20px;
    width: 40px;
    height: 40px;
    margin: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}
@font-face {
	font-family: 'TheGem Header';
	src:url('https://shop.ariservices.co/wp-content/themes/thegem/css/../fonts/thegem-header/thegem-header.eot');
	src:url('https://shop.ariservices.co/wp-content/themes/thegem/css/../fonts/thegem-header/thegem-header.eot?#iefix') format('embedded-opentype'),
	url('https://shop.ariservices.co/wp-content/themes/thegem/css/../fonts/thegem-header/thegem-header.woff') format('woff'),
	url('https://shop.ariservices.co/wp-content/themes/thegem/css/../fonts/thegem-header/thegem-header.ttf') format('truetype'),
	url('https://shop.ariservices.co/wp-content/themes/thegem/css/../fonts/thegem-header/thegem-header.svg#thegem-header') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
.gem-print-icon.gem-icon-pack-thegem-header {
	display: inline-block;
	font-family: 'TheGem Header';
	font-feature-settings: normal;
	font-kerning: auto;
	font-language-override: normal;
	font-size: inherit;
	font-size-adjust: none;
	font-stretch: normal;
	font-style: normal;
	font-synthesis: weight style;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	text-rendering: auto;
	text-align: center;
	vertical-align: middle;
	font-size: 16px;
}

.tgh-icon.account:before {
	content: "\e700";
}
.tgh-icon.alert:before {
	content: "\e701";
}
.tgh-icon.arrow-collapse-down:before {
	content: "\e702";
}
.tgh-icon.arrow-collapse-up:before {
	content: "\e703";
}
.tgh-icon.at:before {
	content: "\e704";
}
.tgh-icon.basket:before {
	content: "\e705";
}
.tgh-icon.bell:before {
	content: "\e706";
}
.tgh-icon.bookmark:before {
	content: "\e707";
}
.tgh-icon.briefcase:before {
	content: "\e708";
}
.tgh-icon.calendar-month:before {
	content: "\e709";
}
.tgh-icon.camera:before {
	content: "\e70a";
}
.tgh-icon.cart:before {
	content: "\e70b";
}
.tgh-icon.check:before {
	content: "\e70c";
}
.tgh-icon.check-circle:before {
	content: "\e70d";
}
.tgh-icon.chevron-double-down:before {
	content: "\e70e";
}
.tgh-icon.chevron-double-left:before {
	content: "\e70f";
}
.tgh-icon.chevron-double-right:before {
	content: "\e710";
}
.tgh-icon.chevron-double-up:before {
	content: "\e711";
}
.tgh-icon.chevron-down:before {
	content: "\e712";
}
.tgh-icon.chevron-down-circle:before {
	content: "\e713";
}
.tgh-icon.chevron-left:before {
	content: "\e714";
}
.tgh-icon.chevron-left-circle:before {
	content: "\e715";
}
.tgh-icon.chevron-right:before {
	content: "\e716";
}
.tgh-icon.chevron-right-circle:before {
	content: "\e717";
}
.tgh-icon.chevron-up:before {
	content: "\e718";
}
.tgh-icon.chevron-up-circle:before {
	content: "\e719";
}
.tgh-icon.clock-time-three:before {
	content: "\e71a";
}
.tgh-icon.close:before {
	content: "\e71b";
}
.tgh-icon.close-circle:before {
	content: "\e71c";
}
.tgh-icon.cog:before {
	content: "\e71d";
}
.tgh-icon.comment-text:before {
	content: "\e71e";
}
.tgh-icon.credit-card:before {
	content: "\e71f";
}
.tgh-icon.cube:before {
	content: "\e720";
}
.tgh-icon.cursor-default-click:before {
	content: "\e721";
}
.tgh-icon.database:before {
	content: "\e722";
}
.tgh-icon.dots-horizontal-circle:before {
	content: "\e723";
}
.tgh-icon.email:before {
	content: "\e724";
}
.tgh-icon.equalizer:before {
	content: "\e725";
}
.tgh-icon.flag:before {
	content: "\e726";
}
.tgh-icon.gift:before {
	content: "\e727";
}
.tgh-icon.globe-model:before {
	content: "\e728";
}
.tgh-icon.heart:before {
	content: "\e729";
}
.tgh-icon.home:before {
	content: "\e72a";
}
.tgh-icon.image-filter-drama:before {
	content: "\e72b";
}
.tgh-icon.information:before {
	content: "\e72c";
}
.tgh-icon.key:before {
	content: "\e72d";
}
.tgh-icon.lifebuoy:before {
	content: "\e72e";
}
.tgh-icon.link-variant:before {
	content: "\e72f";
}
.tgh-icon.lock:before {
	content: "\e730";
}
.tgh-icon.logout:before {
	content: "\e731";
}
.tgh-icon.magnify:before {
	content: "\e732";
}
.tgh-icon.map:before {
	content: "\e733";
}
.tgh-icon.map-marker:before {
	content: "\e734";
}
.tgh-icon.menu:before {
	content: "\e735";
}
.tgh-icon.monitor:before {
	content: "\e736";
}
.tgh-icon.phone:before {
	content: "\e737";
}
.tgh-icon.pin:before {
	content: "\e738";
}
.tgh-icon.share-variant:before {
	content: "\e739";
}
.tgh-icon.shopping-bag:before {
	content: "\e73a";
}
.tgh-icon.shopping-cart:before {
	content: "\e73b";
}
.tgh-icon.star:before {
	content: "\e73c";
}
.tgh-icon.tag:before {
	content: "\e73d";
}
.tgh-icon.tune:before {
	content: "\e73e";
}
.tgh-icon.weather-night:before {
	content: "\e73f";
}
.tgh-icon.weather-sunny:before {
	content: "\e740";
}
.tgh-icon.web:before {
	content: "\e741";
}
.tgh-icon.wrench:before {
	content: "\e742";
}
.tgh-icon.address-card:before {
	content: "\e900";
}
.tgh-icon.arrow-alt-circle-down:before {
	content: "\e901";
}
.tgh-icon.arrow-alt-circle-left:before {
	content: "\e902";
}
.tgh-icon.arrow-alt-circle-right:before {
	content: "\e903";
}
.tgh-icon.arrow-alt-circle-up:before {
	content: "\e904";
}
.tgh-icon.at1:before {
	content: "\e905";
}
.tgh-icon.award:before {
	content: "\e906";
}
.tgh-icon.ban:before {
	content: "\e907";
}
.tgh-icon.bell1:before {
	content: "\e908";
}
.tgh-icon.bookmark1:before {
	content: "\e909";
}
.tgh-icon.book-open:before {
	content: "\e90a";
}
.tgh-icon.box:before {
	content: "\e90b";
}
.tgh-icon.bullhorn:before {
	content: "\e90c";
}
.tgh-icon.caret-down:before {
	content: "\e90d";
}
.tgh-icon.caret-left:before {
	content: "\e90e";
}
.tgh-icon.caret-right:before {
	content: "\e90f";
}
.tgh-icon.caret-up:before {
	content: "\e910";
}
.tgh-icon.certificate:before {
	content: "\e911";
}
.tgh-icon.clock1:before {
	content: "\e912";
}
.tgh-icon.cloud1:before {
	content: "\e913";
}
.tgh-icon.cog1:before {
	content: "\e914";
}
.tgh-icon.comment1:before {
	content: "\e915";
}
.tgh-icon.comment-alt:before {
	content: "\e916";
}
.tgh-icon.envelope:before {
	content: "\e917";
}
.tgh-icon.fire-alt:before {
	content: "\e918";
}
.tgh-icon.flag1:before {
	content: "\e919";
}
.tgh-icon.folder:before {
	content: "\e91a";
}
.tgh-icon.globe1:before {
	content: "\e91b";
}
.tgh-icon.headset:before {
	content: "\e91c";
}
.tgh-icon.home1:before {
	content: "\e91d";
}
.tgh-icon.info-circle:before {
	content: "\e91e";
}
.tgh-icon.key2:before {
	content: "\e91f";
}
.tgh-icon.lock2:before {
	content: "\e920";
}
.tgh-icon.map-marker-alt:before {
	content: "\e921";
}
.tgh-icon.mobile-alt:before {
	content: "\e922";
}
.tgh-icon.moon:before {
	content: "\e923";
}
.tgh-icon.percentage:before {
	content: "\e924";
}
.tgh-icon.phone-alt:before {
	content: "\e925";
}
.tgh-icon.search:before {
	content: "\e926";
}
.tgh-icon.star2:before {
	content: "\e927";
}
.tgh-icon.sun:before {
	content: "\e928";
}
.tgh-icon.times-circle:before {
	content: "\e929";
}
.tgh-icon.user-circle:before {
	content: "\e92a";
}
.tgh-icon.wallet1:before {
	content: "\e92b";
}
.tgh-icon.adjust-vert:before {
	content: "\e600";
}
.tgh-icon.archive:before {
	content: "\e601";
}
.tgh-icon.arrow_carrot-2down:before {
	content: "\e602";
}
.tgh-icon.arrow_carrot-2left:before {
	content: "\e603";
}
.tgh-icon.arrow_carrot-2right:before {
	content: "\e604";
}
.tgh-icon.arrow_carrot-2up:before {
	content: "\e605";
}
.tgh-icon.arrow_carrot-down:before {
	content: "\e606";
}
.tgh-icon.arrow_carrot-down2:before {
	content: "\e607";
}
.tgh-icon.arrow_carrot-left:before {
	content: "\e608";
}
.tgh-icon.arrow_carrot-left2:before {
	content: "\e609";
}
.tgh-icon.arrow_carrot-right:before {
	content: "\e60a";
}
.tgh-icon.arrow_carrot-right2:before {
	content: "\e60b";
}
.tgh-icon.arrow_carrot-up:before {
	content: "\e60c";
}
.tgh-icon.arrow_carrot-up2:before {
	content: "\e60d";
}
.tgh-icon.book:before {
	content: "\e60e";
}
.tgh-icon.cart1:before {
	content: "\e60f";
}
.tgh-icon.check1:before {
	content: "\e610";
}
.tgh-icon.check2:before {
	content: "\e611";
}
.tgh-icon.clock:before {
	content: "\e612";
}
.tgh-icon.close1:before {
	content: "\e613";
}
.tgh-icon.close2:before {
	content: "\e614";
}
.tgh-icon.cloud:before {
	content: "\e615";
}
.tgh-icon.cloud-download:before {
	content: "\e616";
}
.tgh-icon.cloud-upload:before {
	content: "\e617";
}
.tgh-icon.comment:before {
	content: "\e618";
}
.tgh-icon.creditcard:before {
	content: "\e619";
}
.tgh-icon.drawer:before {
	content: "\e61a";
}
.tgh-icon.drive:before {
	content: "\e61b";
}
.tgh-icon.el-ul:before {
	content: "\e61c";
}
.tgh-icon.error-triangle:before {
	content: "\e61d";
}
.tgh-icon.floppy:before {
	content: "\e61e";
}
.tgh-icon.gift1:before {
	content: "\e61f";
}
.tgh-icon.globe:before {
	content: "\e620";
}
.tgh-icon.globe-2:before {
	content: "\e621";
}
.tgh-icon.headphones:before {
	content: "\e622";
}
.tgh-icon.heart1:before {
	content: "\e623";
}
.tgh-icon.house:before {
	content: "\e624";
}
.tgh-icon.id:before {
	content: "\e625";
}
.tgh-icon.info:before {
	content: "\e626";
}
.tgh-icon.key1:before {
	content: "\e627";
}
.tgh-icon.laptop:before {
	content: "\e628";
}
.tgh-icon.lifesaver:before {
	content: "\e629";
}
.tgh-icon.like:before {
	content: "\e62a";
}
.tgh-icon.lock1:before {
	content: "\e62b";
}
.tgh-icon.mail:before {
	content: "\e62c";
}
.tgh-icon.map1:before {
	content: "\e62d";
}
.tgh-icon.menu1:before {
	content: "\e62e";
}
.tgh-icon.menu-circle2:before {
	content: "\e62f";
}
.tgh-icon.menu-square2:before {
	content: "\e630";
}
.tgh-icon.mic:before {
	content: "\e631";
}
.tgh-icon.paperclip:before {
	content: "\e632";
}
.tgh-icon.pens:before {
	content: "\e633";
}
.tgh-icon.percent:before {
	content: "\e634";
}
.tgh-icon.phone1:before {
	content: "\e635";
}
.tgh-icon.pin1:before {
	content: "\e636";
}
.tgh-icon.pushpin:before {
	content: "\e637";
}
.tgh-icon.ribbon:before {
	content: "\e638";
}
.tgh-icon.search2:before {
	content: "\e639";
}
.tgh-icon.share-thin:before {
	content: "\e63a";
}
.tgh-icon.shopping-bag1:before {
	content: "\e63b";
}
.tgh-icon.shopping-cart1:before {
	content: "\e63c";
}
.tgh-icon.star1:before {
	content: "\e63d";
}
.tgh-icon.tag1:before {
	content: "\e63e";
}
.tgh-icon.toolbox:before {
	content: "\e63f";
}
.tgh-icon.wallet:before {
	content: "\e640";
}
.tgh-icon.airport:before {
	content: "\e9a0";
}
.tgh-icon.aperture:before {
	content: "\e9a1";
}
.tgh-icon.audio-cable:before {
	content: "\e9a2";
}
.tgh-icon.audio-wave:before {
	content: "\e9a3";
}
.tgh-icon.bios:before {
	content: "\e9a4";
}
.tgh-icon.camping-tent:before {
	content: "\e9a5";
}
.tgh-icon.cd:before {
	content: "\e9a6";
}
.tgh-icon.centralized-network:before {
	content: "\e9a7";
}
.tgh-icon.certificate1:before {
	content: "\e9a8";
}
.tgh-icon.clock-time-four-outline:before {
	content: "\e9a9";
}
.tgh-icon.cocktail:before {
	content: "\e9aa";
}
.tgh-icon.coffee-to-go:before {
	content: "\e9ab";
}
.tgh-icon.computer-mouse:before {
	content: "\e9ac";
}
.tgh-icon.cone:before {
	content: "\e9ad";
}
.tgh-icon.cup-with-straw:before {
	content: "\e9ae";
}
.tgh-icon.cylinder:before {
	content: "\e9af";
}
.tgh-icon.diamond-heart:before {
	content: "\e9b0";
}
.tgh-icon.email-open:before {
	content: "\e9b1";
}
.tgh-icon.email-open-outline:before {
	content: "\e9b2";
}
.tgh-icon.email-outline:before {
	content: "\e9b3";
}
.tgh-icon.farmer:before {
	content: "\e9b4";
}
.tgh-icon.fingerprint:before {
	content: "\e9b5";
}
.tgh-icon.fire-alt1:before {
	content: "\e9b6";
}
.tgh-icon.flip-flops:before {
	content: "\e9b7";
}
.tgh-icon.footwear:before {
	content: "\e9b8";
}
.tgh-icon.game-controller:before {
	content: "\e9b9";
}
.tgh-icon.globe-earth:before {
	content: "\e9ba";
}
.tgh-icon.hand-box:before {
	content: "\e9bb";
}
.tgh-icon.hot-air-balloon:before {
	content: "\e9bc";
}
.tgh-icon.hotspot:before {
	content: "\e9bd";
}
.tgh-icon.jewel:before {
	content: "\e9be";
}
.tgh-icon.laptop-metrics:before {
	content: "\e9bf";
}
.tgh-icon.laptop-settings:before {
	content: "\e9c0";
}
.tgh-icon.lifebuoy1:before {
	content: "\e9c1";
}
.tgh-icon.map-marker1:before {
	content: "\e9c2";
}
.tgh-icon.map-marker-circle:before {
	content: "\e9c3";
}
.tgh-icon.map-pin:before {
	content: "\e9c4";
}
.tgh-icon.monitor1:before {
	content: "\e9c5";
}
.tgh-icon.mountain:before {
	content: "\e9c6";
}
.tgh-icon.musical:before {
	content: "\e9c7";
}
.tgh-icon.phone2:before {
	content: "\e9c8";
}
.tgh-icon.phone-outline:before {
	content: "\e9c9";
}
.tgh-icon.physics:before {
	content: "\e9ca";
}
.tgh-icon.push-pin:before {
	content: "\e9cb";
}
.tgh-icon.quill-pen:before {
	content: "\e9cc";
}
.tgh-icon.sail-boat:before {
	content: "\e9cd";
}
.tgh-icon.settings:before {
	content: "\e9ce";
}
.tgh-icon.severity:before {
	content: "\e9cf";
}
.tgh-icon.shoes:before {
	content: "\e9d0";
}
.tgh-icon.shopping-bag2:before {
	content: "\e9d1";
}
.tgh-icon.ssd:before {
	content: "\e9d2";
}
.tgh-icon.star3:before {
	content: "\e9d3";
}
.tgh-icon.star-of-bethlehem:before {
	content: "\e9d4";
}
.tgh-icon.street-view:before {
	content: "\e9d5";
}
.tgh-icon.synchronize:before {
	content: "\e9d6";
}
.tgh-icon.thanksgiving:before {
	content: "\e9d7";
}
.tgh-icon.themes:before {
	content: "\e9d8";
}
.tgh-icon.t-shirt-on-hanger:before {
	content: "\e9d9";
}
.tgh-icon.usb-memory-stick:before {
	content: "\e9da";
}
.tgh-icon.user-shield:before {
	content: "\e9db";
}
.tgh-icon.video:before {
	content: "\e9dc";
}
.tgh-icon.web1:before {
	content: "\e9dd";
}
.tgh-icon.wet:before {
	content: "\e9de";
}
.tgh-icon.windy-weather:before {
	content: "\e9df";
}
.tgh-icon.tiktok:before {
	content: "\e9e0";
}
.tgh-icon.tiktok-round:before {
	content: "\e9e1";
}
.tgh-icon.tiktok-square:before {
	content: "\e9e2";
}
.thegem-te-icon{
	position: relative;
	width: fit-content;
}

.thegem-te-icon .gem-icon-size-tiny {
	font-size: 16px;
}
.thegem-te-icon .gem-icon-size-tiny.gem-simple-icon {
	width: 16px;
	height: 16px;
	line-height: 16px;
}
.thegem-te-icon .gem-icon-size-tiny:not(.gem-simple-icon) .gem-icon-inner {
	width: 25px;
	height: 25px;
	line-height: 25px;
}
.thegem-te-icon .gem-icon {
	display: block;
}
/*.thegem-te-icon .gem-icon.gem-simple-icon {
	width: auto;
	height: auto;
	line-height: initial;
}*/
.thegem-te-icon .gem-icon.gem-simple-icon .gem-icon-inner {
	margin: 0;
}
.thegem-te-icon .gem-icon-inner,
.thegem-te-icon .gem-icon-style-gradient .back-angle,
.thegem-te-icon .gem-icon-shape-hexagon-top-inner-before {
	-webkit-transition: background-color .3s linear;
	-moz-transition: background-color .3s linear;
	-o-transition: background-color .3s linear;
	transition: background-color .3s linear;
}
.thegem-te-icon .gem-icon-half-1,
.thegem-te-icon .gem-icon-half-2 {
	-webkit-transition: color .3s linear;
	-moz-transition: color .3s linear;
	-o-transition: color .3s linear;
	transition: color .3s linear;
}
.thegem-te-icon .gem-icon {
	-webkit-transition: color .3s linear, border-color .3s linear;
	-moz-transition: color .3s linear, border-color .3s linear;
	-o-transition: color .3s linear, border-color .3s linear;
	transition: color .3s linear, border-color .3s linear;
	color: var(--thegem-to-menu-level1-color, #3C3950);
}

.thegem-te-icon .gem-icon a:hover{
	cursor: pointer;
}
.thegem-te-icon .gem-icon a:hover .gem-icon-half-1,
.thegem-te-icon .gem-icon a:hover .gem-icon-half-2 {
	color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}

/*Light icon style*/
#site-header.header-light .thegem-te-icon .gem-icon .gem-icon-half-1,
#site-header.header-light .thegem-te-icon .gem-icon .gem-icon-half-2{
	color: var(--header-builder-light-color, #FFFFFF);
}
#site-header.header-light .thegem-te-icon .gem-icon a:hover .gem-icon-half-1,
#site-header.header-light .thegem-te-icon .gem-icon a:hover .gem-icon-half-2{
	color: var(--header-builder-light-color-hover, var(--thegem-to-menu-level1-color-hover));
}
.thegem-te-logo.desktop-view .logo.desktop {
    display: block;
}
.thegem-te-logo.desktop-view .logo.mobile {
    display: none;
}
.thegem-te-logo.mobile-view .logo.desktop {
    display: none;
}
.thegem-te-logo.mobile-view .logo.mobile {
    display: block;
}

@media screen and (max-width: 767px) {
    .thegem-te-logo.desktop-view .logo.desktop {
        display: none;
    }
    .thegem-te-logo.desktop-view .logo.mobile {
        display: block;
    }
}
.elementor-widget-thegem-template-search-form .elementor-widget-container {
	width: 100%;
}

.thegem-te-search-form {
	position: relative;
	font-family: var(--thegem-to-body-tiny-font-family);
	font-style: var(--thegem-to-body-tiny-font-style);
	font-weight: var(--thegem-to-body-tiny-font-weight);
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	letter-spacing: var(--thegem-to-body-tiny-letter-spacing);
	text-transform: var(--thegem-to-body-tiny-text-transform);
}

.thegem-te-search-form form {
	position: relative;
	width: 100%;
}

.thegem-te-search-form .search-field {
	width: 100%;
	height: 34px;
	line-height: 34px;
	padding: 0 40px 0 25px;
	border-radius: 17px;
	box-sizing: border-box;
	outline: 0 none;
	color: inherit;
	background: var(--thegem-to-main-bg-color, #FFFFFF);
	border-color: var(--thegem-to-box-border-color, #dfe5e8);
}

.thegem-te-search-form .search-field::-webkit-input-placeholder,
.thegem-te-search-form .search-field::placeholder {
	color: inherit;
	opacity: 0.5;
}

.thegem-te-search-form .search-buttons {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 100%;
	display: flex;
	align-items: center;
	padding-right: 12px;
}

.thegem-te-search-form.visible .search-buttons {
	z-index: 1;
}

.thegem-te-search-form .search-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 100%;
	font-size: 24px;
	line-height: 1;
	border: none;
	background: transparent;
	color: var(--thegem-to-menu-level1-color, #3C3950);
	margin-left: 12px;
	cursor: pointer;
	transition: all 0.3s;
}

.thegem-te-search-form .search-submit svg {
	max-width: 100%;
	height: auto;
}

.thegem-te-search-form .search-submit i,
.thegem-te-search-form .search-submit i:before {
	display: block;
	font-style: normal;
}

.thegem-te-search-form .search-submit:hover,
.thegem-te-search-form .thegem-te-search__item.active a {
	color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}

.thegem-te-search-form .search-submit .open i.default:before {
	content: "\e612";
	font-family: "thegem-icons";
}

.thegem-te-search-form .search-submit .close {
	display: none;
}

.thegem-te-search-form .search-submit .close i.default:before {
	content: "\e619";
	font-family: "thegem-icons";
}

.thegem-te-search-form .search-submit.clear {
	cursor: pointer;
}

.thegem-te-search-form .search-submit.clear .close {
	display: block;
}

.thegem-te-search-form .search-submit.clear .open {
	display: none;
}

.thegem-te-search-form.ajax-loading .search-submit:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	border: 2px solid #5f727f;
	border-top: 2px solid transparent;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	animation: spin 2s linear infinite;
}

.thegem-te-search-form.ajax-loading .search-submit > * {
	opacity: 0;
}

.thegem-te-search-form .ajax-search-results {
	overflow: auto;
	max-height: 80vh;
}

.thegem-te-search-form .ajax-search-results-wrap {
	display: none;
	position: absolute;
	width: 100%;
	left: 0;
	top: 100%;
	overflow: auto;
	max-height: 80vh;
	background-color: var(--thegem-to-main-bg-color, #FFFFFF);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	z-index: 1;
}
.thegem-te-search-form.invert-results .ajax-search-results-wrap {
	top: auto;
	bottom: 100%;
}

.thegem-te-search-form.visible {
	z-index: 2;
}

.thegem-te-search-form.visible .ajax-search-results-wrap {
	display: block;
}

.thegem-te-search-form .ajax-search-results::-webkit-scrollbar-track,
.thegem-te-search-form .select-category .select::-webkit-scrollbar-track {
	background-color: transparent;
}

.thegem-te-search-form .ajax-search-results::-webkit-scrollbar,
.thegem-te-search-form .select-category .select::-webkit-scrollbar {
	width: 4px;
	background-color: transparent;
}

.thegem-te-search-form .ajax-search-results::-webkit-scrollbar-thumb,
.thegem-te-search-form .select-category .select::-webkit-scrollbar-thumb {
	background-color: #dfe5e8;
	border-radius: 2px;
}

.thegem-te-search-form .ajax-search-results .scroll-block {
	padding: 2px 6px 2px 2px;
}

.thegem-te-search-form .ajax-search-results .title {
	padding-left: 13px;
	margin: 0.8em 0;
}

.thegem-te-search-form .ajax-search-results .show-all {
	text-align: center;
	border-top: 1px solid var(--thegem-to-box-border-color, #dfe5e8);
	border-bottom: 1px solid var(--thegem-to-box-border-color, #dfe5e8);
	padding: 4px 0;
	margin-top: 18px;
}

.thegem-te-search-form .ajax-search-results .arrow:before {
	content: '\e601';
	font-style: normal;
	font-family: "thegem-icons";
	font-weight: normal;
	-webkit-font-smoothing: initial;
}

.thegem-te-search-form .ajax-search-results .search-results-section:last-child .show-all {
	border-bottom: none;
}

.thegem-te-search-form .ajax-search-results .ajax-search-item {
	margin-bottom: 2px;
}

.thegem-te-search-form .ajax-search-results .ajax-search-item {
	white-space: initial;
}

.thegem-te-search-form .ajax-search-results .ajax-search-item a {
	display: flex;
	align-items: center;
	color: inherit;
}

.thegem-te-search-form .ajax-search-results .ajax-search-item a:hover {
	color: var(--thegem-to-widget-hover-link_color, #00BCD4);
}

.thegem-te-search-form .ajax-search-results .ajax-search-item a > div {
	overflow: hidden;
}

.thegem-te-search-form .ajax-search-results .ajax-search-item .thumbnail {
	flex: none;
	margin-right: 9px;
	width: 80px;
	height: 80px;
	background-color: var(--styled-bg-color, #f0f3f2);
}

.thegem-te-search-form .ajax-search-results .ajax-search-item .thumbnail img {
	width: 100%;
	height: auto;
}

.thegem-te-search-form .ajax-search-results .search-results-product .ajax-search-item .post-title {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.thegem-te-search-form .ajax-search-results .ajax-search-item .post-title {
	max-height: calc(2 * var(--thegem-to-body-tiny-line-height));
	overflow: hidden;
}
.thegem-te-search-form .ajax-search-results .ajax-search-item .post-meta {
	opacity: 0.5;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	margin-bottom: 0;
}

.thegem-te-search-form .ajax-search-results .search-results-section.search-results-nothing {
	padding: 20px;
}

.thegem-te-search-form .ajax-search-results .search-results-section.search-results-nothing .ajax-search-item {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0;
}

.thegem-te-search-form .ajax-search-results .search-results-section.search-results-nothing svg {
	width: 50px;
	fill: #dfe5e8;
}

.thegem-te-search-form .select-category {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	z-index: 2;
}

.thegem-te-search-form .select-category .arrow-down:before {
	display: inline-block;
	content: '\e602';
	font-style: normal;
	font-family: "thegem-icons";
	font-weight: normal;
	-webkit-font-smoothing: initial;
	transition: all 0.3s;
}

.thegem-te-search-form .select-category .current {
	cursor: pointer;
}

.thegem-te-search-form .select-category .select {
	display: none;
	position: absolute;
	width: 200px;
	right: 0;
	top: 100%;
	overflow: auto;
	max-height: 40vh;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	background-color: var(--thegem-to-main-bg-color, #FFFFFF);
	z-index: 1;
}

.thegem-te-search-form .select-category .select .scroll-block {
	padding: 17px 20px;
}

.thegem-te-search-form .select-category .select ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.thegem-te-search-form .select-category .select ul ul {
	padding-left: 15px;
}

.thegem-te-search-form .select-category .select li {
	margin-bottom: 2px;
}

.thegem-te-search-form .select-category .select .term {
	cursor: pointer;
	transition: all 0.3s;
}

.thegem-te-search-form .select-category .select .term.active,
.thegem-te-search-form .select-category .select .term:hover {
	color: var(--thegem-to-widget-hover-link_color, #00BCD4);
}

.thegem-te-search-form .select-category.active .select {
	display: block;
}

.thegem-te-search-form .select-category.active .arrow-down:before {
	transform: rotate(180deg);
}

.thegem-te-search-form.columns-2 .result-items,
.thegem-te-search-form.columns-3 .result-items,
.thegem-te-search-form.columns-4 .result-items {
	display: flex;
	flex-wrap: wrap;
}

.thegem-te-search-form.columns-2 .ajax-search-item {
	width: 50%;
	padding-right: 5px;
}

.thegem-te-search-form.columns-3 .ajax-search-item {
	width: 33.33%;
	padding-right: 5px;
}

.thegem-te-search-form.columns-4 .ajax-search-item {
	width: 25%;
	padding-right: 5px;
}

.thegem-te-cart{
    position: relative;
    width: fit-content;
}

/*Cart Link*/
.thegem-te-cart .minicart-menu-link{
    position: relative;
    display: flex;
    color: var(--thegem-to-menu-level1-color, #3C3950);
    line-height: 1;
}

/*Light cart style*/
#site-header.header-light .thegem-te-cart .minicart-menu-link{
    color: var(--header-builder-light-color, #FFFFFF);
}

@media (min-width: 992px) {
    .thegem-te-cart:hover .minicart-menu-link{
        color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
    }
    #site-header.header-light .thegem-te-cart:hover .minicart-menu-link{
        color: var(--header-builder-light-color-hover, var(--thegem-to-menu-level1-color-hover));
    }
    /*.thegem-te-cart .minicart-menu-link.active-page{
        color: var(--thegem-to-menu-level1-active-color, #00BCD4);
    }
    #site-header.header-light .thegem-te-cart .minicart-menu-link.active-page{
        color: var(--thegem-to-menu-level1-light-active-color, var(--thegem-to-menu-level1-active-color));
    }*/
}

.thegem-te-cart .minicart-menu-link:before{
    content: var(--thegem-to-cart-icon-icon, '\e67d');
    font-family: var(--thegem-to-cart-icon-font, 'thegem-icons');
    font-size: 24px;
}
.thegem-te-cart.label-count .minicart-item-count,
.thegem-te-cart.circle-count .minicart-item-count{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    line-height: 18px;
    top: 2px;
    right: -8px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    font-size: 11px;
    color: var(--thegem-to-main-bg-color, #FFFFFF);
    background-color: var(--thegem-to-cart-amount-color, var(--thegem-to-styled-color1));
    transform: translateY(-50%);

    -o-transition: color 0.3s, background-color 0.3s;
    -webkit-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
}

@media (min-width: 1025px) {
    .thegem-te-cart.label-count .minicart-item-count{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
        top: 0;
        width: 23px;
        height: 18px;
        font-size: 87.5%;
        text-align: center;
        line-height: 1.2;
        margin: 0 0 0 10px;
        border-radius: 0;
        transform: none;
        z-index: 1;
        color: var(--thegem-to-main-bg-color, #FFFFFF);
        background-color: var(--thegem-to-cart-amount-color, var(--thegem-to-styled-color1));
    }
    .thegem-te-cart.label-count .minicart-item-count:after {
        content: '';
        position: absolute;
        left: -6px;
        top: 3px;
        width: 12px;
        height: 12px;
        transform: rotate(45deg);
        background-color: var(--thegem-to-cart-amount-color, var(--thegem-to-styled-color1));
        z-index: -1;

        -o-transition: color 0.3s, background-color 0.3s;
        -webkit-transition: color 0.3s, background-color 0.3s;
        transition: color 0.3s, background-color 0.3s;
    }
}
.thegem-te-cart .minicart-menu-link.empty .minicart-item-count{
    display: none;
}

/*Mini-cart Desktop*/
.thegem-te-cart.desktop-view .minicart{
    position: absolute;
    width: 305px;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    padding: 20px 0 0 0;
    background-color: var(--thegem-to-minicart-background-color, #ffffff);
    border: 1px solid var(--thegem-to-box-border-color);
    white-space: normal;
    transition: transform 0.1s linear 0.5s, opacity 0.1s linear 0.5s, visibility 0.1s linear 0.5s;
    z-index: 2;
}
.thegem-te-cart.desktop-view:hover .minicart{
    visibility: visible;
    transition: all 0.3s linear;
    opacity: 1;
    transform: translateY(0);
}
.thegem-te-cart.desktop-view .minicart.invert{
    left: auto;
    right: 0;
}

/*Mini-cart All View*/
.thegem-te-cart .minicart .woocommerce-mini-cart{
    position: relative;
    width: auto;
    padding: 0 24px;
    box-shadow: none;
    transition: all 0s;
    opacity: 1;
    visibility: inherit;
    transform: none;
    border: 0;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item{
    position: relative;
    display: inline-block;
    padding: 4px 0 0 0;
    margin: 26px 0 0 0;
    width: 100%;
    border: 0 !important;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item .minicart-image{
    float: left;
    margin-right: 17px;
    margin-top: -4px;
    position: relative;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item .minicart-image img{
    height: 60px;
    width: 60px;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item .minicart-image:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 1;
    background-color: var(--thegem-to-hover-default-color-03, rgba(0, 188, 212, 0.3));
    transition: all 0.2s linear;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item a:hover .minicart-image:after{
    opacity: 1;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item.sale .minicart-image:before{
    content: '%';
    position: absolute;
    right: -11px;
    top: 4px;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    z-index: 2;
    line-height: 24px;
    text-align: center;
    text-indent: -1px;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item .variation{
    display: none;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item.empty{
    padding-bottom: 25px;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item:first-child{
    margin: 0;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item a{
    display: block;
    margin: 0 20px 0 0;
    border: 0;
    padding: 0;
    color: var(--thegem-to-body-color, #5f727f);
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item a.remove{
    position: absolute;
    right: 0;
    top: -7px;
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
    cursor: pointer;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item a:hover{
    color: var(--thegem-to-link-color, #00BCD4);
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item .quantity,
.thegem-te-cart .minicart .woocommerce-mini-cart__total,
.thegem-te-cart .minicart .woocommerce-mini-cart-item.empty,
.thegem-te-cart .minicart .woocommerce-mini-cart-item.sale .minicart-image:before{
    font-family: var(--thegem-to-body-font-family);
    font-weight: var(--thegem-to-body-font-weight);
    font-style: var(--thegem-to-body-font-style);
    font-size: var(--thegem-to-body-font-size);
    line-height: var(--thegem-to-body-line-height);
    text-transform: var(--thegem-to-body-text-transform);
    letter-spacing: var(--thegem-to-body-letter-spacing);
    color: var(--thegem-to-body-color);
}
.thegem-te-cart .minicart .woocommerce-mini-cart__total strong{
    font-weight: var(--thegem-to-body-font-weight);
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item .quantity span.amount,
.thegem-te-cart .minicart .woocommerce-mini-cart__total span.amount{
    font-family: var(--thegem-to-product-price-cart-font-family);
    font-weight: var(--thegem-to-product-price-cart-font-weight);
    font-style: var(--thegem-to-product-price-cart-font-style);
    font-size: var(--thegem-to-product-price-cart-font-size);
    line-height: var(--thegem-to-product-price-cart-line-height);
    text-transform: var(--thegem-to-product-price-cart-text-transform);
    letter-spacing: var(--thegem-to-product-price-cart-letter-spacing);
    color: var(--thegem-to-product-price-cart-color);
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item .quantity span.amount{
    font-size: var(--thegem-to-product-price-cart-font-size-tiny);
    line-height: var(--thegem-to-product-price-cart-line-height-tiny);
    color: var(--thegem-to-product-price-cart-color);
}

.thegem-te-cart .minicart .woocommerce-mini-cart-item.sale .minicart-image:before{
    color: #FFFFFF;
    line-height: 24px;
    background-color: var(--thegem-to-hover-default-color, #00BCD4);
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item .quantity{
    display: inline-block;
}
.thegem-te-cart .minicart .woocommerce-mini-cart-item .cart-item-info{
    margin-left: 85px;
    padding-top: 5px;
}
.thegem-te-cart .minicart .minicart-bottom{
    margin-top: 25px;
    padding: 20px 20px 20px;
}
.thegem-te-cart .minicart .woocommerce-mini-cart__total{
    padding: 15px 24px 0;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
}
.thegem-te-cart .minicart .woocommerce-mini-cart__total strong{
    display: inline-block;
    padding-top: 7px;
}
.thegem-te-cart .minicart .woocommerce-mini-cart__buttons{
    display: flex;
    flex-wrap: wrap;
    padding: 8px 18px 17px;
}
.thegem-te-cart .minicart .woocommerce-mini-cart__buttons a{
    margin: 0;
    width: 100%;
}
.thegem-te-cart .minicart .woocommerce-mini-cart__buttons .mini-cart-view-cart{
    flex: 1;
    margin: 6px;
    flex-basis: auto;
}
.thegem-te-cart .minicart .woocommerce-mini-cart__buttons .mini-cart-view-cart .gem-button{
    border: 2px solid transparent;
    line-height: 26px;
}
.thegem-te-cart .minicart .woocommerce-mini-cart__buttons .mini-cart-checkout{
    flex: 1;
    margin: 6px;
    flex-basis: auto;
}
.thegem-te-cart .minicart .woocommerce-mini-cart__total,
.thegem-te-cart .minicart .woocommerce-mini-cart__buttons{
    background-color: var(--styled-bg-color, #F0F3F2);
}
.thegem-te-cart .minicart .woocommerce-mini-cart .empty{
    border: 0 none;
    margin-bottom: 1.421em;
    box-shadow: none;
}

/*mobile Minicart*/
.thegem-te-cart.mobile-view .minicart {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    display: block;
    width: 80%;
    min-width: 300px;
    max-width: 450px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform 0.2s ease-out, opacity 1s linear 0.5s, visibility 1s linear 0.5s;
    z-index: 999;
    background-color: var(--thegem-to-minicart-background-color, var(--styled-bg-color));
}
.thegem-te-cart.mobile-view .minicart .widget_shopping_cart_content {
    background-color: var(--thegem-to-minicart-background-color, #ffffff);
}
.thegem-te-cart.mobile-view .minicart.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.2s ease-out, opacity 0s, visibility 0s;
}
.thegem-te-cart.mobile-view .mobile-cart-header {
    display: block;
    position: relative;
    padding: 23px 24px;
    background-color: var(--thegem-to-minicart-background-color, #ffffff);
}
.thegem-te-cart.mobile-view .mobile-cart-header .mobile-cart-header-title {
    margin: 0;
}
.thegem-te-cart.mobile-view .mobile-cart-header .mobile-cart-header-title:before {
    display: inline-block;
    margin-right: 10px;

    content: var(--thegem-to-cart-icon-icon, '\e67d');
    font-family: var(--thegem-to-cart-icon-font, 'thegem-icons');
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    vertical-align: top;
    line-height: inherit;
    text-align: center;
    color: var(--thegem-to-styled-color1, #00bcd4);
}
.thegem-te-cart.mobile-view .mobile-cart-header-close {
    position: absolute;
    top: 50%;
    right: 24px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
}
.thegem-te-cart.mobile-view .mobile-cart-header-close .cart-close-line-1,
.thegem-te-cart.mobile-view .mobile-cart-header-close .cart-close-line-2 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #99a9b5;
    margin-top: -2px;
}
.thegem-te-cart.mobile-view .mobile-cart-header-close .cart-close-line-1 {
    transform: rotate(45deg);
}
.thegem-te-cart.mobile-view .mobile-cart-header-close .cart-close-line-2 {
    transform: rotate(-45deg);
}
.thegem-te-cart.mobile-view .mobile-minicart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    background: #000000;
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    overflow: hidden;
}
.thegem-te-cart.mobile-view .mobile-minicart-overlay.active {
    opacity: 0.7;
    visibility: visible;
}
.thegem-te-cart.mobile-view .minicart .woocommerce-mini-cart-item a.remove {
    font-size: 24px;
    right: 15px;
    top: 5px;
}
.thegem-te-cart.mobile-view .minicart .woocommerce-mini-cart-item img {
    width: 80px;
    height: auto;
}
.thegem-te-cart.mobile-view .total {
    text-align: center;
    margin-top: 0;
}
.thegem-te-cart.mobile-view .total strong,
.thegem-te-cart.mobile-view .total span.amount {
    float: none;
}
.thegem-te-cart.mobile-view .buttons {
    text-align: center;
}
.thegem-te-cart.mobile-view .buttons .gem-button-container {
    float: none;
    margin: 10px 5px;
}
.thegem-te-cart.mobile-view .widget_shopping_cart_content ul.cart_list {
    padding: 0;
}
.thegem-te-cart.mobile-view .widget_shopping_cart_content ul.cart_list > li {
    padding: 15px;
    margin: 0;
    border-top: 1px solid var(--thegem-to-box-border-color, #dfe5e8) !important;
}
@media (max-width: 991px) {
    body.admin-bar.cart-scroll-locked .thegem-te-cart.mobile-view .minicart{
        top: 32px;
    }
}
@media (max-width: 778px) {
    body.admin-bar.cart-scroll-locked .thegem-te-cart.mobile-view .minicart{
        top: 46px;
    }
}

.thegem-te-account{
    position: relative;
}
.thegem-te-account .account-link{
    position: relative;
    display: flex;
    color: var(--thegem-to-menu-level1-color, #3C3950);
}
.thegem-te-account .account-icon-default{
    display: flex;
    align-items: center;
}
.thegem-te-account .account-icon-default:before {
    font-family: 'thegem-icons';
    content: '\e681';
    font-style: normal;
}
.thegem-te-account .account-link:hover{
    color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}
.thegem-te-account .account-link .gem-icon{
    color: inherit;
}

/*Tiny icon*/
.thegem-te-account .gem-icon-size-tiny {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 16px;
}

/*Light account style*/
#site-header.header-light .thegem-te-account .account-link{
    color: var(--header-builder-light-color, #FFFFFF);
}
#site-header.header-light .thegem-te-account .account-link:hover{
    color: var(--header-builder-light-color-hover, var(--thegem-to-menu-level1-color-hover));
}

/* Active styles */
/*.thegem-te-account .account-link.active-page {
    color: var(--thegem-to-menu-level1-active-color, #00BCD4);
}
#site-header.header-light .thegem-te-account .account-link.active-page {
    color: var(--thegem-to-menu-level1-light-active-color, var(--thegem-to-menu-level1-active-color));
}*/
.thegem-te-wishlist{
    position: relative;
}
.thegem-te-wishlist .wishlist-link{
    position: relative;
    display: flex;
    color: var(--thegem-to-menu-level1-color, #3C3950);
    line-height: 1;
}
.thegem-te-wishlist .wishlist-icon-default:before {
    font-family: 'thegem-icons';
    content: '\e66b';
    font-style: normal;
    vertical-align: top;
}
.thegem-te-wishlist .wishlist-link:hover{
    color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}
.thegem-te-wishlist .wishlist-link .gem-icon{
    color: inherit;
}

.thegem-te-wishlist .wishlist-items-count{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    line-height: 18px;
    top: 2px;
    right: -8px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    font-size: 11px;
    font-style: normal;
    color: var(--thegem-to-main-bg-color, #FFFFFF);
    background-color: var(--thegem-to-cart-amount-color, var(--thegem-to-styled-color1));
    transform: translateY(-50%);

    -o-transition: color 0.3s, background-color 0.3s;
    -webkit-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
}

/*Tiny icon*/
.thegem-te-wishlist .gem-icon-size-tiny {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 16px;
}

/*Use Light Color Scheme*/
#site-header.header-light .thegem-te-wishlist .wishlist-link{
    color: var(--header-builder-light-color, #FFFFFF);
}
#site-header.header-light .thegem-te-wishlist .wishlist-link:hover{
    color: var(--header-builder-light-color-hover, var(--thegem-to-menu-level1-color-hover));
}
#site-header.header-light .thegem-te-wishlist .wishlist-items-count,
#site-header.header-light .thegem-te-wishlist .wishlist-link:hover .wishlist-items-count{
    color: var(--header-builder-light-color, #FFFFFF);
}
#site-header.header-light .thegem-te-wishlist .wishlist-items-count,
#site-header.header-light .thegem-te-wishlist .wishlist-link:hover .wishlist-items-count{
    background-color: var(--header-builder-light-color-hover, var(--thegem-to-menu-level1-color-hover));
}

/* Hide toggle buttons */
@media (min-width: 768px) {
    .thegem-te-menu__default.desktop-view .menu-toggle,
    .thegem-te-menu__default.desktop-view .overlay-menu-back,
    .thegem-te-menu__default.desktop-view .mobile-menu-slide-close{
        display: none;
    }
    /* Hide back item */
    .thegem-te-menu__default.desktop-view ul.nav-menu li.dl-back,
    .thegem-te-menu__default.desktop-view ul.nav-menu li.dl-parent{
        display: none !important;
    }
    /* Menu style default level1 */
    .thegem-te-menu__default.desktop-view ul.nav-menu{
        position: relative;
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        width: auto !important;
        left: inherit !important;
        padding: 0;
        margin: 0 -16px;
    }
}
.thegem-te-menu__default.desktop-view ul.nav-menu.nav-menu--stretch {
    justify-content: space-between;
}
.thegem-te-menu__default.desktop-view ul.nav-menu li ul {
    margin-top: -1px;
}
.thegem-te-menu__default.desktop-view ul.nav-menu li {
    position: relative;
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li{
    position: relative;
    display: flex;
    align-items: center;
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.menu-item-type-split-logo) {
    flex: none;
    z-index: 1;
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li > a{
    position: relative;
    display: block;
    padding: 2px 16px;
    font-family: var(--thegem-to-menu-font-family, 'Montserrat');
    font-style: var(--thegem-to-menu-font-style, normal);
    font-weight: var(--thegem-to-menu-font-weight, 700);
    font-size: var(--thegem-to-menu-font-size, 14px);
    line-height: var(--thegem-to-menu-line-height, 25px);
    letter-spacing: var(--thegem-to-menu-letter-spacing, 0);
    text-transform: var(--thegem-to-menu-text-transform, uppercase);
    text-decoration: none;
    color: var(--thegem-to-menu-level1-color, #3C3950);
    background-color: var(--thegem-to-menu-level1-bg-color);
    z-index: 1;
}

/* Menu style default level2 */
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-template-enable) ul,
.thegem-te-menu__default.desktop-view ul.nav-menu > li .megamenu-template {
    position: absolute;
    visibility: hidden;
    top: 100%;
    opacity: 0;
    transition: transform 0.1s linear 0.5s, opacity 0.1s linear 0.5s, visibility 0.1s linear 0.5s;
    z-index: 1;
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-enable):not(.megamenu-template-enable) ul {
    left: 0 !important;
    width: 280px !important;
    border: 1px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
    border-top: 0;
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-enable):not(.megamenu-template-enable) ul.invert {
    right: 0 !important;
    left: initial !important;
}
@media (-webkit-device-pixel-ratio: 1.25) {
    .thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-enable):not(.megamenu-template-enable) ul {
        border: 0.8px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
        border-top: 0;
    }
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-template-enable) > ul,
.thegem-te-menu__default.desktop-view ul.nav-menu > li .megamenu-template {
    transform: translateY(20px);
}
.thegem-te-menu__default.desktop-view ul.nav-menu:hover > li:not(.megamenu-template-enable) ul,
.thegem-te-menu__default.desktop-view ul.nav-menu:hover > li.megamenu-template-enable > .megamenu-template {
    visibility: hidden;
    transition: transform 0.1s linear, opacity 0.1s linear, visibility 0.1s linear;
    opacity: 0;
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-template-enable):hover > ul,
.thegem-te-menu__default.desktop-view ul.nav-menu > li:hover > .megamenu-template,
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-template-enable):focus-within > ul,
.thegem-te-menu__default.desktop-view ul.nav-menu > li:focus-within > .megamenu-template {
    visibility: visible;
    opacity: 1;
    transition: transform 0.3s linear, opacity 0.3s linear, visibility 0.3s linear;
    transform: translateY(0);
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li{
    border-top: 1px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
}
@media (-webkit-device-pixel-ratio: 1.25) {
    .thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li{
        border-top: 0.8px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
    }
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li a{
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 30px 15px 27px;
    font-family: var(--thegem-to-submenu-font-family, 'Source Sans Pro');
    font-style: var(--thegem-to-submenu-font-style, normal);
    font-weight: var(--thegem-to-submenu-font-weight, normal);
    font-size: var(--thegem-to-submenu-font-size, 16px);
    line-height: var(--thegem-to-submenu-line-height, 20px);
    letter-spacing: var(--thegem-to-submenu-letter-spacing, 0);
    text-transform: var(--thegem-to-submenu-text-transform, none);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: color 0.3s, background-color 0.3s, border-left-color 0.3s;
    color: var(--thegem-to-menu-level2-color, #5F727F);
    background-color: var(--thegem-to-menu-level2-bg-color, #F4F6F7);
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-template-enable) li:hover > a{
    border-color: var(--thegem-to-styled-color1, #00BCD4);
    background-color: var(--thegem-to-menu-level2-hover-bg-color, #FFFFFF);
    color: var(--thegem-to-menu-level2-hover-color, #3C3950);
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-template-enable) li.menu-item-active > a,
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-template-enable) li.menu-item-current > a{
    border-color: var(--thegem-to-styled-color1, #00BCD4);
    background-color: var(--thegem-to-menu-level2-active-bg-color, #FFFFFF);
    color: var(--thegem-to-menu-level2-active-color, #3C3950);
}
.menu--dark-submenu .thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li a,
.menu--white-mainmenu .thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li a{
    border-left: 0;
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-template-enable) li.menu-item-parent > a:after{
    content: '\e601';
    font-family: 'thegem-icons';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 9px;
    height: 16px;
    margin-top: -8px;
    font-size: 16px;
    line-height: 1;
    color: var(--thegem-to-menu-submenu-highlighter-color);
}
/* Menu style default level3+ */
.thegem-te-menu__default.desktop-view ul.nav-menu:hover li:hover > ul,
.thegem-te-menu__default.desktop-view ul.nav-menu:hover li.megamenu-template-enable:hover > .megamenu-template {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s linear, opacity 0.3s linear, visibility 0.3s linear;
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li ul ul{
    position: absolute;
    top: 0;
    transform: translateX(20px);
    z-index: 1;
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-enable):not(.megamenu-template-enable) ul ul {
    left: 100% !important;
    top: 0;
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.megamenu-enable):not(.megamenu-template-enable) ul ul.invert {
    right: 100% !important;
    left: initial !important;
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li > ul li{
    border-top: 1px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
}
@media (-webkit-device-pixel-ratio: 1.25) {
    .thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li > ul li{
        border-top: 0.8px solid var(--thegem-to-menu-level2-border-color, #DFE5E8);
    }
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li > ul li a{
    background-color: var(--thegem-to-menu-level3-bg-color, #FFFFFF);
    color: var(--thegem-to-menu-level3-color, #5F727F);
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li li.menu-item:hover > a{
    border-color: var(--thegem-to-styled-color1, #00BCD4);
    background-color: var(--thegem-to-menu-level3-hover-bg-color, #FFFFFF);
    color: var(--thegem-to-menu-level3-hover-color, #5F727F);
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li li.menu-item-active > a,
.thegem-te-menu__default.desktop-view ul.nav-menu > li > ul > li li.menu-item-current > a{
    border-color: var(--thegem-to-styled-color1, #00BCD4);
    background-color: var(--thegem-to-menu-level3-active-bg-color, #FFFFFF);
    color: var(--thegem-to-menu-level3-active-color, #5F727F);
}

/* Menu style default invert */
.thegem-te-menu__default.desktop-view ul.nav-menu > li > ul.invert{
    left: auto !important;
    right: 0 !important;
    /*transform: translateX(-20px);*/
}
.thegem-te-menu__default.desktop-view ul.nav-menu > li > ul ul.invert{
    top: 0;
    left: auto !important;
    right: 100% !important;
    transform: translateX(-20px);
    z-index: 2;
}

/* Menu split logo */
.thegem-te-menu__default:not(.desktop-view) ul.nav-menu .menu-item-type-split-logo{
    display: none;
}
.thegem-te-menu__default.desktop-view ul.nav-menu.nav-menu--split {
    flex-wrap: nowrap;
}
.thegem-te-menu__default.desktop-view ul.nav-menu .menu-item-type-split-logo .site-logo{
    padding: 0 15px;
}
.thegem-te-menu__default.desktop-view ul.nav-menu.nav-menu--split.fullwidth-logo .menu-item-type-split-logo{
    width: 100%;
    justify-content: center;
}
.thegem-te-menu__default.desktop-view ul.nav-menu.absolute .menu-item-type-split-logo {
    margin-left: 150px;
    margin-right: 150px;
}
.thegem-te-menu__default.desktop-view ul.nav-menu.absolute .menu-item-type-split-logo > .logo-fullwidth-block{
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
}
.thegem-te-menu__default ul.nav-menu.nav-menu--split:not(.absolute) .logo-fullwidth-block{
    width: auto !important;
    left: auto !important;
}

.thegem-te-menu__default.desktop-view .menu-item-parent-toggle {
	display: none;
}

/* Hover Styles */

.style-hover-framed .thegem-te-menu__default.desktop-view ul.nav-menu,
.style-hover-lined.style-hover-type-line-top-bottom .thegem-te-menu__default.desktop-view ul.nav-menu,
.style-hover-background.style-hover-type-background-color .thegem-te-menu__default.desktop-view ul.nav-menu,
.style-hover-background.style-hover-type-background-rounded .thegem-te-menu__default.desktop-view ul.nav-menu {
    margin-left: -5px;
    margin-right: -5px;
}
.style-hover-framed .thegem-te-menu__default.desktop-view ul.nav-menu > li,
.style-hover-lined.style-hover-type-line-top-bottom .thegem-te-menu__default.desktop-view ul.nav-menu > li,
.style-hover-background.style-hover-type-background-color .thegem-te-menu__default.desktop-view ul.nav-menu > li,
.style-hover-background.style-hover-type-background-rounded .thegem-te-menu__default.desktop-view ul.nav-menu > li {
    margin-left: 5px;
    margin-right: 5px;
}

.style-hover-lined.style-hover-type-line-underline-1 .thegem-te-menu__default.desktop-view ul.nav-menu,
.style-hover-lined.style-hover-type-line-underline-2 .thegem-te-menu__default.desktop-view ul.nav-menu,
.style-hover-lined.style-hover-type-line-overline-1 .thegem-te-menu__default.desktop-view ul.nav-menu,
.style-hover-lined.style-hover-type-line-overline-2 .thegem-te-menu__default.desktop-view ul.nav-menu {
    margin-left: -15px;
    margin-right: -15px;
}

.style-hover-lined.style-hover-type-line-underline-1 .thegem-te-menu__default.desktop-view ul.nav-menu > li,
.style-hover-lined.style-hover-type-line-underline-2 .thegem-te-menu__default.desktop-view ul.nav-menu > li,
.style-hover-lined.style-hover-type-line-overline-1 .thegem-te-menu__default.desktop-view ul.nav-menu > li,
.style-hover-lined.style-hover-type-line-overline-2 .thegem-te-menu__default.desktop-view ul.nav-menu > li {
    margin-left: 15px;
    margin-right: 15px;
}

.style-hover-lined.style-hover-type-line-underline-1 .thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-hover-lined.style-hover-type-line-overline-1 .thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-active-lined.style-active-type-line-underline-1 .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-lined.style-active-type-line-underline-1 .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-current > a,
.style-active-lined.style-active-type-line-overline-1 .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-lined.style-active-type-line-overline-1 .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-current > a,
.style-hover-lined.style-hover-type-line-underline-2 .thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-hover-lined.style-hover-type-line-overline-2 .thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-active-lined.style-active-type-line-underline-2 .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-lined.style-active-type-line-underline-2 .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-current > a,
.style-active-lined.style-active-type-line-overline-2 .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-lined.style-active-type-line-overline-2 .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-current > a {
    padding-left: 0;
    padding-right: 0;
}

.style-hover-lined.style-hover-type-line-top-bottom .thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-active-lined.style-active-type-line-top-bottom .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-lined.style-active-type-line-top-bottom .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-current > a,
.style-hover-background.style-hover-type-background-color .thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-active-background.style-active-type-background-color .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-background.style-active-type-background-color .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-current > a {
    padding-left: 10px;
    padding-right: 10px;
}

.style-hover-background.style-hover-type-background-underline .thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-hover-background.style-hover-type-background-extra-paddings .thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a,
.style-active-background.style-active-type-background-underline .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-background.style-active-type-background-underline .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-current > a,
.style-active-background.style-active-type-background-extra-paddings .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-active > a,
.style-active-background.style-active-type-background-extra-paddings .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-current > a {
    padding-left: 15px;
    padding-right: 15px;
}

.style-hover-lined.style-hover-type-line-underline-2 .thegem-te-menu__default.desktop-view ul.nav-menu > li > a,
.style-hover-lined.style-hover-type-line-overline-2 .thegem-te-menu__default.desktop-view ul.nav-menu > li > a,
.style-hover-background.style-hover-type-background-underline .thegem-te-menu__default.desktop-view ul.nav-menu > li > a,
.style-hover-background.style-hover-type-background-extra-paddings .thegem-te-menu__default.desktop-view ul.nav-menu > li > a {
    padding-top: 20px;
    padding-bottom: 20px;
}

.style-hover-background.style-hover-type-background-extra-paddings .thegem-te-menu__default.desktop-view ul.nav-menu > li:not(.menu-item-active):not(.menu-item-current) > a:before,
.style-active-background.style-active-type-background-extra-paddings .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-active > a:before,
.style-active-background.style-active-type-background-extra-paddings .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-current > a:before {
    border-radius: 3px;
}

body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}
.compose-mode .vc_element-container > div.vc_container-block:first-of-type {
	margin-top: 31px;
}
.vc_editor .no-top-margin:first-child {
	padding-top: 110px;
}

.wpb_row {
	position: relative;
}

.wpb_row, .wpb_content_element, ul.wpb_thumbnails-fluid > li, .last_toggle_el_margin, .wpb_button {
	margin-bottom: 1.1em;
}

.wpb_row:last-of-type,
.wpb_row[data-vc-full-width]:nth-last-child(2) {
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {
	.vc_row.vc_row-flex.thegem-vc_row-custom-gap {
		flex-wrap: nowrap;
	}
}

.gem-alert-box .wpb_text_column p:first-child,
.gem-alert-box .wpb_text_column *:first-child,
.gem-icon-with-text .wpb_text_column p:first-child,
.gem-icon-with-text .wpb_text_column *:first-child {
	margin-top: 0;
}

.vc_gem_portfolio_slider > *,
.vc_gem_portfolio > *,
.vc_gem_product_grid > *,
.vc_gem_product_slider > * {
	display: none;
}
.vc_gem_portfolio_slider,
.vc_gem_portfolio {
	height: 300px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/portfolio-dummy.png') no-repeat 50% 50%;
}
.vc_gem_product_grid,
.vc_gem_product_slider,
.vc_gem_product_grid_extended/*,
.vc_gem_product_grid_carousel,
.vc_gem_product_grid_categories*/ {
	height: 300px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/products-dummy.png') no-repeat 50% 50%;
}
.vc_gem_testimonials > * {
	display: none;
}
.vc_gem_testimonials {
	height: 300px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/testimonials-dummy.png') no-repeat 50% 50%;
}
.vc_gem_countdown > * {
	display: none;
}
.vc_gem_countdown {
	height: 200px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/countdown-dummy.png') no-repeat 50% 50%;
}
.vc_gem_news > * {
	display: none;
}
.vc_gem_news {
	height: 300px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/blog-dummy.png') no-repeat 50% 50%;
}
.vc_gem_news_grid {
	height: 300px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/blog-extended-dummy.png') no-repeat 50% 50%;
}
.vc_gem_featured_posts_slider {
	height: 300px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/featured-posts-slider-dummy.png') no-repeat 50% 40%;
}
.vc_gem_gallery > * {
	display: none;
}
.vc_gem_gallery {
	height: 300px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/gallery-dummy.png') no-repeat 50% 50%;
}
.vc_gem_diagram > * {
	display: none;
}
.vc_gem_diagram {
	height: 300px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/diagram-dummy.png') no-repeat 50% 50%;
}
.vc_gem_clients > * {
	display: none;
}
.vc_gem_clients {
	height: 300px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/clients-dummy.png') no-repeat 50% 50%;
}
.vc_gem_counter > * {
	display: none;
}
.vc_gem_counter {
	width: 25%;
	padding: 0 21px;
}
.gem-counter-style-vertical .vc_gem_counter {
	width: 100%;
	padding: 0;
}
.vc_gem_counter > .counter-shortcode-dummy {
	display: block;
	height: 300px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/counter-dummy.png') no-repeat 50% 50%;
}
.vc_gem_instagram_gallery > * {
	display: none;
}
.vc_gem_instagram_gallery {
	height: 300px;
	background: #f0f4f7 url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/admin-images/instagram-dummy.png') no-repeat 50% 50%;
}

.vc_gem_divider {
	padding: 3px 0;
	background: -webkit-repeating-linear-gradient(-45deg, #f1f5f8 0px, #f1f5f8 1px, transparent 1px, transparent 10px);
	background: -moz-repeating-linear-gradient(-45deg, #f1f5f8 0px, #f1f5f8 1px, transparent 1px, transparent 10px);
	background: -o-repeating-linear-gradient(-45deg, #f1f5f8 0px, #f1f5f8 1px, transparent 1px, transparent 10px);
	background: -ms-repeating-linear-gradient(-45deg, #f1f5f8 0px, #f1f5f8 1px, transparent 1px, transparent 10px);
	background: repeating-linear-gradient(-45deg, #f1f5f8 0px, #f1f5f8 1px, transparent 1px, transparent 10px);
}
.vc_gem_dropcap {
	float: left;
	z-index: 1;
}

.compose-mode .vc_element .vc_element-container,
.compose-mode .vc_element vc_container-block {
	padding-bottom: 30px;
}

.compose-mode .vc_gem_pricing_column.vc_element {
	display: inline-block;
}

.vc_gem_pricing_column .pricing-column-wrapper {
	width: 100%;
}

.compose-mode .fullwidth-block-inner .container {
	max-width: 100%;
}
.compose-mode .vc_container-block .fullwidth-block {
	margin-left: -21px;
	margin-right: -21px;
}

.vc_row.vc_row-o-full-height.thegem-fix-full-height {
	min-height: 100vh !important;
}

.edit-template-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(244, 246, 247, 0.8);
	z-index: 99;
}
.page-title-block .edit-template-overlay {
	background: rgb(244, 246, 247);
}
.thegem-template-header .edit-template-overlay {
	position: relative;
	padding: 40px 0;
	background: #dfe5e8;
}
.edit-template-overlay .buttons {
	display: flex;
}
.edit-template-overlay .buttons a {
	position: initial;
	display: block;
	font-family: 'Montserrat UltraLight', sans-serif;
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	height: 40px;
	line-height: 40px;
	background: #6e7882;
	border: 1px solid #6e7882;
	padding: 0 17px;
	transition: all 0.2s;
}
.edit-template-overlay .buttons a:hover {
	background: #99a4a8;
	border-color: #99a4a8;
}
.edit-template-overlay .buttons a.doc {
	color: #6e7882;
	background: transparent;
	margin-left: 10px;
}
.edit-template-overlay .buttons a.doc:hover {
	color: #99a4a8;
}
.frontent-edit-footer {
	position: relative;
}

.vc_welcome .vc_welcome-header.header-template-welcome-text {
	text-transform: none;
}
.vc_welcome .vc_welcome-header.header-template-welcome-text .note {
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 60%, rgba(210,255,90,1) 60%, rgba(210,255,90,1) 100%);
}


.thegem-template-edit-button {
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 10;
	display: block;
	font-family: 'Montserrat UltraLight', sans-serif;
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	height: 40px;
	line-height: 40px;
	background: #6e7882;
	border: 1px solid #6e7882;
	padding: 0 17px;
	transition: all 0.2s;
}
.thegem-template-edit-button:hover {
	background: #99a4a8;
	border-color: #99a4a8;
}

.template-cart-empty-output,
.template-product-empty-output,
.template-blog-empty-output,
.template-post-empty-output,
.template-checkout-empty-output,
.template-checkout-thanks-empty-output {
	text-align: center;
	justify-content: center;
	padding: 20px;
	margin: 8px 3px !important;
}
.template-post-empty-output.thegem-wp-hook:before {
	font-family: 'thegem-shortcodes';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	width: 24px;
	text-align: center;
	display: inline-block;
	vertical-align: top;
	margin-right: 5px;
	content: "\e66f";
}

.gem-slideshow-editor {
	position: relative;
}

.vc_row.vc_row-flex > .container {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
}
.vc_row.vc_row-flex > .container > .vc_column_container {
	display: flex;
}
.vc_row.vc_row-flex > .container > .vc_column_container > .vc_column-inner {
	flex-grow:1;
	display:flex;
	flex-direction:column;
	z-index:1;
}
.vc_row.vc_row-flex > .container::after,
.vc_row.vc_row-flex > .container::before{
	display:none;
}
.vc_row.vc_row-o-content-top > .container > .vc_column_container > .vc_column-inner {
	justify-content:flex-start;
}
.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height) > .container > .vc_column_container {
	align-items:flex-start;
}
.vc_row.vc_row-o-content-middle > .container > .vc_column_container > .vc_column-inner {
	justify-content:center;
}
.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .container > .vc_column_container {
	align-items:center;
}
.vc_row.vc_row-o-content-bottom > .container > .vc_column_container > .vc_column-inner {
	justify-content:flex-end;
}
.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height) > .container > .vc_column_container {
	align-items:flex-end;
}

.vc_row:not(.vc_row-no-padding) > .vc_column_container > .vc_column-inner {
	padding-left: 21px;
	padding-right: 21px;
}

/* Show / Hide vc element */
body.compose-mode .vc-element-hide--desktop,
body.compose-mode .vc-element-hide--tablet:before,
body.compose-mode .vc-element-hide--mobile:before{
	position: relative;
}
body.compose-mode .vc-element-hide--desktop:before,
body.compose-mode .vc-element-hide--tablet:before,
body.compose-mode .vc-element-hide--mobile:before{
	content: '';
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	background:
			linear-gradient(-45deg, rgba(0, 0, 0, 0) 49.9%, rgba(125,125,125,.4) 49.9%, rgba(125,125,125,.4) 60%, rgba(0, 0, 0, 0) 60%),
			linear-gradient(-45deg, rgba(125,125,125,.4) 10%, rgba(0, 0, 0, 0) 10% );
	background-size: 0.5em 0.5em
}

@media screen and (min-width: 1024px) {
	body.compose-mode .vc-element-hide--desktop{
		opacity: .5;
	}
	body.compose-mode .vc-element-hide--desktop:before{
		display: block;
	}
	body:not(.compose-mode ) .vc-element-hide--desktop{
		display: none;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px){
	body.compose-mode .vc-element-hide--tablet{
		opacity: .5;
	}
	body.compose-mode .vc-element-hide--tablet:before{
		display: block;
	}
	body:not(.compose-mode ) .vc-element-hide--tablet{
		display: none;
	}
}

@media screen and (min-width: 320px) and (max-width: 767px){
	body.compose-mode .vc-element-hide--mobile{
		opacity: .5;
	}
	body.compose-mode .vc-element-hide--mobile:before{
		display: block;
	}
	body:not(.compose-mode ) .vc-element-hide--mobile{
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
	.vc_row.vc_row-flex.thegem-reverse-columns-tablet {
		flex-wrap: wrap-reverse;
		flex-direction: row-reverse;
	}
}
@media screen and (max-width: 767px) {
	.vc_row.vc_row-flex.thegem-reverse-columns-mobile {
		flex-wrap: wrap-reverse;
		flex-direction: row-reverse;
	}
}

.vc_row_custom_video_background {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.vc_row_custom_video_background video{
	width: 100%;
	height: auto;
}
.vc_row_custom_video_background + .wpb_wrapper > * {
	position: relative;
}
.vc_column-inner:has(.vc_row_custom_video_background) {
	position: relative;
	overflow: hidden;
}

.gem-vc-background-overlay-container {
	position: relative;
}
.gem-vc-background-overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.thegem-template-loop-item .vc_row {
	margin-right: 0;
	margin-left: 0;
}
.thegem-template-loop-item > .vc_row > .wpb_column > .vc_column-inner,
.thegem-template-loop-item > .wpb-content-wrapper > .vc_row > .wpb_column > .vc_column-inner,
.thegem-template-loop-item > .wpb-content-wrapper > .vc_vc_row > .vc_row > .vc_vc_column > .wpb_column > .vc_column-inner {
	padding-right: 0;
	padding-left: 0;
}
.thegem-template-loop-item .vc_col-has-fill > .vc_column-inner,
.thegem-template-loop-item .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner,
.thegem-template-loop-item .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner,
.thegem-template-loop-item .vc_row-has-fill > .vc_column_container > .vc_column-inner,
.thegem-template-loop-item .vc_row-has-fill + .vc_vc_row > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
.thegem-template-loop-item .vc_row-has-fill + .vc_vc_row_inner > .vc_row > .vc_vc_column_inner > .vc_column_container > .vc_column-inner,
.thegem-template-loop-item .vc_row-has-fill > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
.thegem-template-loop-item .vc_row-has-fill > .vc_vc_column_inner > .vc_column_container > .vc_column-inner {
	padding-top: 0;
}

.compose-mode .vc_gem_button.gem-button-position-inline,
.compose-mode .vc_element.vc_gem_icon {
	display: inline-block;
}

.wpb_column.gem-content-alignment-left {
	text-align: left;
}
.wpb_column.gem-content-alignment-center {
	text-align: center;
}
.wpb_column.gem-content-alignment-right {
	text-align: right;
}

.megamenu-template .wpb_wrapper {
	position: static;
}
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
	word-break: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}

.shop_table td.product-remove.with-cb {
    padding-left: 14px;
}

.woocommerce.woocommerce-wishlist-modern .wishlist-title h2 {
	margin-top: 0;
}

.woocommerce .wishlist_table .checkbox-sign {
    margin: 2px 0 0 0;
}

.woocommerce .wishlist_table th.product-stock-stauts {
    white-space: nowrap;
}

.woocommerce .wishlist_table .product-add-to-cart .dateadded {
    display: block;
    white-space: nowrap;
    margin-bottom: 20px;
}

.woocommerce .wishlist_table .product-add-to-cart .remove_from_wishlist {
    margin-top: 20px;
}

.woocommerce .wishlist_table tfoot tr td {
    padding: 0;
}

.woocommerce .wishlist_table .product-thumbnail a {
	width: 60px;
	display: inline-block;
}

.woocommerce .wishlist_table .product-name {
    width: 53%;
}

.woocommerce .wishlist_table .product-price {
    width: 12%;
}

.woocommerce .wishlist_table .product-price del,
.woocommerce .wishlist_table .product-price ins {
    display: block;
}

.woocommerce .wishlist_table .product-price ins {
    text-decoration: none;
    margin-top: 5px;
}

.woocommerce .wishlist_table .product-stock-status {
    width: 15%;
}

.woocommerce .wishlist_table .product-add-to-cart {
    width: 20%;
}

.woocommerce-wishlist .woocommerce .wishlist_table tr.pagination-row td {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    padding: 0;
}

.yith-wcwl-share {
    margin: 44px 0 0 0;
}

.woocommerce-wishlist .wishlist_table .product-add-to-cart .add_to_cart_button a.gem-button {
    padding-left: 44px;
}

.woocommerce-wishlist .wishlist_table .product-add-to-cart a.gem-button {
    margin: 0;
}

.woocommerce-wishlist .wishlist_table .product-add-to-cart .add_to_cart_button a.gem-button:before {
    content: '\e613';
    position: absolute;
    left: 15px;
    top: -1px;
    font-family: 'thegem-icons';
    font-style: normal;
    font-size: 22px;
    font-weight: normal;
}

.yith-wcwl-share .yith-wcwl-share-title {
    display: inline-block;
    margin: 0 14px 0 0;
}

.yith-wcwl-share ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.yith-wcwl-share li {
    display: inline-block;
    margin: -1px 15px 0 0;
    vertical-align: middle;
}

.yith-wcwl-share li:last-child {
    margin-right: 0;
}

.yith-wcwl-share li a:before {
    display: inline-block;
    font-family: 'thegem-socials';
    font-size: 23px;
    font-weight: normal;
}

.yith-wcwl-share li a.facebook:before {
    content: '\e617';
    color: #5275db;
}

.yith-wcwl-share li a.twitter:before {
    content: '\e676';
    color: #000000;
}

.yith-wcwl-share li a.pinterest:before {
    content: '\e619';
    color: #ff5757;
}

.yith-wcwl-share li a.googleplus:before {
    content: '\e61a';
    color: #f44336;
}

.yith-wcwl-share li a.email:before {
    content: '\e626';
    font-family: 'thegem-icons';
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    text-align: center;
    line-height: 24px;
    color: #ffffff;
    background-color: #ae0e0e;
    overflow: hidden;
}

.wishlist-content.responsive {
    display: none;
}

.woocommerce .wishlist-content.responsive .shop_table tbody tr td {
    border-bottom: 0;
    border-top-width: 1px;
    border-top-style: solid;
}


.woocommerce .wishlist_table .product-info .product-info-header > div,
.woocommerce .wishlist_table .product-info .product-info-content > div {
    float: left;
    padding: 17px;
    text-align: left;
}

.product-info .product-info-content {
    border: 1px solid transparent;
    border-top: 0;
    border-bottom: 0;
}

.woocommerce-wishlist  .wishlist-content.responsive .cart-item {
    margin-bottom: 42px;
    border-bottom: 1px solid transparent;
}

.wishlist-content.responsive .cart-item:last-child {
    margin-bottom: 0;
}

.woocommerce .wishlist-content.responsive .shop_table tbody tr td.product-thumbnail a .product-dummy-wrapper {
    min-width: 60px;
}

@media (max-width: 992px) {
    .wishlist-content {
        display: none;
    }
    .wishlist-content.responsive {
        display: block;
    }
    .wishlist-content.responsive .wishlist_table .product-remove {
        width: 1%;
    }
}

@media (max-width: 768px) {
    .woocommerce .wishlist_table .product-info .product-info-header > div.product-price,
    .woocommerce .wishlist_table .product-info .product-info-header > div.product-stock-stauts,
    .woocommerce .wishlist_table .product-info .product-info-content > div.product-price,
    .woocommerce .wishlist_table .product-info .product-info-content > div.product-stock-stauts {
        width: 50% !important;
    }
    .woocommerce .wishlist_table .product-info .product-info-header > div.product-add-to-cart {
        display: none;
    }
    .woocommerce .wishlist_table .product-info .product-info-content > div.product-add-to-cart {
        display: block;
        float: none;
        width: 100% !important;
        clear: both;
    }
}

@media (max-width: 500px) {
    .yith-wcwl-share {
        text-align: center;
    }
    .yith-wcwl-share .yith-wcwl-share-title {
        display: block;
        margin-bottom: 23px;
    }
}

.yith-wcwl-form .show-title-form,
.yith-wcwl-form .hide-title-form {
	display: none;
}

.yith-wcwl-form .hidden-title-form {
	margin-bottom: 25px;
}
.yith-wcwl-form .hidden-title-form .save-title-form {
	margin-left: 25px;
}
.yith-wcwl-form .hidden-title-form .save-title-form i:before {
	content: '\e646';
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 24px;
	font-weight: normal;
}
#primary-navigation .hamburger-with-cart + #primary-menu.nav-menu.no-responsive > li.menu-item-cart,
#primary-navigation .hamburger-with-cart + div #primary-menu.nav-menu.no-responsive > li.menu-item-cart {
	display: none;
}
#primary-navigation #primary-menu > li.menu-item-cart > a {
	margin-right: 26px;
}
.header-layout-vertical #primary-navigation #primary-menu > li.menu-item-cart > a,
#primary-navigation.responsive #primary-menu > li.menu-item-cart > a {
	margin-right: 0;
}
.hamburger-minicart > a {
	line-height: 60px;
}
.hamburger-group.hamburger-size-small .hamburger-minicart > a,
.hamburger-minicart.hamburger-minicart-size-small > a {
	line-height: 1;
}

#primary-navigation #primary-menu > li.menu-item-cart > a.empty,
#primary-navigation #primary-menu > li.menu-item-cart > a.circle-count,
.hamburger-minicart > a.empty {
	margin-right: 0;
}

#primary-navigation #primary-menu > li.menu-item-cart > a:before,
.hamburger-minicart > a:before {
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	content: '\e613';
	margin-right: 5px;
	vertical-align: top;
	line-height: inherit;
	display: inline-block;
	text-align: center;
	width: 100%;
	padding-right: 3px;
}
.hamburger-minicart > a:before {
	font-size: 48px;
	margin: 0;
	padding: 0;
	-webkit-transition: font-size .3s;
	transition: font-size .3s;
}
.hamburger-group.hamburger-size-small .hamburger-minicart > a:before {
	font-size: 24px;
}
.hamburger-minicart.hamburger-minicart-size-small > a:before {
	font-size: 24px;
}
#page.vertical-header #primary-navigation #primary-menu > li.menu-item-cart > a:before,
.header-layout-fullwidth_hamburger #primary-navigation #primary-menu > li.menu-item-cart > a:before {
	text-align: left;
}
#primary-navigation.responsive #primary-menu > li.menu-item-cart > a:before {
	text-align: left;
}
#primary-navigation.responsive #primary-menu > li.menu-item-cart > .minicart {
	display: none;
}
#primary-navigation #primary-menu > li.menu-item-cart > a .minicart-item-count,
.hamburger-minicart > a .minicart-item-count {
	position: absolute;
	right: -15px;
	top: 50%;
	width: 23px;
	height: 18px;
	font-size: 87.5%;
	text-align: center;
	line-height: 18px;
	margin: -8px 0 0 0;
	padding-right: 2px;
	z-index: 1;
}
.hamburger-minicart > a .minicart-item-count,
#primary-navigation #primary-menu > li.menu-item-cart > a.circle-count .minicart-item-count {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 15px;
	right: 0;
	left: auto;
	margin: 0;
	padding: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: #000000;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
#primary-navigation #primary-menu > li.menu-item-cart > a.circle-count .minicart-item-count {
	width: 18px;
	height: 18px;
	line-height: 18px;
	top: 50%;
	margin-top: -11px;
	right: 11px;
}
#page .header-layout-overlay #primary-navigation #primary-menu > li.menu-item-cart > a.circle-count .minicart-item-count {
	width: 20px;
	height: 20px;
	line-height: 20px;
	top: 19px;
	right: 13px;
	font: inherit;
	font-size: 11px;
}

#site-header .hamburger-size-small .hamburger-minicart > a .minicart-item-count,
#site-header.shrink .hamburger-minicart > a .minicart-item-count {
	width: 16px;
	height: 16px;
	font-size: 9px;
	top: 2px;
	right: -6px;
}
.hamburger-group.hamburger-size-small .hamburger-minicart > a .minicart-item-count {
	margin-top: 0;
}
.hamburger-minicart.hamburger-minicart-size-small > a .minicart-item-count {
	margin-top: 0;
}
#primary-navigation #primary-menu > li.menu-item-cart > a.empty .minicart-item-count,
.hamburger-minicart > a.empty .minicart-item-count {
	display: none;
}
#primary-navigation.responsive #primary-menu > li.menu-item-cart > a .minicart-item-count {
	left: 65px;
}
#primary-navigation #primary-menu > li.menu-item-cart > a .minicart-item-count:after {
	content: '';
	position: absolute;
	left: -6px;
	top: 3px;
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	background: inherit;
	z-index: -1;
}
#primary-navigation #primary-menu > li.menu-item-cart > a.circle-count .minicart-item-count:after {
	display: none;
}
#primary-navigation #primary-menu > li.menu-item-cart > a .minicart-item-count,
#primary-navigation #primary-menu > li.menu-item-cart > a .minicart-item-count:after,
body.mobile-cart-position-top #site-header .mobile-cart .minicart-item-count,
.hamburger-minicart > a .minicart-item-count,
#primary-navigation #primary-menu > li.menu-item-cart > a.circle-count .minicart-item-count {
	color: #ffffff;
}
@media (max-width: 768px) {
	.primary-navigation li.menu-item-cart > a:after,
	.primary-navigation li.menu-item-cart > .minicart {
		display: none;
	}
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart,
.hamburger-minicart > .minicart {
	position: absolute;
	visibility: hidden;
	white-space: normal;
	width: 305px;
	border-top: 0;
	transition: transform 0.1s linear 0.5s, opacity 0.1s linear 0.5s, visibility 0.1s linear 0.5s;
	-moz-transition: transform 0.1s linear 0.5s, opacity 0.1s linear 0.5s, visibility 0.1s linear 0.5s;
	-webkit-transition: transform 0.1s linear 0.5s, opacity 0.1s linear 0.5s, visibility 0.1s linear 0.5s;
	opacity: 0;
	transform: translateY(20px);
	-o-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-webkit-transform: translateY(20px);
	padding: 23px 0 0;
	border: 1px solid #ffffff;
}
.header-layout-fullwidth_hamburger #primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart,
#thegem-perspective .perspective-navigation #primary-menu.no-responsive li.menu-item-cart > .minicart,
#page.vertical-header #primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart,
.header-layout-overlay #primary-navigation #primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart {
	display: none;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul,
.hamburger-minicart > .minicart ul {
	position: relative;
	visibility: inherit;
	width: auto;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	transition: all 0s;
	-moz-transition: all 0s;
	-webkit-transition: all 0s;
	opacity: 1;
	transform: none;
	-o-transform: none;
	-ms-transform: none;
	-moz-transform: none;
	-webkit-transform: none;
	border: 0;
}
#primary-menu.no-responsive:hover li.menu-item-cart:hover > .minicart,
.hamburger-minicart:hover > .minicart,
#primary-menu.no-responsive:focus-within li.menu-item-cart:focus-within > .minicart,
.hamburger-minicart:focus-within > .minicart {
	visibility: visible;
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	opacity: 1;
	transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
}
#primary-menu.no-responsive:hover > li.menu-item-cart .minicart {
	visibility: hidden;
	transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
	opacity: 0;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart,
.hamburger-minicart > .minicart {
	top: 100%;
	left: 0;
	/*margin-top: 15px;*/
}
#site-header.shrink .hamburger-minicart > .minicart {
	margin-top: 0;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart.invert,
.hamburger-minicart > .minicart.invert {
	left: auto;
	right: 0;
}

/* MINI CART */

#primary-menu.nav-menu.no-responsive > li.menu-item-cart .widget_shopping_cart_content ul.cart_list,
.hamburger-minicart .widget_shopping_cart_content ul.cart_list,
.mobile-cart-position-top #site-header .mobile-cart .widget_shopping_cart_content ul.cart_list {
	padding: 0 24px;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li img,
.hamburger-minicart > .minicart ul li img,
.mobile-cart-position-top #site-header .mobile-cart ul li img {
	height: 60px;
	width: 60px;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li .minicart-image,
.hamburger-minicart > .minicart ul li .minicart-image,
.mobile-cart-position-top #site-header .mobile-cart ul li .minicart-image {
	float: left;
	margin-right: 17px;
	margin-top: -4px;
	position: relative;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li .minicart-image:after,
.hamburger-minicart > .minicart ul li .minicart-image:after,
.mobile-cart-position-top #site-header .mobile-cart ul li .minicart-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	opacity: 0;
	z-index: 1;
	background: rgba(0, 188, 212, 0.3);
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li a:hover .minicart-image:after,
.hamburger-minicart > .minicart ul li a:hover .minicart-image:after,
.mobile-cart-position-top #site-header .mobile-cart ul li a:hover .minicart-image:after {
	opacity: 1;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li.sale .minicart-image:before,
.hamburger-minicart > .minicart ul li.sale .minicart-image:before,
.mobile-cart-position-top #site-header .mobile-cart ul li.sale .minicart-image:before {
	content: '%';
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: absolute;
	right: -11px;
	top: 4px;
	z-index: 2;
	line-height: 24px;
	text-align: center;
	text-indent: -1px;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul.woocommerce-mini-cart li,
.hamburger-minicart > .minicart ul.woocommerce-mini-cart li,
.mobile-cart-position-top #site-header .mobile-cart ul.woocommerce-mini-cart li {
	display: inline-block;
	padding: 4px 0 0 0;
	margin: 26px 0 0 0;
	width: 100%;
	border: 0;
	position: relative;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li .variation,
.hamburger-minicart > .minicart ul li .variation,
.mobile-cart-position-top #site-header .mobile-cart ul li .variation {
	display: none;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li.empty,
.hamburger-minicart > .minicart ul li.empty,
.mobile-cart-position-top #site-header .mobile-cart ul li.empty {
	padding-bottom: 25px;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li:first-child,
.hamburger-minicart > .minicart ul li:first-child,
.mobile-cart-position-top #site-header .mobile-cart ul li:first-child {
	margin: 0;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li a,
.hamburger-minicart > .minicart ul li a,
.mobile-cart-position-top #site-header .mobile-cart ul li a {
	display: block;
	margin: 0 20px 0 0;
	border: 0 !important;
	padding: 0 !important;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li a.remove,
.hamburger-minicart > .minicart ul li a.remove,
.mobile-cart-position-top #site-header .mobile-cart ul li a.remove {
	padding: 0;
	margin: 0;
	position: absolute;
	right: 0;
	top: -7px;
	cursor: pointer;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li .quantity,
.hamburger-minicart > .minicart ul li .quantity,
.mobile-cart-position-top #site-header .mobile-cart ul li .quantity {
	display: inline-block;
	margin-top: 4px;
}
.widget_shopping_cart_content ul.cart_list li .cart-item-info {
	margin-left: 85px;
	padding-top: 5px;
}
.widget_shopping_cart_content .quantity {
	font-size: 123.5%;
	line-height: 1.421;
}
.widget_shopping_cart_content .minicart-bottom {
	margin-top: 25px;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart .widget_shopping_cart_content .minicart-bottom,
.hamburger-minicart .widget_shopping_cart_content .minicart-bottom,
.mobile-cart-position-top #site-header .mobile-cart .widget_shopping_cart_content .minicart-bottom {
	padding: 20px 20px 20px;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .total,
.hamburger-minicart > .minicart .total,
.mobile-cart-position-top #site-header .mobile-cart .total {
	padding: 15px 24px 0;
	margin-top: 24px;
	display: flex;
	justify-content: space-between;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .total strong,
.hamburger-minicart > .minicart .total strong,
.mobile-cart-position-top #site-header .mobile-cart .total strong {
	display: inline-block;
	padding-top: 7px;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .total span.amount,
.hamburger-minicart > .minicart .total span.amount,
.mobile-cart-position-top #site-header .mobile-cart .total span.amount {
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .total:has(+ .minicart-template-placeholder),
.hamburger-minicart > .minicart .total:has(+ .minicart-template-placeholder),
.mobile-cart-position-top #site-header .mobile-cart .total:has(+ .minicart-template-placeholder) {
	padding-bottom: 15px;
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .buttons,
.hamburger-minicart > .minicart .buttons,
.mobile-cart-position-top #site-header .mobile-cart .buttons {
	display: flex;
	flex-wrap: wrap;
	padding: 8px 18px 17px;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .buttons a,
.hamburger-minicart > .minicart .buttons a,
.mobile-cart-position-top #site-header .mobile-cart .buttons a {
	margin: 0;
	width: 100%;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .buttons,
.hamburger-minicart > .minicart .buttons,
.mobile-cart-position-top #site-header .mobile-cart .buttons {
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .buttons .mini-cart-view-cart,
.hamburger-minicart > .minicart .buttons .mini-cart-view-cart,
.mobile-cart-position-top #site-header .mobile-cart .buttons .mini-cart-view-cart {
	flex: 1;
	margin: 6px;
	flex-basis: auto;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .buttons .mini-cart-view-cart .gem-button,
.hamburger-minicart > .minicart .buttons .mini-cart-view-cart .gem-button,
.mobile-cart-position-top #site-header .mobile-cart .buttons .mini-cart-view-cart .gem-button {
	border: 2px solid transparent;
	line-height: 26px;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .buttons .mini-cart-checkout,
.hamburger-minicart > .minicart .buttons .mini-cart-checkout,
.mobile-cart-position-top #site-header .mobile-cart .mini-cart-checkout {
	flex: 1;
	margin: 6px;
	flex-basis: auto;
}
.widget_shopping_cart_content .cart_list .empty {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border: 0 none;
	margin-bottom: 1.421em;
}
.hamburger-minicart {
	position: relative;
	display: inline-block;
	margin: 5px 35px 0 0;
	vertical-align: middle;
	height: 60px;
	text-align: left;
	-webkit-transition: all .3s, transform 1s;
	transition: all .3s, transform 1s;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.logo-position-right .hamburger-minicart {
	margin-right: 0px;
	margin-left: 35px;
}
.hamburger-group.hamburger-size-small .hamburger-minicart {
	height: 30px;
	margin-right: 18px;
	margin-top: 7px;
}
.hamburger-minicart.hamburger-minicart-size-small {
	height: 30px;
	margin-right: 20px;
}
.logo-position-right .hamburger-group.hamburger-size-small .hamburger-minicart {
	margin-right: 0px;
	margin-left: 20px;
}
.logo-position-right .hamburger-minicart.hamburger-minicart-size-small {
	margin-right: 0px;
	margin-left: 20px;
}
@media (max-width: 767px) {
	#primary-navigation .hamburger-minicart {
		display: none;
	}
}

#primary-navigation.responsive .hamburger-minicart {
	display: none;
}
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li img,
.hamburger-minicart > .minicart ul li img,
.mobile-cart-position-top #site-header .mobile-cart ul li img {
	height: auto;
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart,
.hamburger-minicart > .minicart,
.mobile-cart-position-top #site-header .mobile-cart> .minicart {
	background-color: var(--thegem-to-minicart-background-color, #ffffff);
	border-color: #dfe5e8;
}
.mobile-cart-position-top #site-header .mobile-cart> .minicart {
	background-color: var(--thegem-to-minicart-background-color, var(--styled-bg-color));
}
.mobile-cart-position-top #site-header .mobile-cart> .minicart .widget_shopping_cart_content {
	background-color: var(--thegem-to-minicart-background-color, var(--styled-bg-color));
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li a:hover,
.hamburger-minicart > .minicart ul li a:hover {
	color: #00bcd4;
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li .quantity,
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .total,
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li.empty,
.hamburger-minicart > .minicart ul li .quantity,
.hamburger-minicart > .minicart .total,
.hamburger-minicart > .minicart ul li.empty,
.mobile-cart-position-top #site-header .mobile-cart ul li .quantity,
.mobile-cart-position-top #site-header .mobile-cart .total,
.mobile-cart-position-top #site-header .mobile-cart ul li.empty,
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .total strong,
.hamburger-minicart > .minicart .total strong,
.mobile-cart-position-top #site-header .mobile-cart .total strong{
	font-family: var(--thegem-to-body-font-family);
	font-weight: var(--thegem-to-body-font-weight);
	font-style: var(--thegem-to-body-font-style);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
	text-transform: var(--thegem-to-body-text-transform);
	letter-spacing: var(--thegem-to-body-letter-spacing);
	color: var(--thegem-to-body-color);
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li .quantity span.amount,
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .total span.amount,
.hamburger-minicart > .minicart ul li .quantity span.amount,
.hamburger-minicart > .minicart .total span.amount,
.mobile-cart-position-top #site-header .mobile-cart ul li .quantity span.amount,
.mobile-cart-position-top #site-header .mobile-cart .total span.amount {
	font-family: var(--thegem-to-product-price-cart-font-family);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-style: var(--thegem-to-product-price-cart-font-style);
	font-size: var(--thegem-to-product-price-cart-font-size-tiny);
	line-height: var(--thegem-to-product-price-cart-line-height-tiny);
	text-transform: var(--thegem-to-product-price-cart-text-transform);
	letter-spacing: var(--thegem-to-product-price-cart-letter-spacing);
	color: var(--thegem-to-product-price-cart-color);
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .total span.amount,
.hamburger-minicart > .minicart .total span.amount,
.mobile-cart-position-top #site-header .mobile-cart .total span.amount {
	font-size: var(--thegem-to-product-price-cart-font-size);
	line-height: var(--thegem-to-product-price-cart-line-height);
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li a.remove,
.hamburger-minicart > .minicart ul li a.remove,
.mobile-cart-position-top #site-header .mobile-cart ul li a.remove {
	font-size: 18px;
	color: #99a9b5;
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .total,
#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .buttons,
.hamburger-minicart > .minicart .total,
.hamburger-minicart > .minicart .buttons,
.mobile-cart-position-top #site-header .mobile-cart .total,
.mobile-cart-position-top #site-header .mobile-cart .buttons {
	background-color: var(--styled-bg-color, #f0f3f2);
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart ul li.sale .minicart-image:before,
.hamburger-minicart > .minicart ul li.sale .minicart-image:before,
.mobile-cart-position-top #site-header .mobile-cart ul li.sale .minicart-image:before {
	font-family: var(--thegem-to-body-font-family);
	font-size: var(--thegem-to-body-font-size);
	color: #FFFFFF;
	line-height: 24px;
	background-color: var(--thegem-to-hover-default-color, #00BCD4);
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .buttons .mini-cart-checkout .gem-button,
.hamburger-minicart > .minicart .buttons .mini-cart-checkout .gem-button,
.mobile-cart-position-top #site-header .mobile-cart .buttons .mini-cart-checkout .gem-button {
	border-color: #46485c;
	color: #46485c;
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .buttons .mini-cart-checkout .gem-button:hover,
.hamburger-minicart > .minicart .buttons .mini-cart-checkout .gem-button:hover,
.mobile-cart-position-top #site-header .mobile-cart .buttons .mini-cart-checkout .gem-button:hover {
	background: #46485c;
	color: #ffffff;
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .buttons .mini-cart-view-cart .gem-button,
.hamburger-minicart > .minicart .buttons .mini-cart-view-cart .gem-button,
.mobile-cart-position-top #site-header .mobile-cart .buttons .mini-cart-view-cart .gem-button {
	background-color: #00bcd4;
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart > .minicart .buttons .mini-cart-view-cart .gem-button:hover,
.hamburger-minicart > .minicart .buttons .mini-cart-view-cart .gem-button:hover,
.mobile-cart-position-top #site-header .mobile-cart .buttons .mini-cart-view-cart .gem-button:hover {
	border-color: #00bcd4;
	background-color: transparent;
	color: #00bcd4;
}


#site-header .mobile-cart {
	display: none;
	vertical-align: middle;
	padding: 15px 0;
	width: 36px;
	height: 60px;
}
#site-header .mobile-cart:before {
	content: '';
	display: block;
	height: 0;
	width: 36px;
}
@media (max-width: 767px) {
	.mobile-cart-position-top #site-header .mobile-cart {
		display: table-cell;
	}
	.mobile-cart-position-top #site-header .site-title {
		text-align: center;
		width: 99%;
	}
	.mobile-cart-position-top #site-header .site-title .site-logo {
		margin: 0 auto;
	}
	.mobile-cart-position-top #site-header .primary-navigation,
	.mobile-cart-position-top #site-header #perspective-menu-buttons {
		width: auto;
	}
}
.mobile-cart-position-top #site-header .mobile-cart > a {
	display: block;
	vertical-align: middle;
	position: relative;
	margin: 0 auto;
	text-align: center;
}
.mobile-cart-position-top #site-header .mobile-cart > a:before {
/*	font-family: 'thegem-icons';
	font-weight: normal;
	font-size: 24px;
	content: '\e613';*/
	content: '';
	margin-right: 0;
	vertical-align: top;
	line-height: inherit;
	display: inline-block;
	text-align: center;
	width: 100%;
	height: 24px;
	padding-right: 0;
	background-color: #3c3950;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M17,18A2,2 0 0,1 19,20A2,2 0 0,1 17,22C15.89,22 15,21.1 15,20C15,18.89 15.89,18 17,18M1,2H4.27L5.21,4H20A1,1 0 0,1 21,5C21,5.17 20.95,5.34 20.88,5.5L17.3,11.97C16.96,12.58 16.3,13 15.55,13H8.1L7.2,14.63L7.17,14.75A0.25,0.25 0 0,0 7.42,15H19V17H7C5.89,17 5,16.1 5,15C5,14.65 5.09,14.32 5.24,14.04L6.6,11.59L3,4H1V2M7,18A2,2 0 0,1 9,20A2,2 0 0,1 7,22C5.89,22 5,21.1 5,20C5,18.89 5.89,18 7,18M16,11L18.78,6H6.14L8.5,11H16Z' /%3E%3C/svg%3E") no-repeat 50% 50%;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M17,18A2,2 0 0,1 19,20A2,2 0 0,1 17,22C15.89,22 15,21.1 15,20C15,18.89 15.89,18 17,18M1,2H4.27L5.21,4H20A1,1 0 0,1 21,5C21,5.17 20.95,5.34 20.88,5.5L17.3,11.97C16.96,12.58 16.3,13 15.55,13H8.1L7.2,14.63L7.17,14.75A0.25,0.25 0 0,0 7.42,15H19V17H7C5.89,17 5,16.1 5,15C5,14.65 5.09,14.32 5.24,14.04L6.6,11.59L3,4H1V2M7,18A2,2 0 0,1 9,20A2,2 0 0,1 7,22C5.89,22 5,21.1 5,20C5,18.89 5.89,18 7,18M16,11L18.78,6H6.14L8.5,11H16Z' /%3E%3C/svg%3E") no-repeat 50% 50%;
	-webkit-mask-size: 24px;
	mask-size: 24px;
}
.mobile-cart-position-top #site-header:not(.shrink) .header-colors-light .mobile-cart > a:before {
	background-color: #ffffff;
}

.mobile-cart-position-top #site-header .mobile-cart .minicart-item-count {
	position: absolute;
	right: -3px;
	top: -8px;
	width: 18px;
	height: 18px;
	line-height: 18px;
	font-size: 11px;
	border-radius: 50%;
	text-align: center;
}
.mobile-cart-position-top #site-header .mobile-cart > a.empty .minicart-item-count {
	display: none;
}
.mobile-cart-position-top #site-header .mobile-cart .minicart {
	position: fixed;
	-webkit-perspective: 1000;
	opacity: 1;
	visibility: visible;
	top: 0;
	left: 0;
	bottom: 0;
	overflow-y: auto;
	display: block;
	width: 80%;
	min-width: 300px;
	max-width: 450px;
	transform: translateX(-100%);
	transition: transform 0.2s ease-out;
	z-index: 999;
}
.mobile-cart-position-top #site-header .logo-position-right .mobile-cart .minicart {
	left: auto;
	right: 0;
	transform: translateX(100%);
}
.mobile-cart-position-top #site-header .mobile-cart .minicart.minicart-show {
	transform: translateX(0);
}
.admin-bar.mobile-cart-position-top #site-header .mobile-cart .minicart {
	top: 32px;
}
@media (max-width: 767px) {
	.admin-bar.mobile-cart-position-top #site-header .mobile-cart .minicart {
		top: 46px;
	}
}
@media (max-width: 599px) {
	.admin-bar.mobile-cart-position-top #site-header.shrink.fixed .mobile-cart .minicart {
		top: 0;
	}
}
.mobile-cart-header {
	display: none;
}
.mobile-cart .mobile-cart-header {
	display: block;
	position: relative;
	padding: 23px 24px;
}
.mobile-cart .mobile-cart-header .mobile-cart-header-title {
	margin: 0;
}
.mobile-cart .mobile-cart-header .mobile-cart-header-title:before {
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	content: '\e613';
	vertical-align: top;
	line-height: inherit;
	display: inline-block;
	text-align: center;
	margin-right: 10px;
	color: #00bcd4;
}
.mobile-cart-header-close {
	position: absolute;
	top: 50%;
	right: 24px;
	margin-top: -15px;
	width: 30px;
	height: 30px;
}
.mobile-cart-header-close .cart-close-line-1,
.mobile-cart-header-close .cart-close-line-2 {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 3px;
	background: #99a9b5;
	margin-top: -2px;
}
.mobile-cart-header-close .cart-close-line-1 {
	transform: rotate(45deg);
}
.mobile-cart-header-close .cart-close-line-2 {
	transform: rotate(-45deg);
}
.mobile-minicart-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 998;
	background: #000000;
	opacity: 0;
	visibility: hidden;
	transition: all 1s;
}
#site-header.fixed.shrink.shrink-mobile.hidden .mobile-minicart-overlay {
	/*display: none;*/
}
body.mobile-minicart-opened .mobile-minicart-overlay {
	opacity: 0.7;
	visibility: visible;
}
body.mobile-minicart-opened {
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
body.mobile-minicart-opened #wpadminbar {
	top: -46px;
}
.mobile-cart-position-top #site-header .mobile-cart ul li a.remove {
	font-size: 24px;
	right: 15px;
	top: 5px;
}
.mobile-cart-position-top #site-header .mobile-cart ul li img {
	width: 80px;
}
.mobile-cart-position-top #site-header .mobile-cart .total {
	text-align: center;
	margin-top: 0;
}
.mobile-cart-position-top #site-header .mobile-cart .total strong,
.mobile-cart-position-top #site-header .mobile-cart .total span.amount {
	float: none;
}
.mobile-cart-position-top #site-header .mobile-cart .buttons {
	text-align: center;
}
.mobile-cart-position-top #site-header .mobile-cart .buttons .gem-button-container {
	float: none;
	margin: 10px 5px;
}
.mobile-cart-position-top #site-header .mobile-cart .widget_shopping_cart_content ul.cart_list {
	padding: 0;
}
.mobile-cart-position-top #site-header .mobile-cart .widget_shopping_cart_content ul.cart_list > li {
	padding: 15px;
	margin: 0;
}

#site-header.fixed.shrink .hamburger-minicart {
	margin-right: 18px;
	margin-top: 7px;
	height: auto;
}

#site-header.fixed.shrink .logo-position-right .hamburger-minicart {
	margin-right: 0;
	margin-left: 18px;
}

#site-header.fixed.shrink .hamburger-minicart > a {
	line-height: 1;
}

#site-header.fixed.shrink .hamburger-minicart > a:before {
	font-size: 24px;
}

#primary-menu.nav-menu.no-responsive > li.menu-item-cart .widget_shopping_cart_content ul.cart_list,
.hamburger-minicart .minicart .widget_shopping_cart_content ul.cart_list {
	max-height: 412px;
	overflow-y: auto;
}

/* Woo Germanized Styles Fix */
body p.total.wc-gzd-total-mini-cart{
	margin: 0 !important;
}

/* Sidebar Notifications */
body.notification-locked{
	overflow: hidden;
}
body.notification-locked .mobile-minicart-overlay{
	display: none;
}
body.notification-locked.compensate-for-scrollbar{
	margin-right: 0;
}
body.notification-locked .fancybox-container{
	transition: all 0.2s;
	visibility: hidden;
	opacity: 0;
}

.thegem-popup-notification-sidebar{
	position: fixed;
	display: inline;
	width: 100vw;
	height: 100%;
	max-height: 100vh;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	margin: 0;
	padding: 0;
	z-index: -1;
	background: rgba(33,35,49,.5);
	transform: none;
	pointer-events: none;
	transition: all 0.3s;
}
.thegem-popup-notification-sidebar.active{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 99999;
}
.thegem-popup-notification-sidebar .notification-sidebar{
	position: fixed;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 410px;
	height: 100%;
	display: flex;
	flex-direction: column;
	background-color: var(--thegem-to-minicart-background-color, #FFFFFF);
	opacity: 0;
	visibility: hidden;
	transform: translate3d(100%,0,0);
	-webkit-transform: translate3d(100%,0,0);
	transition: all 0.3s;
}
body.admin-bar .thegem-popup-notification-sidebar .notification-sidebar{
	height: calc(100% - 32px);
}
.thegem-popup-notification-sidebar.active .notification-sidebar{
	transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	opacity: 1;
	visibility: visible;
}
.thegem-popup-notification-sidebar .mobile-cart-header{
	display: none !important;
}
.thegem-popup-notification-sidebar .notification-sidebar-caption{
	position: relative;
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-height: 85px;
	margin: 0 25px;
	border-bottom: 1px solid var(--thegem-to-box-border-color);
}
.thegem-popup-notification-sidebar .notification-sidebar-caption .title{
	font-family: var(--thegem-to-light-title-font-family);
	font-style: var(--thegem-to-light-title-font-style);
	font-weight: var(--thegem-to-light-title-font-weight);
	font-size: var(--thegem-to-h3-font-size);
	line-height: 1;
	text-transform: capitalize;
	letter-spacing: 0;
	color: var(--thegem-to-body-color);
}
.thegem-popup-notification-sidebar .notification-sidebar-caption .close{
	position: absolute;
	width: 36px;
	height: 36px;
	left: -85px;
	font-size: 0;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s linear;
}
.thegem-popup-notification-sidebar .notification-sidebar-caption .close:hover{
	opacity: 0.8;
}
.thegem-popup-notification-sidebar .notification-sidebar-caption .close:before,
.thegem-popup-notification-sidebar .notification-sidebar-caption .close:after{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -2px;
	width: 4px;
	height: 100%;
	background-color: #FFFFFF;
}
.thegem-popup-notification-sidebar .notification-sidebar-caption .close:before{
	transform: rotate(46deg);
}
.thegem-popup-notification-sidebar .notification-sidebar-caption .close:after{
	transform: rotate(-46deg);
}
.thegem-popup-notification-sidebar .notification-sidebar-content{
	position: relative;
	flex: 1 1 100%;
}
.thegem-popup-notification-sidebar .widget_shopping_cart_content{
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart{
	position: relative;
	width: 100%;
	flex: 1 1 0;
	padding: 0 25px;
	overflow-x: hidden;
	overflow-y: auto;
	white-space: inherit;
	transition: none;
	opacity: inherit;
	visibility: inherit;
	border: 0;
}
.thegem-popup-notification-sidebar .minicart-contents-wrap {
	position: relative;
	width: 100%;
	flex: 1 1 0;
	overflow-x: hidden;
	overflow-y: auto;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart::-webkit-scrollbar,
.thegem-popup-notification-sidebar .minicart-contents-wrap::-webkit-scrollbar {
	width: 4px;
	background-color: transparent;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart::-webkit-scrollbar-track,
.thegem-popup-notification-sidebar .minicart-contents-wrap::-webkit-scrollbar-track {
	background-color: transparent;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart::-webkit-scrollbar-thumb,
.thegem-popup-notification-sidebar .minicart-contents-wrap::-webkit-scrollbar-thumb {
	background-color: var(--thegem-to-box-border-color);
	border-radius: 2px;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart li {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 10px 0 10px 35px;
	width: 100%;
	min-height: 90px;
	margin: 0;
	border: 0 !important;
	border-bottom: 1px solid var(--thegem-to-box-border-color) !important;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart__empty-message{
	display: none !important;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart li:last-child{
	border: 0 !important;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart a.remove_from_cart_button{
	position: absolute;
	left: 0;
	right: auto;
	top: 36px;
	width: 15px;
	height: 15px;
	padding: 0;
	margin: 0;
	line-height: 1;
	font-size: 0;
	text-indent: unset;
	color: var(--thegem-to-body-color);
	border: 0;
	border-radius: 0;
	transition: all 0.3s linear;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart a.remove_from_cart_button:before{
	content: '\e68a';
	font-family: 'thegem-icons';
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart a.remove_from_cart_button:hover{
	color: var(--thegem-to-styled-color3);
	border-color: var(--thegem-to-styled-color3);
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart a:not(.remove_from_cart_button){
	position: relative;
	color: var(--thegem-to-product-title-cart-color);
	padding: 0 0 0 90px;
	line-height: inherit;
	border: 0;
	margin: 0;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart .minicart-image{
	position: absolute;
	left: 0;
	right: auto;
	top: 0;
	float: none;
	margin: 0;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart .minicart-image:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--thegem-to-styled-color1-03);
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: all 0.3s linear;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart a:not(.remove_from_cart_button):hover .minicart-image:before{
	opacity: 1;
	visibility: visible;
	z-index: 1;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart .minicart-image img{
	width: 70px;
	max-width: none;
	height: auto;
	margin: 0;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart .variation{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 0 0 90px;
	padding: 0;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart .variation p,
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart .variation dt,
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart .variation dd{
	padding: 0;
	margin: 0;
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	color: var( --thegem-to-date-filter-subtitle-color);
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart .variation dt,
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart .variation dd{
	margin-right: 5px;
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart .quantity{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 0 90px;
	padding: 0;
	font-family: var(--thegem-to-product-price-cart-font-family);
	font-style: var(--thegem-to-product-price-cart-font-style);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-size: calc(var(--thegem-to-product-price-cart-font-size) * 0.6);
	line-height: var(--thegem-to-product-price-cart-line-height);
	color: var(--thegem-to-product-price-cart-color);
}
.thegem-popup-notification-sidebar ul.woocommerce-mini-cart .quantity .amount{
	font-size: calc(var(--thegem-to-product-price-cart-font-size) * 0.75);
	padding-left: 4px;
	color: var(--thegem-to-product-price-color);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__total,
.thegem-popup-notification-sidebar .woocommerce-mini-cart__subtotal{
	position: relative;
	display: flex;
	align-items: center;
	padding: 20px 25px 0 25px;
	justify-content: space-between;
	margin-top: auto;
	background-color: var(--styled-bg-color);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__total strong,
.thegem-popup-notification-sidebar .woocommerce-mini-cart__subtotal strong{
	font-family: var(--thegem-to-body-font-family);
	font-style: var(--thegem-to-body-font-style);
	font-weight: var(--thegem-to-body-font-weight);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-product-price-line-height);
	color: var(--thegem-to-body-color);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__total .amount,
.thegem-popup-notification-sidebar .woocommerce-mini-cart__subtotal .amount{
	font-family: var(--thegem-to-product-price-cart-font-family) !important;
	font-style: var(--thegem-to-product-price-cart-font-style);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-size: var(--thegem-to-product-price-cart-font-size);
	line-height: var(--thegem-to-product-price-line-height);
	color: var(--thegem-to-product-price-cart-color) !important;
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__total:has(+ .minicart-template-placeholder),
.thegem-popup-notification-sidebar .woocommerce-mini-cart__subtotal:has(+ .minicart-template-placeholder) {
	padding-bottom: 20px;
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__infobox{
	position: relative;
	display: block;
	text-align: right;
	padding: 0 25px;
	font-family: var(--thegem-to-body-tiny-font-family);
	font-style: var(--thegem-to-body-tiny-font-style);
	font-weight: var(--thegem-to-body-tiny-font-weight);
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	color: var(--thegem-to-body-color);
	background-color: var(--styled-bg-color);
}
.thegem-popup-notification-sidebar .wc-gzd-total-mini-cart{
	position: relative;
	padding: 0 25px !important;
	text-align: right !important;
	color: var(--thegem-to-body-color) !important;
	background-color: var(--styled-bg-color) !important;
}
.thegem-popup-notification-sidebar .wc-gzd-total-mini-cart,
.thegem-popup-notification-sidebar .wc-gzd-total-mini-cart a{
	font-family: var(--thegem-to-body-font-family) !important;
	font-weight: var(--thegem-to-body-font-weight) !important;
	font-style: var(--thegem-to-body-font-style) !important;
	font-size: var(--thegem-to-body-tiny-font-size) !important;
	line-height: var(--thegem-to-body-tiny-line-height) !important;
	text-transform: var(--thegem-to-body-text-transform) !important;
	letter-spacing: var(--thegem-to-body-letter-spacing) !important;
}
.thegem-popup-notification-sidebar .wc-gzd-total-mini-cart:first-of-type{
	padding-top: 10px !important;
}
.thegem-popup-notification-sidebar .wc-gzd-total-mini-cart .amount{
	font-family: var(--thegem-to-product-price-cart-font-family) !important;
	font-style: var(--thegem-to-product-price-cart-font-style);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-size: calc(var(--thegem-to-product-price-cart-font-size) * 0.833);
}
.thegem-popup-notification-sidebar .wc-gzd-total-mini-cart .amount,
.thegem-popup-notification-sidebar .wc-gzd-total-mini-cart a{
	padding-left: 3px;
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__buttons{
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 20px 25px 25px 25px;
	background-color: var(--styled-bg-color);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__buttons .gem-button{
	flex: auto;
	margin: 0;
	min-height: 40px;
	line-height: 36px;
	width: 100%;
	border: 2px solid var(--thegem-to-styled-color1);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__buttons .mini-cart-view-cart{
	margin-bottom: 10px;
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__empty{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 40px;
	padding: 0 25px;
	text-align: center;
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__empty-icon{
	position: relative;
	margin-bottom: 20px;
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__empty-icon:after{
	content: '';
	font-size: 100px;
	width: 1em;
	height: 1em;
	line-height: 1em;
	display: block;
	-webkit-mask: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M14.12,8.53L12,6.41L9.88,8.54L8.46,7.12L10.59,5L8.47,2.88L9.88,1.47L12,3.59L14.12,1.46L15.54,2.88L13.41,5L15.53,7.12L14.12,8.53M7,18A2,2 0 0,1 9,20A2,2 0 0,1 7,22A2,2 0 0,1 5,20A2,2 0 0,1 7,18M17,18A2,2 0 0,1 19,20A2,2 0 0,1 17,22A2,2 0 0,1 15,20A2,2 0 0,1 17,18M7.17,14.75A0.25,0.25 0 0,0 7.42,15H19V17H7A2,2 0 0,1 5,15C5,14.65 5.09,14.32 5.25,14.04L6.6,11.59L3,4H1V2H4.27L5.21,4L6.16,6L8.4,10.73L8.53,11H15.55L18.31,6L19.41,4H19.42L21.16,4.96L17.3,11.97C16.96,12.59 16.3,13 15.55,13H8.1L7.2,14.63L7.17,14.75Z' /%3E%3C/svg%3E") no-repeat 50% 50%;
	mask: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M14.12,8.53L12,6.41L9.88,8.54L8.46,7.12L10.59,5L8.47,2.88L9.88,1.47L12,3.59L14.12,1.46L15.54,2.88L13.41,5L15.53,7.12L14.12,8.53M7,18A2,2 0 0,1 9,20A2,2 0 0,1 7,22A2,2 0 0,1 5,20A2,2 0 0,1 7,18M17,18A2,2 0 0,1 19,20A2,2 0 0,1 17,22A2,2 0 0,1 15,20A2,2 0 0,1 17,18M7.17,14.75A0.25,0.25 0 0,0 7.42,15H19V17H7A2,2 0 0,1 5,15C5,14.65 5.09,14.32 5.25,14.04L6.6,11.59L3,4H1V2H4.27L5.21,4L6.16,6L8.4,10.73L8.53,11H15.55L18.31,6L19.41,4H19.42L21.16,4.96L17.3,11.97C16.96,12.59 16.3,13 15.55,13H8.1L7.2,14.63L7.17,14.75Z' /%3E%3C/svg%3E") no-repeat 50% 50%;
	-webkit-mask-size: 1em;
	mask-size: 1em;
	background-color: var(--thegem-to-box-border-color);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__empty-title{
	font-family: var(--thegem-to-h6-font-family);
	font-style: var(--thegem-to-h6-font-style);
	font-weight: var(--thegem-to-h6-font-weight);
	font-size: var(--thegem-to-h6-font-size);
	line-height: var(--thegem-to-h6-line-height);
	text-transform: var(--thegem-to-h6-text-transform);
	color: var(--thegem-to-h6-color);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__empty-subtitle{
	padding: 0 30px;
	margin-top: 15px;
	font-family: var(--thegem-to-body-font-family);
	font-style: var(--thegem-to-body-font-style);
	font-weight: var(--thegem-to-body-font-weight);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
	text-transform: var(--thegem-to-body-text-transform);
	color: var(--thegem-to-body-color);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__empty-link{
	position: relative;
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__empty-link .gem-button{
	background-color: var(--thegem-to-styled-color1);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart__empty-link .gem-button:hover{
	background-color: var(--thegem-to-button-basic-background-color-hover);
}
.thegem-popup-notification-sidebar.hide-cart-btn .woocommerce-mini-cart__buttons .mini-cart-view-cart,
.thegem-popup-notification-sidebar.hide-infobox .woocommerce-mini-cart__infobox{
	display: none !important;
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__quantity{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin: 5px 0 0 90px;
}
.woocommerce-mini-cart-item__total{
	white-space: nowrap;
	font-family: var(--thegem-to-product-price-cart-font-family);
	font-style: var(--thegem-to-product-price-cart-font-style);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-size: calc(var(--thegem-to-product-price-cart-font-size) * 0.833);
	line-height: var(--thegem-to-product-price-cart-line-height);
	color: var(--thegem-to-product-price-color);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__qty {
	position: relative;
	display: inline-flex;
	padding: 0;
	max-width: 120px;
	margin-right: 10px;
	float: none;
	border-radius: 3px;
	border: 1px solid var(--thegem-to-box-border-color);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__qty input.plus,
.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__qty input.minus,
.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__qty .quantity{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 38px;
	background-color: transparent;
	border: 0;
	text-align: center;
	margin: 0 !important;
	padding: 0;
	font-family: var(--thegem-to-body-font-family);
	font-style: var(--thegem-to-body-font-style);
	font-weight: var(--thegem-to-body-font-weight);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
	color: var(--thegem-to-body-color);
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__qty .quantity input[type="number"] {
	padding: 0 5px;
	border: 0;
	font-size: var(--thegem-to-body-font-size);
	border-left: 1px solid var(--thegem-to-box-border-color);
	border-right: 1px solid var(--thegem-to-box-border-color);
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-align: center;
}
.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__qty .quantity input[type="number"]::-webkit-outer-spin-button,
.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__qty .quantity input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.thegem-popup-notification-sidebar .blockUI.blockOverlay{
	display: block;
	background-color: rgba(255,255,255, 0.8) !important;
}
.thegem-popup-notification-sidebar .blockUI.blockOverlay:before,
.thegem-popup-notification-sidebar .loader:before{
	display: block !important;
	top: 40% !important;
}
.thegem-popup-notification-sidebar .blockUI.blockOverlay:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	width: 20px;
	height: 20px;
	margin: -10px;
	border-top: 2px solid rgba(255, 255, 255, 0.8);
	border-right: 2px solid rgba(255, 255, 255, 0.8);
	border-bottom: 2px solid rgba(255, 255, 255, 0.8);
	border-left: 2px solid var(--thegem-to-styled-color1);
	border-radius: 50%;
	animation: block-overlay-spinner 0.5s infinite linear;
	z-index: 1;
}
@keyframes block-overlay-spinner {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@media (max-width: 778px) {
	body.admin-bar .thegem-popup-notification-sidebar .notification-sidebar{
		height: calc(100% - 46px);
	}
}
@media (max-width: 767px) {
	.thegem-popup-notification-sidebar .notification-sidebar{
		max-width: 320px;
	}
	.thegem-popup-notification-sidebar .notification-sidebar-caption{
		margin: 0 15px;
		min-height: 60px;
		justify-content: space-between;
	}
	.thegem-popup-notification-sidebar .notification-sidebar-caption .title{
		font-size: var(--thegem-to-h4-font-size);
	}
	.thegem-popup-notification-sidebar .notification-sidebar-caption .close{
		position: relative;
		width: 30px;
		height: 30px;
		left: auto;
		right: auto;
		top: auto;
	}
	.thegem-popup-notification-sidebar .notification-sidebar-caption .close:before,
	.thegem-popup-notification-sidebar .notification-sidebar-caption .close:after{
		background-color: var(--thegem-to-styled-color2);
	}
	.thegem-popup-notification-sidebar ul.woocommerce-mini-cart{
		padding: 0 15px;
	}
	.thegem-popup-notification-sidebar .wc-gzd-total-mini-cart{
		padding: 0 15px !important;
	}
	.thegem-popup-notification-sidebar .woocommerce-mini-cart__total,
	.thegem-popup-notification-sidebar .woocommerce-mini-cart__subtotal{
		padding: 15px 15px 0 15px;
	}
	.thegem-popup-notification-sidebar .woocommerce-mini-cart__buttons{
		padding: 15px;
	}
	.thegem-popup-notification-sidebar .woocommerce-mini-cart__buttons .gem-button{
		min-height: 30px;
		line-height: 26px;
	}
	.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__qty {
		max-width: 90px;
	}
	.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__qty input.plus,
	.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__qty input.minus,
	.thegem-popup-notification-sidebar .woocommerce-mini-cart-item__qty .quantity{
		width: 30px;
		height: auto;
	}
}

.minicart-template-placeholder .thegem-template-content {
	font-size: initial;
}
.minicart-template-placeholder {
	padding: 0 21px;
}
.minicart-empty-template-placeholder .thegem-template-content {
	font-size: initial;
}
.minicart-empty-template-placeholder {
	padding: 0 21px;
}
.thegem-popup-notification-sidebar .minicart-empty-template-placeholder {
	position: relative;
	width: 100%;
	flex: 1 1 0;
	overflow-x: hidden;
	overflow-y: auto;
}

/* PRODUCTS LIST */

.page-description + .before-products-list {
	margin-top: 50px;
}

.before-products-list {
	margin-bottom: 45px;
}
@media (max-width: 768px) {
	.before-products-list {
		display: none;
	}
}
.before-products-list .woocommerce-select-count,
.before-products-list .woocommerce-result-count,
.before-products-list .woocommerce-ordering,
.before-products-list .woocommerce-breadcrumb {
	padding: 8px;
}
.before-products-list .woocommerce-select-count,
.before-products-list .woocommerce-result-count {
	float: right;
}
.before-products-list .woocommerce-ordering,
.before-products-list .woocommerce-breadcrumb {
	float: left;
}
.before-products-list .woocommerce-result-count,
.before-products-list .woocommerce-breadcrumb {
	line-height: 30px;
}
.before-products-list .woocommerce-select-count,
.before-products-list .woocommerce-ordering {
	width: 190px;
}
.before-products-list .combobox-wrapper {
	height: 30px;
	border: 0 none;
}
.before-products-list .combobox-wrapper .combobox-text {
	line-height: 30px;
}
.before-products-list .combobox-wrapper .combobox-button {
	width: 30px;
	height: 30px;
}

.products + .gem-product-load-more {
	margin-top: 50px;
}

.woocommerce .star-rating, .woocommerce-page .star-rating {
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 16px;
	height: 1em;
	line-height: 1em;
	overflow: hidden;
	position: relative;
	width: 5em;
	margin: 0 auto;
}
.woocommerce .widget .star-rating {
	margin-left: 0;
}
.single-product-content .woocommerce-product-rating .star-rating {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
}
.woocommerce .star-rating:before,
.woocommerce-page .star-rating:before {
	content: '\e61a\e61a\e61a\e61a\e61a';
	float: left;
	left: 0;
	position: absolute;
	top: 0;
	color: #b6c6c9;
}
.woocommerce .star-rating span, .woocommerce-page .star-rating span {
	float: left;
	left: 0;
	overflow: hidden;
	padding-top: 1.5em;
	position: absolute;
	top: 0;
}
.woocommerce .star-rating > span:before,
.woocommerce-page .star-rating > span:before {
	content: '\e61a\e61a\e61a\e61a\e61a';
	left: 0;
	position: absolute;
	top: 0;
	color: #ffc107;
}
.comment-form-rating .stars a.active::before {
	color: #ffc107;
}
.woocommerce .woocommerce-product-rating, .woocommerce-page .woocommerce-product-rating {
	display: block;
	line-height: 2em;
}
.woocommerce-page .woocommerce-product-rating .product-rating {
	display: table-cell;
	padding-right: 10px;
}
.woocommerce-page .woocommerce-product-rating .product-reviews-link {
	display: table-cell;
}

@media (max-width: 980px) {
	.products.inline-row {
		text-align: center;
	}
}
.products .product-inner {
	position: relative;
	overflow: visible;
}
.products.inline-row .product.inline-column {
	min-width: 300px;
}
.products .product-image {
	display: block;
	text-align: center;
	position: relative;
}
.products .product-image-inner {
	display: block;
	position: relative;
	overflow: hidden;
}
.products .product-image img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}
.products .product-image img.woo-product-hover {
	position: absolute;
	left: 100%;
	top: 0;
	-o-transition: all 0.25s ease-out;
	-webkit-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}
.products .product-inner:hover .product-image img.woo-product-hover {
	left: 0;
}
.products .product-image .woo-product-overlay {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	opacity: 0;
	z-index: 1;
	background: rgba(0, 188, 212, 0.3);
}
.products .product-image:hover .woo-product-overlay {
	opacity: 1;
}
.products .product-image:hover:after {
	top: 50%;
	opacity: 1;
}
.product-dummy-wrapper,
.product-dummy {
	display: inline-block;
	width: 100%;
	vertical-align: top;
}
.product-dummy {
	background: #ffffff url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/woo-dummy.png') no-repeat 50% 50%;
	box-shadow: inset 0 0 90px 0 rgba(56, 69, 84, 0.15);
	-moz-box-shadow: inset 0 0 90px 0 rgba(56, 69, 84, 0.15);
	-webkit-box-shadow: inset 0 0 90px 0 rgba(56, 69, 84, 0.15);
}
.product .product-labels {
	position: absolute;
	width: 60px;
	right: -21px;
	top: 21px;
	z-index: 2;
}
.product .onsale {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 14px;
	text-align: center;
	border-radius: 50%;
	z-index: 2;
	margin: 0 auto;
}
.product .new-label {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 12px;
	text-align: center;
	border-radius: 50%;
	z-index: 1;
	margin: 0 auto;
}
.product .onsale + .new-label {
	margin-top: -15px;
}
.product .out-of-stock-label {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	font-size: 14px;
	line-height: 14px;
	text-align: center;
	border-radius: 50%;
	margin: 0 auto;
	padding-top: 17px;
}
.product .out-of-stock-label .small {
	font-size: 8px;
	display: block;
}
.product .onsale + .out-of-stock-label,
.product .new-label + .out-of-stock-label {
	margin-top: -15px;
}
.products .product-info {
	padding: 15px 20px 4px;
}
.products .catalog-view .product-info {
	padding: 25px 20px 33px;
}
.products .product-info .rating-empty {
	position: relative;
	height: 1px;
	width: 50px;
	margin: 0 auto;
	top: 7px;
}
.products .product-info .product-title {
	margin-top: 5px;
	margin-bottom: 0;
}
.products .product-inner:not(:hover) .product-info .product-title {
	color: inherit;
}
.products .product-info .price del {
	display: none;
}
.products .product-info .price ins,
.products .product-info .price .amount {
	text-decoration: none;
}
.products .product-info .product-rating {
	margin: 7px 0;
	min-height: 13px;
}
.products:not(.portfolio) .product-bottom,
.products.portfolio .caption .product-bottom {
	padding: 0 20px 15px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.products .product-bottom a {
	display: inline-block;
	vertical-align: top;
}
.products .product-bottom .add_to_cart_button,
.products .product-bottom .button:is(.product_type_grouped, .product_type_external) {
	font-size: 0;
	margin: 0 4px;
}
.products .product-bottom .add_to_cart_button.loading {
	bottom: auto;
	left: auto;
	position: static;
	right: auto;
	top: auto;
	z-index: 2;
}
.products .product-bottom .add_to_cart_button:before {
	content: '\e660';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	vertical-align: top;
}
.products .product-bottom .button:is(.product_type_variable, .product_type_grouped, .product_type_external):before {
	content: '\e671';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 19px;
	vertical-align: top;
}
.products .product-bottom .bottom-product-link {
	font-size: 0;
	margin: 0 4px;
}
.products .product-bottom .bottom-product-link:before {
	content: '\e628';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	vertical-align: top;
}
.products .yith-wcwl-add-to-wishlist {
	margin: 0 4px;
}
.products .product-bottom .add_to_wishlist {
	font-size: 0;
}
.products .product-bottom .add_to_wishlist:before {
	content: '\e65e';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	vertical-align: top;
}
.products .product-bottom .add_to_wishlist svg {
	display: none;
}
.products .yith-wcwl-wishlistaddedbrowse .feedback,
.products .yith-wcwl-wishlistexistsbrowse .feedback {
	display: none;
}
.products .product-bottom .yith-wcwl-wishlistexistsbrowse a,
.products .product-bottom .yith-wcwl-add-button a.delete_item {
	font-size: 0;
}
.products .product-bottom .yith-wcwl-wishlistaddedbrowse a:before,
.products .product-bottom .yith-wcwl-wishlistexistsbrowse a:before,
.products .product-bottom .yith-wcwl-add-button a.delete_item:before {
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	vertical-align: top;
}
.products .product-bottom .yith-wcwl-wishlistaddedbrowse a:before {
	content: '\e662';
	margin-right: 5px;
	vertical-align: top;
}
.products .product-bottom .yith-wcwl-wishlistexistsbrowse a:before {
	content: '\e65e';
}
.products .product-bottom .yith-wcwl-add-button a.delete_item:before {
	content: '\e679';
}
.products .product-bottom .added_to_cart {
	margin: 0 4px;
}
.products .product-bottom .added_to_cart:before {
	content: '\e661';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	margin-right: 5px;
	vertical-align: middle;
}
.products .product-bottom-linebreak {
	width: 100%;
}

.single-product-content .socials-sharing {
	margin-top: 40px;
}
.single-product-content .product_title {
	margin-top: 0;
	margin-bottom: 0.33em;
	margin-top: -12px;
}
@media (max-width: 768px) {
	.single-product-content .product_title {
		margin-top: 0.57em;
	}
}
.single-product-content .woocommerce-breadcrumb {
	font-size: 89.5%;
	line-height: 1.421em;
	margin-bottom: 12px;
}
.single-product-content .woocommerce-product-rating {
	margin-bottom: 30px;
}
.single-product-content .price {
	line-height: 1;
	margin-bottom: 25px;
}
.single-product-content .price del {
	vertical-align: bottom;
}
.single-product-content .price ins {
	text-decoration: none;
}
table.variations {
	margin-bottom: 28px;
}
table.variations td {
	vertical-align: top;
	padding: 5px 0;
}
table.variations td.label {
	padding-right: 15px;
}
table.variations td.label label {
	line-height: 32px;
}
table.variations td.label label:after {
	content: ':';
}
.single_variation .price {
	display: inline-block;
	margin-right: 15px;
}
.single_variation .stock {
	display: inline-block;
	margin-bottom: 0;
}
form.cart .quantity {
	float: left;
	margin-right: 15px;
	margin-bottom: 20px;
}
form.cart .quantity.hidden {
	display: none;
}
form.cart .quantity .minus,
form.cart .quantity .plus,
.shop_table .quantity .minus,
.shop_table .quantity .plus {
	display: inline-block;
	font-size: 32px;
	height: 52px;
	line-height: 50px;
	margin: 0;
	vertical-align: top;
	width: 50px;
	font-weight: 200;
	border: 0 none;
	padding: 0;
}
.shop_table .quantity .minus,
.shop_table .quantity .plus {
	height: 34px;
	line-height: 32px;
	width: 32px;
	font-size: 24px;
}
form.cart .quantity .qty,
.shop_table .quantity .qty {
	border: 0 none;
	height: 52px;
	line-height: 52px;
	margin: 0;
	vertical-align: top;
	width: 52px;
	appearance: textfield;
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	text-align: center;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
form.cart .quantity .qty::-webkit-outer-spin-button,
form.cart .quantity .qty::-webkit-inner-spin-button,
.shop_table .quantity .qty::-webkit-outer-spin-button,
.shop_table .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.shop_table .quantity {
	font-size: 0;
}
.shop_table .quantity .qty {
	height: 34px;
	line-height: 34px;
	font-size: 16px;
}
.shop_table .quantity.buttons_added .qty {
	margin-left: 4px;
	margin-right: 4px;
}
form.cart .gem-button[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}
.shop_attributes p {
	margin: 0;
}
.shop_attributes td,
.shop_attributes th {
	vertical-align: top;
	padding: 5px 10px;
}

.gem-woocommerce-tabs  #tab-additional_information .shop_attributes {
	width: 100%;
}
.gem-woocommerce-tabs #tab-additional_information .shop_attributes th,
.gem-woocommerce-tabs #tab-additional_information .shop_attributes td {
	padding: 20px 30px;
	text-align: center;
}

/*.related-products {
	margin-bottom: 40px;
}*/

.related-products h2,
.upsells h2,
.cross-sells h2 {
	text-align: center;
	text-transform: uppercase;
}
.related-products .container {
	padding: 0;
}
.related-products-carousel .product {
	width: 270px;
	margin: 15px;
	float: left;
}

.woocommerce-before-cart {
	margin-bottom: 20px;
}
.woocommerce-before-cart .cart-short-info {
	float: left;
}
.woocommerce-before-cart .woocommerce-breadcrumb {
	float: right;
}
@media (max-width: 768px) {
	.woocommerce-before-cart .cart-short-info,
	.woocommerce-before-cart .woocommerce-breadcrumb {
		float: none;
	}
}
.shop_table {
	width: 100%;
}
.shop_table td {
	vertical-align: middle;
}
.shop_table td {
	padding: 27px 17px;
}
.shop_table .product-thumbnail {
	width: 1%;
	padding-left: 32px;
	padding-right: 0;
}
.shop_table .product-thumbnail img.attachment-shop_thumbnail,
.shop_table .product-thumbnail img.attachment-woocommerce_thumbnail,
.shop_table .product-name img.attachment-shop_thumbnail,
.shop_table .product-name img.attachment-woocommerce_thumbnail {
	width: 60px;
	height: auto;
	max-width: none;
}
.shop_table .product-name {
	width: 99%;
}

.woocommerce-cart-form .shop_table .product-name {
	width: 58%;
}

.woocommerce-cart-form .shop_table .product-subtotal {
	width: 11%;
}

.woocommerce-cart-form .shop_table .product-quantity {
	width: 17%;
}

.woocommerce-cart-form .shop_table th.product-quantity {
	padding-left: 20px;
}

.woocommerce-cart-form .shop_table .product-price {
	width: 14%;
}

.shop_table .product-total {
	min-width: 150px;
}
.shop_table .product-name .product-name-space {
	margin-right: 13px;
}
.shop_table .product-name dl.variation {
	font-size: 87.5%;
	line-height: 1.5em;
	display: inline-block;
}
.shop_table .product-name dl.variation dt,
.shop_table .product-name dl.variation dd,
.shop_table .product-name dl.variation p {
	display: inline-block;
	margin: 0;
	padding: 0;
	text-transform: capitalize;
}
.shop_table .product-name dl.variation dd p:after {
	content: ',';
}
.shop_table .product-name dl.variation dd:last-child p:after {
	content: '';
}
.shop_table td.product-price,
.shop_table td.product-quantity,
.shop_table td.product-subtotal,
.shop_table td.product-remove {
	white-space: nowrap;
}
.shop_table td.product-remove {
	padding-left: 32px;
	padding-right: 0;
}
.responsive .shop_table td.product-remove {
	padding: 23px 18px 23px;
	vertical-align: middle;
}
.shop_table td.product-remove .remove {
	display: inline-block;
	width: 22px;
	height: 22px;
	line-height: 22px;
	text-decoration: none;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	font-size: 0;
	position: relative;
}
.shop_table td.product-remove .remove:after {
	content: '\e619';
	display: block;
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 20px;
	text-decoration: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	line-height: 21px;
	text-align: center;
}
table.shop_table_responsive .responsive-linebreak {
	padding: 0;
}
@media (max-width: 992px) {
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive thead {
		display: none;
	}
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive tr.cart_item {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 28px;
	}
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive .responsive-linebreak {
		width: 100%;
	}
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive.cart tbody tr:after {
		content: '';
		width: 100%;
		order: -1;
	}
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive .product-thumbnail {
		order: -3;
	}
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive .product-name {
		order: -2;
	}
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive .product-remove {
		order: -1;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form table.shop_table_responsive.shop_table td:not(.product-name) {
		text-align: center;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr td {
		border: 0 none;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce table.shop_table_responsive.shop_table tbody tr.cart_item td {
		background: transparent;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form table.shop_table_responsive.shop_table .product-thumbnail,
	.woocommerce-cart-form table.shop_table_responsive.shop_table .product-remove {
		width: auto;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form table.shop_table_responsive.shop_table .product-remove {
		padding: 23px 18px 23px;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form table.shop_table_responsive.shop_table .product-remove a.remove {
		vertical-align: middle;
	}
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive .product-thumbnail .product-dummy-wrapper {
		width: 60px;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form table.shop_table_responsive .product-name,
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form table.shop_table_responsive .product-thumbnail,
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form table.shop_table_responsive .product-remove {
		align-self: center;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form table.shop_table_responsive.shop_table .product-name,
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form table.shop_table_responsive.shop_table .product-price,
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form table.shop_table_responsive.shop_table .product-quantity,
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form table.shop_table_responsive.shop_table .product-subtotal {
		width: auto;
		flex-grow: 1;
	}
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive .product-price[data-title],
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive .product-quantity[data-title],
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive .product-subtotal[data-title] {
		padding: 0 15px 23px;
	}
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive .product-price[data-title]:before,
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive .product-quantity[data-title]:before,
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive .product-subtotal[data-title]:before {
		display: block;
		content: attr(data-title);
		padding: 23px 15px;
		margin: 0 -15px 23px;
		text-transform: uppercase;
		font-size: 14px;
		background: #b6c6c9;
		color: #ffffff;
	}
	body:not(.woocommerce-cart-layout-modern) table.shop_table_responsive td.actions {
		background: transparent;
	}
}

.woocommerce-cart-form .actions .coupon {
	float: left;
}
.woocommerce-cart-form .actions .submit-buttons {
	float: right;
	padding-right: 15px;
}
.woocommerce-cart-form .actions .gem-button {
	margin-top: 0;
	vertical-align: top;
}
input[type="text"].coupon-code {
	height: 50px;
	line-height: 50px;
	width: 200px;
	padding: 0 21px;
	vertical-align: top;
	margin: 16px 20px 16px 18px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.checkout_coupon input[type="text"].coupon-code {
	height: 40px;
	line-height: 40px;
	width: 200px;
	padding: 0 21px;
	vertical-align: top;
	margin: 25px 20px 16px 0;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.woocommerce .woocommerce-cart-form td.actions {
	padding: 5px;
}
.woocommerce .woocommerce-cart-form .actions .coupon button {
	margin: 16px 20px 16px 0;
}
.woocommerce-cart-form .actions .submit-buttons .button {
	margin: 10px;
}

.woocommerce .woocommerce-cart-form .actions .submit-buttons .gem-button {
	margin: 16px 0 16px 21px;
}

.woocommerce .wc-proceed-to-checkout {
	text-align: right;
	border-top: 0 none;
}
.woocommerce .wc-proceed-to-checkout .checkout-button-button {
	padding: 20px;
}
.woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button {
	margin: 0;
}
@media (max-width: 500px) {
	.woocommerce .wc-proceed-to-checkout .checkout-button-button {
		display: block;
	}
	.woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button {
		width: 100%;
	}
}


.woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button,
.woocommerce .woocommerce-cart-form .actions .submit-buttons .checkout-button-button .checkout-button,
.woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button {
	border: 2px solid transparent;
	line-height: 46px;
}

.woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button[aria-disabled="true"] {
	opacity: 0.5;
	cursor: not-allowed;
}

.woocommerce .woocommerce-cart-form .actions .submit-buttons .checkout-button-button .checkout-button,
.woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button {
	padding-left: 57px;
}

.woocommerce .woocommerce-cart-form .actions .submit-buttons .checkout-button-button .checkout-button:before,
.woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button:before {
	content: '\e65f';
	position: absolute;
	left: 24px;
	font-family: 'thegem-icons';
	font-style: normal;
}

@media (max-width: 992px) {
	.woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button {
		line-height: 36px;
	}
}

.cart-collaterals {
	position: relative;
	padding-top: 1px;
}

.shipping_calculator .shipping-calculator-button {
	display: block;
	padding-left: 35px;
	text-decoration: none;
	position: relative;
	text-transform: uppercase;
}
.shipping_calculator .shipping-calculator-button:before {
	content: '\e609';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 23px;
	width: 23px;
	height: 23px;
	line-height: 23px;
	position: absolute;
	top: 50%;
	margin-top: -11px;
	left: 0;
}

body:not(.woocommerce-cart-layout-modern) .woocommerce-shipping-calculator {
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	padding-right: 21px;
}

.woocommerce .woocommerce-shipping-calculator .form-row {
	width: 50%;
	float: left;
	padding: 0 9px;
}

.woocommerce .woocommerce-shipping-calculator .form-row.full {
	width: 100%;
}

.woocommerce .woocommerce-shipping-calculator .form-row input.input-text {
	width: 100%;
	height: 40px;
	padding: 0 19px;
	vertical-align: top;
	margin: 0;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	line-height: 38px;
}

@media (max-width: 700px) {
	.woocommerce .woocommerce-shipping-calculator .form-row {
		width: 100%;
	}
}

body:not(.woocommerce-cart-layout-modern) .shipping-calculator-form {
	display: block !important;
}

.shipping-calculator-form .gem-button-container {
	padding: 0 9px;
}

.shipping-calculator-form .gem-button-container .gem-button {
	margin: 0;
}
@media (max-width: 500px) {
	.shipping-calculator-form .gem-button-container {
		display: block;
	}
	.shipping-calculator-form .gem-button-container .gem-button {
		width: 100%;
	}
}
.shipping-calculator-form-wrap {
	padding: 25px;
	margin-bottom: 1.421em;
}
.shipping-calculator-form-wrap select {
	width: 100%;
}
.woocommerce-shipping-calculator {
	padding-top: 1px;
}
body:not(.woocommerce-cart-layout-modern) .cart_totals {
	width: 50%;
	margin: 0 0 0 auto;
	padding-left: 21px;
	position: static !important;
}
.cart_totals h2,
.woocommerce-shipping-calculator h2 {
	text-transform: uppercase;
	margin: 55px 0 25px 0;
}
.cart_totals table,
.order-totals table {
	width: 100%;
}
.cart_totals table th,
.order-totals table th {
	padding: 5px 0 6px 22px;
	width: 50%;
	text-align: left;
	border: 1px solid #ffffff;
}
.cart_totals table td,
.order-totals table td {
	padding: 5px 26px 6px 26px;
	width: 50%;
	border: 1px solid #ffffff;
	border-left: 0;
}
.cart_totals table td #shipping_method,
.order-totals table td #shipping_method,
.shop_table.woocommerce-checkout-payment-total .shipping #shipping_method {
	list-style: none;
	padding: 4px 0;
	margin: 0;
}
.cart_totals table .order-total td strong {
	font-weight: inherit;
}
@media (max-width: 767px) {
	body:not(.woocommerce-cart-layout-modern) .cart_totals {
		width: 100%;
		padding-left: 0;
		position: relative !important;
		margin-bottom: 400px;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-shipping-calculator {
		left: 0;
		top: 100%;
		width: 100%;
		padding-right: 0;
	}
}
.woocommerce-cart-form.responsive .cart-item {
	margin-bottom: 28px;
}
.woocommerce-cart-form.responsive .cart-item .gem-table {
	border: 0 none;
	margin-bottom: 0;
}
.woocommerce-cart-form.responsive .cart-item .gem-table thead {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
.woocommerce-cart-form.responsive .cart-item .gem-table thead th {
	border: 0 none;
	padding: 20px 15px;
	text-align: center;
}
.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td {
	padding: 23px 15px;
	text-align: center;
}
@media (max-width: 499px) {
	.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table thead th,
	.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td {
		padding-left: 0;
		padding-right: 10px;
	}
	.woocommerce-cart-form.responsive .cart-item .gem-table thead th:first-child,
	.woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td:first-child {
		padding-left: 10px;
	}
}
.woocommerce-cart-form.responsive .cart-item .shop_table thead th,
.woocommerce-cart-form.responsive .cart-item .shop_table td {
	border: 0 none;
}
.woocommerce-cart-form.responsive .cart-item .shop_table td.product-remove {
	text-align: right;
}
@media (max-width: 992px) {
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form .actions {
		display: flex;
		flex-wrap: wrap;
		padding: 10px;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form .actions .coupon {
		float: none;
		display: flex;
		flex-grow: 10;
		flex-wrap: wrap;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form .coupon input[type="text"].coupon-code {
		flex-grow: 10;
		margin: 10px;
		height: 40px;
		line-height: 40px;
		width: auto;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form .actions .coupon .gem-button-container {
		margin: 10px;
		flex-grow: 1;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce .woocommerce-cart-form .actions .coupon button {
		margin: 0;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form .actions .submit-buttons {
		float: none;
		padding: 0;
		flex-grow: 1;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce .woocommerce-cart-form .actions .submit-buttons .gem-button-container {
		margin: 10px;
		display: block;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart .gem-button {
		margin: 0;
		line-height: 36px;
	}
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form .actions .coupon .gem-button,
	body:not(.woocommerce-cart-layout-modern) .woocommerce-cart-form .submit-buttons .gem-button {
		width: 100%;
	}
}

.comment-form-rating .stars a {
	display: inline-block;
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 1em;
	height: 0;
	line-height: 1em;
	position: relative;
	padding-top: 1em;
	overflow: hidden;
	margin-right: 20px;
}
.comment-form-rating .stars a:before {
	content: "\e61a\e61a\e61a\e61a\e61a";
	float: left;
	left: 0;
	position: absolute;
	top: 0;
}
.comment-form-rating .stars .star-1 {
	width: 1em;
}
.comment-form-rating .stars .star-2 {
	width: 2em;
}
.comment-form-rating .stars .star-3 {
	width: 3em;
}
.comment-form-rating .stars .star-4 {
	width: 4em;
}
.comment-form-rating .stars .star-5 {
	width: 5em;
}

#reviews h3 {
	margin-top: 0;
	text-transform: uppercase;
}
#review_form_wrapper {
	padding-top: 45px;
}

.shop-widget-area {
	padding: 70px 0 60px;
}
.shop-widget-area .widget-title.shop-widget-title {
	margin-bottom: 1.138em;
}
.shop-widget-area .widget .gem-products-content {
	border: 0 none;
}

.single-product-content-bottom .block-navigation {
	margin-bottom: 60px;
}

.products-page-separator {
	padding: 50px 0;
}

.woocommerce-message,
.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods li.woocommerce-notice--info,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods li.woocommerce-notice--info,
.woocommerce-info {
	margin-top: 19px;
	padding: 24px 50px 27px 91px;
	position: relative;
	margin: 0 0 46px 0;
}
.woocommerce-message strong,
.woocommerce-info strong {
	font-weight: normal;
}
.woocommerce-message:before,
.woocommerce-info:before {
	position: absolute;
	left: 27px;
	top: 50%;
	font-size: 27px;
	font-family: 'thegem-icons';
	font-style: normal;
	content: '\e621';
	font-weight: normal;
	text-indent: 1px;
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 48px;
	text-align: center;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	margin-top: -25px;
}

.form-edit-adress-fields {
	padding: 50px;
}
.form-edit-adress-fields .input-text {
	width: 100%;
}
.form-edit-adress-fields .button {
	float: right;
}

.woocommerce-message .cart-added {
	display: table;
	width: 100%;
}
.woocommerce-message .cart-added .cart-added-text,
.woocommerce-message .cart-added .cart-added-button {
	display: table-cell;
	vertical-align: middle;
}
.woocommerce-message .cart-added .cart-added-text {
	width: 99%;
}
.woocommerce-message .cart-added .cart-added-button {
	padding: 0 0 0 20px;
}
.woocommerce-message .cart-added .cart-added-button .button {
	margin: 0;
}
@media (max-width: 768px) {
	.woocommerce-message .cart-added {
		display: block;
	}
	.woocommerce-message .cart-added .cart-added-text,
	.woocommerce-message .cart-added .cart-added-button {
		display: block;
	}
	.woocommerce-message .cart-added .cart-added-text {
		width: auto;
	}
	.woocommerce-message .cart-added .cart-added-button {
		padding: 20px 0 0;
	}
}

.single-product .fullwidth-block > .block-divider {
	margin: 70px 0 30px;
}

.woocommerce-account h2,
.woocommerce-account h3 {
	text-transform: uppercase;
}

.my_account_orders td {
	text-align: center;
}
.my_account_orders .woocommerce-orders-table__row th {
	border: 1px solid var(--thegem-to-box-border-color, #dfe5e8);
}
.my_account_orders tr.woocommerce-orders-table__row:nth-child(2n) th {
	background-color: #f4f7f6;
}
.my_account_orders .woocommerce-orders-table__cell-order-actions a {
	margin: 10px 0 0;
	display: block;
}
.my_account_orders .woocommerce-orders-table__cell-order-actions a:first-child {
	margin: 0;
}

.woocommerce .shop_table thead tr th {
	border: 1px solid #ffffff;
	border-left-width: 0;
	border-right-width: 0;
	border-bottom-width: 0;
	text-align: left;
}
.woocommerce .shop_table thead tr th.product-quantity,
.woocommerce .shop_table tbody tr td.product-quantity {
	text-align: center;
}

.woocommerce .shop_table thead tr th.product-name {
	padding-left: 32px;
}

.woocommerce .responsive .shop_table tbody tr td.product-thumbnail {
	padding-left: 26px;
}

.woocommerce .shop_table thead tr th:first-child {
	border-left-width: 1px;
}

.woocommerce .shop_table thead tr th:last-child {
	border-right-width: 1px;
}

.woocommerce .shop_table tbody tr td:first-child {
	border-left-width: 1px;
	border-left-style: solid;
}

.woocommerce .shop_table tbody tr td:last-child {
	border-right-width: 1px;
	border-right-style: solid;
}

.woocommerce .shop_table tbody tr:last-child td {
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.woocommerce-cart-form .gem-table {
	margin-bottom: 0;
}

.woocommerce #shipping_method .radio-sign {
	margin-right: 5px;
}

.woocommerce .cross-sells .products.inline-row .product.inline-column {
	min-width: 0;
}

.woocommerce .cross-sells .product .product-rating {
	display: none;
}

.woocommerce .cross-sells .product .product-bottom {
	display: none;
}

.woocommerce .cross-sells .product .product-info {
	padding: 21px 5px 17px;
}

.woocommerce .cross-sells .product .product-title {
	margin: 0;
	text-transform: none;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 600px) {
	.woocommerce .cross-sells .products:not(.extended-products-grid) .product {
		width: 50%;
	}
}

@media (max-width: 400px) {
	.woocommerce .cross-sells .products:not(.extended-products-grid) .product {
		width: 100%;
	}
}


.cross-sells {
	margin: 30px 0 0 0;
}

.cross-sells-title {
	width: 100%;
	align-items: center;
    display: flex;
    flex-flow: row nowrap;
	margin-bottom: 55px;
}

.cross-sells-title h2 {
	flex: 0 1 auto;
    margin: 0;
    word-wrap: break-word;
	padding-right: 15px;
}

.cross-sells-title span.placeholder {
	flex: 1 1 auto;
    height: 1px;
    position: relative;
}

.cross-sells-title span.placeholder span {
	display: block;
	height: 7px;
	position: relative;
	top: -2px;
	border-top: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
}

.checkout-steps {
	margin-bottom: 119px;
}

.checkout-steps.woocommerce-steps-one-page {
	margin-bottom: 65px;
}

.checkout-steps .checkout-step {
	float: left;
	width: 25%;
	padding: 17px 0 18px 30px;
	text-transform: uppercase;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.checkout-steps.user-logged .checkout-step {
	width: 33.3%;
}

.checkout-steps .checkout-step.active,
.checkout-steps .checkout-step.disabled {
	cursor: default;
}

.checkout-steps .checkout-step:before,
.checkout-steps .checkout-step:after {
	content: '';
	position: absolute;
	right: -23px;
	top: -23px;
	width: 46px;
	height: 46px;
	font-size: 0;
	transform: rotate(45deg);
	border: 3px solid #ffffff;
}

.checkout-steps .checkout-step:after {
	top: auto;
	bottom: -23px;
	transform: rotate(45deg);
}

.checkout-steps .checkout-step:last-child:before,
.checkout-steps .checkout-step:last-child:after {
	display: none;
}

.checkout-steps .checkout-step:first-child {
	border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	-webkit-border-radius: 5px 0 0 5px;
}

.checkout-steps .checkout-step:last-child {
	border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	-webkit-border-radius: 0 5px 5px 0;
	cursor: default;
}

@media (max-width: 768px) {
	.checkout-steps .checkout-step,
	.checkout-steps.user-logged .checkout-step {
		float: none;
		width: 100%;
	}

	.checkout-steps .checkout-step:before,
	.checkout-steps .checkout-step:after {
		display: none;
	}

	.checkout-steps .checkout-step:first-child {
		border-radius: 5px 5px 0 0;
		-moz-border-radius: 5px 5px 0 0;
		-webkit-border-radius: 5px 5px 0 0;
	}

	.checkout-steps .checkout-step:last-child {
		border-radius: 0 0 5px 5px;
		-moz-border-radius: 0 0 5px 5px;
		-webkit-border-radius: 0 0 5px 5px;
	}
}

@media (max-width: 550px) {
/*	.woocommerce .checkout-navigation-buttons .checkout-prev-step,
	.woocommerce .checkout-navigation-buttons .checkout-next-step,
	.woocommerce .checkout-navigation-buttons .checkout-place-order {
		float: none;
		display: block;
		text-align: right;
	}

	.woocommerce .checkout-navigation-buttons .checkout-next-step,
	.woocommerce .checkout-navigation-buttons .checkout-place-order {
		padding-top: 30px;
	}*/

	.woocommerce-cart-form.responsive .submit-buttons {
		text-align: left;
		padding: 0;
	}
}

@media (max-width: 400px) {
	.woocommerce-cart-form .actions .coupon {
		text-align: left;
	}

	.woocommerce-cart-form .actions .coupon input {
		margin-left: 0;
	}

	.woocommerce-cart-form .actions .coupon .gem-button-container {
		display: block;
	}

}

.checkout-contents {
	height: 0;
	overflow: hidden;
	visibility: hidden;
	padding: 0;
}

.checkout-contents.active {
	height: auto;
	overflow: visible;
	visibility: visible;
	display: block;
}

.woocommerce-cart .custom-header .custom-header-title p,
.woocommerce-cart .custom-header .custom-header-title h1,
.woocommerce-checkout .custom-header .custom-header-title p,
.woocommerce-checkout .custom-header .custom-header-title h1,
.woocommerce-wishlist .custom-header .custom-header-title p,
.woocommerce-wishlist .custom-header .custom-header-title h1 {
	margin: 0;
}

.woocommerce-cart .custom-header,
.woocommerce-checkout .custom-header,
.woocommerce-wishlist .custom-header,
.woocommerce-account .page-title-block {
	box-shadow: inset 0px 6px 7px -7px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0px 6px 7px -7px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: inset 0px 6px 7px -7px rgba(0, 0, 0, 0.1);
}

.woocommerce-cart .custom-header .breadcrumbs .current,
.woocommerce-checkout .custom-header .breadcrumbs .current,
.woocommerce-wishlist .custom-header .breadcrumbs .current,
.woocommerce-account .page-title-block .breadcrumbs .current {
	padding-bottom: 10px;
}

.woocommerce-page .page-description {
	margin-top: 120px;
}

.woocommerce-variation.single_variation:after {
	content: ' ';
	clear: both;
	display: table;
}
.woocommerce-variation.single_variation .woocommerce-variation-price {
	float: left;
}
.woocommerce-variation.single_variation .woocommerce-variation-availability:not(:empty) {
	padding-top: 25px;
	padding-bottom: 25px;
}

/* MODERN CART */

body.woocommerce-cart-layout-modern:not(.woocommerce-view-order) .woocommerce:not(.thegem-template-cart):not(.products-compact-grid) {
	display: flex;
	flex-wrap: wrap;
}
body.woocommerce-cart-layout-modern:not(.woocommerce-view-order) .woocommerce:not(.thegem-template-cart):not(.products-compact-grid) > * {
	width: 100%;
}
body.woocommerce-cart-layout-modern .woocommerce:not(.thegem-template-cart) > .woocommerce-cart-form {
	flex-basis: 66.667%;
	max-width: 66.667%;
	padding-right: 21px;
}
body.woocommerce-cart-layout-modern .woocommerce:not(.thegem-template-cart) > .cart_totals {
	flex-basis: 33.333%;
	max-width: 33.333%;
	padding-left: 21px;
}
.woocommerce-cart-checkout-steps {
	display: flex;
	flex-wrap: wrap;
}
.woocommerce-cart-checkout-steps-content {
	margin-bottom: 30px;
}
.woocommerce-cart-checkout-steps .step {
	text-align: center;
	flex-grow: 1;
	flex-basis: 0;
	padding: 10px;
	position: relative;
}
.woocommerce-cart-checkout-steps-content .step {
	border-bottom: 1px solid transparent;
	margin: 0;
}
.woocommerce-cart-checkout-steps-content:not(.cart-checkout-steps--builder) .step {
	font-size: 87.5%;
}
.woocommerce-cart-checkout-steps-content .step.active {
	border-bottom: 2px solid transparent;
}
@media (max-width: 767px) {
	.woocommerce-cart-checkout-steps .step {
		width: 100%;
		min-width: 100%;
	}
}
.woocommerce-cart-checkout-steps-title {
	justify-content: center;
	align-items: center;
}
.woocommerce-cart-checkout-steps-title .step {
	flex-grow: 0;
	flex-basis: auto;
	margin: 0;
	padding: 0;
}
.woocommerce-cart-checkout-steps-title .step-cart,
.woocommerce-cart-checkout-steps-title .step-checkout {
	padding-right: 3em;
}
.woocommerce-cart-checkout-steps-title .step-cart:after,
.woocommerce-cart-checkout-steps-title .step-checkout:after {
	content: '\e64c';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	position: absolute;
	right: 1.5em;
	top: 50%;
	transform: translateX(50%) translateY(-50%);
	height: 1em;
	line-height: 1em;
	vertical-align: middle;
}
@media (max-width: 767px) {
	.woocommerce-cart-checkout-steps-title .step-cart,
	.woocommerce-cart-checkout-steps-title .step-checkout {
		padding-right: 0;
	}
	.woocommerce-cart-checkout-steps-title .step-cart:after,
	.woocommerce-cart-checkout-steps-title .step-checkout:after,
	.woocommerce-cart-checkout-steps-title .step:not(.active) {
		display: none;
	}
}

body.woocommerce-cart-layout-modern .woocommerce .shop_table tr,
body.woocommerce-cart-layout-modern .woocommerce .shop_table td {
	background: transparent;
}
.woocommerce-cart-layout-modern .gem-table thead,
body.woocommerce-cart-layout-modern .woocommerce .shop_table thead tr th {
	background: transparent;
	border-left: 0 none;
	border-right: 0 none;
	border-top: 0 none;
	padding-top: 0;
	color: inherit;
	line-height: 1.5;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table thead tr th {
	font-size: max(87.5%, 14px);
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table tbody tr.cart_item td,
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .shop_table tr td,
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .shop_table tr td {
	background: transparent;
	border-left: 0 none;
	border-right: 0 none;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table.no-dividers tbody tr.cart_item td {
	border-top: 0 none;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .shop_table tr td.product-thumbnail,
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .shop_table tr td.product-thumbnail,
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-shipments.shop_table tr td:first-child {
	padding-left: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table tbody tr td.actions {
	border-left: 0 none;
	border-right: 0 none;
	border-bottom: 0 none;
	padding: 20px 0;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table.no-dividers tbody tr td.actions {
	border-top: 0 none;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-name,
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-quantity,
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-subtotal {
	width: auto;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table thead tr th.product-name {
	padding-left: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table thead tr th.product-subtotal {
	padding-right: 0;
	text-align: right;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table tr td.product-remove {
	padding-left: 0;
	width: 1%;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table tr td.product-remove .remove {
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-size: 0;
	color: inherit;
	text-shadow: none;
	background: transparent;
	border: 1px solid #5f727f;
	width: 15px;
	height: 15px;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table td.product-remove .remove:before,
body.woocommerce-cart-layout-modern .woocommerce .shop_table td.product-remove .remove:after {
	content: '';
	position: absolute;
	width: 9px;
	height: 1px;
	top: 6px;
	background: #5f727f;
	font-size: 0;
	line-height: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table td.product-remove .remove:before {
	transform: rotate(45deg);
	left: 2px;
	right: auto;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table td.product-remove .remove:after {
	transform: rotate(-45deg);
	left: auto;
	right: 2px;
}
/*body.woocommerce-cart-layout-modern .woocommerce .shop_table td.product-remove .remove:after {
	left: 50%;
	top: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
	font-size: 15px;
	font-style: normal;
	text-decoration: none;
	text-align: center;
	color: inherit;
	line-height: 20px;
}*/
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-thumbnail img.attachment-shop_thumbnail,
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-thumbnail img.attachment-woocommerce_thumbnail {
	width: 65px;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-thumbnail img.attachment-thegem-product-thumbnail-vertical-2x {
	width: 160px;
	max-width: none;
	height: auto;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-thumbnail {
	padding-left: 20px;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-name {
	padding-left: 30px;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-name dl.variation {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-name dl.variation p,
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-name dl.variation dt,
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-name dl.variation dd{
	display: inline-flex;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-name dl.variation dt,
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-name dl.variation dd{
	margin-right: 5px;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-name dl.variation dd .pewc-cart-item-price{
	padding-left: 5px;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-name .woocommerce-Price-amount {
	display: block;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-subtotal {
	padding-right: 0;
	text-align: right;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-shipments.shop_table tr td:last-child {
	padding-right: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-quantity .quantity {
	display: inline-block;
	border-radius: 2px;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-quantity .quantity button {
	background: transparent;
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-quantity .quantity button:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 25px;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-quantity .quantity button.minus:before {
	right: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-quantity .quantity button.plus:before {
	left: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-quantity .quantity input {
	background: transparent;
	margin: 0;
	width: 40px;
	height: 40px;
	padding: 0 5px;
	line-height: 40px;
	font-size: 18px;
}
body.woocommerce-cart-layout-modern .woocommerce .coupon {
	margin: 0 -18px;
}
body.woocommerce-cart-layout-modern .woocommerce input[type="text"].coupon-code {
	height: 40px;
	line-height: 40px;
	background: transparent;
	font-size: 14px;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-cart-form .actions .submit-buttons {
	padding-right: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-cart-form .actions .submit-buttons button.button {
	line-height: 36px;
	font-size: 14px;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals-inner {
	padding: 35px;
	border-radius: 3px;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals-inner h3 {
	margin-top: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table th,
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table td {
	border-left: 0 none;
	border-right: 0 none;
	padding-top: 15px;
	padding-bottom: 15px;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table th {
	padding-left: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table td {
	text-align: right;
	padding-right: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table tr.shipping th {
	vertical-align: top;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table tr.shipping.separate-calculator th,
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table tr.shipping.separate-calculator td {
	padding-bottom: 0;
	border-bottom: 0 none;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table tr.shipping td {
	font: inherit;
	text-transform: inherit;
	letter-spacing: inherit;
	color: inherit;
	font-size: 87.5%;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table tr.shipping td .woocommerce-shipping-methods {
	font-size: 114.3%;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table tr.shipping-address td {
	padding-top: 0;
	padding-left: 0;
	border-top: 0 none;
}
body.woocommerce-cart-layout-modern .woocommerce #shipping_method .radio-sign {
	margin-right: 0;
	margin-left: 5px;
	width: 12px;
	height: 12px;
	border-width: 1px;
	border-style: solid;
	border-color: #99a9b5;
	background: #ffffff;
}
body.woocommerce-cart-layout-modern .woocommerce #shipping_method .radio-sign.checked:before {
	background: #393d50;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table tr td #shipping_method li label {
	font-size: inherit;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals .shipping-calculator-button {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 87.5%;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals .shipping-calculator-button:after {
	content: '\e602';
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
	vertical-align: top;
	font-size: 16px;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals .shipping-calculator-button.active:after {
	content: '\e600';
}
body.woocommerce-cart-layout-modern .woocommerce .combobox-wrapper .combobox-button:before,
body.woocommerce-cart-layout-modern #page .woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow:before {
	content: '\e602';
	font-size: 16px;
	text-align: center;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-shipping-calculator .form-row {
	padding: 0;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals .woocommerce-shipping-calculator button {
	border: 0 none;
	outline: 0 none;
	background: transparent;
	color: inherit;
	font-size: 87.5%;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals .woocommerce-shipping-calculator button:before {
	content: '\e67c';
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
	vertical-align: top;
	margin-right: 5px;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table th,
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table td {
	width: auto;
}
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table tr:last-child th,
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table tr:last-child td {
	border-bottom: 0 none;
}
body.woocommerce-cart-layout-modern .woocommerce .wc-proceed-to-checkout .checkout-button-button {
	padding: 20px 0 0;
	display: block;
}
body.woocommerce-cart-layout-modern .woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button {
	padding: 0;
	display: block;
	line-height: 36px;
}
body.woocommerce-cart-layout-modern .woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button:before {
	display: none
}
body.woocommerce-cart-layout-modern .woocommerce .cross-sells {
	margin-top: 60px;
}
@media (max-width: 992px) {
	body.woocommerce-cart-layout-modern .woocommerce:not(.thegem-template-cart) > .woocommerce-cart-form {
		flex-basis: 100%;
		max-width: 100%;
		padding-right: 0;
		margin-bottom: 20px;
	}
	body.woocommerce-cart-layout-modern .woocommerce:not(.thegem-template-cart) > .cart_totals {
		flex-basis: 100%;
		max-width: 100%;
		padding-left: 0;
	}
}
/* CART COMPACT */
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact table.shop_table_responsive thead {
	display: none;
}
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact table.shop_table_responsive tr.cart_item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
body.woocommerce-cart-layout-modern .woocommerce form.woocommerce-cart-form.compact table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr td {
	border: 0 none;
	width: auto;
}
body.woocommerce-cart-layout-modern .woocommerce form.woocommerce-cart-form.compact table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr:first-child td.product-remove,
body.woocommerce-cart-layout-modern .woocommerce form.woocommerce-cart-form.compact table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr:first-child td.product-thumbnail,
body.woocommerce-cart-layout-modern .woocommerce form.woocommerce-cart-form.compact table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr:first-child td.product-name {
	padding-top: 0;
}
body.woocommerce-cart-layout-modern .woocommerce form.woocommerce-cart-form.compact table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr td.product-name {
	padding-right: 0;
}
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact table.shop_table_responsive.cart tbody tr:after {
	content: '';
	width: 100%;
	order: 1;
}
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact table.shop_table_responsive.cart tbody td.product-name ~ td {
	order: 2;
	padding-top: 0;
}
body.woocommerce-cart-layout-modern .woocommerce form.woocommerce-cart-form.compact table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr td.product-name,
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact table.shop_table_responsive.cart tbody td.product-name ~ td {
	flex-grow: 1;
	flex-basis: 0;
}
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact table.shop_table_responsive.cart tbody td.product-quantity {
	text-align: left;
	margin-left: 18px;
}
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact .actions-inner {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact .actions .coupon {
	float: none;
	display: flex;
	flex-grow: 10;
	flex-wrap: wrap;
	margin: 0;
}
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact .coupon input[type="text"].coupon-code {
	flex-grow: 10;
	margin: 10px;
	height: 40px;
	line-height: 40px;
	width: auto;
}
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact .actions .coupon .gem-button-container {
	margin: 10px;
	flex-grow: 1;
}
body.woocommerce-cart-layout-modern .woocommerce form.woocommerce-cart-form.compact .actions .coupon button {
	margin: 0;
}
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact .actions .submit-buttons {
	float: none;
	padding: 0;
	flex-grow: 1;
}
body.woocommerce-cart-layout-modern .woocommerce form.woocommerce-cart-form.compact .actions .submit-buttons .gem-button-container {
	margin: 10px;
	display: block;
}
body.woocommerce-cart-layout-modern .woocommerce form.woocommerce-cart-form.compact .actions .submit-buttons .update-cart .gem-button {
	margin: 0;
	line-height: 36px;
}
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact .actions .coupon .gem-button,
body.woocommerce-cart-layout-modern form.woocommerce-cart-form.compact .submit-buttons .gem-button {
	width: 100%;
}
body.woocommerce-cart-layout-modern .woocommerce-cart-form .actions-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-cart-form .actions-inner .submit-buttons button.button {
	margin-left: 0;
}
@media (max-width: 768px) {
	body.woocommerce-cart-layout-modern table.shop_table_responsive thead {
		display: none;
	}
	body.woocommerce-cart-layout-modern table.shop_table_responsive tr.cart_item {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	body.woocommerce-cart-layout-modern .woocommerce table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr td {
		border: 0 none;
		width: auto;
	}
	body.woocommerce-cart-layout-modern .woocommerce table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr:first-child td.product-remove,
	body.woocommerce-cart-layout-modern .woocommerce table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr:first-child td.product-thumbnail,
	body.woocommerce-cart-layout-modern .woocommerce table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr:first-child td.product-name {
		padding-top: 0;
	}
	body.woocommerce-cart-layout-modern .woocommerce table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr td.product-name {
		padding-right: 0;
	}
	body.woocommerce-cart-layout-modern table.shop_table_responsive.cart tbody tr:after {
		content: '';
		width: 100%;
		order: 1;
	}
	body.woocommerce-cart-layout-modern table.shop_table_responsive.cart tbody td.product-name ~ td {
		order: 2;
		padding-top: 0;
	}
	body.woocommerce-cart-layout-modern .woocommerce table.shop_table_responsive.shop_table.woocommerce-cart-form__contents tbody tr td.product-name,
	body.woocommerce-cart-layout-modern table.shop_table_responsive.cart tbody td.product-name ~ td {
		flex-grow: 1;
		flex-basis: 0;
	}
	body.woocommerce-cart-layout-modern table.shop_table_responsive.cart tbody td.product-quantity {
		text-align: left;
		margin-left: 18px;
	}
	body.woocommerce-cart-layout-modern .woocommerce-cart-form .actions,
	body.woocommerce-cart-layout-modern .woocommerce-cart-form .actions-inner {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -10px;
	}
	body.woocommerce-cart-layout-modern .thegem-te-cart-table .woocommerce-cart-form .actions {
		display: table-cell;
		padding: 20px 0;
		margin: 0;
	}
	body.woocommerce-cart-layout-modern .woocommerce-cart-form .actions .coupon {
		float: none;
		display: flex;
		flex-grow: 10;
		flex-wrap: wrap;
		margin: 0;
	}
	body.woocommerce-cart-layout-modern .woocommerce-cart-form .coupon input[type="text"].coupon-code {
		flex-grow: 10;
		margin: 10px;
		height: 40px;
		line-height: 40px;
		width: auto;
	}
	body.woocommerce-cart-layout-modern .woocommerce-cart-form .actions .coupon .gem-button-container {
		margin: 10px;
		flex-grow: 1;
	}
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-cart-form .actions .coupon button {
		margin: 0;
	}
	body.woocommerce-cart-layout-modern .woocommerce-cart-form .actions .submit-buttons {
		float: none;
		padding: 0;
		flex-grow: 1;
	}
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-cart-form .actions .submit-buttons .gem-button-container {
		margin: 10px;
		display: block;
	}
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart .gem-button {
		margin: 0;
		line-height: 36px;
	}
	body.woocommerce-cart-layout-modern .woocommerce-cart-form .actions .coupon .gem-button,
	body.woocommerce-cart-layout-modern .woocommerce-cart-form .submit-buttons .gem-button {
		width: 100%;
	}
}
body.woocommerce-cart-layout-modern .woocommerce-empty-cart:before {
	content: '';
	font-size: 200px;
	width: 1em;
	height: 1em;
	line-height: 1em;
	display: block;
	margin: 0 auto;
	-webkit-mask: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M14.12,8.53L12,6.41L9.88,8.54L8.46,7.12L10.59,5L8.47,2.88L9.88,1.47L12,3.59L14.12,1.46L15.54,2.88L13.41,5L15.53,7.12L14.12,8.53M7,18A2,2 0 0,1 9,20A2,2 0 0,1 7,22A2,2 0 0,1 5,20A2,2 0 0,1 7,18M17,18A2,2 0 0,1 19,20A2,2 0 0,1 17,22A2,2 0 0,1 15,20A2,2 0 0,1 17,18M7.17,14.75A0.25,0.25 0 0,0 7.42,15H19V17H7A2,2 0 0,1 5,15C5,14.65 5.09,14.32 5.25,14.04L6.6,11.59L3,4H1V2H4.27L5.21,4L6.16,6L8.4,10.73L8.53,11H15.55L18.31,6L19.41,4H19.42L21.16,4.96L17.3,11.97C16.96,12.59 16.3,13 15.55,13H8.1L7.2,14.63L7.17,14.75Z' /%3E%3C/svg%3E") no-repeat 50% 50%;
	mask: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M14.12,8.53L12,6.41L9.88,8.54L8.46,7.12L10.59,5L8.47,2.88L9.88,1.47L12,3.59L14.12,1.46L15.54,2.88L13.41,5L15.53,7.12L14.12,8.53M7,18A2,2 0 0,1 9,20A2,2 0 0,1 7,22A2,2 0 0,1 5,20A2,2 0 0,1 7,18M17,18A2,2 0 0,1 19,20A2,2 0 0,1 17,22A2,2 0 0,1 15,20A2,2 0 0,1 17,18M7.17,14.75A0.25,0.25 0 0,0 7.42,15H19V17H7A2,2 0 0,1 5,15C5,14.65 5.09,14.32 5.25,14.04L6.6,11.59L3,4H1V2H4.27L5.21,4L6.16,6L8.4,10.73L8.53,11H15.55L18.31,6L19.41,4H19.42L21.16,4.96L17.3,11.97C16.96,12.59 16.3,13 15.55,13H8.1L7.2,14.63L7.17,14.75Z' /%3E%3C/svg%3E") no-repeat 50% 50%;
	-webkit-mask-size: 1em;
	mask-size: 1em;
	margin-bottom: 20px;
}
body.woocommerce-cart-layout-modern .woocommerce-empty-cart .woocommerce-empty-cart__title {
	margin-bottom: 20px;
}
body.woocommerce-cart-layout-modern .woocommerce-empty-cart .woocommerce-empty-cart__text {
	margin-bottom: 40px;
}
body.woocommerce-cart-layout-modern .woocommerce-empty-cart .return-to-shop .gem-button {
	margin-top: 0;
	margin-bottom: 0;
}
body.woocommerce-cart-layout-modern .woocommerce-empty-cart .return-to-shop .gem-button:hover {
	background: transparent;
}

/* Woo Germanized Styles */
body .woocommerce .cart_totals p.wc-gzd-additional-info,
body .woocommerce .woocommerce-checkout table.shop_table p.wc-gzd-additional-info {
	font-family: var(--thegem-to-body-font-family);
	font-weight: var(--thegem-to-body-font-weight);
	font-style: var(--thegem-to-body-font-style);
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	text-transform: var(--thegem-to-body-text-transform, none);
	letter-spacing: var(--thegem-to-body-letter-spacing);
}
body .woocommerce .woocommerce-checkout .includes_tax,
body .woocommerce .cart_totals .includes_tax {
	display: block;
}
body .woocommerce .woocommerce-checkout .includes_tax,
body .woocommerce .woocommerce-checkout .includes_tax span.amount,
body .woocommerce .cart_totals .includes_tax,
body .woocommerce .cart_totals .includes_tax span.amount {
	font-family: var(--thegem-to-body-font-family) !important;
	font-weight: var(--thegem-to-body-font-weight) !important;
	font-style: var(--thegem-to-body-font-style) !important;
	font-size: var(--thegem-to-body-tiny-font-size) !important;
	line-height: var(--thegem-to-body-tiny-line-height) !important;
	text-transform: var(--thegem-to-body-text-transform, none) !important;
	letter-spacing: var(--thegem-to-body-letter-spacing) !important;
	color: var(--thegem-to-body-color) !important;;
}
body p.total.wc-gzd-total-mini-cart,
body p.wc-gzd-cart-info.delivery-time-info{
	margin: 0 !important;
}
body p.wc-gzd-additional-info{
	padding: 0;
	margin: 0;
	font-family: var(--thegem-to-body-font-family);
	font-weight: var(--thegem-to-body-font-weight);
	font-style: var(--thegem-to-body-font-style);
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	text-transform: var(--thegem-to-body-text-transform, none);
	letter-spacing: var(--thegem-to-body-letter-spacing);
	color: var(--thegem-to-body-color);
}
body p.wc-gzd-additional-info.delivery-time-info{
	width: 100%;
}
body .widget_shopping_cart_content p.total-cart-tax.wc-gzd-total-mini-cart {
	display: block !important;
	padding: 10px 24px 0 24px;
	font-family: var(--thegem-to-body-font-family);
	font-weight: var(--thegem-to-body-font-weight);
	font-style: var(--thegem-to-body-font-style);
	font-size: var(--thegem-to-body-tiny-font-size) !important;
	line-height: var(--thegem-to-body-tiny-line-height) !important;
	text-transform: var(--thegem-to-body-text-transform);
	letter-spacing: var(--thegem-to-body-letter-spacing);
	text-align: right;
	background-color: var(--styled-bg-color);
	color: var(--thegem-to-body-color) !important;
}
body .widget_shopping_cart_content p.total-cart-tax.wc-gzd-total-mini-cart .amount{
	font-family: var(--thegem-to-product-price-cart-font-family);
	font-style: var(--thegem-to-product-price-cart-font-style);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-size: calc(var(--thegem-to-product-price-cart-font-size) * 0.833) !important;
}
body p.wc-gzd-cart-info.delivery-time-info + .product-name-space {
	display: none;
}
body.woocommerce-gzd-checkout .order-review-inner h3#order_payment_heading,
body.woocommerce-gzd-checkout .order-review-inner h3#order_review_heading{
	padding: 0;
	font-family: var(--thegem-to-light-title-font-family);
	font-weight: var(--thegem-to-light-title-font-weight);
	font-style: var(--thegem-to-light-title-font-style);
	font-size: var(--thegem-to-h3-font-size);
	line-height: var(--thegem-to-h3-line-height);
	text-transform: var(--thegem-to-h3-text-transform);
	letter-spacing: var(--thegem-to-h3-letter-spacing);
}
body.woocommerce-gzd-checkout .order-review-inner h3#order_review_heading{
	margin-top: 1em;
	margin-bottom: 1em;
}
body.woocommerce-gzd-checkout .woocommerce .checkout .form-row#billing_title_field,
body.woocommerce-gzd-checkout .woocommerce .checkout .form-row#billing_title_field .select2-container,
body.woocommerce-gzd-checkout .woocommerce .checkout .form-row#shipping_title_field,
body.woocommerce-gzd-checkout .woocommerce .checkout .form-row#shipping_title_field .select2-container,
body.woocommerce-gzd-checkout .woocommerce .checkout .form-row#shipping_address_type_field,
body.woocommerce-gzd-checkout .woocommerce .checkout .form-row#shipping_address_type_field .select2-container{
	width: 100% !important;
}
body.woocommerce-gzd-checkout .woocommerce .checkout .wc-gzd-checkbox-placeholder{
	margin-bottom: 1em;
}
body.woocommerce-gzd-checkout .woocommerce .checkout .wc-gzd-checkbox-placeholder .checkbox-sign {
	width: 24px;
	height: 24px;
	margin-right: 12px;
	vertical-align: middle;
	border-radius: 3px;
	background-color: transparent;
}
body.woocommerce-gzd-checkout .woocommerce .checkout .wc-gzd-checkbox-placeholder .checkbox-sign:before {
	color: var(--thegem-to-contact-form-dark-input-icon-color);
}
body.woocommerce-gzd-checkout .woocommerce .checkout .dhl-preferred-service-content .dhl-preferred-location-types{
	padding: 0;
}
body.woocommerce-gzd-checkout .woocommerce .checkout .dhl-preferred-service-content .radio-sign{
	width: 12px;
	height: 12px;
	margin-right: 6px;
}
body.woocommerce-gzd-checkout .woocommerce .checkout .dhl-preferred-service-content .radio-sign:before {
	width: 6px;
	height: 6px;
	margin-left: -3px;
	margin-top: -3px;
	background-color: var(--thegem-to-contact-form-dark-input-icon-color);
}
body.woocommerce-gzd-checkout .woocommerce .checkout .dhl-preferred-service-content input[type=text]{
	position: relative;
	display: inline-block;
	width: 100%;
	height: 40px;
	text-align: left;
	color: inherit;
	vertical-align: top;
	border-radius: 3px;
	padding: 0 18px;
}
body.woocommerce-gzd-checkout .woocommerce .checkout .dhl-preferred-service-content input + input{
	margin-top: 16px;
}
body.woocommerce-gzd-checkout .woocommerce .checkout .dhl-preferred-service-content input[type=text]::placeholder{
	color: var(--thegem-to-date-filter-subtitle-color);
}
.dhl-preferred-service-content .dhl-preferred-service-logo img{
	margin: 0;
	padding: 0;
	max-height: 100px;
	max-width: 100px;
	background: #fc0;
}
body.woocommerce-gzd-checkout .woocommerce .checkout #order_review table tbody td.product-name{
	display: flex;
	align-items: center;
}
body.woocommerce-gzd-checkout .woocommerce .checkout .wc-gzd-product-name-left,
body.woocommerce-gzd-checkout .woocommerce .checkout .wc-gzd-product-name-right{
	max-width: none;
	margin: 0;
}
body.woocommerce-gzd-checkout .woocommerce .checkout .place-order{
	float: none;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-table--order-details {
	background-color: transparent;
}

/* CATEGORIES */

.products .product-category a {
	color: inherit;
	display: block;
	position: relative;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.products .category-overlay {
	position: absolute;
	background-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.85);
	text-align: center;
	padding: 15px 20px 20px;
	left: 0;
	width: 100%;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.category-overlay {
	bottom: 15%;
}
.products .product-category .category-title {
	margin: 0 0 5px;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.products .category-overlay-separator {
	margin: 0 auto;
	height: 1px;
	width: 50px;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	background-color: #00bcd4;
}
.products .product-category a:hover .category-overlay {
	background-color: #393d50;
	color: #ffffff;
}
.products .product-category a:hover .category-title {
	color: #ffffff;
}
.products .product-category a:hover .category-overlay-separator {
	width: 80px;
}

.products .product-info .product-rating .empty-rating {
	padding-top: 8px;
	padding-bottom: 7px;
}
.products .product-info .product-rating .empty-rating:before {
	content: '';
	display: block;
	border: 0 none;
	border-top: 1px solid transparent;
	width: 50px;
	margin: 0 auto;
}

.quick-view-button {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 7px 20px;
	opacity: 0;
	visibility: hidden;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 15;
}
.products .product-inner:hover .quick-view-button {
	opacity: 1;
	visibility: visible;
}
.woo-modal-product .woocommerce {
	max-width: 1200px;
	width: 90%;
}

.gem-simple-gallery.gem-quick-view-gallery .gem-gallery-item {
	margin: 0;
}
.woo-modal-product > .woocommerce {
	background: transparent;
	padding: 0;
}
.woo-modal-product > .woocommerce .product {
	background: #fff;
	overflow: hidden;
	padding: 40px;
}
.product-quick-view-navigation {
	text-align: center;
	padding: 10px;
}
.product-quick-view-navigation .gem-button {
	margin: 5px;
}
/*.woo-modal-product .single-product-content .product_title {
	margin-top: 0px;
}*/
.woo-modal-product .woocommerce-product-rating .star-rating,
.woo-modal-product .single-product-content .woocommerce-product-rating .product-reviews-link {
	display: inline-block;
	margin-right: 10px;
}
.woo-modal-product .single-product-content-right {
	/*padding-bottom: 30px;*/
}
.woo-modal-product .fancybox-close-small,
#checkout-login-popup .fancybox-close-small,
#checkout-coupon-popup .fancybox-close-small {
	top: 10px;
	right: 10px;
}
.woo-modal-product .fancybox-close-small:after,
#checkout-login-popup .fancybox-close-small:after,
#checkout-coupon-popup .fancybox-close-small:after {
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	content: '\e619';
}
.woo-modal-product .fancybox-close-small.fancybox-button svg,
#checkout-login-popup .fancybox-close-small.fancybox-button svg,
#checkout-coupon-popup .fancybox-close-small.fancybox-button svg {
	display: none;
}
.woo-modal-product .fancybox-close-small:hover:after,
#checkout-login-popup .fancybox-close-small:hover:after,
#checkout-coupon-popup .fancybox-close-small:hover:after {
	background: transparent;
}

.product-quick-view .fancybox-button svg{
	display: none;
}
.product-quick-view .fancybox-caption {
	background: transparent;
}

.gem-product-load-more .inner {
	width: 100%;
	overflow: hidden;
	text-align: center;
	padding: 0;
	position: relative;
}

.gem-product-scroll-pagination {
	visibility: hidden;
	position: relative;
}

.gem-product-scroll-pagination.active {
	visibility: visible;
	height: 100px;
}


/* Checkout one page */
.checkout-steps.woocommerce-steps-one-page .checkout-step {
	width: 33.3%;
	text-align: center;
	padding-right: 33px;
	padding-left: 0;
}

.woocommerce-checkout-one-page #customer_details > div {
	width: 100%;
}

.woocommerce-checkout-one-page #customer_details > div:after {
	content: '';
	display: block;
	height: 0;
	font-size: 0;
	line-height: 1;
	overflow: hidden;
	border-bottom: 1px dashed transparent;
	margin-top: 36px;
	margin-bottom: 38px;
	width: 100%;
}
.woocommerce-checkout-one-page #customer_details > div:last-child:after {
	display: none;
}

.woocommerce-checkout-one-page:not(.woocommerce-checkout-with-template) {
	margin: 20px -21px 0;
}

.woocommerce-checkout-one-page .checkout-contents {
	height: auto;
	visibility: visible;
	overflow: visible;
}

.woocommerce-checkout-one-page .checkout-contents[data-tab-content-id="checkout-billing"],
.woocommerce-checkout-one-page .checkout-contents[data-tab-content-id="checkout-payment"] {
	float: left;
	width: 50%;
	padding: 0 21px;
}

.woocommerce-checkout-one-page .checkout-contents[data-tab-content-id="checkout-billing"] .checkout-navigation-buttons {
	display: none;
}

.woocommerce-checkout-one-page .checkout-contents[data-tab-content-id="checkout-payment"] {
}

.woocommerce .woocommerce-checkout-one-page .woocommerce-shipping-fields > h2 {
	margin-bottom: 17px;
}

.woocommerce-checkout-one-page .woocommerce-shipping-fields {
	padding-bottom: 0;
}

.woocommerce .checkout.woocommerce-checkout-one-page .form-row textarea.input-text, .woocommerce .edit-address-form .form-row textarea.input-text {
	height: 116px;
}

.woocommerce .checkout.woocommerce-checkout-one-page div.create-account {
	padding-top: 0;
}

.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page #order_review .woocommerce-checkout-payment .payment_methods .payment_box,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .payment_box {
	padding: 7px 0 0 0;
	margin: 0;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	background-color: transparent;
	color: inherit;
}

.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page #order_review .woocommerce-checkout-payment .payment_methods .payment_box:before,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .payment_box:before {
	display: none;
}

.woocommerce-checkout-one-page .checkout-payment {
}

.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page #order_review .woocommerce-checkout-payment .place-order,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .thegem-te-checkout-payment .woocommerce-checkout-payment .place-order {
	float: none;
}

.woocommerce-checkout-one-page .checkout-navigation-buttons .checkout-prev-step {
	display: none;
}

.woocommerce-checkout-one-page .woocommerce-checkout-payment .checkout-navigation-buttons {
	margin-top: 44px;
}

.woocommerce .woocommerce-checkout-one-page #order_review {
	padding: 18px 38px 46px;
}
.woocommerce .woocommerce-checkout-one-page #order_review.thegem-te-checkout-order {
	padding: 0;
}
@media (max-width: 768px) {
	.woocommerce .woocommerce-checkout-one-page #order_review {
		padding: 18px 15px 46px;
	}
}
.woocommerce .woocommerce-checkout-one-page #order_review.thegem-te-checkout-order #order_review_heading {
	margin-top: 0;
}
.woocommerce .woocommerce-checkout-one-page .thegem-te-checkout-billing .checkout-billing-title,
.woocommerce .woocommerce-checkout-one-page .thegem-te-shipping-order .checkout-shipping-title,
.woocommerce .woocommerce-checkout-one-page #order_review.thegem-te-checkout-order .checkout-order-title {
	margin-top: 0;
}
.woocommerce-checkout-one-page .shop-table-footer-total {
	padding: 0;
}

.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .woocommerce-checkout-payment-total {
	width: 100%;
	float: none;
}

.woocommerce-checkout-one-page #order_review table {
	width: 100%;
	border: 0;
	background: transparent;
}

.woocommerce-checkout-one-page #order_review table thead,
.woocommerce-checkout-one-page #order_review table tbody {
	background: transparent;
}

.woocommerce-checkout-one-page #order_review table tr,
.woocommerce-checkout-one-page #order_review table th,
.woocommerce-checkout-one-page #order_review table td {
	border-width: 0;
	background: transparent;
}

.woocommerce-checkout-one-page #order_review table thead th,
.woocommerce-checkout-one-page #order_review table tbody thead th {
	text-align: left;
	padding: 0 0 17px 0;
	border-top: 0;
}

.woocommerce-checkout-one-page #order_review table thead th.product-total {
	text-align: right;
}

.woocommerce-checkout-one-page #order_review table tbody th,
.woocommerce-checkout-one-page #order_review table tbody td {
	text-align: left;
	padding: 8px 0 10px 0;
	border-top-width: 1px;
	border-top-style: solid;
}
.woocommerce-checkout-one-page #order_review table.no-dividers tbody th,
.woocommerce-checkout-one-page #order_review table.no-dividers tbody td {
	border-top: 0 none;
}

@media (max-width: 768px) {
	.woocommerce .woocommerce-checkout-one-page #order_review table thead th {
		font-size: 18px;
		line-height: 1.5;
	}
	.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total th {
		font-size: 16px;
		line-height: 1.5;
	}
}

.woocommerce-checkout-one-page #order_review table tbody.responsive > tr > td {
	padding: 0;
	border: 0;
}

.woocommerce-checkout-one-page #order_review table.woocommerce-checkout-payment-total tbody th,
.woocommerce-checkout-one-page #order_review table.woocommerce-checkout-payment-total tbody td {
	padding: 21px 0 24px 0;
}

.woocommerce-checkout-one-page #order_review table tbody tr td:last-child {
	text-align: right;
}

.woocommerce-checkout-one-page .shop_table .product-name .product-meta {
	display: block;
}

.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .woocommerce-checkout-payment-total th {
	text-transform: uppercase;
}

.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page #order_review .woocommerce-checkout-payment,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .thegem-te-checkout-payment .woocommerce-checkout-payment {
	padding-top: 5px;
	margin-top: 0;
}

.woocommerce .woocommerce-checkout-one-page #shipping_method .radio-sign,
.woocommerce .woocommerce-checkout-one-page #shipping_method input[type="radio"] {
	float: right;
	margin-right: 0;
	margin-left: 10px;
	margin-top: 4px;
}

.woocommerce .woocommerce-checkout-one-page #shipping_method .radio-sign + label {
    float: right;
}

.woocommerce .woocommerce-checkout-one-page #shipping_method li:before,
.woocommerce .woocommerce-checkout-one-page #shipping_method li:after {
	display: table;
	content: " ";
}
.woocommerce .woocommerce-checkout-one-page #shipping_method li:after {
	clear: both;
}

.woocommerce .woocommerce-checkout-one-page #shipping_method li {
	margin-top: 5px;
	clear: both;
}

.woocommerce .woocommerce-checkout-one-page #shipping_method li:first-child {
	margin-top: 0;
}

.woocommerce .woocommerce-checkout-one-page .woocommerce-checkout-payment .blockOverlay,
.woocommerce .woocommerce-checkout-one-page .woocommerce-checkout-review-order-table .blockOverlay {
	left: -38px !important;
	right: -38px !important;
	bottom: -46px !important;
	width: auto !important;
	height: auto !important;
}

.woocommerce .woocommerce-checkout-one-page .woocommerce-checkout-review-order-table .blockOverlay {
	top: -45px !important;
	bottom: 0 !important;
}

.checkout-order-review-pattern {
	font-size: 0;
	line-height: 1;
}

.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page #order_review .shop_table .product-name .product-title span {
	font-weight: bold;
}

.gem-button-container.checkout-one-page-demo {
	text-align: right;
}

.gem-button-container.checkout-one-page-demo a {
	margin-top: 0;
}

#checkout-login-popup,
#checkout-coupon-popup {
	padding: 55px;
}

#checkout-login-popup .form-row-last {
	margin-bottom: 35px;
}

@media (max-width: 900px) {
	.woocommerce-checkout-one-page .checkout-contents[data-tab-content-id="checkout-billing"],
	.woocommerce-checkout-one-page .checkout-contents[data-tab-content-id="checkout-payment"] {
		width: 100%;
		float: none;
	}

	.woocommerce-checkout-one-page .checkout-contents[data-tab-content-id="checkout-payment"] {
		margin-top: 3em;
	}
}

@media (max-width: 768px) {
	.checkout-steps.woocommerce-steps-one-page .checkout-step {
		width: 100%;
		padding-right: 0;
	}
}

@media (max-width: 600px) {
	#checkout-login-popup {
		padding: 30px;
	}
}

.checkout-before-checkout-form {
}

.checkout-before-checkout-form .checkout-notice {
	margin-bottom: 27px;
}
@media (min-width: 768px) {
	.checkout-before-checkout-form .checkout-notice {
		display: inline-block;
		margin-right: 19px;
	}
	.checkout-before-checkout-form .checkout-notice ~ .checkout-notice:before {
		content: '';
		display: inline-block;
		height: 20px;
		border-left: 1px solid #dfe5e8;
		vertical-align: middle;
		padding-left: 18px;
	}
}

.single-product-content .gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item a img {
	height: auto;
	min-height: 80px;
}

/*default woo gallery*/
single-product-content-left.default-gallery .woocommerce-product-gallery{
	position: relative;
}
/*..single-product-content-left.default-gallery .woocommerce-product-gallery__wrapper{
	display: flex;
	flex: auto;
	flex-wrap: wrap;
	margin: 0 -8px;
}
.single-product-content-left.default-gallery .woocommerce-product-gallery__image{
	padding: 0 8px;
	margin-top: 16px;
	width: 20%;
}
.single-product-content-left.default-gallery .woocommerce-product-gallery__image:first-child{
	width: 100%;
	margin: 0;
}
.single-product-content-left.default-gallery .woocommerce-product-gallery__image a img{
	width: 100%;
	height: auto;
}*/
.single-product-content-left.default-gallery span.onsale{
	position: absolute;
	top: 10px;
	left: 32px;
}

/* Sidebar */
body.single-product .page-sidebar .widget:first-child .widget-title {
	margin-top: -9px;
}

/* SWATCHES */

.gem-attribute-selector .field-input {
	display: none;
}
.gem-attribute-selector {
	padding: 4px 0 0;
	margin-bottom: -12px;
}
.gem-attribute-selector .gem-attribute-options li {
	display: inline-block;
	margin-right: 12px;
	margin-bottom: 12px;
	position: relative;
	cursor: pointer;
}
.gem-attribute-selector.type-color .gem-attribute-options li {
	padding: 2px;
	width: var(--thegem-swatches-size, 30px);
	height: var(--thegem-swatches-size, 30px);
	border-radius: 50%;
}
.gem-attribute-selector.type-image .gem-attribute-options li {
	width: var(--thegem-swatches-size, 62px);
	height: var(--thegem-swatches-size, 62px);
}
.gem-attribute-selector .gem-attribute-options li .color {
	display: inline-block;
	vertical-align: top;
	width: calc(var(--thegem-swatches-size, 30px) - 6px);
	height: calc(var(--thegem-swatches-size, 30px) - 6px);
	line-height: calc(var(--thegem-swatches-size, 30px) - 6px);
	border-radius: 50%;
}
.gem-attribute-selector .gem-attribute-options li .image {
	display: inline-block;
	vertical-align: top;
	width: calc(var(--thegem-swatches-size, 62px) - 2px);
	height: calc(var(--thegem-swatches-size, 62px) - 2px);
	line-height: calc(var(--thegem-swatches-size, 62px) - 2px);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}
.gem-attribute-selector .gem-attribute-options li .image-hover {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-out;
	margin-bottom: 7px;
	padding: 2px;
}
.gem-attribute-selector .gem-attribute-options li .image-hover img {
	max-height: 200px;
	width: auto;
}
.gem-attribute-selector .gem-attribute-options li:hover .image-hover {
	opacity: 1;
	visibility: visible;
	font-size: 87.5%;
	line-height: 1.5;
	border-radius: 3px;
}
.gem-attribute-selector .gem-attribute-options li .image-hover:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-width: 7px;
	border-style: solid;
	border-color: transparent;
}
.gem-attribute-selector .gem-attribute-options li .text {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-out;
	margin-bottom: 7px;
	padding: 0 10px;
}
.gem-attribute-selector .gem-attribute-options li:hover .text {
	opacity: 1;
	visibility: visible;
	font-size: 87.5%;
	line-height: 1.5;
	border-radius: 3px;
}
.gem-attribute-selector .gem-attribute-options li .text:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-width: 7px;
	border-style: solid;
	border-color: transparent;
}
.gem-attribute-selector .gem-attribute-options li .image-hover + .text {
	display: none;
}
.gem-attribute-selector .gem-attribute-options li .image-hover .text {
	position: relative;
	bottom: auto;
	left: auto;
	transform: none;
	opacity: 1;
	transition: all 0;
	padding: 5px 10px;
	display: block;
	text-align: center;
	background: transparent;
	margin-bottom: 0;
	font-size: inherit;
}
.gem-attribute-selector .gem-attribute-options li .image-hover .text:after {
	display: none;
}
.gem-attribute-selector .gem-attribute-options li.disabled {
	opacity: 0.3;
	cursor: not-allowed;
}
.gem-attribute-selector.type-label .gem-attribute-options li {
	padding: 0 7px;
	line-height: 28px;
	border-radius: 3px;
	height: 30px;
	min-width: 30px;
	text-align: center;
}
.gem-attribute-selector .gem-attribute-options li .label {
	font-size: 87.5%;
	vertical-align: top;
	transition: color 0.3s ease-out;
}
.gem-attribute-selector.type-label .gem-attribute-options li .text {
	display: none;
}
table.variations td.label .selected-text {
	display: none;
	margin-left: 5px;
	vertical-align: top;
}
@media (max-width: 768px) {
	table.variations tr,
	body .variations_form table.variations td,
	body .variations_form table.variations td.label {
		display: block;
	}
	body .variations_form table.variations td.label {
		width: auto;
		max-width: none;
		padding-bottom: 0;
	}
	table.variations td.label .selected-text {
		display: inline;
	}
	body .variations_form table.variations td.label label {
		line-height: inherit;
	}
	.gem-attribute-selector.type-color .gem-attribute-options li .image-hover {
		display: none;
	}
	.gem-attribute-selector.type-color .gem-attribute-options li .text {
		display: none;
	}
}


/* SWATCHES SIDEBAR */

.portfolio-filters-list .portfolio-filter-item.attribute-type-color ul li:not(:last-child),
.portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li:not(:last-child),
.portfolio-filters-list .widget_layered_nav ul li:not(:last-child) {
	margin-bottom: 5px;
}
.portfolio-filters-list .portfolio-filter-item.attribute-type-color ul li a,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-color,
.portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li a,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-image {
	padding-left: 0 !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.portfolio-filters-list .portfolio-filter-item.multiple.attribute-type-color ul li a.active:before,
.portfolio-filters-list .portfolio-filter-item.multiple.attribute-type-image ul li a.active:before {
	display: none;
}
.portfolio-filters-list .portfolio-filter-item.attribute-type-color ul li a .color,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-color .color,
.portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li a .image,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-image .image {
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 50%;
	position: relative;
	margin: 3px;
}
.portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li a .image,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-image .image {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}
.portfolio-filters-list .portfolio-filter-item.attribute-type-color ul li a .color:before,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-color .color:before,
.portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li a .image:before,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-image .image:before {
	content: '';
	position: absolute;
	left: -3px;
	right: -3px;
	top: -3px;
	bottom: -3px;
	border-radius: 50%;
	border: 1px solid transparent;
	transition: border-color 0.3s;
	-moz-transition: border-color 0.3s;
	-webkit-transition: border-color 0.3s;
}
.portfolio-filters-list .portfolio-filter-item.attribute-type-color ul li a .color + .title,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-color .color + .title,
.portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li a .image + .title,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-image .image + .title {
	margin-left: 10px;
	margin-right: auto;
}

.portfolio-filters-list .portfolio-filter-item.attribute-type-label ul,
.portfolio-filters-list .widget_layered_nav .attribute-type-label-list ~ .woocommerce-widget-layered-nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 5px;
}

.portfolio-filters-list .portfolio-filter-item.attribute-type-label ul li,
.portfolio-filters-list .widget_layered_nav .attribute-type-label-list ~ .woocommerce-widget-layered-nav-list li {
	/*display: inline-block;*/
	/*vertical-align: top;*/
	/*margin-right: 5px;*/
	/*margin-bottom: 8px;*/
}
.portfolio-filters-list .portfolio-filter-item.attribute-type-label ul li a,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-label {
	padding-left: 7px !important;
	padding-right: 7px;
	border: 1px solid transparent;
	border-radius: 3px;
	height: 30px;
	line-height: 28px;
	min-width: 30px;
	text-align: center;
	display: inline-block;
	vertical-align: top;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
.portfolio-filters-list .portfolio-filter-item.attribute-type-label ul li a .count,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-label .count {
	display: none;
}
.portfolio-filters-list .portfolio-filter-item.attribute-type-color ul li a:before,
.portfolio-filters-list .portfolio-filter-item.attribute-type-color ul li a:after,
.portfolio-filters-list .portfolio-filter-item.attribute-type-label ul li a:before,
.portfolio-filters-list .portfolio-filter-item.attribute-type-label ul li a:after,
.portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li a:before,
.portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li a:after,
.portfolio-filters-list .widget_layered_nav ul li.chosen a.attribute-type-color:before,
.portfolio-filters-list .widget_layered_nav ul li.chosen a.attribute-type-label:before,
.portfolio-filters-list .widget_layered_nav ul li.chosen a.attribute-type-image:before {
	display: none;
}
.portfolio-filters-list .portfolio-filter-item.attribute-type-color ul li a:before,
.portfolio-filters-list .portfolio-filter-item.attribute-type-image ul li a:before {

}
.portfolio-filters-list .portfolio-filter-item.attribute-type-label ul li a .title,
.portfolio-filters-list .widget_layered_nav ul li a.attribute-type-label .title {
	font-size: 87.5%;
	vertical-align: top;
}
.portfolio-filters-list .portfolio-filter-item.attribute-type-color .portfolio-filter-item-list ul li a:not(.disable):hover,
.portfolio-filters-list .portfolio-filter-item.attribute-type-color .portfolio-filter-item-list ul li a.active,
.portfolio-filters-list .portfolio-filter-item.attribute-type-image .portfolio-filter-item-list ul li a:not(.disable):hover,
.portfolio-filters-list .portfolio-filter-item.attribute-type-image .portfolio-filter-item-list ul li a.active {
	color: inherit;
}


.thegem-template-single-product .vc_row[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
}
body.single-thegem_templates.compose-mode .thegem-template-single-product .vc_row[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-single-product .vc_row[data-vc-full-width] > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-single-product .vc_row[data-vc-full-width] > .container {
		width: 100%;
	}
}

.thegem-template-product-archive .vc_row[data-vc-full-width] {
	margin-left: 0;
	margin-right: 0;
}
body.single-thegem_templates.compose-mode .thegem-template-product-archive .vc_row[data-vc-full-width] {
	margin-left: -21px;
	margin-right: -21px;
}
.thegem-template-product-archive .vc_row[data-vc-full-width] > .container {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 1212px){
	.thegem-template-product-archive .vc_row[data-vc-full-width] > .container {
		width: 100%;
	}
}

/* YITH WooCommerce Request A Quote */
.yith-ywraq-mail-form-wrapper form input[type="text"],
.yith-ywraq-mail-form-wrapper form input[type="email"],
.yith-ywraq-mail-form-wrapper form textarea {
	width: 100%;
}
.yith-ywraq-mail-form-wrapper form input[type="submit"] {
	margin: 0;
}

/*Product Page Right Column Third party Buttons*/
.single-product-content-right .yith-ywraq-add-to-quote{
	display: block;
	width: 100%;
	margin: 0 !important;
	padding: 0;
}
.single-product-content-right .yith-ywraq-add-to-quote a.ywraq-link,
.single-product-content-right .yith_ywraq_add_item_browse_message a{
	font-size: inherit !important;
	font-weight: inherit !important;
}
.single-product-content-right .yith-ywraq-add-to-quote img{
	display: none !important;
}
.single-product-content-right .yith-ywraq-add-to-quote a.button,
.single-product-content-right .compare.button{
	position: relative;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	border: 0 none;
	vertical-align: middle;
	height: 40px;
	line-height: 40px;
	padding: 0 17px;
	margin: 10px 0;
	font-size: 14px !important;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 3px;
}
#ywraq_cart_quote.button,
#ywraq_checkout_quote.button {
	line-height: 40px;
	margin-top: 20px;
}

/* Cart & Checkout Notices New Style */
body.woocommerce-page ul.woocommerce-error{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 6px 30px 6px 65px !important;
	border-radius: 5px !important;
	margin: 0 0 35px 0;
	min-height: 50px;
	list-style-type: none;
	background-color: #fcc6c2;
}
body.woocommerce-page ul.woocommerce-error:before{
	position: absolute;
	left: 30px;
	top: 50%;
	width: 22px;
	height: 22px;
	margin: 0;
	display: inline-flex;
	transform: translateY(-50%);
	border-radius: 50%;

	font-family: 'thegem-icons';
	content: '\e682';
	font-size: 22px;
	line-height: 1;
	text-align: center;
	background-color: transparent;
	color: #d2352a;
}
body.woocommerce-page ul.woocommerce-error li{
	padding: 0;
	margin: 5px 0;
	height: auto;

	font-family: var(--thegem-to-body-font-family);
	font-style: var(--thegem-to-body-font-style);
	font-weight: var(--thegem-to-body-font-weight);
	text-transform: var(--thegem-to-body-text-transform);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
	letter-spacing: var(--thegem-to-body-letter-spacing);

	color: #3c3950;
	background-color: transparent !important;
}
body.woocommerce-page ul.woocommerce-error li strong{
	font-weight: var(--thegem-to-body-font-weight);
	text-transform: none;
}
body.woocommerce-page ul.woocommerce-error li a{
	color: #d2352a;
	text-decoration: underline;
	transition: opacity 0.3s;
	padding-left: 5px;
}
body.woocommerce-page ul.woocommerce-error li a:hover{
	opacity: 0.7;
}
body.woocommerce-page ul.woocommerce-error li:before{
	display: none;
}
body.woocommerce-page .woocommerce-invalid input,
body.woocommerce-page .woocommerce-invalid textarea{
	border-color: #d2352a !important;
}

body.woocommerce-page .woocommerce-message,
body.woocommerce-page .woocommerce-info,
body.woocommerce-page .woocommerce-notice--success,
body.woocommerce-page .woocommerce-notice--error{
	position: relative;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 50px;
	padding: 6px 30px 6px 65px !important;
	border-radius: 5px !important;
	margin: 0 0 35px 0;

	font-family: var(--thegem-to-body-font-family);
	font-style: var(--thegem-to-body-font-style);
	font-weight: var(--thegem-to-body-font-weight);
	text-transform: var(--thegem-to-body-text-transform);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
	letter-spacing: var(--thegem-to-body-letter-spacing);

	color: #3c3950;
}
body.woocommerce-page .woocommerce-message .cart-added a,
body.woocommerce-page .woocommerce-error a.wc-forward {
	position: relative;
	height: auto;
	border: 0;
	border-radius: 0;
	padding: 0 20px;

	font-family: var(--thegem-to-body-font-family);
	font-style: var(--thegem-to-body-font-style);
	font-weight: var(--thegem-to-body-font-weight);
	text-transform: var(--thegem-to-body-text-transform);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
	letter-spacing: var(--thegem-to-body-letter-spacing);
	background-color: transparent;
}
body.woocommerce-page .woocommerce-error a.wc-forward {
	margin: 0;
	float: right;
}
body.woocommerce-page .woocommerce-message .cart-added a:after,
body.woocommerce-page .woocommerce-error a.wc-forward:after {
	font-family: 'thegem-icons';
	content: '\e64c';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
body.woocommerce-page .woocommerce-message a,
body.woocommerce-page .woocommerce-info a,
body.woocommerce-page .woocommerce-notice--success a,
body.woocommerce-page .woocommerce-notice--error a,
body.woocommerce-page .woocommerce-message .cart-added a{
	text-decoration: underline;
	transition: opacity 0.3s;
	padding-left: 5px;
}
body.woocommerce-page .woocommerce-message a:hover,
body.woocommerce-page .woocommerce-info a:hover,
body.woocommerce-page .woocommerce-notice--success a:hover,
body.woocommerce-page .woocommerce-notice--error a:hover,
body.woocommerce-page .woocommerce-message .cart-added a:hover{
	opacity: 0.7;
}
body.woocommerce-page .woocommerce-message a,
body.woocommerce-page .woocommerce-info a {
	color: #008192;
}
body.woocommerce-page .woocommerce-notice--success a{
	color: #498d00;
}
body.woocommerce-page .woocommerce-notice--error a{
	color: #d2352a;
}
body.woocommerce-page .woocommerce-message,
body.woocommerce-page .woocommerce-info{
	background-color: #b2ebf2;
}
body.woocommerce-page .woocommerce-notice--success{
	background-color: #d5f1b6;
}
body.woocommerce-page .woocommerce-notice--error {
	background-color: #fcc6c2;
}
body.woocommerce-page .woocommerce-message:before,
body.woocommerce-page .woocommerce-info:before,
body.woocommerce-page .woocommerce-notice--success:before,
body.woocommerce-page .woocommerce-notice--error:before{
	position: absolute;
	left: 30px;
	top: 50%;
	width: 22px;
	height: 22px;
	margin: 0;
	display: inline-flex;
	transform: translateY(-50%);
	border-radius: 50%;

	font-family: 'thegem-icons';
	font-size: 22px;
	line-height: 1;
	text-align: center;
	background-color: transparent !important;
}
body.woocommerce-page .woocommerce-message:before,
body.woocommerce-page .woocommerce-info:before{
	content: '\e683';
	color: #008192;
}
body.woocommerce-page .woocommerce-notice--success:before{
	content: '\e646';
	color: #498d00;
}
body.woocommerce-page .woocommerce-notice--error:before{
	content: '\e682';
	color: #d2352a;
}

@media (max-width: 767px) {
	body.woocommerce-page ul.woocommerce-error,
	body.woocommerce-page .woocommerce-message,
	body.woocommerce-page .woocommerce-info,
	body.woocommerce-page .woocommerce-notice--success,
	body.woocommerce-page .woocommerce-notice--error{
		padding: 6px 15px 6px 50px !important;
	}
	body.woocommerce-page ul.woocommerce-error:before,
	body.woocommerce-page .woocommerce-message:before,
	body.woocommerce-page .woocommerce-info:before,
	body.woocommerce-page .woocommerce-notice--success:before,
	body.woocommerce-page .woocommerce-notice--error:before{
		left: 15px;
	}
}

/* Product Archive Title */
.thegem-te-product-archive-title{
	position: relative;
	width: 100%;
}
.thegem-te-product-archive-title .product-title{
	position: relative;
	display: inline-flex;
	padding: 0;
	margin: 0;
}

/* Product Archive Description */
.thegem-te-product-archive-description{
	position: relative;
	width: 100%;
}
.thegem-te-product-archive-description .product-description{
	position: relative;
	display: inline-flex;
	padding: 0;
	margin: 0
}

/* Product Archive Breadcrumbs */
.thegem-te-product-archive-breadcrumbs{
	position: relative;
	width: 100%;
}
.thegem-te-product-archive-breadcrumbs .product-breadcrumbs{
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	z-index: 1;
}
.thegem-te-product-archive-breadcrumbs .product-breadcrumbs ul{
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.thegem-te-product-archive-breadcrumbs .product-breadcrumbs ul li{
	position: relative;
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	color: var(--thegem-to-breadcrumbs-color);
}
.thegem-te-product-archive-breadcrumbs .product-breadcrumbs ul li:not(:last-child){
	padding-right: 20px;
	margin-right: 5px;
}
.thegem-te-product-archive-breadcrumbs .product-breadcrumbs ul li:not(:last-child):after{
	font-family: 'thegem-icons';
	content: '\e601';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}
.thegem-te-product-archive-breadcrumbs .product-breadcrumbs ul li a{
	color: var(--thegem-to-breadcrumbs-color);
}
.thegem-te-product-archive-breadcrumbs .product-breadcrumbs ul li a:hover{
	color: var(--thegem-to-breadcrumbs-color-hover);
}
.thegem-te-product-archive-breadcrumbs .product-breadcrumbs ul li:last-child{
	color: var(--thegem-to-breadcrumbs-color-active);
}

/* Cart Totals */
.thegem-te-cart-totals {
	position: relative;
}
.thegem-te-cart-totals .cart_totals .cart_totals-inner table.shop_table th,
.thegem-te-cart-totals .cart_totals .cart_totals-inner table.shop_table td {
	background-color: transparent;
}
.thegem-te-cart-totals.cart-totals-title--hide .cart_totals .cart_totals-inner table tr:first-child th,
.thegem-te-cart-totals.cart-totals-title--hide .cart_totals .cart_totals-inner table tr:first-child td {
	border: 0 !important;
	padding-top: 0 !important;
}
.thegem-te-cart-totals .cart_totals .cart_totals-inner .cart_totals_title span{
	position: relative;
	display: block;
	margin-top: 0;
	margin-bottom: 1.13em;
}
.thegem-te-cart-totals.cart-totals-title--hide .cart_totals .cart_totals-inner .cart_totals_title{
	display: none !important;
}
.thegem-te-cart-totals .cart_totals .wc-proceed-to-checkout{
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.thegem-te-cart-totals.checkout-btn--hide .cart_totals .wc-proceed-to-checkout{
	display: none !important;
}
.thegem-te-cart-totals .cart_totals .wc-proceed-to-checkout .gem-button{
	width: auto;
	padding: 0 17px !important;
}
.thegem-te-cart-totals .cart_totals .wc-proceed-to-checkout.checkout-btn--left{
	justify-content: left;
}
.thegem-te-cart-totals .cart_totals .wc-proceed-to-checkout.checkout-btn--center{
	justify-content: center;
}
.thegem-te-cart-totals .cart_totals .wc-proceed-to-checkout.checkout-btn--right{
	justify-content: right;
}
.thegem-te-cart-totals .cart_totals .wc-proceed-to-checkout.checkout-btn--fullwidth{
	justify-content: space-between;
}
.thegem-te-cart-totals .cart_totals .wc-proceed-to-checkout.checkout-btn--fullwidth .checkout-button-button,
.thegem-te-cart-totals .cart_totals .wc-proceed-to-checkout.checkout-btn--fullwidth .checkout-button-button .gem-button{
	width: 100%;
}
.thegem-te-cart-totals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-form{
	display: none;
}
.thegem-te-cart-totals .cart_totals .woocommerce-shipping-calculator .form-row .select2-container,
.thegem-te-cart-totals .cart_totals .woocommerce-shipping-calculator .form-row .select2-selection--single{
	background-color: transparent !important;
}
.thegem-te-cart-totals .cart_totals .woocommerce-shipping-calculator .form-row .select2-selection__rendered{
	background-color: #FFFFFF;
}

/* Checkout Payment */
.thegem-te-checkout-payment .checkout-navigation-buttons{
	position: relative;
	display: flex !important;
	flex-wrap: wrap;
}
.thegem-te-checkout-payment .checkout-navigation-buttons .checkout-place-order .gem-button {
	width: auto !important;
	padding: 0 17px !important;
}
.thegem-te-checkout-payment.place-order-btn--hide .checkout-navigation-buttons{
	display: none !important;
}
.thegem-te-checkout-payment.place-order-btn--left .checkout-navigation-buttons{
	justify-content: left;
}
.thegem-te-checkout-payment.place-order-btn--center .checkout-navigation-buttons{
	justify-content: center;
}
.thegem-te-checkout-payment.place-order-btn--right .checkout-navigation-buttons{
	justify-content: right;
}
.thegem-te-checkout-payment.place-order-btn--fullwidth .checkout-navigation-buttons{
	justify-content: space-between;
}
.thegem-te-checkout-payment.place-order-btn--fullwidth .checkout-navigation-buttons .checkout-place-order,
.thegem-te-checkout-payment.place-order-btn--fullwidth .checkout-navigation-buttons .checkout-place-order .gem-button{
	width: 100% !important;
}
.thegem-te-checkout-payment #order_review_heading{
	display: none !important;
}
.thegem-te-checkout-payment.payment-box-paddings--hide .payment_methods li .payment_box{
	padding: 0 !important;
	margin-top: 16px !important;
}

/* Checkout Billing / Shipping Details */
.woocommerce form.checkout .thegem-te-checkout-billing .form-row-first,
.woocommerce form.checkout .thegem-te-checkout-billing .form-row-last,
.woocommerce form.checkout .thegem-te-checkout-shipping .form-row-first,
.woocommerce form.checkout .thegem-te-checkout-shipping .form-row-last {
	width: calc(50% - 8px);
}
.woocommerce form.checkout .thegem-te-checkout-billing .form-row .input-text,
.woocommerce form.checkout .thegem-te-checkout-shipping .form-row .input-text{
	background-color: transparent;
}
.woocommerce form.checkout .thegem-te-checkout-billing .select2-container,
.woocommerce form.checkout .thegem-te-checkout-shipping .select2-container,
.woocommerce form.checkout .thegem-te-checkout-billing .select2-selection--single,
.woocommerce form.checkout .thegem-te-checkout-shipping .select2-selection--single {
	background-color: transparent !important;
}
.woocommerce form.checkout .thegem-te-checkout-billing .select2-selection__rendered,
.woocommerce form.checkout .thegem-te-checkout-shipping .select2-selection__rendered{
	background-color: transparent;
}
.woocommerce form.checkout .thegem-te-checkout-billing .select2-selection--single,
.woocommerce form.checkout .thegem-te-checkout-shipping .select2-selection--single {
	min-height: 40px;
}
.woocommerce form.checkout .thegem-te-checkout-billing .select2-selection__rendered,
.woocommerce form.checkout .thegem-te-checkout-shipping .select2-selection__rendered,
.woocommerce form.checkout .thegem-te-checkout-billing .select2-selection__arrow,
.woocommerce form.checkout .thegem-te-checkout-shipping .select2-selection__arrow {
	min-height: 38px;
	line-height: 38px;
}
.woocommerce form.checkout .thegem-te-checkout-billing .select2-selection__arrow:before,
.woocommerce form.checkout .thegem-te-checkout-shipping .select2-selection__arrow:before {
	margin-top: -19px;
}

/* Checkout Billing / Shipping Compact */
.woocommerce form.checkout .thegem-te-checkout-billing .checkout-billing-title,
.woocommerce form.checkout .thegem-te-checkout-shipping .checkout-shipping-title{
	margin: 0 0 1.13em 0;
}
.woocommerce form.checkout .thegem-te-checkout-billing .woocommerce-billing-fields__field-wrapper {
	margin-top: -16px;
}
@media (min-width: 768px) {
	.woocommerce form.checkout .thegem-te-checkout-billing.compact .woocommerce-billing-fields__field-wrapper,
	.woocommerce form.checkout .thegem-te-checkout-shipping.compact .woocommerce-shipping-fields__field-wrapper {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0 16px;
	}
	.woocommerce form.checkout .thegem-te-checkout-billing.compact .woocommerce-billing-fields__field-wrapper .clear,
	.woocommerce form.checkout .thegem-te-checkout-shipping.compact .woocommerce-shipping-fields__field-wrapper .clear {
		display: none;
	}
	.woocommerce form.checkout .thegem-te-checkout-billing.compact .woocommerce-billing-fields__field-wrapper .form-row,
	.woocommerce form.checkout .thegem-te-checkout-shipping.compact .woocommerce-shipping-fields__field-wrapper .form-row,
	.woocommerce form.checkout .thegem-te-checkout-shipping.compact #ship-to-different-address.form-row {
		float:none;
		width: auto;
	}
	.woocommerce form.checkout .thegem-te-checkout-billing.compact .woocommerce-billing-fields__field-wrapper label.screen-reader-text,
	.woocommerce form.checkout .thegem-te-checkout-shipping.compact .woocommerce-shipping-fields__field-wrapper label.screen-reader-text {
		position: static !important;
		height: auto;
		width: auto;
	}
}

/* Checkout Orders */
.woocommerce form.checkout .thegem-te-checkout-order .checkout-order-title{
	margin-top: 0;
}
.woocommerce form.checkout .thegem-te-checkout-order #order_review{
	padding: 0;
}
.woocommerce form.checkout .thegem-te-checkout-order #order_review table.woocommerce-checkout-review-order-table{
	border-collapse: separate;
}
.woocommerce form.checkout .thegem-te-checkout-order #order_review table.woocommerce-checkout-review-order-table .product-name {
	width: auto;
}
.woocommerce form.checkout .thegem-te-checkout-order.hide-dividers #order_review .woocommerce-checkout-review-order-table th,
.woocommerce form.checkout .thegem-te-checkout-order.hide-dividers #order_review .woocommerce-checkout-review-order-table td {
	border: 0 !important;
}
.woocommerce form.checkout .thegem-te-checkout-order.hide-dividers #order_review .woocommerce-checkout-review-order-table tr.cart_item:first-child th,
.woocommerce form.checkout .thegem-te-checkout-order.hide-dividers #order_review .woocommerce-checkout-review-order-table tr.cart_item:first-child td,
.woocommerce form.checkout .thegem-te-checkout-order.hide-divider-top #order_review .woocommerce-checkout-review-order-table tr.cart_item:first-child th,
.woocommerce form.checkout .thegem-te-checkout-order.hide-divider-top #order_review .woocommerce-checkout-review-order-table tr.cart_item:first-child td {
	border-top: 0 !important;
	padding-top: 0 !important;
}
.woocommerce form.checkout .thegem-te-checkout-order.hide-dividers #order_review .woocommerce-checkout-payment-total tr:last-child th,
.woocommerce form.checkout .thegem-te-checkout-order.hide-dividers #order_review .woocommerce-checkout-payment-total tr:last-child td,
.woocommerce form.checkout .thegem-te-checkout-order.hide-divider-bottom #order_review .woocommerce-checkout-payment-total tr:last-child th,
.woocommerce form.checkout .thegem-te-checkout-order.hide-divider-bottom #order_review .woocommerce-checkout-payment-total tr:last-child td {
	border-bottom: 0 !important;
	padding-bottom: 0 !important;
}
.woocommerce form.checkout .thegem-te-checkout-order .wc-gzd-order-submit .gem-button {
	width: auto !important;
	padding: 0 17px !important;
}
.woocommerce form.checkout .thegem-te-checkout-order.place-order-btn--hide .wc-gzd-order-submit{
	display: none !important;
}
.woocommerce form.checkout .thegem-te-checkout-order .wc-gzd-order-submit .gem-button-container{
	display: flex;
}
.woocommerce form.checkout .thegem-te-checkout-order.place-order-btn--left .wc-gzd-order-submit .gem-button-container{
	justify-content: left;
}
.woocommerce form.checkout .thegem-te-checkout-order.place-order-btn--center .wc-gzd-order-submit .gem-button-container{
	justify-content: center;
}
.woocommerce form.checkout .thegem-te-checkout-order.place-order-btn--right .wc-gzd-order-submit .gem-button-container{
	justify-content: right;
}
.woocommerce form.checkout .thegem-te-checkout-order.place-order-btn--fullwidth .wc-gzd-order-submit .gem-button-container{
	justify-content: space-between;
}
.woocommerce form.checkout .thegem-te-checkout-order.place-order-btn--fullwidth .wc-gzd-order-submit .checkout-place-order .gem-button{
	width: 100% !important;
}

/* Checkout Thanks Order Overview */
.thegem-te-checkout-thanks-order-overview .woocommerce-order-overview{
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0 !important;
}
.thegem-te-checkout-thanks-order-overview .woocommerce-order-overview li{
	display: inline-flex;
	min-width: max-content;
	margin-top: 0;
}
.thegem-te-checkout-thanks-order-overview .woocommerce-order-overview li strong{
	padding-left: 5px;
}
.thegem-te-checkout-thanks-order-overview.list-alignment--left .woocommerce-order-overview{
	text-align: left;
	align-items: flex-start;
}
.thegem-te-checkout-thanks-order-overview.list-alignment--center .woocommerce-order-overview{
	text-align: center;
	align-items: center;
}
.thegem-te-checkout-thanks-order-overview.list-alignment--right .woocommerce-order-overview{
	text-align: right;
	align-items: flex-end;
}

/* Checkout Thanks Customer Details / Billing Details / Shipping Details */
.thegem-te-checkout-thanks-customer-details .woocommerce-customer-details__title,
.thegem-te-checkout-thanks-billing-details .woocommerce-billing-details__title,
.thegem-te-checkout-thanks-shipping-details .woocommerce-shipping-details__title{
	margin-top: 0;
	margin-bottom: 1.13em;
}
.thegem-te-checkout-thanks-customer-details .woocommerce-customer-details,
.thegem-te-checkout-thanks-billing-details .woocommerce-billing-details,
.thegem-te-checkout-thanks-shipping-details .woocommerce-shipping-details{
	line-height: calc(var(--thegem-to-body-line-height) * 1.4);
	font-style: var(--thegem-to-body-font-style, normal);
}
.thegem-te-checkout-thanks-customer-details.list-alignment--left .woocommerce-customer-details,
.thegem-te-checkout-thanks-billing-details.list-alignment--left .woocommerce-billing-details,
.thegem-te-checkout-thanks-shipping-details.list-alignment--left .woocommerce-shipping-details{
	text-align: left;
}
.thegem-te-checkout-thanks-customer-details.list-alignment--center .woocommerce-customer-details,
.thegem-te-checkout-thanks-billing-details.list-alignment--center .woocommerce-billing-details,
.thegem-te-checkout-thanks-shipping-details.list-alignment--center .woocommerce-shipping-details{
	text-align: center;
}
.thegem-te-checkout-thanks-customer-details.list-alignment--right .woocommerce-customer-details,
.thegem-te-checkout-thanks-billing-details.list-alignment--right .woocommerce-billing-details,
.thegem-te-checkout-thanks-shipping-details.list-alignment--right .woocommerce-shipping-details{
	text-align: right;
}

/* Checkout Thanks Order Details */
.thegem-te-checkout-thanks-order-details .woocommerce-order-details__title{
	margin-top: 0;
	margin-bottom: 1.13em;
}
.thegem-te-checkout-thanks-order-details table.woocommerce-table--order-details th.product-total{
	text-align: right;
}
.thegem-te-checkout-thanks-order-details.hide-dividers table.woocommerce-table--order-details th,
.thegem-te-checkout-thanks-order-details.hide-dividers table.woocommerce-table--order-details td{
	border: 0 !important;
}
.thegem-te-checkout-thanks-order-details.hide-dividers table.woocommerce-table--order-details td{
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

/* Checkout Thanks Cart Totals */
.thegem-te-checkout-thanks-cart-totals .woocommerce-cart-totals__title{
	margin-top: 0;
	margin-bottom: 1.13em;
}
.thegem-te-checkout-thanks-cart-totals.hide-dividers table th,
.thegem-te-checkout-thanks-cart-totals.hide-dividers table td{
	border: 0 !important;
}

/* Loading Overlay */

.thegem-template-wrapper .blockOverlay:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 2px;
	border-color: rgba(0, 0, 0, 0.2);
	border-top-color: #ffffff;
	border-radius: 50%;
	width: 26px;
	height: 26px;
	font-size: 0;
	line-height: 0;
	animation: blockOverlaySpin 1s linear infinite;
}

@keyframes blockOverlaySpin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Checkout Login/Coupon inline */
.checkout-notice .separator {
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 20px;
	background-color: var(--thegem-to-divider-color, #dfe5e8);
}

input[type="submit"].dokan-btn-theme {
	margin: 0;
}

/* Woocommerce Reviews Pagination */
.woocommerce-Reviews .woocommerce-pagination {
	position: relative;
}
.woocommerce-Reviews .woocommerce-pagination ul{
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.woocommerce-Reviews .woocommerce-pagination ul > li{
	margin: 8px;
}
.woocommerce-Reviews .woocommerce-pagination ul > li > a,
.woocommerce-Reviews .woocommerce-pagination ul > li > span.current{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	line-height: 30px;
	font-size: 14px;
	font-family: var(--thegem-to-h6-font-family);
	font-style: var(--thegem-to-h6-font-style);
	font-weight: var(--thegem-to-h6-font-weight);
	text-align: center;
	text-decoration: none;
	transition: all 0.3s;
	color: var(--thegem-to-pagination-color, #99a9b5);
	border: 2px solid var(--thegem-to-pagination-color, #99a9b5);
}
.woocommerce-Reviews .woocommerce-pagination ul > li > a:hover{
	border-color: var(--thegem-to-pagination-color-hover, #00bcd4);
	background-color: var(--thegem-to-pagination-color-hover, #00bcd4);
	color: var(--thegem-to-pagination-background-color, #ffffff);
}
.woocommerce-Reviews .woocommerce-pagination ul > li > span.current{
	border-color: var(--thegem-to-pagination-color-active, #3c3950);
	background-color: var(--thegem-to-pagination-color-active, #3c3950);
	color: var(--thegem-to-pagination-background-color, #ffffff);
}
.woocommerce-Reviews .woocommerce-pagination ul > li > a.prev,
.woocommerce-Reviews .woocommerce-pagination ul > li > a.next {
	font-size: 0;
	background-color: var(--thegem-to-pagination-color, #99a9b5);
	color: var(--thegem-to-pagination-background-color, #ffffff);
}
.woocommerce-Reviews .woocommerce-pagination ul > li > a.prev:hover,
.woocommerce-Reviews .woocommerce-pagination ul > li > a.next:hover{
	border-color: var(--thegem-to-pagination-color-hover, #00bcd4);
	background-color: var(--thegem-to-pagination-color-hover, #00bcd4);
}
.woocommerce-Reviews .woocommerce-pagination ul > li > a.prev:before,
.woocommerce-Reviews .woocommerce-pagination ul > li > a.next:before{
	font-family: "thegem-icons";
	font-size: 24px;
	font-weight: normal;
	font-style: normal;
}
.woocommerce-Reviews .woocommerce-pagination ul > li > a.prev:before{
	content: "\e636";
}
.woocommerce-Reviews .woocommerce-pagination ul > li > a.next:before {
	content: "\e634";
}
@media (max-width: 767px) {
	.woocommerce-MyAccount-content {
		margin-top: 40px;
	}
}

.gem-button.gem-wc-button {
	margin-left: 0;
	margin-right: 0;
}
.gem-button.gem-wc-button + .ajax-loading {
	margin-right: -20px;
}
.button.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Native Gallery */
.woocommerce div.product div.images {
	margin-bottom: 2em
}
.woocommerce div.product div.images img {
	display: block;
	width: 100%;
	height: auto;
	box-shadow: none
}
.woocommerce div.product div.images div.thumbnails {
	padding-top: 1em
}
.woocommerce div.product div.images.woocommerce-product-gallery {
	position: relative
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	transition: all cubic-bezier(.795, -.035, 0, 1) .5s;
	margin: 0;
	padding: 0
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
	background-color: #fff;
	opacity: 0
}
.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
	border: 1px solid #f2f2f2
}
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
	width: 25%;
	display: inline-block
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	position: absolute;
	top: .5em;
	right: .5em;
	font-size: 2em;
	z-index: 9;
	width: 36px;
	height: 36px;
	background: #fff;
	text-indent: -9999px;
	border-radius: 100%;
	box-sizing: content-box
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border: 2px solid #000;
	border-radius: 100%;
	position: absolute;
	top: 9px;
	left: 9px;
	box-sizing: content-box
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
	content: "";
	display: block;
	width: 2px;
	height: 8px;
	background: #000;
	border-radius: 6px;
	position: absolute;
	top: 19px;
	left: 22px;
	transform: rotate(-45deg);
	box-sizing: content-box
}
.woocommerce div.product div.images .flex-control-thumbs {
	overflow: hidden;
	zoom: 1;
	margin: 0;
	padding: 0
}
.woocommerce div.product div.images .flex-control-thumbs li {
	width: 25%;
	float: left;
	margin: 0;
	list-style: none
}
.woocommerce div.product div.images .flex-control-thumbs li img {
	cursor: pointer;
	opacity: .5;
	margin: 0
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
	opacity: 1
}
.woocommerce div.product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
	clear: left
}
.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
	clear: left
}
.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
	clear: left
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
	margin-top: 79px;
}
.woocommerce-cart-layout-modern .woocommerce,
.woocommerce-checkout-layout-one-page-modern .woocommerce,
.woocommerce-wishlist-layout-modern .woocommerce {
	margin-top: 0;
}

.woocommerce .checkout .tabs {
	margin: 0;
}
.checkout .gem_tour_tabs_wrapper {
	margin: 0;
}

.woocommerce .checkout_coupon {
	display: block;
	padding: 0 25px;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 51px;
}
.woocommerce .checkout-steps + .checkout-notice {
	margin-top: -80px;
}
.woocommerce .checkout-steps + .checkout-notice + .checkout_coupon {
	margin-top: 15px;
}
.woocommerce .checkout-steps + .checkout-notice + .checkout_coupon + .woocommerce-checkout,
.woocommerce .checkout-steps + .checkout-notice + .checkout_coupon + .checkout-contents {
	margin-top: 35px;
}

@media (max-width: 1199px) {
	.woocommerce-checkout #customer_details.row {
		margin-top: -3em;
	}
	.woocommerce-checkout #customer_details.row > * {
		margin-top: 3em;
	}
	.woocommerce-checkout.woocommerce-checkout-one-page #customer_details.row {
		margin-top: 0;
	}
	.woocommerce-checkout.woocommerce-checkout-one-page #customer_details.row > * {
		margin-top: 0;
	}
}

.woocommerce .woocommerce-billing-fields:after,
.woocommerce .woocommerce-shipping-fields:after,
.woocommerce-page .woocommerce-billing-fields:after,
.woocommerce-page .woocommerce-shipping-fields:after,
.woocommerce-page .woocommerce-account-fields:after,
.woocommerce-page .woocommerce-account-fields:after {
	clear: both;
	content: " ";
	display: table;
}

.woocommerce-billing-collumns {
	padding: 55px 19px 36px 19px;
}
.woocommerce-billing-collumns .woocommerce-billing-collumn {
	display: inline-block;
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 16px;
	vertical-align: top;
}
.woocommerce-billing-collumns .woocommerce-billing-collumn.odd {
	padding-left: 0;
}
.woocommerce-billing-collumns .woocommerce-billing-collumn.even {
	padding-right: 0;
}
.woocommerce-shipping-fields .woocommerce-billing-collumns {
	padding-bottom: 0;
}
.woocommerce .checkout .form-row,
.woocommerce .checkout .shipping_address .shiping-address-continue,
.woocommerce .checkout #tab-checkout_billing .shiping-address-continue,
.woocommerce-billing-collumns.bottom-collumns,
.woocommerce .edit-address-form .woocommerce-billing-collumn .form-row {
	position: relative;
	margin: 16px 0 0 0;
	float: left;
	width: 100%;
}


.woocommerce .woocommerce-billing-fields > h2,
.woocommerce .woocommerce-shipping-fields > h2,
.woocommerce .woocommerce-additional-fields > h2,
.checkout-login h2,
.checkout-signin h2,
.woocommerce .my-account-signup h2,
.create-account-popup h2 {
	position: relative;
	margin: 0 0 12px 0;
}

.create-account-popup h2 {
	margin-bottom: 47px;
}

.woocommerce .woocommerce-shipping-fields > h2 {
	margin-bottom: 48px;
}
@media (max-width: 767px) {
	.woocommerce .woocommerce-shipping-fields > h2 {
		margin-bottom: 12px;
	}
}

.checkout-login h2,
.woocommerce .my-account-signup h2 {
	margin-bottom: 28px;
}

.checkout-signin h2 {
	margin: 0 0 60px 0;
}

.woocommerce form.checkout .form-row-first,
.woocommerce form.checkout .form-row-last,
.woocommerce-page form.checkout .form-row-first,
.woocommerce-page form.checkout .form-row-last {
    float: left;
    overflow: visible;
    width: 47%;
}

.woocommerce form.checkout .form-row-last,
.woocommerce-page form.checkout .form-row-last {
    float: right;
}

.woocommerce-billing-collumns.bottom-collumns {
	padding-top: 0;
}
.woocommerce-shipping-fields .shipping_address {
	padding-bottom: 36px;
}
.woocommerce .checkout .woocommerce-billing-collumns .woocommerce-billing-collumn .form-row:first-child,
.woocommerce .edit-address-form .woocommerce-billing-collumns .woocommerce-billing-collumn .form-row:first-child {
	margin: 0;
}
.woocommerce .checkout .form-row label,
.woocommerce .checkout .form-row label,
.woocommerce .edit-address-form .form-row label,
.woocommerce .checkout-login .login .form-row label,
.lost_reset_password .form-row label,
.woocommerce .my-account-signup .form-row label {
	display: block;
	margin: 0 0 7px 0;
}
.woocommerce .checkout  .form-row label abbr,
.woocommerce .edit-address-form .form-row label abbr,
.woocommerce .checkout-login .login .form-row label span.required,
.woocommerce .my-account-signup .form-row label span.required {
	border: 0;
	text-decoration: none;
}

.woocommerce .checkout .form-row .input-text,
.woocommerce .edit-address-form .form-row .input-text,
.select2-search .select2-input,
.woocommerce .checkout-login .login .form-row .input-text,
.woocommerce .lost_reset_password .input-text,
.woocommerce .my-account-signup .form-row .input-text,
.yith-wcwl-form .hidden-title-form input[type="text"] {
	display: inline-block;
	position: relative;
	margin: 0;
	width: 100%;
	height: 40px;
	text-align: left;
	color: inherit;
	vertical-align: top;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 0 18px;
}
.woocommerce .checkout .form-row .input-text[hidden] {
	display: none;
}
.select2-search .select2-input {
	height: 40px !important;
}
.woocommerce .checkout .form-row textarea.input-text,
.woocommerce .edit-address-form .form-row textarea.input-text {
	height: 216px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 10px 18px;
}

.woocommerce .password-input {
	display: flex;
}
.woocommerce .password-input .show-password-input {
	position: relative;
	width: 40px;
	padding: 0;
	display: flex;
	margin-left: -40px;
	background: transparent;
	border: 0 none;
	z-index: 1;
	align-items: center;
	justify-content: center;
}
.woocommerce .password-input .show-password-input:before {
	width: 24px;
	height: 24px;
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	line-height: 1em;
	content: '\e68b';
}
.woocommerce .password-input .show-password-input.display-password:before {
	content: '\e68c';
}


.chosen-container {
	width: 100% !important;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	min-width: 150px;
	font: inherit;
}
.chosen-container-single .chosen-single,
.select2-container .select2-choice {
	display: block;
	padding: 0 17px;
	padding-right: 37px;
	height: 40px !important;
	line-height: 38px !important;
	overflow: hidden;
	text-align: left;
	white-space: nowrap;
	position: static;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	background-image: none;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.select2-container .select2-choice {
	position: relative;
}
.select2-container.select2-dropdown-open:not(.select2-drop-above) .select2-choice {
	border-bottom-left-radius: 0;
	-moz-border-bottom-left-radius: 0;
	-webkit-border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	-moz-border-bottom-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
}
.select2-container.select2-dropdown-open.select2-drop-above .select2-choice {
	border-top-left-radius: 0;
	-moz-border-top-left-radius: 0;
	-webkit-border-top-left-radius: 0;
	border-top-right-radius: 0;
	-moz-border-top-right-radius: 0;
	-webkit-border-top-right-radius: 0;
}
.chosen-container-single .chosen-single div,
.edit-address-form .form-row .chosen-container-single .chosen-single div,
.select2-container .select2-choice .select2-arrow {
	width: 37px;
	height: 38px;
	position: absolute;
	cursor: pointer;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
}
.chosen-container-single .chosen-single div:before,
.select2-container .select2-choice .select2-arrow:before {
	content: '\e602';
	position: absolute;
	left: 5px;
	top: 11px;
	margin: 0;
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 25px;
	line-height: 14px;
	font-weight: normal;
}
.select2-container.select2-dropdown-open .select2-choice .select2-arrow:before {
	content: '\e600';
}
.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b {
	background: none !important;
}
.select2-container .select2-choice .select2-arrow b {
	display: none;
}
.chosen-container-single .chosen-single span,
.select2-container .select2-choice > .select2-chosen {
	height: 100%;
	color: inherit;
	line-height: 38px;
	margin: 0;
}
.select2-container.select2-container-active .select2-choice,
.select2-container.select2-container-active .select2-choices {
	border: 1px solid #666;
}

.select2-search {
	padding: 4px;
}

#ship-to-different-address-title {
	padding: 0;
}
.woocommerce .checkout .woocommerce-billing-collumn .form-row label.checkbox,
.woocommerce-checkout #ship-to-different-address label.checkbox,
.woocommerce .checkout #payment .payment_methods li label,
.woocommerce .checkout .create-account-popup .form-row label.checkbox,
.woocommerce .checkout.woocommerce-checkout-one-page .form-row.create-account-checkbox label.checkbox {
	position: static;
	display: inline-block;
	width: auto;
	font-size: inherit;
	color: inherit;
	vertical-align: top;
}
.woocommerce .checkout #payment .payment_methods li label .about_paypal {
	margin-left: 10px;
}
.woocommerce .checkout .create-account-popup p.create-account {
	display: none;
}
.woocommerce .checkout div.create-account {
	clear: both;
	padding-top: 20px;
}
.woocommerce .checkout .create-account-popup div.create-account {
	display: block !important;
	height: auto !important;
	padding-top: 0;
}
.woocommerce .checkout .shipping_address {
	padding: 2px 0 0 0;
}
.woocommerce .checkout #tab-checkout_billing .shiping-address-continue {
	float: right;
}
.woocommerce-checkout .form-row.create-account {
	float: left;
}
.woocommerce .checkout .shipping_address .shiping-address-continue .button, .woocommerce .checkout #tab-checkout_billing .shiping-address-continue .button, .woocommerce .checkout .shiping-address-continue.shipping_address_bottom .button {
	margin: -12px 0 0 0;
	cursor: pointer;
}
.woocommerce .checkout .shiping-address-continue.shipping_address_bottom {
	float: right;
}
.woocommerce .checkout .shiping-address-continue.shipping_address_bottom .button {
	margin: 0 0 0 0;
}
.woocommerce .checkout .shiping-address-continue.shipping_address_bottom {
	margin-top: -54px;
}
.woocommerce .checkout #payment .payment_methods {
	list-style: none;
	padding: 0;
	margin: 0;
	padding-left: 26px;
}
.woocommerce .checkout #payment .payment_methods li {
	margin-bottom: 33px;
}
.woocommerce .checkout #payment .payment_methods li .payment_box {
	margin-top: 31px;
	padding: 21px 30px;
}
.woocommerce .checkout #payment .payment_methods li .payment_box p {
	margin: 0;
}

.woocommerce .checkout .place-order {
	float: right;
	margin: 0;
}
.woocommerce .checkout .place-order #place_order {
	margin: 0 0 0 0;
}
.woocommerce #order_review {
	padding-bottom: 36px;
}

.order_review_shop_table_wrapper {
	margin: 0 -15px;
	padding-top: 8px;
}
.woocommerce table.shop_table.order-details {
	width: 100%;
	border: 0;
	margin-bottom: 36px;
}
.checkout-cart-info > td {
	padding: 28px 50px 19px;
}
.woocommerce table.checkout-cart-info-table {
	width: 100%;
	border: 0;
}
.woocommerce table.checkout-cart-info-table tr {
	background-color: transparent;
}
.woocommerce table.checkout-cart-info-table tr:first-child {
	border-top: 0;
}
.woocommerce table.checkout-cart-info-table tr th {
	text-align: left;
	font-weight: normal;
}
.woocommerce table.checkout-cart-info-table tr th,
.woocommerce table.checkout-cart-info-table tr td {
	padding: 17px 0 21px 0;
}
.woocommerce table.shop_table.order-details thead tr th.product-name,
.woocommerce table.shop_table.order-details thead tr th.product-total {
	padding: 15px 0 19px 0;
	text-transform: uppercase;
}
.woocommerce table.shop_table.order-details thead tr th.product-name {
	width: 65%;
	text-align: left;
	padding-left: 174px;
}
.woocommerce table.shop_table.order-details thead tr th.product-total {
	width: 35%;
	text-align: right;
	padding-right: 111px;
}
.woocommerce table.shop_table.order-details tr.cart_item td.product-name,
.woocommerce table.shop_table.order-details tr.cart_item td.product-total,
.woocommerce table.shop_table.order-details tr.order_item td.product-name,
.woocommerce table.shop_table.order-details tr.order_item td.product-total {
	padding: 38px 0 34px 0;
}
.woocommerce table.shop_table.order-details tr.cart_item td.product-name,
.woocommerce table.shop_table.order-details tr.order_item td.product-name {
	text-align: left;
	padding-left: 40px;
}
.woocommerce table.shop_table.order-details tr.cart_item td.product-name .product-thumbnail,
.woocommerce table.shop_table.order-details tr.order_item td.product-name .product-thumbnail {
	display: inline-block;
	margin: 0 26px 0 0;
	vertical-align: middle;
}
.woocommerce table.shop_table.order-details tr.cart_item td.product-name .product-thumbnail img,
.woocommerce table.shop_table.order-details tr.order_item td.product-name .product-thumbnail img {
	width: 90px;
}
.woocommerce table.shop_table.order-details tr.cart_item td.product-name .product-info,
.woocommerce table.shop_table.order-details tr.order_item td.product-name .product-info {
	display: inline-block;
	vertical-align: middle;
}
.woocommerce table.shop_table.order-details tr.cart_item td.product-name .product-info .styled-subtitle,
.woocommerce table.shop_table.order-details tr.order_item td.product-name .product-info .styled-subtitle {
	margin-top: 0;
	margin-bottom: 0;
	text-transform: none;
}
.woocommerce table.shop_table.order-details tr.cart_item td.product-name .product-info dl.variation dt,
.woocommerce table.shop_table.order-details tr.order_item td.product-name .product-info dl.variation dt {
	float: left;
}
.woocommerce table.shop_table.order-details tr.cart_item td.product-name .product-info dl.variation dd,
.woocommerce table.shop_table.order-details tr.order_item td.product-name .product-info dl.variation dd {
}
.woocommerce table.shop_table.order-details tr.cart_item td.product-total,
.woocommerce table.shop_table.order-details tr.order_item td.product-total {
	text-align: right;
	padding-right: 57px;
}

@media only screen and (max-width:800px) {
	.woocommerce-billing-collumns .woocommerce-billing-collumn {
		display: block;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		margin-top: 62px;
	}
	.woocommerce-billing-collumns .woocommerce-billing-collumn:first-child {
		margin: 0;
	}
}
@media only screen and (max-width:540px) {
	.woocommerce .checkout_coupon .coupon {
		float: none;
	}
	.woocommerce .checkout_coupon .coupon #coupon_code {
		margin-right: 0;
		width: 100%;
		margin-bottom: 10px;
	}
}
.woocommerce ul.woocommerce-error {
	padding: 0;
	margin: 0 0 46px 0;
	list-style: none;
}
.woocommerce ul.woocommerce-error li {
	margin-top: 19px;
	padding: 17px 30px 15px 93px;
	position: relative;
}
.woocommerce ul.woocommerce-error li:first-child {
	margin: 0;
}
.woocommerce ul.woocommerce-error li strong {
	font-weight: normal;
}
.woocommerce ul.woocommerce-error li:before {
	position: absolute;
	left: 28px;
	top: 50%;
	font-size: 24px;
	font-family: 'thegem-icons';
	font-style: normal;
	content: '\e66a';
	font-weight: normal;
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 48px;
	text-align: center;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	margin-top: -25px;
}

.checkout-login-box, .checkout-lost-password-box {
	margin-bottom: 60px;
}
.checkout-lost-password-box {
	margin: 0;
}
.woocommerce .checkout-login-box .login-message-box {
	padding: 21px 35px 23px 35px;
	margin-bottom: 26px;
}

.woocommerce .checkout-login-box .woocommerce-info a {
	text-decoration: none;
}
.woocommerce .checkout-login-box .woocommerce-info a:hover {
	text-decoration: underline;
}
.woocommerce .checkout-login-box p {
	margin: 0;
}
.woocommerce .checkout-login-box h4 {
	margin: 0;
}
.woocommerce .checkout-login-box .login {
	margin-top: 27px;
}
.woocommerce #customer_login .checkout-login-box .login {
	margin: 0;
}
.woocommerce .checkout-login-box .login .form-row,
.woocommerce .checkout-lost-password-box .form-row {
	float: right;
	margin-top: 12px;
	margin-bottom: 24px;
}
.woocommerce .checkout-login-box .login .form-row .gem-button {
	padding-left: 70px;
	padding-right: 51px;
}
.woocommerce .checkout-lost-password-box .form-row {
	float: left;
	margin-bottom: 0;
	margin-top: 26px;
}
.woocommerce .checkout-login-box .login .form-row.form-row-first,
.woocommerce .checkout-login-box .login .form-row.form-row-last,
.woocommerce .checkout-lost-password-box .form-row.form-row-first,
.woocommerce .checkout-lost-password-box .form-row.form-row-last {
	float: left;
	margin-top: 0;
}
.woocommerce .checkout-login-box .login .form-row.form-row-first,
.woocommerce .checkout-lost-password-box .form-row.form-row-first,
.woocommerce .checkout-lost-password-box .form-row.form-row-last {
	margin-right: 30px;
}
.woocommerce .checkout-login-box .login .form-row label,
.woocommerce .checkout-lost-password-box .form-row label {
	display: block;
	margin-bottom: 12px;
}
.woocommerce .checkout-login-box .login .form-row .input-text,
.woocommerce .checkout-lost-password-box .form-row .input-text {
	width: 370px;
}
.woocommerce .checkout-login-box .lost_password a {
	font-size: 88.5%;
	line-height: 1.421;
	text-decoration: none;
}
.woocommerce .checkout-login-box .lost_password a:hover {
	text-decoration: underline;
}
#customer_login .checkout-login-box .login .login-row {
	margin: 0;
}
.woocommerce .checkout-login-box .login .form-row label.inline {
	display: inline-block;
	margin: 0 36px 0 8px;
	color: inherit;
	font-size: inherit;
}
.woocommerce .checkout-login-box .login .form-row .button,
.woocommerce .checkout-lost-password-box .form-row .button {
	margin-top: 0;
}
.checkout-lost-password-text {
	margin-bottom: 36px;
}
.woocommerce #customer_login {
	width: 100%;
}

.woocommerce .edit-address-form {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid transparent;
	padding: 56px 41px 65px 41px;
}
.woocommerce-account .woocommerce .edit-address-form {
	padding: 0;
	border: 0 none;
}
.woocommerce-account .woocommerce .main-account-title {
	margin-top: -10px;
}
.woocommerce-account .woocommerce h2 {
	margin-bottom: 12px;
}
.edit-address-form .form-row .chosen-container {
	width: 100% !important;
}
.woocommerce .edit-address-form .edit-address-form-save {
	float: right;
}
.woocommerce .edit-address-form .edit-address-form-save .button {
	margin: -7px 0 0 0;
}

.woocommerce table.shop_table.order-details.received-order {
	border: 1px solid transparent;
}

.woocommerce ul.order_details {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
}

.woocommerce ul.order_details li {
	margin: 11px 0 0 0;
	padding: 0 0 0 23px;
	position: relative;
}

.woocommerce ul.order_details li:before {
	content: '\e647';
	position: absolute;
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	left: 0;
}

.woocommerce ul.order_details li:first-child {
	margin: 0;
}

.order-bank-details h2 {
	margin: 30px 0 0 0;
}

table.myaccount-orders-table {
	width: 100%;
	margin-bottom: 36px;
	border: 1px solid transparent;
}

table.myaccount-orders-table thead th {
	padding: 7px 0 6px 0;
	font-size: 15px;
	text-align: center;
}

table.myaccount-orders-table tbody td {
	padding: 23px 0;
	text-align: center !important;
	border-top: 1px solid transparent;
}

table.myaccount-orders-table tbody tr:first-child td {
	border: 0;
}

table.myaccount-orders-table tbody td .button {
	margin: 0;
}

.order-info mark {
	font-weight: bold;
	background: transparent;
}

.woocommerce ul.digital-downloads {
	list-style: none;
	padding: 0;
	margin: 0;
}


.checkout-navigation-buttons {
	margin-top: 25px;
	margin-left: -10px;
	margin-right: -10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.checkout-navigation-buttons .checkout-prev-step,
.checkout-navigation-buttons .checkout-next-step,
.checkout-navigation-buttons .checkout-place-order {
	padding: 10px;
}

.checkout-navigation-buttons .checkout-prev-step button,
.checkout-navigation-buttons .checkout-next-step button,
.checkout-navigation-buttons .checkout-place-order button {
	margin: 0;
	position: relative;
}

.checkout-navigation-buttons .checkout-place-order button {
	border-width: 2px;
	border-style: solid;
}

@media (min-width: 992px) {
	.checkout-navigation-buttons .checkout-prev-step button {
		padding-left: 46px;
	}

	.checkout-navigation-buttons .checkout-next-step button {
		padding-right: 46px;
	}

	.checkout-navigation-buttons .checkout-place-order button {
		padding-left: 63px;
	}

	.checkout-navigation-buttons .checkout-prev-step button:before,
	.checkout-navigation-buttons .checkout-next-step button:before,
	.checkout-navigation-buttons .checkout-place-order button:before {
		content: '\e603';
		position: absolute;
		left: 15px;
		top: 0;
		bottom: 0;
		font-family: 'thegem-icons';
		font-style: normal;
		font-size: 25px;
		font-weight: normal;
	}

	.checkout-navigation-buttons .checkout-next-step button:before {
		content: '\e601';
		left: auto;
		right: 15px;
	}

	.checkout-navigation-buttons .checkout-place-order button:before {
		content: '\e668';
		left: 27px;
	}
}
@media (max-width: 992px) {
	.woocommerce .checkout-navigation-buttons .checkout-place-order button {
		line-height: 36px;
	}
}
@media (max-width: 499px) {
	.checkout-navigation-buttons .checkout-prev-step,
	.checkout-navigation-buttons .checkout-next-step,
	.checkout-navigation-buttons .checkout-place-order {
		flex-grow: 1;
		flex-basis: 50%;
	}
	.checkout-navigation-buttons .checkout-prev-step button,
	.checkout-navigation-buttons .checkout-next-step button,
	.checkout-navigation-buttons .checkout-place-order button {
		width: 100%;
	}
}


h2#order_review_heading {
	margin: 0 0 30px 0;
}

.woocommerce .woocommerce-checkout .woocommerce-checkout-payment-total {
	width: auto;
	float: right;
}

.woocommerce .woocommerce-checkout .shop_table tfoot > tr > td {
	padding-top: 1px;
	padding-bottom: 4px;
	padding-left: 0;
	padding-right: 0;
	border: 1px solid #ffffff;
	border-top: 0;
}

.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total th,
.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total td {
	text-align: left;
	border: 0;
	border-top: 1px solid #ffffff;
}

.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total tr:first-child th,
.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total tr:first-child td {
	border: 0;
}

.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total th {
	min-width: 150px;
	padding: 16px 55px 16px 0;
}

.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total td {
	min-width: 150px;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment #payment.woocommerce-checkout-payment .payment_methods {
	list-style: none;
	padding: 0;
	margin: 0;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment {
	margin-top: 69px;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods .payment_box,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .payment_box {
	padding: 50px 80px 51px 135px;
	margin: 23px 0 0 0;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	position: relative;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods .payment_box:before,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .payment_box:before {
	content: '\e646';
	width: 50px;
	height: 50px;
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 25px;
	line-height: 14px;
	font-weight: normal;
	position: absolute;
	left: 46px;
	top: 50%;
	margin-top: -25px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	text-align: center;
	line-height: 50px;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods li,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods li {
	margin: 0;
	border-top: 1px solid #ffffff;
	padding: 18px 0 20px 0;
}
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment.no-dividers .payment_methods li {
	border-top: 0 none;
}
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment #payment.woocommerce-checkout-payment .payment_methods li {
	margin: 0;
	padding: 18px 0 20px 0;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods li:last-child,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods li:last-child {
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment.no-dividers .payment_methods li:last-child {
	border-bottom: 0 none;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods li:first-child,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods li:first-child {
	border-top: 0;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods label,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods label {
	display: inline;
	vertical-align: middle;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods .radio-sign,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .radio-sign {
	width: 16px;
	height: 16px;
	border-width: 2px;
	margin-right: 12px;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods .radio-sign:before,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .radio-sign:before {
	width: 8px;
	height: 8px;
	margin-left: -4px;
	margin-top: -4px;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods .payment_method_paypal label img,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .payment_method_paypal label img {
	float: right;
	max-width: 165px;
	vertical-align: baseline;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .terms,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .terms {
	margin: 0 0 30px 0;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .terms label,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .terms label {
	display: inline;
	margin: 0;
	vertical-align: middle;
}

.woocommerce .woocommerce-checkout #ship-to-different-address {
	padding-bottom: 10px;
}

.woocommerce .woocommerce-checkout #ship-to-different-address label {
	vertical-align: middle;
	margin: 0;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper .checkbox-sign,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper .checkbox-sign,
.woocommerce .checkout-login-remember .checkbox-sign,
.woocommerce .woocommerce-checkout #ship-to-different-address .checkbox-sign,
.woocommerce .create-account-popup .checkbox-sign,
.woocommerce .wishlist_table .checkbox-sign,
.woocommerce .woocommerce-checkout-one-page .create-account .checkbox-sign {
	width: 24px;
	height: 24px;
	margin-right: 12px;
	border-width: 1px;
	vertical-align: middle;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .place-order,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .place-order {
	margin-top: 30px;
}

h2#order_review_heading,
.woocommerce-billing-fields h2,
h2#ship-to-different-address-title,
.checkout-login h2,
.checkout-signin h2,
.woocommerce .my-account-signup h2,
.create-account-popup h2 {
	padding-left: 60px;
	position: relative;
}

h2#order_review_heading:before,
.woocommerce-billing-fields h2:before,
h2#ship-to-different-address-title:before,
.checkout-login h2:before,
.checkout-signin h2:before,
.woocommerce .my-account-signup h2:before,
.create-account-popup h2:before {
	content: '\e663';
	display: inline-block;
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 48px;
	font-weight: normal;
	position: absolute;
	left: 0;
}
.checkout-login h2:before,
.checkout-signin h2:before,
.woocommerce .my-account-signup h2:before {
	left: -5px;
}

.woocommerce-billing-fields h2:before {
	content: '\e664';
}

h2#ship-to-different-address-title:before {
	content: '\e665';
}

.checkout-login h2:before {
	content: '\e666';
}

.checkout-signin h2:before {
	content: '\e667';
}

.woocommerce .my-account-signup h2:before {
	content: '\e667';
}

.create-account-popup h2:before {
	content: '\e622';
}

@media (max-width: 992px) {
	h2#order_review_heading,
	.woocommerce-billing-fields h2,
	h2#ship-to-different-address-title,
	.checkout-login h2,
	.checkout-signin h2,
	.woocommerce .my-account-signup h2,
	.create-account-popup h2 {
		padding-left: 0;
	}
	h2#order_review_heading:before,
	.woocommerce-billing-fields h2:before,
	h2#ship-to-different-address-title:before,
	.checkout-login h2:before,
	.checkout-signin h2:before,
	.woocommerce .my-account-signup h2:before,
	.create-account-popup h2:before {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 992px) {
	h2#order_review_heading,
	.woocommerce-billing-fields h2,
	h2#ship-to-different-address-title,
	.woocommerce-additional-fields > h2,
	.checkout-login h2,
	.checkout-signin h2,
	.woocommerce .my-account-signup h2,
	.create-account-popup h2 {
		font-size: 2.8646vw;
	}
}

.woocommerce .checkout-login .login .form-row .input-text,
.woocommerce .my-account-signup .register .form-row .input-text {
	width: 100%;
}
.woocommerce .my-account-signup .woocommerce-password-strength {
	padding-top: 15px;
}
.woocommerce .my-account-signup .woocommerce-password-hint {
	font-size: 14px;
	display: block;
}
.woocommerce-password-strength.bad,
.woocommerce-password-strength.short {
	color: #f44336;
}
.woocommerce-password-strength.good {
	color: #e6ac00;
}
.woocommerce-password-strength.strong {
	color: #3fc627;
}

.woocommerce .checkout-signin .checkout-as-guest {
	margin-bottom: 49px;
}

.woocommerce .checkout-signin .checkout-as-guest,
.woocommerce .checkout-signin .checkout-create-account {
	display: block;
}

.woocommerce .checkout-signin .checkout-as-guest button,
.woocommerce .checkout-signin .checkout-create-account button {
	display: block;
	width: 100%;
	margin: 0;
}

.checkout-login .login .form-row .checkout-login-remember {
	display: inline-block;
	vertical-align: middle;
	padding-top: 11px;
}

.checkout-login .login .form-row .checkout-login-remember label {
	display: inline-block;
	margin: 0 0 0 0;
	vertical-align: middle;
}

.woocommerce .checkout-login .checkout-login-button,
.woocommerce .my-account-signup .register .checkout-login-button {
	margin-right: 27px;
}

.woocommerce .checkout-login .checkout-login-button button,
.woocommerce .my-account-signup .register .checkout-login-button button {
	margin: 0;
}

.woocommerce .checkout-login .login .form-row.inline {
	display: inline-block;
	vertical-align: top;
}

.woocommerce .checkout-login .login .checkout-login-remember {
	margin-right: 17px;
}

.woocommerce .checkout-login .login .lost_password {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	padding: 13px 0 0 0;
	position: relative;
}

@media (min-width: 768px) {
	.woocommerce .checkout-login .login .lost_password {
		padding-left: 21px;
	}
	.woocommerce .checkout-login .login .lost_password:before {
		content: '';
		display: block;
		width: 1px;
		height: 30px;
		font-size: 0;
		position: absolute;
		left: 0;
		top: 10px;
	}
}

.woocommerce .lost_reset_password .restore-password-button {
	margin-top: 20px;
}

.woocommerce .lost_reset_password .gem-button {
	margin: 0;
}

.woocommerce .lost_reset_password p {
	margin: 0;
}

.woocommerce .lost_reset_password p.form-row input {
	float: none;
}

.woocommerce .lost_reset_password p.form-row {
	margin-top: 16px;
}

.woocommerce .lost_reset_password p.form-row.form-row-first,
.woocommerce .lost_reset_password p.form-row.form-row-last {
	width: 47%;
	margin-top: 30px;
}
@media (max-width: 767px) {
	.woocommerce .lost_reset_password p.form-row.form-row-first,
	.woocommerce .lost_reset_password p.form-row.form-row-last {
		width: auto;
	}
}

.woocommerce .lost_reset_password p.form-row.form-row-last {
	margin-top: 16px;
}


.woocommerce .order-customer-details h3 {
	margin: 0 0 25px 0;
}

.woocommerce .order-order-details {
	margin-top: 67px;
	margin-bottom: 77px;
}

.woocommerce .order-order-details .shop_table .product-total {
	min-width: 0;
}

.woocommerce .order-order-details h2 {
	margin: 0 0 41px 0;
}

#create-account-popup-overlay {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10000;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

.woocommerce .create-account-popup {
	display: none;
	width: 650px;
	max-width: 100%;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	padding: 45px 54px 56px 54px;
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 10001;
	visibility: visible;
	transform: translateX(-50%) translateY(-50%);
	box-shadow: 0 0 70px -20px rgba(56, 69, 84, 0.55);
	-moz-box-shadow: 0 0 70px -20px rgba(56, 69, 84, 0.55);
	-webkit-box-shadow: 0 0 70px -20px rgba(56, 69, 84, 0.55);
}

.woocommerce .create-account-popup .create-account-notice {
	margin: 0 0 18px 0;
}

.woocommerce .create-account-popup .create-account-checkbox {
	width: auto;
	margin-bottom: 20px;
	margin-right: 20px;
	flex-grow: 1;
}

.woocommerce .create-account-popup .checkout-create-account-button {
}

.woocommerce .create-account-popup .checkout-create-account-button button {
	margin: 0;
}

.woocommerce .create-account-popup .checkout-registration-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -15px -15px;
	padding-top: 15px;
}
.woocommerce .create-account-popup .checkout-registration-buttons .gem-button-container {
	padding: 15px;
}
.woocommerce .create-account-popup .checkout-registration-buttons .gem-button {
	margin: 0;
}

.woocommerce .create-account-popup .create-account-popup-bottom {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
}

.woocommerce .checkout .create-account-popup .form-row label.checkbox,
.woocommerce .checkout.woocommerce-checkout-one-page .form-row.create-account-checkbox label.checkbox {
	vertical-align: middle;
	margin: 0;
}

.woocommerce-checkout-review-order-table .responsive > tr > td {
	padding: 0;
	border: 0 none;
}
@media (max-width: 767px) {
	.woocommerce-checkout-review-order-table .no-responsive {
		display: none;
	}
	.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total th {
		padding-right: 0;
		min-width: 0;
	}
}
@media (min-width: 768px) {
	.woocommerce-checkout-review-order-table .responsive {
		display: none;
	}
}

.woocommerce-checkout-review-order-table .product-name .size-woocommerce_thumbnail {
	margin-right: 25px;
}

.woocommerce-checkout-review-order-table .product-name .product-wrap {
	display: flex;
	align-items: center;
}
.woocommerce-checkout-review-order-table .product-name .product-wrap dl.variation {
	margin: 0;
}

/* MODERN CHECKOUT */

.woocommerce-checkout-one-page-modern .checkout-contents[data-tab-content-id="checkout-billing"] {
	width: 60%;
}
.woocommerce-checkout-one-page-modern .checkout-contents[data-tab-content-id="checkout-payment"] {
	width: 40%;
}

.woocommerce-checkout-layout-one-page-modern .woocommerce input[type="text"].coupon-code {
	background: transparent;
}
.woocommerce-checkout-layout-one-page-modern #checkout-coupon-popup form.checkout_coupon {
	display: block !important;
	margin-bottom: 0;
	border: 0 none;
	padding: 0;
}
.woocommerce-checkout-layout-one-page-modern #checkout-coupon-popup form.checkout_coupon input[type="text"].coupon-code {
	margin-top: 0;
	margin-bottom: 0;
}
.woocommerce-checkout-layout-one-page-modern #checkout-coupon-popup form.checkout_coupon .gem-button {
	margin: 0;
}
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup form {
	width: 400px;
	max-width: 100%;
}
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup h3 {
	text-align: center;
	margin-top: 0;
}
@media (min-width: 768px) {
	.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .checkout-login-remember,
	.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .lost_password {
		padding-top: 0;
	}
}
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .checkout-login .login .lost_password:before {
	top: 0;
}
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .checkout-login .checkout-login-button {
	margin-right: 0;
	margin-top: 50px;
}
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .checkout-login .checkout-login-button button {
	padding-left: 45px;
	padding-right: 45px;
}
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .checkout-login .checkout-login-button button:hover {
	background: transparent;
}
.woocommerce .checkout.woocommerce-checkout-one-page-modern .woocommerce-billing-fields h3 {
	margin-top: 0;
}
.woocommerce .checkout.woocommerce-checkout-one-page-modern .checkbox-sign,
.woocommerce-checkout-layout-one-page-modern #checkout-login-popup .checkbox-sign {
	background: transparent;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern #customer_details > div:after {
	border: 0 none;
	margin-top: 0;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern .order-review-inner {
	padding-top: 1px;
	border-radius: 3px;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern .order-review-inner h3 {
	padding-left: 38px;
	padding-right: 38px;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern .woocommerce-checkout-review-order-table thead {
	display: none;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern #order_review table tbody th {
	font: inherit;
	text-transform: inherit;
	letter-spacing: inherit;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern #order_review table tbody tr.woocommerce-shipping-totals th {
	vertical-align: top;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern #order_review table tbody td {
	padding-top: 15px;
	padding-bottom: 15px;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern #order_review table tbody td.product-total {
	min-width: 0;
	padding-left: 10px;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern .shop_table .product-name img.attachment-shop_thumbnail,
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern .shop_table .product-name img.attachment-woocommerce_thumbnail {
	float: left;
	width: 65px;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern .shop_table .product-name .product-quantity {
	padding: 0 10px;
	border-radius: 10px;
	font-weight: normal;
	background-color: #e7edf0;
	font-size: 14px;
	white-space: nowrap;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern .shop_table  .product-name dl.variation {
	margin: 0 0 5px;
}
body.woocommerce-checkout-layout-one-page-modern .woocommerce .combobox-wrapper .combobox-button:before,
body.woocommerce-checkout-layout-one-page-modern #page .woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow:before {
	content: '\e602';
	font-size: 16px;
	text-align: center;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern #shipping_method .radio-sign {
	margin-right: 0;
	margin-left: 5px;
	width: 12px;
	height: 12px;
	border-width: 1px;
	border-style: solid;
	border-color: #99a9b5;
	background: #ffffff;
	margin-top: 8px;
}
.woocommerce-checkout-one-page.woocommerce-checkout-one-page-modern #shipping_method .radio-sign.checked:before {
	background: #393d50;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review .woocommerce-checkout-payment .payment_methods .radio-sign,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .radio-sign {
	width: 12px;
	height: 12px;
	border-width: 1px;
	border-style: solid;
	border-color: #99a9b5;
	background: #ffffff;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review .woocommerce-checkout-payment .payment_methods .radio-sign.checked:before,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .radio-sign.checked:before {
	width: 6px;
	height: 6px;
	margin-left: -3px;
	margin-top: -3px;
	background: #393d50;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review .woocommerce-checkout-payment .payment_methods .woocommerce-notice,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .thegem-te-checkout-payment #payment.woocommerce-checkout-payment .payment_methods .woocommerce-notice {
	font: inherit;
	text-transform: inherit;
	letter-spacing: inherit;
	padding: 30px;
	background: #e8edf1;
	border-bottom: 0 none;
	margin-top: 40px;
	border-radius: 3px;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review > table .order-total th,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review > table .order-total td {
	border-bottom-width: 1px !important;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review > table.no-dividers .order-total th,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review > table.no-dividers .order-total td {
	border-bottom-width: 0px !important;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review .woocommerce-checkout-payment .payment_methods li,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .thegem-te-checkout-payment #payment.woocommerce-checkout-payment .payment_methods li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review .woocommerce-checkout-payment .payment_methods li label,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .thegem-te-checkout-payment #payment.woocommerce-checkout-payment .payment_methods li label {
	display: flex;
	flex-grow: 1;
	align-items: center;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review .woocommerce-checkout-payment .payment_methods li label img,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .thegem-te-checkout-payment #payment.woocommerce-checkout-payment .payment_methods li label img {
	float: none;
	order: 2;
	padding: 2px 9px;
	border-radius: 3px;
	background: #ffffff;
	max-width: 140px;
	margin-left: auto;
	box-sizing: border-box;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review .woocommerce-checkout-payment .payment_methods li .payment_box,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .thegem-te-checkout-payment #payment.woocommerce-checkout-payment .payment_methods li .payment_box {
	width: 100%;
	min-width: 100%;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .thegem-te-checkout-payment #payment.woocommerce-checkout-payment .payment_methods li input {
	margin-right: 5px;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .woocommerce-terms-and-conditions {
	border-radius: 3px;
	padding: 15px 35px;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern #order_review .woocommerce-checkout-payment .payment_methods .woocommerce-notice:before,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .thegem-te-checkout-payment #payment.woocommerce-checkout-payment .payment_methods .woocommerce-notice:before {
	display: none;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .checkout-navigation-buttons {
	display: block;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .checkout-navigation-buttons .checkout-place-order button {
	padding: 0;
	line-height: 36px;
}
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page-modern .checkout-navigation-buttons .checkout-place-order button:before {
	display: none;
}
@media (max-width: 1023px) {
	.woocommerce-checkout-one-page-modern .checkout-contents[data-tab-content-id="checkout-billing"],
	.woocommerce-checkout-one-page-modern .checkout-contents[data-tab-content-id="checkout-payment"] {
		width: 100%;
	}
	.woocommerce-checkout-one-page-modern .checkout-contents[data-tab-content-id="checkout-billing"] {
		margin-bottom: 60px;
	}
}

.hide_label_new .product .new-label{
	display: none;
}
.hide_label_onsale .product .onsale{
	display: none;
}
.yith-wcwl-form .hidden-title-form {
	display: flex;
	align-items: center;
	width: 100%;
}
.yith-wcwl-form .hidden-title-form input[type="text"] {
	flex-grow: 1;
	min-width: 0;
}
.yith-wcwl-form .hidden-title-form input[type="submit"] {
	margin-right: 0;
}
@media (min-width: 768px) {
	.yith-wcwl-form .hidden-title-form {
		max-width: 50%;
	}
}

body:not(.woocommerce-cart-layout-modern) .woocommerce .woocommerce-order .cart_totals {
	width: 100%;
	margin-bottom: 0;
}

/* ORDER MODERN */

body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .woocommerce-cart-checkout-steps-content {
	margin-bottom: 70px;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .woocommerce-notice {
	padding: 10px;
	border-radius: 3px;
	margin-bottom: 55px;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .woocommerce-order-overview {
	margin-bottom: 50px;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .woocommerce-order-overview li + li {
	margin-top: 15px;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .woocommerce-order-overview li strong {
	font: inherit;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .order-order-details {
	margin-top: 50px;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .cart_totals {
	padding: 5px 35px;
	border-radius: 3px;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .cart_totals table tr:first-child th,
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .cart_totals table tr:first-child td,
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .cart_totals table tr:first-child th,
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .cart_totals table tr:first-child td {
	border-top: 0 none;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .cart_totals table tr th,
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .cart_totals table tr td {
	background: transparent;
}
body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .cart_totals table tr td a.order-actions-button {
	margin: 0 0 0 10px;
}
@media (max-width: 767px) {
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .woocommerce-order-overview {
		margin-bottom: 25px;
	}
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .order-order-details {
		margin-top: 0;
	}
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .shop_table thead,
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .shop_table thead {
		display: none;
	}
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .shop_table tbody tr:first-child td,
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .shop_table tbody tr:first-child td {
		border-top: 0 none;
		padding-top: 0;
	}
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .shop_table tbody td.product-name,
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .shop_table tbody td.product-name {
		padding-left: 15px;
		padding-right: 15px;
	}
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .shop_table tbody td.product-quantity,
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .shop_table tbody td.product-quantity {
		padding-left: 12px;
		padding-right: 12px;
	}
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .shop_table tbody td.product-subtotal,
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .shop_table tbody td.product-subtotal {
		padding-left: 12px;
	}
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-shipments.shop_table tr td {
		padding: 17px 7px;
	}
}
@media (max-width: 450px) {
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .shop_table tbody td.product-thumbnail,
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .shop_table tbody td.product-thumbnail {
		display: none;
	}
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-order .shop_table tbody td.product-name,
	body.woocommerce-cart-layout-modern .woocommerce .woocommerce-MyAccount-content .shop_table tbody td.product-name {
		padding-left: 0;
	}
}

/* ORDER ACCOUNT */

.woocommerce .woocommerce-account-modern .checkout-login .checkout-login-button,
.woocommerce .woocommerce-account-modern .my-account-signup .register .checkout-login-button {
	margin-top: 15px;
}
.woocommerce .woocommerce-account-modern .checkout-login .login .form-row .checkout-login-remember,
.woocommerce .woocommerce-account-modern .checkout-login .login .lost_password {
	margin-top: 10px;
}

@media (max-width: 992px) {
	.woocommerce .woocommerce-account-modern .checkout-login .checkout-login-button,
	.woocommerce .woocommerce-account-modern .my-account-signup .register .checkout-login-button {
		display: block;
	}
}

@media (max-width: 1199px) {
	.woocommerce-account-modern.row {
		margin-top: -3em !important;
	}
	.woocommerce-account-modern.row > * {
		margin-top: 3em !important;
	}
}

.single-product-content .price del {
	margin-right: 15px;
}
.single-product-content form.cart .gem-button {
	margin-top: 0;
	margin-bottom: 0;
	margin-right: 16px;
}
.single-product-content form.cart .gem-button .gem-icon-cart:before {
	content: '\e613';
	font-size: 24px;
}
.single-product-content .gem-button .gem-icon-add-to-wishlist:before,
.thegem-te-product-add-to-cart .gem-button .gem-icon-add-to-wishlist:before,
.thegem-te-product-add-to-wishlist .gem-button .gem-icon-add-to-wishlist:before {
	content: '\e66b';
	font-size: 24px;
}
.single-product-content .gem-button .gem-icon-added-to-wishlist:before,
.thegem-te-product-add-to-cart .gem-button .gem-icon-added-to-wishlist:before,
.thegem-te-product-add-to-wishlist .gem-button .gem-icon-added-to-wishlist:before {
	content: '\e641';
	font-size: 24px;
}
.single-product-content .gem-button .gem-icon-browse-wishlist:before,
.thegem-te-product-add-to-cart .gem-button .gem-icon-browse-wishlist:before,
.thegem-te-product-add-to-wishlist .gem-button .gem-icon-browse-wishlist:before {
	content: '\e66c';
	font-size: 24px;
}
.single-product-content form.cart .quantity:not(.buttons_added) {
	float: none;
	display: inline-block;
	vertical-align: top;
	height: 40px;
	width: 40px;
	border-radius: 3px;
}
.single-product-content form.cart .quantity:not(.buttons_added) .qty{
	line-height: 38px;
	height: 100%;
	width: 100%;
	padding: 0 5px;
}
.single-product-content[data-layout="legacy"] .table.variations{
	margin-bottom: 60px;
}
.single-product-content form.cart table.variations th{
	padding-right: 15px;
}
.single-product-content form.cart table.variations td{
	position: relative;
}
.single-product-content form.cart table.variations td > .reset_variations{
	position: absolute;
	left: 0;
	top: 100%;
	margin: 0;
}
.block-product-navigation-prev .gem-button {
	padding-left: 3px;
	padding-right: 14px;
}
.block-product-navigation-prev .gem-button .gem-print-icon {
	margin-right: 3px;
}
.block-product-navigation-next .gem-button {
	padding-right: 3px;
	padding-left: 14px;
}
.block-product-navigation-next .gem-button .gem-print-icon {
	margin-left: 3px;
}
#reviews .comment_container {
	padding: 33px 40px 45px;
	margin-bottom: 40px;
	display: flex;
}
#reviews .avatar {
	height: 70px;
	width: 70px;
	border-radius: 50%;
	margin-bottom: 0;
	margin-top: 0;
	margin-right: 20px;
}
#reviews .comment-text {
	width: 100%;
	padding-top: 0;
}
#reviews .star-rating {
	float: right;
	margin-top: 12px;
}
#reviews .meta {
	margin-top: 10px;
}
#reviews .comment-text .description {
	padding-top: 20px;
}
#reviews .comment-text .description > :first-child {
	margin-top: 0;
}
#reviews .comment-text .description > :last-child {
	margin-bottom: 0;
}

.single-product-content .size-guide {
	margin-top: 25px;
}
.single-product-content .size-guide a:before {
	content: '\e669';
	vertical-align: middle;
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 16px;
	font-weight: normal;
	margin-right: 5px;
}

.single-product-content .rating-divider {
	height: 4px;
	margin-bottom: 30px;
}

.single-product-content .woocommerce-product-rating {
	margin-bottom: 15px;
}

.single-product-content .woocommerce-product-rating .star-rating {
	font-size: 24px;
}
.woocommerce .single-product-content .woocommerce-product-rating,
.woocommerce-page .single-product-content .woocommerce-product-rating {
	line-height: inherit;
}

.woocommerce .single-product-content .woocommerce-review-link,
.woocommerce-page .single-product-content .woocommerce-review-link {
	display: inline-block;
	vertical-align: bottom;
	line-height: 1em;
}

.related-products .products.inline-row .product.inline-column {
	min-width: 200px;
}
.related-products .products .product-info {
	padding-bottom: 15px;
}
.related-products .products .product-info .product-title {
	margin-top: 0;
}

.products .product-info .product-title a {
	color: inherit;
}

.products .product-info .product-rating {
	min-height: 16px;
}

.products .product-inner {
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.related-products .gem-button-separator-holder,
.related-products .gem-button-separator-button,
.upsells .gem-button-separator-holder,
.upsells .gem-button-separator-button,
.cross-sells .gem-button-separator-holder,
.cross-sells .gem-button-separator-button {
	width: 20%;
}
.related-products .gem-button-separator-holder,
.upsells .gem-button-separator-holder,
.cross-sells .gem-button-separator-holder {
	width: 10%;
}

.single-product-content .product_title {
	margin-bottom: 20px;
}

.single-product-content form.cart {
	margin-top: 30px;
}

.single-product-content .gem-gallery {
	margin-bottom: 95px;
}
.single-product-content.catalog-view .gem-gallery {
	margin-bottom: 20px;
}
.single-product-content .socials-sharing {
	margin-bottom: 20px;
}
.single-product-content .product-meta > div {
	margin-bottom: 7px;
}
.single-product-content-bottom .woocommerce-tabs {
	margin-top: 57px;
	margin-bottom: 40px;
}

.with-sidebar .single-product-content .gem-gallery .gem-gallery-thumbs-carousel-wrap {
	padding: 0 25px;
}
.with-sidebar .single-product-content .gem-gallery .gem-gallery-thumbs-navigation .gem-prev,
.with-sidebar .single-product-content .gem-gallery .gem-gallery-thumbs-navigation .gem-next {
	width: 25px;
}
.with-sidebar .single-product-content .gem-gallery .gem-gallery-thumbs-navigation .gem-prev:not(:hover):after,
.with-sidebar .single-product-content .gem-gallery .gem-gallery-thumbs-navigation .gem-next:not(:hover):after {
	background: transparent;
}
.with-sidebar .single-product-content .gem-gallery .gem-gallery-thumbs-navigation .gem-prev:after {
	content: '\e636';
}
.with-sidebar .single-product-content .gem-gallery .gem-gallery-thumbs-navigation .gem-next:after {
	content: '\e634';
}
.with-sidebar .single-product-content .gem-gallery .gem-gallery-thumbs-carousel-wrap .gem-gallery-item {
	margin: 0 7px;
}

.woocommerce-tabs #tab-additional_information .vc_tta-panel-body {
	padding: 0;
}

.gem-woocommerce-tabs #tab-additional_information .shop_attributes th,
.gem-woocommerce-tabs #tab-additional_information .shop_attributes td {
	font: inherit;
}

.gem-woocommerce-tabs #tab-additional_information .shop_attributes tr:nth-child(even) th {
	background-color: #e6ebe9;
}
.gem-woocommerce-tabs #tab-additional_information .shop_attributes tr:nth-child(odd) th {
	background-color: #f0f3f2;
}
.gem-woocommerce-tabs #tab-additional_information .shop_attributes tr:nth-child(even) td {
	background-color: #ebf0ef;
}
.gem-woocommerce-tabs #tab-additional_information .shop_attributes tr:nth-child(odd) td {
	background-color: #f4f7f6;
}

.comment-form .comment-form-rating label {
	margin-bottom: 10px;
}

#review_form .comment-form .gem-button.submit {
	margin-bottom: 0;
}

table.variations td.label label {
	line-height: 38px;
}

.back-to-shop-button {
	margin-top: -6px;
}

#yith-wcwl-popup-message {
	display: none !important;
}

.single-product-content .socials-sharing {
	margin-left: -10px;
}

.reset_variations {
	margin-top: 10px;
	display: block;
}
table.variations {
	margin-bottom: 60px;
}
.woo-modal-product table.variations {
	margin-bottom: 15px;
}

.single-product-content .price {
	font-size: 36px;
	line-height: 1;
}
.single-product-content .price del {
	font-size: 24px;
}
.single-product-content .single_variation .price {
	font-size: 50px;
}
.single-product-content .single_variation .price del {
	font-size: 24px;
}

/* MINI CART */

.widget_shopping_cart ul.cart_list li {
	padding-top: 10px;
}
.widget_shopping_cart ul li img {
	height: 80px;
	width: 80px;
}
.widget_shopping_cart ul li .minicart-image {
	float: left;
	margin-right: 18px;
	position: relative;
	margin-top: -10px;
}
.widget_shopping_cart ul li .minicart-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	opacity: 0;
	z-index: 1;
	background: rgba(0, 188, 212, 0.3);
}
.widget_shopping_cart ul li a:hover .minicart-image:after {
	opacity: 1;
}
.widget_shopping_cart ul li.sale .minicart-image:before {
	content: '%';
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: absolute;
	right: -11px;
	top: 4px;
	z-index: 2;
	line-height: 24px;
	text-align: center;
	text-indent: -1px;
}
.widget_shopping_cart ul li {
	display: inline-block;
	padding: 4px 0 0 0;
	margin: 26px 0 0 0;
	width: 100%;
	border: 0;
	position: relative;
}
.widget_shopping_cart ul li .variation {
	display: none;
}
.widget_shopping_cart ul li.empty {
	padding-bottom: 25px;
}
.widget_shopping_cart ul li:first-child {
	margin: 0;
}
.widget_shopping_cart ul li a {
	display: block;
	margin: 0 10px 0 0;
	border: 0;
	padding: 0;
}
.widget_shopping_cart ul li a.remove {
	display: none;
}
.widget_shopping_cart ul li .quantity {
	display: inline-block;
	margin-top: 4px;
}
.widget_shopping_cart ul.cart_list li .cart-item-info {
	margin-left: 85px;
	padding-top: 5px;
}
.widget_shopping_cart .quantity {
	font-size: 123.5%;
	line-height: 1.421;
}
.widget_shopping_cart .minicart-bottom {
	margin-top: 25px;
}
.widget_shopping_cart .minicart-bottom {
	padding: 20px 20px 20px;
}
.widget_shopping_cart .total {
	padding: 15px 0 0;
	margin-top: 24px;
	display: flex;
	justify-content: space-between;
}
.widget_shopping_cart .total strong {
	display: inline-block;
	padding-top: 7px;
	font: inherit;
}
.widget_shopping_cart .total span.amount {
}
.widget_shopping_cart .buttons {
	display: flex;
	flex-wrap: wrap;
	padding: 8px 0 17px;
	margin: -6px;
}
.widget_shopping_cart .buttons a {
	margin: 0;
}
.widget_shopping_cart .buttons .mini-cart-view-cart {
}
.widget_shopping_cart .buttons .mini-cart-view-cart .gem-button {
	border: 2px solid transparent;
	line-height: 26px;
}
.widget_shopping_cart .buttons .mini-cart-checkout {
}
.widget_shopping_cart .minicart .buttons a {
	margin: 0;
	width: 100%;
}

.widget_shopping_cart .buttons .mini-cart-view-cart {
	flex: 1;
	margin: 6px;
	flex-basis: auto;
}
.widget_shopping_cart  .buttons .mini-cart-view-cart .gem-button {
	border: 2px solid transparent;
	line-height: 26px;
}
.widget_shopping_cart  .buttons .mini-cart-checkout {
	flex: 1;
	margin: 6px;
	flex-basis: auto;
}
.widget_shopping_cart .cart_list .empty {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border: 0 none;
	margin-bottom: 1.421em;
}

.single-product-content .yith-wcwl-add-to-wishlist {
	display: inline-block;
	vertical-align: top;
}

.single-product-content .yith-wcwl-add-to-wishlist .hide {
	display: none;
}

.single-product-content form.cart .yith-wcwl-add-to-wishlist .gem-button {
	margin: 0;
}

.woocommerce .gem-table {
	border: 0;
}

.woocommerce .shop_table td.product-price,
.woocommerce .shop_table td.product-subtotal,
.woocommerce .wishlist_table .product-info .product-info-content .product-price {
	font-family: var(--thegem-to-product-price-cart-font-family);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-size: var(--thegem-to-product-price-cart-font-size-tiny);
	line-height: var(--thegem-to-product-price-cart-line-height-tiny);
	text-transform: var(--thegem-to-product-price-cart-text-transform);
	letter-spacing: var(--thegem-to-product-price-cart-letter-spacing, normal);
}

.woocommerce .shop_table.wishlist_table td.product-price,
.woocommerce .wishlist_table .product-info .product-info-content .product-price {
	font-size: 24px;
}

.woocommerce .shop_table.wishlist_table td.product-price del,
.woocommerce .wishlist_table .product-info .product-info-content .product-price del {
	color: #99a9b5;
	font-size: 20px;
}

.woocommerce .shop_table td.product-subtotal {
	font-size: 24px;
}

.woocommerce .woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-price,
.woocommerce .woocommerce-cart-form.responsive .cart-item .gem-table .shop_table td.product-subtotal {
	font-family: var(--thegem-to-product-price-cart-font-family);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-size: var(--thegem-to-product-price-cart-font-size-tiny);
	line-height: var(--thegem-to-product-price-cart-line-height-tiny);
	text-transform: var(--thegem-to-product-price-cart-text-transform);
	letter-spacing: var(--thegem-to-product-price-cart-letter-spacing, normal);
}

.woocommerce .woocommerce-checkout .checkout-payment .shop_table td.product-total .amount {
	font-family: var(--thegem-to-product-price-cart-font-family);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-size: var(--thegem-to-product-price-cart-font-size-tiny);
	line-height: var(--thegem-to-product-price-cart-line-height-tiny);
	text-transform: var(--thegem-to-product-price-cart-text-transform);
	letter-spacing: var(--thegem-to-product-price-cart-letter-spacing, normal);
}

.woocommerce .shop_table .product-quantity input[type="number"] {
	color: #5f727f;
}

.woocommerce .shop_table tr.cart_item:nth-child(2n) td {
	background: #f0f3f2;
}

.woocommerce .shop_table thead tr th,
.product-info .product-info-header > div {
	background: #b6c6c9;
	border-color: #b6c6c9;
}

.woocommerce-cart-form.responsive .cart-item .gem-table thead th {
	font-size: 14px;
}

.woocommerce .shop_table tbody tr td,
.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total th,
.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total td,
.woocommerce .woocommerce-checkout .shop_table tfoot > tr > td {
	border-color: #dfe5e8;
}

.woocommerce .shop_table tr td.product-remove .remove {
	background: #f44336;
	color: #ffffff;
	text-shadow: 0 0 1px #ffffff;
}

.woocommerce input[type="text"].coupon-code {
	font-size: 16px;
	color: #99a9b5;
	font-weight: 400;
	background: #f5f7f6;
}

.woocommerce .woocommerce-cart-form .actions .submit-buttons button.button {
	font-size: 19px;
}

.woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button {
	background: #00bcd4;
}

.woocommerce .woocommerce-cart-form .actions .submit-buttons .update-cart button:not([aria-disabled="true"]):hover {
	border-color: #00bcd4;
	background-color: transparent;
	color: #00bcd4;
}

.woocommerce .woocommerce-cart-form .actions .submit-buttons .checkout-button-button .checkout-button,
.woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button {
	background: #393d50;
}

.woocommerce .woocommerce-cart-form .actions .submit-buttons .checkout-button-button .checkout-button:hover,
.woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button:hover {
	border-color: #393d50;
	background-color: transparent;
	color: #393d50;
}

body .woocommerce .woocommerce-cart-form .actions .submit-buttons .checkout-button-button .checkout-button:hover,
.woocommerce .wc-proceed-to-checkout .checkout-button-button .checkout-button:hover {
	background-color: transparent;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
	border-color: #dfe5e8;
}

.woocommerce .order-details-column .cart_totals table td {
	color: #5f727f;
}

.woocommerce .cart_totals table th {
	font-family: var(--thegem-to-body-font-family);
	font-weight: var(--thegem-to-body-font-weight);
	font-style: var(--thegem-to-body-font-style);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
	text-transform: var(--thegem-to-body-text-transform);
	letter-spacing: var(--thegem-to-body-letter-spacing);

	color: var(--thegem-to-body-color);
	background-color: #f0f3f2;
}

.woocommerce .cart_totals table td .amount {
	font-family: var(--thegem-to-product-price-cart-font-family);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-style: var(--thegem-to-product-price-cart-font-style);
	font-size: var(--thegem-to-product-price-cart-font-size-tiny);
	line-height: var(--thegem-to-product-price-cart-line-height-tiny);
	text-transform: var(--thegem-to-product-price-cart-text-transform);
	letter-spacing: var(--thegem-to-product-price-cart-letter-spacing, normal);
}

.woocommerce .cart_totals table tr.order-total td .amount {
	font-size: var(--thegem-to-product-price-cart-font-size);
	line-height: var(--thegem-to-product-price-cart-line-height);
}

.woocommerce .cart_totals table tr td {
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
}

.woocommerce .cart_totals table tr td #shipping_method li label,
.woocommerce .order-totals table tr td #shipping_method li label,
.woocommerce .cart_totals table tr td #shipping_method li label .amount,
.woocommerce .order-totals table tr td #shipping_method li label .amount,
.woocommerce-shipping-destination span {
	font-family: var(--thegem-to-body-font-family);
	font-weight: var(--thegem-to-body-font-weight);
	font-style: var(--thegem-to-body-font-style);
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	text-transform: var(--thegem-to-body-text-transform);
	letter-spacing: var(--thegem-to-body-letter-spacing);
}

.woocommerce #shipping_method .radio-sign {
	background-color: #b6c6c9;
	border: 0px;
}

.woocommerce #shipping_method .radio-sign:before {
	background-color: #ffffff;
}

.woocommerce .payment_methods .radio-sign {
	background-color: #ffffff;
}

.woocommerce .payment_methods .radio-sign:before {
	background-color: #3c3950;
}

.woocommerce .woocommerce-shipping-calculator .form-row input.input-text {
	font-size: 16px;
	color: #99a9b5;
	font-weight: 400;
	background: #ffffff;
}

.woocommerce .cross-sells .product .product-title {
	font-family: var(--thegem-to-body-font-family);
	font-weight: var(--thegem-to-body-font-weight);
	font-style: var(--thegem-to-body-font-style);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
	text-transform: var(--thegem-to-body-text-transform);
	letter-spacing: var(--thegem-to-body-letter-spacing);
}


.cross-sells-title span.placeholder span {
	border-top-color: #ffda75;
	border-bottom-color: #ffda75;
}

.checkout-steps .checkout-step,
.checkout-steps .checkout-step:before,
.checkout-steps .checkout-step:after {
	background: #e9f0ef;
}

.checkout-steps .checkout-step.active,
.checkout-steps .checkout-step.before-active:before,
.checkout-steps .checkout-step.before-active:after {
	background: #ffd453;
	color: #3c3950;
}

.woocommerce .checkout .form-row .input-text,
.woocommerce .edit-address-form .form-row .input-text,
.woocommerce .checkout .form-row textarea.input-text,
.woocommerce .edit-address-form .form-row textarea.input-text,
.select2-search .select2-input,
.woocommerce .checkout-login .login .form-row .input-text,
.woocommerce .lost_reset_password .input-text,
.woocommerce .my-account-signup .register .form-row .input-text,
.yith-wcwl-form .hidden-title-form input[type="text"] {
	background-color: #ffffff;
	border-color: #dfe5e8;
	color: #99a9b5;
}

.chosen-container-single .chosen-single span,
.select2-container .select2-choice > .select2-chosen,
.select2-results .select2-result-label {
	color: #99a9b5;
}

.woocommerce .checkout .form-row label abbr,
.woocommerce .edit-address-form .form-row label abbr,
.woocommerce .checkout-login .login .form-row label span.required,
.woocommerce .my-account-signup .register .form-row label span.required {
	color: #f44336;
}

.woocommerce .chosen-container-single .chosen-single div,
.woocommerce .edit-address-form .form-row .chosen-container-single .chosen-single div,
.woocommerce .select2-container .select2-choice .select2-arrow {
	background-color: #ffffff;
}

.woocommerce .chosen-container-single .chosen-single div:before,
.woocommerce .edit-address-form .form-row .chosen-container-single .chosen-single div:before,
.woocommerce .select2-container .select2-choice .select2-arrow:before {
	color: #99a9b5;
}

.select2-results {
	background-color: #ffffff;
}

.checkout-navigation-buttons .checkout-prev-step button {
	border-color: #000000;
	color: #000000;
}

.checkout-navigation-buttons .checkout-prev-step button:hover {
	background: #000000;
	color: #ffffff;
}

.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total th {
	font-family: var(--thegem-to-body-font-family);
	font-weight: var(--thegem-to-body-font-weight);
	font-style: var(--thegem-to-body-font-style);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
	text-transform: var(--thegem-to-body-text-transform);
	letter-spacing: var(--thegem-to-body-letter-spacing);
}

.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total .order-total td .amount {
	font-family: var(--thegem-to-product-price-cart-font-family);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-style: var(--thegem-to-product-price-cart-font-style);
	font-size: var(--thegem-to-product-price-cart-font-size);
	line-height: var(--thegem-to-product-price-cart-line-height);
	text-transform: var(--thegem-to-product-price-cart-text-transform);
	letter-spacing: var(--thegem-to-product-price-cart-letter-spacing, normal);
}

.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total .cart-subtotal td .amount {
	font-family: var(--thegem-to-product-price-cart-font-family);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-style: var(--thegem-to-product-price-cart-font-style);
	font-size: var(--thegem-to-product-price-cart-font-size-tiny);
	line-height: var(--thegem-to-product-price-cart-line-height-tiny);
	text-transform: var(--thegem-to-product-price-cart-text-transform);
	letter-spacing: var(--thegem-to-product-price-cart-letter-spacing, normal);
}

.woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total .shipping td {
	color: #99a9b5;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods .payment_box,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .payment_box {
	color: #3c3950;
	background-color: #a3e7f0;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods .payment_box:before,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .payment_box:before {
	color: #3c3950;
	background-color: #84b2c0;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .payment_methods li,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods li {
	border-color: #dfe5e8;
}

.checkout-navigation-buttons .checkout-place-order button {
	background-color: #00bcd4;
	border-color: #00bcd4;
	line-height: 46px;
}

.checkout-navigation-buttons .checkout-place-order button:hover {
	background-color: #ffffff;
	color: #00bcd4;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .terms .checkbox-sign:before,
.woocommerce .woocommerce-checkout #order_review .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper .checkbox-sign:before,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .terms .checkbox-sign:before,
.woocommerce .woocommerce-checkout .thegem-te-checkout-payment .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper .checkbox-sign:before,
.woocommerce .checkout-login-remember .checkbox-sign:before,
.woocommerce .woocommerce-checkout #ship-to-different-address .checkbox-sign:before,
.woocommerce .create-account-popup .checkbox-sign:before,
.woocommerce .wishlist_table .checkbox-sign:before,
.woocommerce .checkout.woocommerce-checkout-one-page .form-row.create-account-checkbox .checkbox-sign:before,
.woocommerce .checkout.woocommerce-checkout-one-page .form-row.create-account .checkbox-sign:before {
	color: #3c3950;
}

.woocommerce .checkout-login .login .form-row label,
.lost_reset_password .form-row label,
.woocommerce .my-account-signup .register .form-row label {
	color: #5f727f;
}

.woocommerce .checkout-signin .checkout-create-account button {
	background-color: #00bcd4;
}

.woocommerce .checkout-signin .checkout-create-account button:hover {
	background-color: #3c3950;
}

.checkout-login .login .form-row .checkout-login-remember label {
	color: #99a9b5;
}

.woocommerce .checkout-login .login .lost_password:before {
	background-color: #dfe5e8;
}

.woocommerce ul.woocommerce-error li {
	background-color: #fcc6c2;
	font-size: 16px;
	color: #3c3950;
}

.woocommerce ul.woocommerce-error li strong {
	text-transform: uppercase;
	font-weight: 400;
}

.woocommerce ul.woocommerce-error li:before {
	background-color: #f44336 !important;
}

.order-customer-details,
.order-customer-details address {
	line-height: 36px;
	font-style: normal;
}

.woocommerce ul.order_details li:before {
	color: #6eb667;
}

.woocommerce .create-account-popup {
	background-color: #ffffff;
	border-color: #dfe5e8;
}

#create-account-popup-overlay {
	background-color: #393d50;
}

.shop_table .product-name dl.variation {
	color: #99a9b5;
}

.woocommerce-cart .custom-header .breadcrumbs .current,
.woocommerce-checkout .custom-header .breadcrumbs .current,
.woocommerce-wishlist .custom-header .breadcrumbs .current,
.woocommerce-account .page-title-block .breadcrumbs .current {
	color: #99a9b5;
	/*border-color: #ff5252;*/
}

.woocommerce-cart .custom-header .breadcrumbs span a,
.woocommerce-checkout .custom-header .breadcrumbs span a,
.woocommerce-wishlist .custom-header .breadcrumbs span a,
.woocommerce-account .page-title-block .breadcrumbs span a {
	color: #00bcd4;
}

.woocommerce-cart .custom-header .breadcrumbs span a:hover,
.woocommerce-checkout .custom-header .breadcrumbs span a:hover,
.woocommerce-wishlist .custom-header .breadcrumbs span a:hover,
.woocommerce-account .page-title-block .breadcrumbs span a:hover {
	color: #384554;
}

.woocommerce-cart .custom-header .breadcrumbs .divider .bc-devider:before,
.woocommerce-checkout .custom-header .breadcrumbs .divider .bc-devider:before,
.woocommerce-wishlist .custom-header .breadcrumbs .divider .bc-devider:before,
.woocommerce-account .page-title-block .breadcrumbs .divider .bc-devider:before {
	color: #5f727f;
}

.woocommerce .wishlist_table td.product-stock-status .wishlist-in-stock,
.woocommerce .wishlist_table .product-info .product-info-content .product-stock-status .wishlist-in-stock {
	color: #5f727f;
}

.woocommerce .wishlist_table td.product-stock-status .wishlist-out-of-stock,
.woocommerce .wishlist_table .product-info .product-info-content .product-stock-status .wishlist-out-of-stock {
	color: #f44336;
}

.yith-wcwl-share .yith-wcwl-share-title {
	font-family: var(--thegem-to-product-price-cart-font-family);
	font-weight: var(--thegem-to-product-price-cart-font-weight);
	font-style: var(--thegem-to-product-price-cart-font-style);
	font-size: var(--thegem-to-product-price-cart-font-size);
	line-height: var(--thegem-to-product-price-cart-line-height);
	text-transform: var(--thegem-to-product-price-cart-text-transform);
	letter-spacing: var(--thegem-to-product-price-cart-letter-spacing, normal);
}

.product-info .product-info-header > div {
	font-size: 14px;
	text-transform: uppercase;
}

.product-info .product-info-content,
.woocommerce-wishlist  .wishlist-content.responsive .cart-item {
	border-color: #dfe5e8;
}

.woocommerce-checkout-one-page #customer_details > div:after {
	border-bottom-color: #00b8d4;
}

.woocommerce-checkout-one-page .checkout-payment {
	background-color: #f0f3f2;
}

.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page #order_review .woocommerce-checkout-payment .payment_methods .payment_box,
.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .thegem-te-checkout-payment .woocommerce-checkout-payment .payment_methods .payment_box {
	font-size: 14px;
	color: #99a9b5;
}

.woocommerce-checkout-one-page #order_review table thead th,
.woocommerce-checkout-one-page #order_review > table .order-total th,
.woocommerce-checkout-one-page #order_review > table .order-total td {
	border-bottom: 3px solid #dfe5e8 !important;
}

.woocommerce-checkout-one-page #order_review table tbody th,
.woocommerce-checkout-one-page #order_review table tbody td {
	border-color: #dfe5e8;
}

.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .checkout-payment .shop_table td.product-total .amount {
	color: #3c3950;
}

.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total .order-total td .amount {
	font-size: calc(var(--thegem-to-product-price-cart-font-size) * 1.34);
}

@media (max-width: 768px) {
	.woocommerce .woocommerce-checkout.woocommerce-checkout-one-page .shop_table.woocommerce-checkout-payment-total .order-total td .amount {
		font-size: var(--thegem-to-product-price-cart-font-size-tiny);
		line-height: var(--thegem-to-product-price-cart-line-height-tiny);
	}
}

.woocommerce .woocommerce-checkout-one-page #shipping_method .radio-sign + label {
	font-size: 14px;
	line-height: 18px;
	color: #5f727f;
}

.checkout-order-review-pattern {
	background: #ffffff;
}

.woocommerce .woocommerce-checkout-one-page .checkout-navigation-buttons .checkout-place-order button:hover {
	background-color: transparent;
}

body.woocommerce-cart-layout-modern .woocommerce .shop_table .product-quantity input[type="number"],
body.woocommerce-cart-layout-modern .woocommerce .order-details-column .cart_totals table td,
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table th,
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table tr td #shipping_method li label,
body.woocommerce-cart-layout-modern .woocommerce .order-totals table tr td #shipping_method li label,
body.woocommerce-cart-layout-modern .woocommerce .cart_totals table tr td #shipping_method li label .amount,
body.woocommerce-cart-layout-modern .woocommerce .order-totals table tr td #shipping_method li label .amount,
body.woocommerce-cart-layout-modern .woocommerce-shipping-destination span,
body.woocommerce-checkout-layout-one-page-modern .woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total th,
body.woocommerce-checkout-layout-one-page-modern .woocommerce .woocommerce-checkout .shop_table.woocommerce-checkout-payment-total .shipping td,
body.woocommerce-checkout-layout-one-page-modern .woocommerce .woocommerce-checkout-one-page #shipping_method .radio-sign + label,
body .woocommerce .checkout .form-row label,
body .woocommerce .checkout-login .login .form-row label,
body .lost_reset_password .form-row label,
body .woocommerce .my-account-signup .register .form-row label,
body .woocommerce .wishlist_table td.product-stock-status .wishlist-in-stock,
body .woocommerce .wishlist_table .product-info .product-info-content .product-stock-status .wishlist-in-stock,
body .woocommerce .checkout-login .woocommerce-form-login.login .form-row .checkout-login-remember label{
	color: var(--thegem-to-body-color);
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table tr td.product-remove .remove{
	border-color: var(--thegem-to-body-color);
}
body.woocommerce-cart-layout-modern .woocommerce .shop_table td.product-remove .remove:before,
body.woocommerce-cart-layout-modern .woocommerce .shop_table td.product-remove .remove:after {
	background-color: var(--thegem-to-body-color);
}

#page .woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered,
#page .woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow,
body .woocommerce input[type="text"].coupon-code,
body .woocommerce .woocommerce-shipping-calculator .form-row input.input-text,
body .woocommerce .checkout .form-row .input-text,
body .woocommerce .edit-address-form .form-row .input-text,
body .woocommerce .checkout .form-row textarea.input-text,
body .woocommerce .edit-address-form .form-row textarea.input-text,
body .select2-search .select2-input,
body .woocommerce .checkout-login .login .form-row .input-text,
body .woocommerce .lost_reset_password .input-text,
body .woocommerce .my-account-signup .register .form-row .input-text,
body .chosen-container-single .chosen-single span,
body .select2-container .select2-choice > .select2-chosen,
body .select2-results .select2-result-label,
body .woocommerce .chosen-container-single .chosen-single div:before,
body .woocommerce .edit-address-form .form-row .chosen-container-single .chosen-single div:before,
body .woocommerce .select2-container .select2-choice .select2-arrow:before {
	color: var(--thegem-to-body-color);
}


#page .woocommerce .select2-container--default .select2-selection--single .select2-selection__placeholder,
body .woocommerce input[type="text"].coupon-code::placeholder,
body .woocommerce .woocommerce-shipping-calculator .form-row input.input-text::placeholder,
body .woocommerce .checkout .form-row .input-text::placeholder,
body .woocommerce .edit-address-form .form-row .input-text::placeholder,
body .woocommerce .checkout .form-row textarea.input-text::placeholder,
body .woocommerce .edit-address-form .form-row textarea.input-text::placeholder,
body .woocommerce .checkout-login .login .form-row .input-text::placeholder,
body .woocommerce .lost_reset_password .input-text::placeholder,
body .woocommerce .my-account-signup .register .form-row .input-text::placeholder {
	color: var(--thegem-to-body-color-07);
}

/*Product Page Left Column*/
.product-page__wrapper .gem-gallery{
	margin: 0;
}

/*Product Page Right Column*/
.product-page__right-column{
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

/*Product Page Right Column Title*/
.product-page__wrapper .product_title{
	position: relative;
	margin-right: auto;
	margin-bottom: 8px;
	margin-top: -10px;
	width: calc(100% - 80px);
	z-index: 1;
}

/*Product Page Right Column Navigation*/
.product-page__wrapper .product-page__nav{
	position: relative;
	right: 0;
	top: 0;
	z-index: 2;
}
.product-page__wrapper .product_title + .product-page__nav{
	width: auto;
	margin-bottom: 0;
}
.product-page__wrapper .product-page__nav .product-page__nav-list{
	list-style-type: none;
	display: flex;
	flex: auto;
	justify-content: flex-end;
	width: 60px;
	padding: 0;
	margin: 0;
}
.product-page__wrapper .product-page__nav .product-page__nav-list li{
	width: calc(100% / 3);
}
.product-page__wrapper .product-page__nav .product-page__nav-list a{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 16px;
	text-decoration: none;
}
.product-page__wrapper .product-page__nav .product-page__nav-list a ins{
	text-decoration: none;
}
.product-page__wrapper .product-page__nav .product-page__nav-list a:before{
	font-family: 'thegem-icons';
	line-height: 0;
	transition: color 0.3s linear;
}
.product-page__wrapper .product-page__nav .product-page__nav--prev:before{
	content: '\e603';
	font-size: 24px;
	margin-left: -7px;
}
.product-page__wrapper .product-page__nav .product-page__nav--next:before{
	content: '\e601';
	font-size: 24px;
	margin-right: -5px;
}
.product-page__wrapper .product-page__nav .product-page__nav--back:before{
	content: '\e66d';
	font-size: 16px;
}
.product-page__wrapper .product-page__nav .product-page__nav-preview-wrap{
	position: absolute;
	top: 100%;
	right: 0;
	padding-top: 15px;
	transition: transform 0.1s linear 0.2s, opacity 0.1s linear 0.2s, visibility 0.1s linear 0.2s;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
}
.product-page__wrapper .product-page__nav .product-page__nav-preview{
	position: relative;
	display: flex;
	min-width: 210px;
	height: 80px;
	overflow: hidden;
}
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__image{
	position: relative;
	max-width: 80px;
	transition: opacity 0.3s linear;
}
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__image img{
	width: auto;
	height: 80px;
}
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__image:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s linear;
	opacity: 0;
	visibility: hidden;
}
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 15px;
}
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-title{
	transition: color 0.3s linear;
}
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info-price{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 20px;
	font-weight: 300;
}
.product-page__wrapper .product-page__nav .product-page__nav-preview .nav-preview__info del{
	opacity: 0.5;
}
.product-page__wrapper .product-page__nav .product-page__nav-list a:hover > .product-page__nav-preview-wrap{
	visibility: visible;
	opacity: 1;
	transition: all 0.3s linear;
	transform: translateY(0);
}
.product-page__wrapper .product-page__nav .product-page__nav-preview:hover > .nav-preview__image:after{
	opacity: 1;
	visibility: visible;
}

/*Product Page Right Column Attribute*/
.product-page__wrapper .product-page__attribute{
	display: flex;
	width: 100%;
	margin-bottom: 15px;
}

/*Product Page Right Column Rating*/
.product-page__wrapper .woocommerce-product-rating{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	margin: 0 0 17px 0;
}
.product-page__wrapper .woocommerce-product-rating .star-rating {
	font-size: 18px;
	margin: 0;
}
.product-page__wrapper .woocommerce-product-rating .product-reviews-link {
	display: flex;
	margin: 0 0 0 10px;
	font-size: 14px;
}
.product-page__wrapper .woocommerce-product-rating .rating-divider {
	display: none;
}

/*Product Page Right Column Price*/
.product-page__wrapper .price{
	display: flex;
	width: 100%;
	align-items: flex-end;
	margin: 0 0 16px 0;
}
.product-page__wrapper .price del{
	position: relative;
	margin-bottom: 1px;
	margin-right: 10px;
	text-decoration: none;
	opacity: 0.5;
}
.product-page__wrapper .price del:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
}
.product-page__wrapper .price.not-strikethrough del{
	display: none;
}

/*Product Page Right Column Short Description*/
.product-page__wrapper .woocommerce-product-details__short-description{
	width: 100%;
}
.product-page__wrapper .product-page__nav + .woocommerce-product-details__short-description {
	margin-top: 30px;
}

/*Product Page Right Column Accordion*/
.product-page__right-column .gem-woocommerce-tabs{
	width: 100%;
}

/*Product Page Right Column Variations*/
.product-page__wrapper .variations_form,
.product-page__wrapper form.cart{
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
}
.product-page__wrapper table.variations {
	position: relative;
	width: auto;
	margin: 0 0 5px 0;
	z-index: 5;
}
.product-page__wrapper table.variations tr{
	position: relative;
	z-index: 0;
}
.product-page__wrapper table.variations td,
.product-page__wrapper table.variations th{
	position: relative;
	padding: 5px 0;
	margin: 0;
	vertical-align: top;
	z-index: 0;
}
.product-page__wrapper table.variations td.label,
.product-page__wrapper table.variations th.label{
	min-width: 60px;
	max-width: 160px;
	padding-right: 10px;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: normal;
	text-align: left;
}
.product-page__wrapper table.variations td.label:after,
.product-page__wrapper table.variations th.label:after{
	content: ':';
}
.product-page__wrapper table.variations td.label label,
.product-page__wrapper table.variations th.label label{
	line-height: 2.4;
}
.product-page__wrapper .product-page__reset-variations.hidden{
	opacity: 0;
}
.product-page__wrapper .product-page__reset-variations{
	position: relative;
	display: flex;
	max-width: 260px;
}
.product-page__wrapper .reset_variations{
	position: relative;
	display: flex !important;
	align-items: center;
}
.product-page__wrapper .reset_variations--icon{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid;
	border-radius: 100%;
	width: 16px;
	height: 16px;
	margin: 0 5px 0 0;
	font-style: normal;
}
.product-page__wrapper .reset_variations--icon:before{
	font-family: 'thegem-icons';
	content: '\e619';
	line-height: 0;
	font-size: 16px;
	margin: 0 0 0 -1px;
}
table.variations .thegem-select {
	width: 260px;
	min-height: 40px;
	padding: 0 40px 0 15px;
	border-radius: 3px;
	appearance: none;
	-webkit-appearance: none;
}

/*Product Page Right Column Cart*/
.product-page__wrapper form.cart:not(.variations_form){
	display: flex;
	flex-wrap: wrap;
}
.product-page__wrapper form.cart .single_variation_wrap{
	display: flex;
	flex-direction: column;
}
.product-page__wrapper form.cart .single_variation_wrap .woocommerce-variation{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.product-page__wrapper form.cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-description {
	width: 100%;
}
.product-page__wrapper form.cart.single_variation_wrap .woocommerce-variation-availability,
.product-page__wrapper form.cart .single_variation_wrap .woocommerce-variation-availability:not(:empty){
	padding: 0;
	margin: 0 0 20px 15px;
}
.product-page__wrapper form.cart .woocommerce-variation-availability .stock{
	margin: 0;
	padding: 0;
}
.product-page__wrapper form.cart .woocommerce-variation-price{
	float: none;
	margin-bottom: 20px;
}
.product-page__wrapper form.cart .woocommerce-variation-price .price{
	margin: 0;
}
.product-page__wrapper form.cart .woocommerce-variation-add-to-cart{
	display: flex;
	flex-wrap: wrap;
}
.product-page__wrapper form.cart .quantity{
	display: flex;
	padding: 0;
	margin: 0 20px 10px 0;
	max-width: 120px;
	float: none;
	border-radius: 3px;
}
.product-page__wrapper form.cart .quantity.hidden{
	display: none;
}
.product-page__wrapper form.cart .quantity button,
.product-page__wrapper form.cart .quantity input{
	position: relative;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 38px;
	background-color: transparent;

	font-size: 21px;
	line-height: 38px;
}
.product-page__wrapper form.cart .quantity input{
	padding: 0 5px;
}
.product-page__wrapper form.cart .quantity button:before{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 25px;
}
.product-page__wrapper form.cart .quantity button.minus:before{
	right: 0;
}
.product-page__wrapper form.cart .quantity button.plus:before{
	left: 0;
}
.product-page__wrapper form.cart .gem-button{
	margin-right: 10px;
}
.product-page__wrapper form.cart .yith-wcwl-add-to-wishlist .gem-button,
.product-page__wrapper form.cart .yith-wcwl-add-to-wishlist .gem-button:hover{
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
}
.product-page__wrapper form.cart .yith-wcwl-add-to-wishlist .gem-button i.gem-print-icon{
	vertical-align: inherit;
}

/* Grouped Products */
.product-page__wrapper form.grouped_form{
	position: relative;
	display: flex;
	flex-direction: column !important;
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list{
	position: relative;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 30px;
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list tr{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid var(--thegem-to-box-border-color);
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list tr:first-of-type{
	border-top: 1px solid var(--thegem-to-box-border-color);
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td{
	padding: 16px 8px;
	vertical-align: middle;
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td.woocommerce-grouped-product-list-item__image{
	padding-left: 0;
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td.woocommerce-grouped-product-list-item__quantity a{
	position: relative;
	display: flex;
	align-items: center;
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	color: var(--thegem-to-link-color-hover);
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td.woocommerce-grouped-product-list-item__quantity a:before {
	font-family: 'thegem-icons';
	content: '\e669';
	font-style: normal;
	font-size: 16px;
	font-weight: normal;
	margin: 3px 5px 0 0;
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td.woocommerce-grouped-product-list-item__quantity{
	min-width: 136px;
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td.woocommerce-grouped-product-list-item__quantity .quantity{
	padding: 0;
	margin: 0;
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td.woocommerce-grouped-product-list-item__image img{
	max-width: 80px;
	height: auto;
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td.woocommerce-grouped-product-list-item__price{
	margin-left: auto;
	text-align: right;
	padding-right: 0;
	white-space: nowrap;

	font-family: var(--thegem-to-product-price-font-family);
	font-style: var(--thegem-to-product-price-font-style);
	font-weight: var(--thegem-to-product-price-font-weight);
	text-transform: var(--thegem-to-product-price-text-transform);
	font-size: calc(var(--thegem-to-product-price-font-size) * 0.7857);
	line-height: calc(var(--thegem-to-product-price-font-size) * 0.7857);
	letter-spacing: var(--thegem-to-product-price-letter-spacing);
	color: var(--thegem-to-product-price-color);
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td.woocommerce-grouped-product-list-item__price ins{
	text-decoration: none;
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td.woocommerce-grouped-product-list-item__price del{
	position: relative;
	text-decoration: none;
	opacity: 0.5;

	font-size: calc(var(--thegem-to-product-price-font-size) * 0.6429);
	line-height: calc(var(--thegem-to-product-price-font-size) * 0.6429);
}
.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td.woocommerce-grouped-product-list-item__price del:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;

	background-color: var(--thegem-to-product-price-color);
}
@media (max-width: 767px) {
	.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list tr{
		flex-direction: column;
		align-items: flex-start;
		padding: 8px;
	}
	.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td{
		padding: 8px 0;
	}
	.product-page__wrapper form.grouped_form table.woocommerce-grouped-product-list td.woocommerce-grouped-product-list-item__price{
		margin: 0;
		text-align: left;
	}
}

/*Product Page Right Column Third party Buttons*/
.single-product-content-right .yith-ywraq-add-to-quote{
	display: block;
	width: 100%;
	margin: 0 !important;
	padding: 0;
}
.product-page__right-column-centered .yith-ywraq-add-to-quote{
	text-align: center;
}
.single-product-content-right .yith-ywraq-add-to-quote a.ywraq-link,
.single-product-content-right .yith_ywraq_add_item_browse_message a{
	font-size: inherit !important;
	font-weight: inherit !important;
}
.single-product-content-right .yith-ywraq-add-to-quote img{
	display: none !important;
}
.single-product-content-right .yith-ywraq-add-to-quote a.button,
.single-product-content-right .compare.button{
	position: relative;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	border: 0 none;
	vertical-align: middle;
	height: 40px;
	line-height: 40px;
	padding: 0 17px;
	margin: 10px 0;
	font-size: 14px !important;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 3px;
}

/*Product Page Right Column Size Guide*/
.product-page__wrapper .size-guide{
	display: flex;
	width: 100%;
	margin: 8px 0 0 0;
	padding: 0;
}

/*Product Page Right Column Meta & Socials*/
.product-page__wrapper .product-meta{
	display: flex;
	width: 100%;
	flex-direction: column;
	margin-top: 30px;
}
.product-page__wrapper .product-meta > div {
	margin-bottom: 10px;
}
.product-page__wrapper .product-meta > div:last-of-type{
	margin-bottom: 0;
}
.product-page__wrapper .product-meta .date-color{
	padding-right: 5px;
}
.product-page__wrapper .product-meta .post-tags-list a{
	margin-right: 10px;
}
.product-page__wrapper .product-meta .post-tags-list a:not(:first-child){
	margin-left: 10px;
}
.product-page__wrapper .socials-sharing{
	display: flex;
	width: 100%;
	margin: 0 -7px;
	padding: 5px 0 0 0;
}
.product-page__wrapper form.cart + .socials-sharing,
.product-page__wrapper .size-guide + .socials-sharing {
	margin-top: 25px;
}
.product-page__wrapper .socials-sharing .socials-item-title{
	display: flex;
	align-items: center;
	padding: 0 0 0 7px;
}
.product-page__wrapper .socials-sharing a{
	display: flex;
	align-items: center;
	padding: 0 7px;
	margin: 0;
}

/*Product Page Bottom Column*/
.product-page__bottom-column{
	position: relative;
	margin-top: 70px;
}

.product-page__bottom-column .product-content{
	margin-top: 70px;
}

.product-page__bottom-column .thegem-accordion__item-body .product-content{
	margin-top: 0;
}

.product-page__wrapper .single-product-content-bottom .woocommerce-tabs{
	margin: 0;
}

.product-page__wrapper .single-product-content{
	position: relative;
	display: flex;
	margin-bottom: 0;
	z-index: 0;
}
.product-page__wrapper .single-product-content > div{
	min-height: 100%;
	order: 0;
}

/*Product Page Attribute Table*/
.product-page__wrapper #thegem-additional_information table{
	width: 100%;
}
.product-page__wrapper #thegem-additional_information table th,
.product-page__wrapper #thegem-additional_information table td{
	border: 0;
	padding-left: 0;
	padding-right: 0;
	text-align: left;
}
.product-page__wrapper #thegem-additional_information table td{
	width: 100%;
}
.product-page__wrapper #thegem-additional_information table th{
	padding-right: 55px;
	white-space: nowrap;
}
@media only screen and (max-width: 430px){
	.product-page__wrapper #thegem-additional_information table th{
		white-space: normal;
		width: 40%;
		padding-right: 0;
	}
	.product-page__wrapper #thegem-additional_information table td{
		width: 60%;
		text-align: right;
		padding-left: 10%;
	}
}

/*Product Page Woo reviews*/
.product-page__wrapper #thegem-reviews .woocommerce-Reviews {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex: auto;
	margin: 0 -21px;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews > div{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 50%;
	margin: 0;
	padding: 0 21px;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews > div:last-of-type{
	width: 100%;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews #review_form_wrapper{
	padding-top: 0;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .woocommerce-Reviews-title,
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title{
	width: 100%;
	min-height: 55px;
	margin-top: 0;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title:before{
	display: none;
}

.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment_container{
	padding: 0;
	margin: 0 0 40px 0;
	background: transparent;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .review:last-of-type .comment_container{
	margin-bottom: 0;
}

.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment_container .meta {
	margin-top: 0;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment_container .woocommerce-review__author {
	text-transform: capitalize;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment_container .star-rating{
	margin: 7px 10px 0 0;
	font-size: 17px;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment_container .avatar{
	margin-top: 7px;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-text .description{
	padding-top: 10px;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form{
	display: flex;
	flex-direction: column;
	width: 100%;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form label{
	margin-bottom: 5px;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form .comment-form-rating label,
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .woocommerce-noreviews{
	margin: 0 0 5px 0;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form-comment{
	margin: 13px 0 0 0;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form-comment textarea{
	/*background-color: transparent;*/
	border-radius: 3px;
	max-height: 130px;
	padding: 10px 15px;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form-fields{
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 1.1em 0 0 0;
	padding: 0;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form-fields > div{
	margin: 0 0 1.1em;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form-fields > div:after{
	display: none;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form-fields > div input{
	/*background-color: transparent;*/
	border-radius: 3px;
	padding: 0 15px;
	max-height: 40px;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form .comment-form-cookies-consent{
	padding: 0;
	margin: 15px 0 0 0;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form .comment-form-cookies-consent .checkbox-sign{
	background-color: transparent;
	border-radius: 3px;
}

.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form-rating .stars span{
	display: flex;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form-rating .stars a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	margin: 0 3px 0 0;
	padding: 0;
	font-size: 0;
	line-height: normal;
	overflow: visible;
	transition: all 0.3s linear;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form-rating .stars a:before {
	font-family: 'thegem-icons';
	content: "\e61a";
	font-size: 19px;
	position: absolute;
	float: none;
	left: 0;
	top: 0;
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form-rating .stars a:before,
.woocommerce .product-page__wrapper #thegem-reviews .star-rating:before,
.woocommerce-page .product-page__wrapper #thegem-reviews .star-rating:before,
.woocommerce .product-page__wrapper .woocommerce-product-rating .star-rating:before,
.woocommerce-page .product-page__wrapper .woocommerce-product-rating .star-rating:before{
	color: var(--thegem-to-product-rating-stars-base-color, #b6c6c9);
}
.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-form-rating .stars a.rating-on:before,
.woocommerce .product-page__wrapper #thegem-reviews .star-rating > span:before,
.woocommerce-page .product-page__wrapper #thegem-reviews .star-rating > span:before,
.woocommerce .product-page__wrapper .woocommerce-product-rating .star-rating > span:before,
.woocommerce-page .product-page__wrapper .woocommerce-product-rating .star-rating > span:before{
	color: var(--thegem-to-product-rating-stars-rated-color, #ffc107);
}

/*New Thegem one by one*/
.product-page__wrapper .thegem-one-by-one{
	display: flex;
	flex-direction: column;
}
.product-page__wrapper .thegem-one-by-one__container{
	padding: 0 21px;
}
.product-page__wrapper .thegem-one-by-one__item{
	padding: 60px 0;
}
.product-page__wrapper .thegem-one-by-one__item-title{
	margin-bottom: 2em;
}
.product-page__wrapper .thegem-one-by-one__item-title h4{
	padding: 0;
	margin: 0;
}
.product-page__wrapper .thegem-one-by-one__item--separator{
	border-top: 1px solid #dfe5e8;
}
.product-page__wrapper #thegem-description.thegem-one-by-one__item{
	padding: 60px 0 50px 0;
}
.product-page__wrapper #thegem-additional_information.thegem-one-by-one__item{
	padding: 60px 0;
}
.product-page__wrapper .thegem-tabs--vertical #thegem-additional_information.thegem-accordion__item-body{
	padding: 0;
}

/* Out of stock notify button */
.product-page__wrapper button.wc_bis_send_form{
	position: relative;
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	height: 40px;
	line-height: 36px;
	padding: 0 17px;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	margin: 0 !important;
	font-size: 14px;
	font-family: var(--thegem-to-button-font-family);
	font-weight: var(--thegem-to-button-font-weight);
	text-transform: var(--thegem-to-button-text-transform);
	letter-spacing: var(--thegem-to-button-letter-spacing);
	font-style: normal;
	border: 2px solid;
	color: var(--thegem-to-product-page-btn-add-to-cart-text-color, var(--thegem-to-button-basic-color)) !important;
	background-color: var(--thegem-to-product-page-btn-add-to-cart-background-color, var(--thegem-to-styled-color1)) !important;
	border-radius: var(--thegem-to-product-page-btn-add-to-cart-border-radius, 3px) !important;
	border-color: var(--thegem-to-product-page-btn-add-to-cart-border-color, var(--thegem-to-styled-color1)) !important;
}
.product-page__wrapper button.wc_bis_send_form:hover{
	color: var(--thegem-to-product-page-btn-add-to-cart-text-color-hover, var(--thegem-to-button-basic-color-hover)) !important;
	background-color: var(--thegem-to-product-page-btn-add-to-cart-background-color-hover, var(--thegem-to-button-basic-background-color-hover)) !important;
	border-color: var(--thegem-to-product-page-btn-add-to-cart-border-color-hover, var(--thegem-to-button-basic-background-color-hover)) !important;
}

/*Product Page Centered mode*/
.product-page__wrapper .single-product-content__back{
	padding-bottom: 70px;
}

.product-page__wrapper .single-product-content__overlay{
	position: absolute;
	top: -70px;
	left: calc(50% - 50vw);
	width: 100vw;
	height: calc(100% + 70px);
	padding: 0;
	margin: 0;
}
.product-page__wrapper .product-page__right-column-centered{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 480px;
	padding: 30px 40px 0 40px;
	margin: 0 auto;
}
@media (min-width: 1800px) {
	.product-page__wrapper .product-page__right-column.centered-mode--full .product-page__right-column-centered{
		max-width: 65%;
	}
}
.product-page__wrapper .product-page__right-column-centered .product-page__nav{
	position: absolute;
	z-index: 1;
}
.product-page__wrapper .product-page__right-column-centered .page-breadcrumbs{
	position: absolute;
	width: calc(100% - 80px);
	left: 0;
	top: -3px;
	min-height: auto !important;
	z-index: 0;
}
.product-page__wrapper .product-page__right-column-centered .product_title {
	width: 100%;
	text-align: center;
}
.product-page__wrapper .product-page__right-column-centered .woocommerce-product-rating,
.product-page__wrapper .product-page__right-column-centered .price,
.product-page__wrapper .product-page__right-column-centered .product-page__attribute,
.product-page__wrapper .product-page__right-column-centered .woocommerce-product-details__short-description,
.product-page__wrapper .product-page__right-column-centered form.cart .woocommerce-variation-add-to-cart,
.product-page__wrapper .product-page__right-column-centered form.cart .single_variation_wrap .woocommerce-variation,
.product-page__wrapper .product-page__right-column-centered .product-meta,
.product-page__wrapper .product-page__right-column-centered .product-meta > div,
.product-page__wrapper .product-page__right-column-centered .socials-sharing,
.product-page__wrapper .product-page__right-column-centered .variations_form,
.product-page__wrapper .product-page__right-column-centered form.cart,
.product-page__wrapper .product-page__right-column-centered .size-guide,
.product-page__wrapper .product-page__right-column-centered .product-page__reset-variations,
.product-page__wrapper .product-page__right-column-centered .legal-price-info,
.product-page__wrapper .product-page__right-column-centered button.wc_bis_send_form{
	justify-content: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.product-page__wrapper .product-page__right-column-centered table.variations {
	width: 100%;
	margin: 0 auto;
}
.product-page__wrapper .product-page__right-column-centered table.variations td.label,
.product-page__wrapper .product-page__right-column-centered table.variations th.label,
.product-page__wrapper .product-page__right-column-centered table.variations td.value{
	display: block;
	width: 100%;
	max-width: none;
	text-align: center;
	padding: 0;
	margin: 0;
}
.product-page__wrapper .product-page__right-column-centered table.variations td.value{
	padding: 5px 0 10px 0;
}
.product-page__wrapper .product-page__right-column-centered table.variations td.label label,
.product-page__wrapper .product-page__right-column-centered table.variations th.label label{
	line-height: inherit;
}
.product-page__wrapper .product-page__right-column-centered .thegem-combobox-wrap {
	margin: 0 auto;
}
.product-page__wrapper .product-page__right-column-centered .gem-attribute-selector .gem-attribute-options li{
	margin: 0 6px 12px 6px;
}
.product-page__wrapper .product-page__right-column-centered .product-meta + .socials-sharing{
	padding-top: 10px;
}
.product-page__wrapper .product-page__right-column-centered .stock.out-of-stock{
	width: 100%;
	text-align: center;
}
.product-page__wrapper .product-page__right-column-centered .pewc-total-field-wrapper p{
	display: flex;
	flex-direction: column;
}

	/*Product Page Combobox*/
.thegem-combobox-wrap {
	position: relative;
	width: 260px;
	z-index: 50;
}
/*
.panel.with-sidebar .thegem-combobox-wrap {
	max-width: 100%;
}
*/
.thegem-combobox-wrap select {
	opacity: 0;
	position: absolute;
	inset: 0;
}
.thegem-combobox-wrap .thegem-combobox {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
}
.thegem-combobox-wrap .thegem-combobox__trigger {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 40px;
	padding: 0 40px 0 15px;
	border-radius: 3px;
	cursor: pointer;
	z-index: 1;
}
.thegem-combobox-wrap .thegem-combobox__trigger:after {
	content: '';
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6px;
	height: 6px;
	top: 50%;
	margin-top: -2px;
	right: 15px;
	border-bottom: 1px solid;
	border-right: 1px solid;
	transform: rotate(45deg) translateY(-50%);
	transition: all .3s ease-in-out;
	transform-origin: 50% 0;
}
.thegem-combobox-wrap .thegem-combobox.opened .thegem-combobox__trigger:after {
	margin-top: 3px;
	transform: rotate(-135deg) translateY(-50%);
}
.thegem-combobox-wrap .thegem-combobox__options {
	position: absolute;
	display: block;
	top: 100%;
	left: 0;
	right: 0;
	min-width: 100%;
	max-height: 200px;
	margin: 0;
	border-radius: 3px;
	border-top: 0;
	transition: all .3s ease-in-out;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
	overflow-x: hidden;
	z-index: 0;
}
.thegem-combobox-wrap .thegem-combobox__options::-webkit-scrollbar {
	width: 4px;
}
.thegem-combobox-wrap .thegem-combobox__options::-webkit-scrollbar-track {
	background-color: transparent;
}
.thegem-combobox-wrap .thegem-combobox__options::-webkit-scrollbar-thumb {
	background-color: rgba(223, 229, 232, 1);
	border-radius: 4px;
}
.thegem-combobox-wrap .thegem-combobox.opened .thegem-combobox__options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0);
}
.thegem-combobox-wrap .thegem-combobox__options-item {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 40px;
	padding: 0 40px 0 15px;
	cursor: pointer;
	transition: all .3s linear;
}
.thegem-combobox-wrap .thegem-combobox__options-item.selection{
	color: var(--thegem-to-main-bg-color);
}

/**Product Page Tabs/Accordions*/
.thegem-tabs {
	position: relative;
	display: flex;
	flex: auto;
}
.thegem-tabs--horizontal{
	flex-direction: column;
}

.thegem-tabs .thegem-accordion__item-title{
	display: none;
}
.thegem-tabs .thegem-accordion__item-body{
	padding-bottom: 0;
}

.thegem-tabs__nav{
	position: relative;
	display: flex;
}
.thegem-tabs--horizontal .thegem-tabs__nav{
	flex-direction: column;
}
.thegem-tabs--vertical .thegem-tabs__nav{
	min-width: 180px;
}
.thegem-tabs--vertical .thegem-tabs__body{
	max-width: calc(100% - 220px);
}

.thegem-tabs--vertical .thegem-tabs__nav--left{
	order: 0;
	padding: 0;
	margin: 0 40px 0 0;
}
.thegem-tabs--vertical .thegem-tabs__nav--right{
	order: 2;
	padding: 0 0 0 40px;
	margin: 0 0 0 40px;
}

.thegem-tabs__nav-list {
	display: flex;
}
.thegem-tabs--vertical .thegem-tabs__nav-list{
	flex-direction: column;
}
.thegem-tabs--horizontal .thegem-tabs__nav--left .thegem-tabs__nav-list{
	justify-content: flex-start;
	text-align: left;
}
.thegem-tabs--horizontal .thegem-tabs__nav--center .thegem-tabs__nav-list{
	justify-content: center;
	text-align: center;
}
.thegem-tabs--horizontal .thegem-tabs__nav--right .thegem-tabs__nav-list{
	justify-content: flex-end;
	text-align: right;
}

.thegem-tabs__nav-item{
	position: relative;
	display: flex;
	padding: 10px 0;

	cursor: pointer;
	transition: color 0.3s linear;
}
.thegem-tabs__nav-item:not(:first-child){
	margin-left: 40px;
}
.thegem-tabs--vertical .thegem-tabs__nav-item{
	display: flex;
	align-items: center;
	padding: 0;
	min-height: 45px;
	margin: 0;
}

.thegem-tabs__nav-item span,
.thegem-accordion__item-title span{
	position: relative;
	display: inline-block;
	pointer-events: none;
}
.thegem-tabs__nav-item sup,
.thegem-accordion__item-title sup{
	position: absolute;
	right: -20px;
	top: -5px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	padding: 0;
	margin: 0;
	border-radius: 100%;
	text-align: center;
}
.thegem-tabs__nav-line{
	position: relative;
	display: flex;
	flex: auto;
	width: 100%;
	height: 1px;
}
.thegem-tabs__nav-slide {
	position: absolute;
	left: 0;
	top: -1px;
	width: auto;
	height: 2px;
}
.thegem-tabs--vertical .thegem-tabs__nav-line{
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
}
.thegem-tabs--vertical .thegem-tabs__nav-slide {
	position: absolute;
	top: 0;
	left: -1px;
	width: 2px;
	height: auto;
}
.thegem-tabs--vertical .thegem-tabs__nav--right .thegem-tabs__nav-line{
	left: 0;
	right: inherit;
}

.thegem-tabs__body{
	position: relative;
	display: flex;
	flex-direction: column;
	flex: auto;
	margin-top: 20px;
	width: 100%;
}
.thegem-tabs--vertical .thegem-tabs__body{
	margin-top: 0;
}
.thegem-tabs__body-item:not(.thegem-tabs__body-item--active) {
	display: none;
}
.thegem-tabs__body .thegem-accordion__item-title{
	display: none;
}

/*New Thegem Accordion*/
.thegem-accordion {
	position: relative;
	display: flex;
	flex-direction: column;
}
.thegem-accordion.thegem-accordion--next_to_gallery{
	margin-top: 30px;
}
.thegem-accordion__item{
	position: relative;
	display: flex;
	flex-direction: column;
}
.thegem-tabs .thegem-accordion__item--tab-view{
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	height: 100%;
}
.thegem-accordion__item-title{
	position: relative;
	display: flex;
	align-items: center;
	min-height: 50px;
	padding: 10px 0;

	cursor: pointer;
	transition: all 0.3s;
}
.thegem-accordion.thegem-accordion--below_gallery .thegem-accordion__item-title{
	min-height: 60px;
}
.thegem-accordion__item-title:after{
	content: '';
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6px;
	height: 6px;
	top: 50%;
	right: 15px;
	border-bottom: 1px solid;
	border-right: 1px solid;
	transform: rotate(45deg) translateY(-50%);
	transition: all .3s ease-in-out;
	transform-origin: 50% 0;
}
.thegem-accordion__item--active:after{
	margin-top: 3px;
	transform: rotate(-135deg) translateY(-50%);
}
.thegem-accordion__item-body{
	display: none;
	width: 100%;
	padding: 20px 0 50px 0;
}
.thegem-accordion.thegem-accordion--next_to_gallery .thegem-accordion__item-body{
	max-height: 300px;
	padding: 20px 20px 40px 0;
	overflow: hidden;
	overflow-y: auto;

	mask-image: linear-gradient(to top, transparent 5px, #000 50px);
	-webkit-mask-image: linear-gradient(to top, transparent 5px, #000 50px);
}
.thegem-tabs.thegem-tabs--vertical .thegem-accordion__item-body{
	padding: 0;
}
.thegem-accordion__item-body::-webkit-scrollbar {
	width: 4px;
}
.thegem-accordion__item-body::-webkit-scrollbar-track {
	background-color: transparent;
}
.thegem-accordion__item-body::-webkit-scrollbar-thumb {
	background-color: rgba(223, 229, 232, 1);
	border-radius: 4px;
}
.thegem-accordion.thegem-accordion--next_to_gallery #thegem-reviews .woocommerce-Reviews > div{
	width: 100%;
}
.thegem-accordion.thegem-accordion--next_to_gallery #thegem-reviews .woocommerce-Reviews  #review_form_wrapper {
	padding-top: 45px;
	padding-bottom: 30px;
}

/*Popup notifications*/
.thegem-popup-notification-wrap .thegem-popup-notification {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 200px;
	text-align: center;
	font-size: 16px;
	line-height: 2;
	background: linear-gradient(180deg, rgba(33, 34, 39, 0) 0%, rgba(33, 34, 39, 0.3) 100%);
	margin: 0 !important;
	z-index: 10000;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	-webkit-transition-property: opacity, visibility, -webkit-transform;
	transition-property: opacity, visibility, -webkit-transform;
	transition-property: opacity, visibility, transform;
	transition-property: opacity, visibility, transform, -webkit-transform;
	display: flex;
	justify-content: center;
}
.thegem-popup-notification-wrap .thegem-popup-notification.show {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
@supports (-webkit-touch-callout: none) {
	.thegem-popup-notification-wrap .thegem-popup-notification {
		top: 0;
		bottom: initial;
		background: linear-gradient(0deg, rgba(33, 34, 39, 0) 0%, rgba(33, 34, 39, 0.3) 100%);
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
	}
}
.thegem-popup-notification-wrap .thegem-popup-notification .notification-message {
	max-width: 95%;
	position: absolute;
	bottom: 30px;
	color: inherit;
	padding: 12px 18px;
}
@supports (-webkit-touch-callout: none) {
	.thegem-popup-notification-wrap .thegem-popup-notification .notification-message {
		top: 30px;
		bottom: initial;
	}
}
.thegem-popup-notification-wrap .thegem-popup-notification .notification-message:before {
	content: "";
	font-family: "thegem-icons";
	font-weight: normal;
	font-style: normal;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-variant: normal;
	text-rendering: auto;
	line-height: 0.7;
	margin-right: 8px;
	font-size: 1.5em;
	vertical-align: middle;
}
.thegem-popup-notification-wrap .thegem-popup-notification .notification-message span.buttons {
	display: inline-block;
}
@media (max-width: 767px) {
	.thegem-popup-notification-wrap .thegem-popup-notification .notification-message span.buttons {
		width: 100%;
	}
	.thegem-popup-notification-wrap .thegem-popup-notification .notification-message span.buttons a.button:first-child {
		margin-left: 0;
	}
}
.thegem-popup-notification-wrap .thegem-popup-notification .notification-message a.button {
	width: fit-content;
	width: -webkit-fit-content;
	height: auto;
	font-size: 14px;
	line-height: 1;
	padding: 3px 15px 4px 15px;
	margin-left: 10px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	-webkit-appearance: none;
	transition: all 0.3s;
}

.product-page__wrapper .yith-wcwl-add-button .blockUI.blockOverlay,
.product-page__wrapper .yith-wcwl-wishlistexistsremove .blockUI.blockOverlay{
	display: none !important;
}

/*Elements title padding*/
body.woocommerce .product-page__elements-title {
	position: relative;
	display: flex;
	width: 100%;
	padding-bottom: 25px;
	padding-top: 35px;
}
body.woocommerce .product-page__elements-title.elements-title--left,
body.woocommerce .product-page__elements-title.elements-title--left .container-fullwidth{
	text-align: left;
	justify-content: left;
}
body.woocommerce .product-page__elements-title.elements-title--center,
body.woocommerce .product-page__elements-title.elements-title--center .container-fullwidth{
	text-align: center;
	justify-content: center;
}
body.woocommerce .product-page__elements-title.elements-title--right,
body.woocommerce .product-page__elements-title.elements-title--right .container-fullwidth{
	text-align: right;
	justify-content: right;
}

body.woocommerce .up-sells + .related-products .product-page__elements-title {
	padding-top: 25px;
}

body.woocommerce .related-products .product-page__elements-title > .container{
	padding-left: 21px;
	padding-right: 21px;
}

@media (min-width: 1212px){
	.thegem-tabs.thegem-tabs--vertical.thegem-tabs--fullwidth{
		max-width: 1212px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 21px;
		padding-right: 21px;
	}
	.thegem-tabs.thegem-tabs--horizontal.thegem-tabs--fullwidth .thegem-tabs__nav--center .thegem-tabs__nav-list,
	.thegem-tabs.thegem-tabs--horizontal.thegem-tabs--fullwidth .thegem-tabs__body{
		width: 100%;
		max-width: 1212px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 21px;
		padding-right: 21px;
	}
	.thegem-tabs.thegem-tabs--horizontal.thegem-tabs--fullwidth .thegem-tabs__nav--center .thegem-tabs__nav-item{
		width: calc(100% / 3);
		justify-content: center;
		text-align: center;
	}

	.thegem-accordion.thegem-accordion--fullwidth{
		max-width: 1212px;
		margin-right: auto;
		margin-left: auto;
		padding-left: 21px;
		padding-right: 21px;
	}
	.thegem-accordion.thegem-accordion--next_to_gallery.thegem-accordion--fullwidth{
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 1212px) {
	body.woocommerce.single-product .container-fullwidth{
		padding-left: 21px;
		padding-right: 21px;
	}
}

@media (max-width: 1199px){
	.row > .single-product-content-right,
	.row > .single-product-content-left{
		margin-top: 3em !important;
	}

	body.woocommerce .product-page__elements-title .row{
		margin-top: 0 !important;
	}
}

@media (max-width: 821px) {
	.product-page__wrapper .single-product-content{
		flex-wrap: wrap;
	}
	.product-page__wrapper .single-product-content-right {
		order: 2 !important;
	}
	body .row > .single-product-content-right {
		margin-top: 3em !important;
	}
	.product-page__wrapper .product-page__right-column.centered-mode{
		height: auto !important;
	}
	.product-page__wrapper .product-page__right-column-centered{
		width: 100%;
		max-width: none;
	}

	.product-page__wrapper .single-product-content-bottom .woocommerce-tabs{
		margin: 0;
	}

	.product-page__wrapper #thegem-reviews .woocommerce-Reviews > div{
		width: 100%;
	}
	.product-page__wrapper #thegem-reviews .woocommerce-Reviews .woocommerce-Reviews-title,
	.product-page__wrapper #thegem-reviews .woocommerce-Reviews .comment-reply-title {
		min-height: auto;
	}
	.product-page__bottom-column{
		margin-top: 50px;
	}

	.product-page__wrapper #thegem-reviews .woocommerce-Reviews #review_form_wrapper{
		padding-top: 45px;
	}

	/*Huck for notification fix*/
	body.woocommerce-page #main.over-header {
		z-index: initial;
	}
}

@media (max-width: 767px) {
	.product-page__wrapper .product-page__right-column-centered{
		padding: 42px 21px !important;
	}

	.thegem-tabs .thegem-accordion__item-title{
		display: flex;
	}
	.thegem-tabs__nav{
		display: none;
	}
	.thegem-tabs__body{
		margin-top: 0;
	}

	.thegem-tabs--vertical .thegem-tabs__body{
		max-width: 100%;
	}

	.thegem-accordion__item-title{
		min-height: 50px;
	}

	.thegem-accordion__item-body,
	.thegem-tabs .thegem-accordion__item-body,
	.thegem-tabs.thegem-tabs--vertical .thegem-accordion__item-body,
	.product-page__wrapper .thegem-tabs--vertical #thegem-additional_information.thegem-accordion__item-body{
		padding: 20px 0 50px 0;
	}

	.product-page__wrapper table.variations{
		width: 100%;
	}
	.product-page__wrapper .thegem-combobox-wrap {
		max-width: none;
		width: 100%;
	}

	.product-page__wrapper form.cart .gem-button-position-inline{
		order: 3;
		width: 100%;
	}
	.product-page__wrapper form.cart .gem-button-position-inline button{
		width: 100%;
		margin: 20px 0 0 0;
	}
	.product-page__wrapper form.cart .yith-wcwl-add-to-wishlist{
		margin-left: auto;
	}
	.product-page__wrapper form.cart .quantity{
		max-width: none;
		width: calc(100% - 60px);
	}
	.product-page__wrapper form.cart .quantity input{
		width: calc(100% - 80px);
	}
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(https://shop.ariservices.co/wp-content/themes/thegem/js/owl/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
.product-gallery {
    position: relative;
}
.product-gallery-slider-wrap,
.product-gallery-thumbs-wrap{
    position: relative;
    width: 100%;
}
.product-gallery-slider-wrap{
    margin-bottom: 15px;
}

/*enable touch action*/
.product-gallery .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: auto;
    touch-action: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.product-gallery-slider .product-gallery-slider-item.video-block{
    background-color: #000000;
}
.product-gallery-slider .product-gallery-slider-item video,
.product-gallery-slider .product-gallery-slider-item iframe{
    position: relative;
    min-width: 100%;
}

.product-gallery-slider .product-gallery-slider-item a {
    display: block;
    width: 100%;
    height: 100%;
}
.product-gallery-slider .product-gallery-slider-item .icon-play,
.product-gallery__grid .product-gallery__grid-item .icon-play{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s;
    background-color: rgba(255,255,255,0.4);
}
.product-gallery-slider .product-gallery-slider-item .icon-play:before,
.product-gallery__grid .product-gallery__grid-item .icon-play:before{
    font-size: 60px;
    font-style: normal;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}
.product-gallery__grid.col-2x .product-gallery__grid-item .icon-play:before{
    font-size: 50px;
}
.product-gallery__grid.col-3x .product-gallery__grid-item .icon-play:before{
    font-size: 40px;
}
.product-gallery-slider .product-gallery-slider-item .icon-play.self:before,
.product-gallery__grid .product-gallery__grid-item .icon-play.self:before{
    content: '\e655';
    font-family: "thegem-icons";
}
.product-gallery-slider .product-gallery-slider-item .icon-play.youtube:before,
.product-gallery__grid .product-gallery__grid-item .icon-play.youtube:before{
    content: '\e610';
    font-family: "thegem-socials";
}
.product-gallery-slider .product-gallery-slider-item .icon-play.vimeo:before,
.product-gallery__grid .product-gallery__grid-item .icon-play.vimeo:before{
    content: '\e637';
    font-family: "thegem-socials";
}
.product-gallery-slider .product-gallery-slider-item:hover .icon-play,
.product-gallery__grid .product-gallery__grid-item:hover .icon-play{
    background-color: rgba(255,255,255,0.2);
}
.product-gallery-slider .product-gallery-slider-item:hover .icon-play.self:before,
.product-gallery__grid .product-gallery__grid-item:hover .icon-play.self:before{
    color: #191822;
}
.product-gallery-slider .product-gallery-slider-item:hover .icon-play.youtube:before,
.product-gallery__grid .product-gallery__grid-item:hover .icon-play.youtube:before{
    color: #f00f00;
}
.product-gallery-slider .product-gallery-slider-item:hover .icon-play.vimeo:before,
.product-gallery__grid .product-gallery__grid-item:hover .icon-play.vimeo:before{
    color: #00ADEF;
}

.product-gallery.image-aspect-ratio .product-gallery-slider-item .image-inner,
.product-gallery__grid.image-aspect-ratio .product-gallery__grid-item .image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.product-gallery.image-aspect-ratio .product-gallery-slider-item .image-inner img,
.product-gallery__grid.image-aspect-ratio .product-gallery__grid-item .image-inner img {
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
}

/*thumbs active item*/
.product-gallery-thumbs .product-gallery-thumb-item{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;

    cursor: pointer;
    border: 0;
    opacity: 0.5;
    transition: all 0.3s linear;
}
.product-gallery-thumbs .product-gallery-thumb-item:hover{
    opacity: 1;
}
.product-gallery-thumbs .owl-item.current-thumb .product-gallery-thumb-item{
    opacity: 1;
}
.product-gallery-thumbs .product-gallery-thumb-item .icon-play{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s;
    color: rgba(255,255,255,0.7);
    font-size: 40px;
    font-style: normal;
}
.product-gallery-thumbs .product-gallery-thumb-item .icon-play:before{
    margin-top: -2px;
}
.product-gallery-thumbs .product-gallery-thumb-item .icon-play.self:before{
    content: '\e655';
    font-family: "thegem-icons";
}
.product-gallery-thumbs .product-gallery-thumb-item .icon-play.youtube:before{
    content: '\e610';
    font-family: "thegem-socials";
}
.product-gallery-thumbs .product-gallery-thumb-item .icon-play.vimeo:before{
    content: '\e637';
    font-family: "thegem-socials";
}

/*owl navigate styled*/
.product-gallery-slider .owl-nav,
.product-gallery-thumbs .owl-nav {
    opacity: 0;
    transition: opacity 0.3s linear;
}
.product-gallery-slider .owl-nav .owl-prev span,
.product-gallery-slider .owl-nav .owl-next span,
.product-gallery-thumbs .owl-nav .owl-prev span,
.product-gallery-thumbs .owl-nav .owl-next span {
    display: none;
}
.product-gallery-slider .owl-nav .owl-prev,
.product-gallery-slider .owl-nav .owl-next,
.product-gallery-thumbs .owl-nav .owl-prev,
.product-gallery-thumbs .owl-nav .owl-next {
    position: absolute;
    display: flex;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
}
.product-gallery-slider .owl-nav .owl-prev,
.product-gallery-slider .owl-nav .owl-next{
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}
.product-gallery-slider.dots .owl-nav .owl-prev,
.product-gallery-slider.dots .owl-nav .owl-next{
    top: calc(50% - 14px);
}
.product-gallery-slider .owl-nav .owl-prev {
    left: 0;
}
.product-gallery-slider .owl-nav .owl-next {
    right: 0;
}
.product-gallery-thumbs .owl-nav .owl-prev {
    left: 5px;
}
.product-gallery-thumbs .owl-nav .owl-next {
    right: 5px;
}

/*svg arrows*/
.product-gallery-slider .owl-nav .owl-prev:before,
.product-gallery-slider .owl-nav .owl-next:before,
.product-gallery-thumbs .owl-nav .owl-prev:before,
.product-gallery-thumbs .owl-nav .owl-next:before {
    content: '';
    width: 18px;
    height: 18px;
}
.product-gallery-slider .owl-nav .owl-prev:before,
.product-gallery-thumbs .owl-nav .owl-prev:before {
    background-image: url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/ar2.svg');
}
.product-gallery-slider .owl-nav .owl-next:before,
.product-gallery-thumbs .owl-nav .owl-next:before {
    background-image: url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/ar1.svg');
}

/*color arrows*/
.product-gallery-slider-wrap.init-color .product-gallery-slider .owl-nav .owl-prev:before,
.product-gallery-slider-wrap.init-color .product-gallery-slider .owl-nav .owl-next:before,
.product-gallery-thumbs-wrap.init-color .product-gallery-thumbs .owl-nav .owl-prev:before,
.product-gallery-thumbs-wrap.init-color .product-gallery-thumbs .owl-nav .owl-next:before {
    font-family: "thegem-icons";

    width: auto;
    height: auto;
    font-style: normal;
    vertical-align: top;
    font-size: 18px;
    background-image: none;
}
.product-gallery-slider-wrap.init-color .product-gallery-slider .owl-nav .owl-prev:before,
.product-gallery-thumbs-wrap.init-color .product-gallery-thumbs .owl-nav .owl-prev:before {
    content: '\e675';
}
.product-gallery-slider-wrap.init-color .product-gallery-slider .owl-nav .owl-next:before,
.product-gallery-thumbs-wrap.init-color .product-gallery-thumbs .owl-nav .owl-next:before {
    content: '\e676';
}

.product-gallery-slider .owl-nav .owl-prev.disabled,
.product-gallery-slider .owl-nav .owl-next.disabled,
.product-gallery-thumbs .owl-nav .owl-prev.disabled,
.product-gallery-thumbs .owl-nav .owl-next.disabled{
    opacity: 0;
}

.product-gallery-thumbs.navs-visible .owl-nav {
    opacity: 1;
}

/*owl dots styled*/
.product-gallery .owl-dots{
    display: flex;
    flex: auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.product-gallery .owl-dots .owl-dot{
    padding: 10px !important;
}
.product-gallery .owl-dots .owl-dot span{
    display: flex;
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}

/*Vertical thumbs styled*/
.product-gallery.vertical{
    display: flex;
    align-items: flex-start;
}
.product-gallery.vertical .product-gallery-slider-wrap{
    margin-bottom: 0;
}
.product-gallery.vertical .product-gallery-thumbs-wrap{
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    margin: 50% 0 0 -50%;
    padding: 0;
    order: 0;
    z-index: 0;
}
.product-gallery.vertical .product-gallery-thumbs .product-gallery-thumb-item{
    transform: rotate3d(0, 0, 1, -90deg) translate3d(0,0,0);
}
.product-gallery.vertical .product-gallery-slider{
    width: 100%;
    z-index: 10;
}

/*rtl huck*/
body.rtl .product-gallery.vertical {
    align-items: flex-end;
}
body.rtl .product-gallery.vertical .product-gallery-thumbs-wrap{
    top: -30px;
}

/*Labels*/
.product-gallery-labels .labels-outer .product-labels {
    position: absolute;
    width: auto;
    right: initial;
    left: 10px;
    top: 10px;
    transform: none;
    z-index: 10;
}
.product-gallery-labels .labels-outer .product-labels .text {
    display: block;
}
.product-gallery-labels .labels-outer .product-labels .label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.product-gallery-labels .labels-outer .product-labels.style-1 .label {
    width: 55px;
    height: 55px;
    padding: 4px;
    border-radius: 100%;
    text-align: center;
    margin: 0 auto;
}
.product-gallery-labels .labels-outer .product-labels.style-1 .out-of-stock-label + .onsale,
.product-gallery-labels .labels-outer .product-labels.style-1 .out-of-stock-label + .new-label {
    margin-top: -15%;
}
.product-gallery-labels .labels-outer .product-labels.style-1 .onsale .text b{
    font-size: 1.3em;
}
.product-gallery-labels .labels-outer .product-labels.style-1 .onsale + .new-label {
    margin-top: -15%;
}
.product-gallery-labels .labels-outer .product-labels.style-1 .new-label {
    width: 45px;
    height: 45px;
}
.product-gallery-labels .labels-outer .product-labels.style-1 .new-label .text{
    padding-top: 2px;
}
.product-gallery-labels .labels-outer .product-labels.style-2 {
    top: 16px;
    left: -6px;
}
.product-gallery-labels .labels-outer .product-labels.style-2 .label {
    position: relative;
    width: fit-content;
    height: auto;
    min-height: 19px;
    padding: 4px 8px;
    margin: 4px 0 0 0;
    border-radius: 3px 3px 3px 0;
    z-index: 1;
}
.product-gallery-labels .labels-outer .product-labels.style-2 .label .text b{
    font-size: 1.3em;
}
.product-gallery-labels .labels-outer .product-labels.style-2 .label:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    border-right-width: 6px;
    border-right-style: solid;
    border-bottom: 6px solid transparent;
    filter: brightness(80%);
}
.product-gallery-labels .labels-outer .product-labels.style-3 .label {
    position: relative;
    width: fit-content;
    height: auto;
    min-height: 21px;
    padding: 5px 10px;
    margin: 0 0 4px 0;
    border-radius: 10px;
    z-index: 1;
}
.product-gallery-labels .labels-outer .product-labels.style-3 .onsale .text b{
    font-size: 1.3em;
}
.product-gallery-labels .labels-outer .product-labels.style-4 {
    left: 0;
    top: 0;
}
.product-gallery-labels .labels-outer .product-labels.style-4 .label {
    position: relative;
    width: fit-content;
    height: auto;
    min-height: 19px;
    padding: 4px 8px;
    margin: 0 0 4px 0;
    border-radius: 0;
    z-index: 1;
}
.product-gallery-labels .labels-outer .product-labels.style-4 .label .text b{
    font-size: 1.3em;
}
.product-gallery-labels .labels-outer .product-labels.style-4 .label svg {
    position: absolute;
    left: 100%;
    top: 0;
}
.product-gallery-labels .labels-outer .product-labels.style-5 {
    left: 4px;
    top: 4px;
}
.product-gallery-labels .labels-outer .product-labels.style-5 .label {
    width: 46px;
    height: 46px;
    line-height: 1.2;
    padding: 4px;
    transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    border-radius: 70px 40px 70px 40px;
    border-style: dotted;
    margin: 6px 0px 0px 8px !important;
}
.product-gallery-labels .labels-outer .product-labels.style-5 .label .rotate-back {
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
}
.product-gallery-labels .labels-outer .product-labels.style-5 .label .text {
    transform: rotate(-25deg);
    -webkit-transform: rotate(-25deg);
}
.product-gallery-labels .labels-outer .product-labels.style-5 .out-of-stock-label + .onsale,
.product-gallery-labels .labels-outer .product-labels.style-5 .out-of-stock-label + .new-label {
    margin-top: -15%;
}
.product-gallery-labels .labels-outer .product-labels.style-5 .onsale {
    border-color: #F0F3F2;
}
.product-gallery-labels .labels-outer .product-labels.style-5 .onsale .text b{
    font-size: 1.3em;
}
.product-gallery-labels .labels-outer .product-labels.style-5 .onsale + .new-label {
    margin-top: -15%;
}
.product-gallery-labels .labels-outer .product-labels.style-5 .new-label {
    width: 38px;
    height: 38px;
    border-color: #F0F3F2;
}
.product-gallery-labels .labels-outer .product-labels.style-6 .label {
    padding: 4px;
}
.product-gallery-labels .labels-outer .product-labels.style-6 .out-of-stock-label {
    width: 40px;
    height: 40px;
    transform: rotate(340deg);
    -webkit-transform: rotate(340deg);
    border-radius: 3px 3px 3px 3px;
    margin: 10px 10px 10px 10px;
}
.product-gallery-labels .labels-outer .product-labels.style-6 .onsale {
    width: 36px;
    height: 36px;
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    border-radius: 3px 3px 3px 3px;
    margin: 10px 10px 10px 10px;
}
.product-gallery-labels .labels-outer .product-labels.style-6 .onsale .text b{
    font-size: 1.3em;
    line-height: 1.1;
}
.product-gallery-labels .labels-outer .product-labels.style-6 .new-label {
    width: 26px;
    height: 26px;
    transform: rotate(355deg);
    -webkit-transform: rotate(355deg);
    border-radius: 3px 3px 3px 3px;
    margin: 10px 10px 10px 10px;
}

/*fancybox styled*/
.product-gallery-fancy {
    position: absolute;
    top: 10px;
    right: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    width: 15px;
    height: 15px;
    color: #3c3950;

    opacity: 0;
    transition: all 0.3s linear;
    z-index: 10;
}
.product-gallery-fancy:before {
    content: '\e674';
    font-family: "thegem-icons";

    vertical-align: top;
    font-style: normal;
    font-size: 15px;
}
.fancybox-infobar {
    top: 0;
    left: 0;
    margin-left: 0;
}
.fancybox-infobar .fancybox-infobar__body{
    background-color: transparent;
}
.fancybox-infobar .fancybox-button--left,
.fancybox-infobar .fancybox-button--right{
    display: none;
}
.fancybox-thumbs__list a:before{
    opacity: 1;
    border: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.5);
    transition: all .3s linear;
}
.fancybox-thumbs__list a.fancybox-thumbs-active:before{
    background-color: transparent;
}
.fancybox-slide{
    padding-left: 0;
    padding-right: 0;
}
.product-gallery-slider:hover .owl-nav,
.product-gallery-thumbs:hover .owl-nav {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s linear;
}
.product-gallery-slider-wrap:hover .product-gallery-fancy.show{
    visibility: visible;
    opacity: 1 !important;
    transition: all 0.3s linear;
}
.fancybox-video {
    border: 0;
    outline: none;
}

/*Product Gallery Grid*/
.product-gallery__grid{
    position: relative;
    z-index: 1;
}
.product-gallery__elements{
    position: relative;
    z-index: 5;
    transition: all 0.3s;
}
.product-gallery__grid-wrap{
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.product-gallery__grid .product-gallery__grid-item{
    position: relative;
}
.product-gallery__grid .product-gallery-image{
    position: relative;
    overflow: hidden;
}
.product-gallery__grid .product-gallery__grid-item.video-block{
    background-color: transparent;
}
.product-gallery__grid .product-gallery__grid-item.video-block iframe,
.product-gallery__grid .product-gallery__grid-item.video-block video{
    width: 100%;
    height: 100%;
}
.product-gallery__grid .product-gallery__grid-item .fancy-product-gallery:hover .product-gallery-fancy.show{
    opacity: 1 !important;
}

.product-gallery .fancy-product-gallery img,
.product-gallery__grid .fancy-product-gallery img{
    pointer-events: none;
}

@media (max-width: 821px){
    .single-product-content-left,
    .single-product-content-right{
        width: 100% !important;
    }

    .product-gallery-slider .product-gallery-slider-item.video-block.overlay:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 70%;
        z-index: 10;
    }

    .product-gallery__grid{
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .product-gallery__grid.col-3x .product-gallery__grid-item{
        width: 50% !important;
    }
}

@media (max-width: 767px){
    .product-gallery.vertical{
        padding: 0;
    }
    .product-gallery.vertical .product-gallery-slider-wrap,
    .product-gallery.vertical .product-gallery-slider{
        width: 100%;
    }

    .product-gallery__grid .product-gallery__grid-item,
    .product-gallery__grid.col-3x .product-gallery__grid-item{
        width: 100% !important;
    }
}

/* GALLERY SLIDER HOVERS */

.gem-gallery-hover-default .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after {
	content: '\e60f';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-style: normal;
	font-size: 63px;
	height: 63px;
	line-height: 63px;
	width: 63px;
	text-align: center;
	position: absolute;
	top: 0%;
	left: 50%;
	margin-left: -30px;
	margin-top: -30px;
	z-index: 5;
	opacity: 0;
	-webkit-transition: top 0.3s, opacity 0.3s;
	transition: top 0.3s, opacity 0.3s;
}
.gem-gallery-hover-default .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item a:after {
	top: 50%;
	opacity: 1;
	-webkit-transition: top 0.4s ease 0.1s, opacity 0.5s 0.1s;
	transition: top 0.4s ease 0.1s, opacity 0.5s 0.1s;
}
.gem-gallery-hover-default .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title {
	width: 100%;
	padding: 0 25%;
	text-align: center;
	position: absolute;
	top: -50%;
	left: 0;
	margin-top: -15px;
	z-index: 5;
	opacity: 0;
	text-transform: uppercase;
	-webkit-transition: top 0.3s, opacity 0.3s;
	transition: top 0.3s, opacity 0.3s;
}
.gem-gallery-hover-default .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item .gem-gallery-item-title {
	top: 25%;
	opacity: 1;
	-webkit-transition: top 0.3s 0.2s, opacity 0.5s 0.25s;
	transition: top 0.3s 0.2s, opacity 0.5s 0.25s;
}
.gem-gallery-hover-default .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-description {
	width: 100%;
	padding: 0 25%;
	text-align: center;
	position: absolute;
	top: 20%;
	left: 0;
	margin-top: -12px;
	z-index: 5;
	opacity: 0;
	-webkit-transition: top 0.5s, opacity 0.4s;
	transition: top 0.5s, opacity 0.4s;
}
.gem-gallery-hover-default .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item .gem-gallery-item-description {
	top: 75%;
	opacity: 1;
	-webkit-transition: top 0.3s, opacity 0.3s;
	transition: top 0.3s, opacity 0.3s;
}





.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after {
	content: '\e629';
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
	font-size: 32px;
	width: 70px;
	height: 70px;
	line-height: 68px;
	text-align: center;
	position: absolute;
	top: 125%;
	left: 50%;
	margin-left: -35px;
	margin-top: -35px;
	z-index: 5;
	opacity: 0;
	border-radius: 70px;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: opacity 0.5s 0.05s, -webkit-transform 0s 0.55s, top 0.5s 0.05s;
	transition: opacity 0.5s 0.05s, transform 0s 0.55s, top 0.5s 0.05s;
}
.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item a:after {
	top: 50%;
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: top 0s 0.05s, -webkit-transform 0.5s 0.05s;
	transition: top 0s 0.05s, transform 0.5s 0.05s;
}
.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title {
	width: 100%;
	padding: 0 25%;
	text-align: center;
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: -15px;
	z-index: 5;
	opacity: 0;
	text-transform: uppercase;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: opacity 0.5s 0.1s, -webkit-transform 0s 0.6s, top 0.5s 0.1s;
	transition: opacity 0.5s 0.1s, transform 0s 0.6s, top 0.5s 0.1s;
}
.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item .gem-gallery-item-title {
	top: 25%;
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: top 0s, -webkit-transform 0.5s;
	transition: top 0s, transform 0.5s;
}
.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-description {
	width: 100%;
	padding: 0 25%;
	text-align: center;
	position: absolute;
	top: 150%;
	left: 0;
	margin-top: -12px;
	z-index: 5;
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: opacity 0.5s, -webkit-transform 0s 0.5s, top 0.5s;
	transition: opacity 0.5s, transform 0s 0.5s, top 0.5s;
}
.gem-gallery-hover-zooming-blur .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item .gem-gallery-item-description {
	top: 75%;
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: top 0s 0.1s, -webkit-transform 0.5s 0.1s;
	transition: top 0s 0.1s, transform 0.5s 0.1s;
}


.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item a .gem-gallery-caption:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	background: none !important;
	-webkit-transition: opacity 0.5s 0.2s;
}

.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item a:before {
	opacity: 0;
	background: -moz-linear-gradient(left,  rgba(255,43,88,0.8) 0%, rgba(255,216,0,0.8) 100%) !important;
	background: -webkit-linear-gradient(left,  rgba(255,43,88,0.8) 0%,rgba(255,216,0,0.8) 100%) !important;
	background: linear-gradient(to right,  rgba(255,43,88,0.8) 0%,rgba(255,216,0,0.8) 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccff2b58', endColorstr='#ccffd800',GradientType=1 ) !important;
	transition: opacity 0.5s 0.2s;
}

.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item a:before {
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after {
	content: '\e629';
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
	font-size: 32px;
	width: 70px;
	height: 70px;
	line-height: 68px;
	text-align: center;
	position: absolute;
	top: 80%;
	left: 66px;
	z-index: 5;
	opacity: 0;
	border-radius: 70px;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: opacity 0.5s 0.05s, -webkit-transform 0s 0.55s, top 0.5s 0.05s;
	transition: opacity 0.5s 0.05s, transform 0s 0.55s, top 0.5s 0.05s;
}
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item a:after {
	top: 63px;
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: top 0s 0.05s, -webkit-transform 0.5s 0.05s;
	transition: top 0s 0.05s, transform 0.5s 0.05s;
}
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title {
	max-width: 100%;
	padding: 25px 67px;
	text-align: left;
	position: absolute;
	top: auto;
	bottom: -100%;
	left: 0;
	margin: 0;
	z-index: 5;
	opacity: 0;
	text-transform: uppercase;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: opacity 0.5s 0.1s, -webkit-transform 0s 0.6s, bottom 0.5s 0.1s;
	transition: opacity 0.5s 0.1s, transform 0s 0.6s, bottom 0.5s 0.1s;
}
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item .gem-gallery-item-title {
	bottom: 0;
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: bottom 0s, -webkit-transform 0.5s;
	transition: bottom 0s, transform 0.5s;
}
.gem-gallery-hover-gradient .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-description {
	display: none !important;
}



.gem-gallery-hover-horizontal-sliding .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after {
	content: '\e629';
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
	font-size: 32px;
	height: 32px;
	line-height: 32px;
	width: 32px;
	text-align: left;
	position: absolute;
	top: 52%;
	left: 0%;
	-webkit-transition: left 0.25s, opacity 0.3s;
	transition: left 0.25s, opacity 0.3s;
	margin-top: -32px;
	z-index: 5;
	opacity: 0;
}
.gem-gallery-hover-horizontal-sliding .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item a:after {
	top: 52%;
	left: 8%;
	opacity: 1;
	-webkit-transition: left 0.25s, opacity 0.3s;
	transition: left 0.25s, opacity 0.3s;
}
.gem-gallery-hover-horizontal-sliding .gem-gallery-preview-carousel-wrap .gem-gallery-line{
	content: '';
	width: 0;
	height: 2px;
	background-color: #fff;
	display: block;
	position: absolute;
	top: 59%;
	left: 8%;
	opacity: 0;
	z-index: 100;
	-webkit-transition: width 0.25s, opacity 0.5s;
	transition: width 0.25s, opacity 0.5s;
}
.gem-gallery-hover-horizontal-sliding .gem-gallery-preview-carousel-wrap:hover .gem-gallery-line {
	content: '';
	width: 84%;
	opacity: 1;
	-webkit-transition: width 0.25s, opacity 0.5s;
	transition: width 0.25s, opacity 0.5s;
}
.gem-gallery-hover-horizontal-sliding .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title {
	text-align: left;
	position: absolute;
	top: 63%;
	left: 0%;
	z-index: 5;
	opacity: 0;
	text-transform: uppercase;
	-webkit-transition: left 0.25s 0.05s, opacity 0.25s 0.05s;
	transition: left 0.25s 0.05s, opacity 0.25s 0.05s;
}
.gem-gallery-hover-horizontal-sliding .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item .gem-gallery-item-title {
	top: 63%;
	opacity: 1;
	left:8%;
	-webkit-transition: left 0.25s 0.05s, opacity 0.25s 0.05s;
	transition: left 0.25s 0.05s, opacity 0.25s 0.05s;
}
.gem-gallery-hover-horizontal-sliding .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-description {
	text-align: left;
	position: absolute;
	width: 84%;
	top: 77%;
	left: 0%;
	z-index: 5;
	opacity: 0;
	-webkit-transition: left 0.25s 0.1s, opacity 0.25s 0.1s;
	transition: left 0.25s 0.1s, opacity 0.25s 0.1s;
}
.gem-gallery-hover-horizontal-sliding .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item .gem-gallery-item-description {
	top: 77%;
	left: 8%;
	opacity: 1;
	-webkit-transition: left 0.25s 0.1s, opacity 0.25s 0.1s;
	transition: left 0.25s 0.1s, opacity 0.25s 0.1s;
}
.gem-gallery-item-description p {
	padding-bottom: 0px;
	margin-bottom: 0px;
}





.gem-gallery-hover-vertical-sliding .gem-gallery-preview-carousel-wrap .gem-gallery-item a:after {
	content: '\e629';
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
	font-size: 32px;
	height: 32px;
	line-height: 32px;
	width: 32px;
	text-align: left;
	position: absolute;
	top: 50%;
	left: 8%;
	-webkit-transition: top 0.25s 0.1s, opacity 0.3s 0.1s;
	transition: top 0.25s 0.1s, opacity 0.3s 0.1s;
	margin-top: -32px;
	z-index: 5;
	opacity: 0;
}
.gem-gallery-hover-vertical-sliding .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item a:after {
	-webkit-transition: top 0.25s ease, opacity 0.3s;
	transition: top 0.25s ease, opacity 0.3s;
	top: 22%;
	left: 8%;
	opacity: 1;
}
.gem-gallery-hover-vertical-sliding .gem-gallery-preview-carousel-wrap .gem-gallery-line{
	content: '';
	width: 0;
	height: 2px;
	background-color: #fff;
	display: block;
	position: absolute;
	top: 29%;
	left: 8%;
	opacity: 0;
	z-index: 100;
	-webkit-transition: width 0.25s, opacity 0.5s;
	transition: width 0.25s, opacity 0.5s;
}
.gem-gallery-hover-vertical-sliding .gem-gallery-preview-carousel-wrap:hover .gem-gallery-line {
	content: '';
	width: 84%;
	opacity: 1;
	-webkit-transition: width 0.25s, opacity 0.5s;
	transition: width 0.25s, opacity 0.5s;
}
.gem-gallery-hover-vertical-sliding .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-title {
	text-align: left;
	position: absolute;
	top: 70%;
	left: 8%;
	z-index: 5;
	opacity: 0;
	text-transform: uppercase;
	-webkit-transition: top 0.25s 0.05s, opacity 0.25s 0.05s;
	transition: top 0.25s 0.05s, opacity 0.25s 0.05s;
}
.gem-gallery-hover-vertical-sliding .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item .gem-gallery-item-title {
	top: 33%;
	opacity: 1;
	left:8%;
	-webkit-transition: top 0.25s 0.05s, opacity 0.25s 0.05s;
	transition: top 0.25s 0.05s, opacity 0.25s 0.05s;
}
.gem-gallery-hover-vertical-sliding .gem-gallery-preview-carousel-wrap .gem-gallery-item .gem-gallery-item-description {
	text-align: left;
	width: 84%;
	position: absolute;
	top: 70%;
	left: 8%;
	z-index: 5;
	opacity: 0;
	-webkit-transition: top 0.25s, opacity 0.25s;
	transition: top 0.25s, opacity 0.25s;
}
.gem-gallery-hover-vertical-sliding .gem-gallery-preview-carousel-wrap:hover .gem-gallery-item .gem-gallery-item-description {
	top: 47%;
	left: 8%;
	opacity: 1;
	-webkit-transition: top 0.25s 0.1s, opacity 0.25s 0.1s;
	transition: top 0.25s 0.1s, opacity 0.25s 0.1s;
}

.portfolio {
	padding: 0;
}

.portfolio .portfolio-row {
	clear: both;
}

.portfolio .portfolio-item-size-container {
	position: relative;
	padding: 0;
	margin: 0;
	font-size: 0;
	line-height: 1;
}

.portfolio .portfolio-item-size-container .portfolio-item {
	min-height: 0;
	padding: 0 !important;
	margin: 0;
	position: absolute;
}

.portfolio .portfolio-item.not-found {
	width: 100% !important;
	text-align: left;
}

.portfolio .portfolio-item.not-found .found-wrap {
	display: flex;
	flex-direction: row !important;
	align-items: baseline;
	border: none;
}

.portfolio .portfolio-item.not-found .found-wrap:before {
	content: "\e67a";
	font-style: normal;
	font-family: 'thegem-icons';
	font-weight: normal;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	margin-right: 10px;
	position: initial;
	opacity: 1 !important;
}

.gem_tab .portfolio {
	padding-left: 1px;
	padding-right: 1px;
}

.portfolio h3.title {
	text-align: center;
}

.panel-sidebar-position-right .portfolio {
	padding-left: 0;
}

.portfolio-top-panel:not(.extended-posts-filter) {
	margin: 0 0 55px;
	overflow: visible;
}

.portfolio-top-panel .portfolio-filters,
.portfolio-top-panel .portfolio-filters-resp {
	position: relative;
	z-index: 5;
}

.portfolio-top-panel:not(.sticky-fixed) {
	position: relative;
}

.portfolio-top-panel.filters-top-sticky {
	z-index: 2;
}

@media (min-width: 1001px) {
	.portfolio-top-panel.filters-top-sticky {
		margin-bottom: 45px;
	}
}

.portfolio.without-padding .portfolio-top-panel {
	margin-left: 0;
	margin-right: 0;
}

.portfolio.hover-title.portfolio-items-masonry .portfolio-top-panel {
	margin-left: 0;
	margin-right: 0;
}

.portfolio-filters {
	font-size: 0;
}

@media (max-width: 767px) {
	.portfolio-filters-mobile + .portfolio-filters {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.portfolio-filters-mobile {
		display: none !important;
	}
}


.portfolio-filters a,
.portfolio-filters .portfolio-filters-more-button {
	display: inline-block;
	text-decoration: none;
	vertical-align: top;
	margin: 0 10px 10px 0;
	padding: 0 25px;
	min-height: 30px;
	height: auto;
	border-radius: 15px;
	color: inherit;
	border: none;
}

.portfolio-filters a:not(.filter-text-custom),
.portfolio-filters .portfolio-filters-more-button:not(.filter-text-custom) {
	line-height: 30px;
	font-size: var(--thegem-to-body-tiny-font-size);
}

.portfolio-filters a:last-child,
.portfolio-filters .portfolio-filters-more-button {
	margin-right: 0;
}

.portfolio-top-panel-row.filter-style-buttons .portfolio-filters div.portfolio-filters-more {
	margin: 0 10px 10px 0;
}

.portfolio-top-panel-row.filter-style-buttons .portfolio-filters div.portfolio-filters-more-button {
	margin: 0;
}

.portfolio-top-panel-row.filter-style-buttons .portfolio-filters-more-dropdown a {
	background: transparent !important;
	padding: 0 !important;
}

.portfolio-filters a .gem-print-icon {
	margin-right: 5px;
}

.portfolio-filters a span {
	display: inline-block;
	vertical-align: top;
}

.portfolio-filters a.all .icon {
	font-family: 'thegem-icons';
	font-size: 22px;
	line-height: 1.2727;
}

.portfolio-count {
	float: right;
	padding: 8px 8px 8px 0;
}

.portfolio-filters-resp {
	display: none;
	text-align: right;
	margin: 13px 0px;
	position: relative;
	z-index: 10;
}

.portfolio-filters-resp .menu-toggle {
	border: none;
	width: 32px;
	height: 30px;
	text-indent: 100%;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	outline: none;
	background: transparent;
	padding: 0;
}

.portfolio .portfolio-filters-resp .menu-toggle i {
	font-size: 24px;
	text-indent: initial;
}

.portfolio-filters-resp .menu-toggle .menu-line-1,
.portfolio-filters-resp .menu-toggle .menu-line-2,
.portfolio-filters-resp .menu-toggle .menu-line-3 {
	position: absolute;
	width: 8px;
	height: 8px;
	top: 50%;
	background: #99a9b5;
	margin-top: -4px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.portfolio-filters-resp .menu-toggle .menu-line-1 {
	left: 0;
}

.portfolio-filters-resp .menu-toggle .menu-line-2 {
	left: 50%;
	margin-left: -4px;
}

.portfolio-filters-resp .menu-toggle .menu-line-3 {
	right: 0;
}

.portfolio-filters-resp ul {
	padding: 0;
	list-style: none;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	margin: 0;
	position: absolute;
	width: 100%;
	left: 0;
	top: 35px;
	opacity: 0;
	pointer-events: none;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.portfolio-filters-resp ul li {
	text-align: left;
	position: relative;
}

.portfolio-filters-resp ul li a {
	display: block;
	text-decoration: none;
	padding: 14px 34px 17px 34px;
}

.portfolio-filters-resp ul li:after {
	position: absolute;
	right: 20px;
	top: 0;
	font-family: 'thegem-icons';
	font-size: 14px;
	line-height: 51px;
	speak: none;
	-webkit-font-smoothing: antialiased;
	content: "\e601";
}

.portfolio-filters-resp ul.dl-menuopen {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

/* Animation classes for moving out and in */
.portfolio-filters-resp ul.dl-animate-out {
	-webkit-animation: MenuAnimOut 0.4s;
	animation: MenuAnimOut 0.4s;
}

@-webkit-keyframes MenuAnimOut {
	0% {
	}
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@keyframes MenuAnimOut {
	0% {
	}
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

.portfolio-filters-resp ul.dl-animate-in {
	-webkit-animation: MenuAnimIn 0.3s;
	animation: MenuAnimIn 0.3s;
}

@-webkit-keyframes MenuAnimIn {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@keyframes MenuAnimIn {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@media only screen and (max-width: 1000px) {
	.portfolio-count {
		display: none;
	}

	.portfolio-filters {
		margin-right: 0;
	}
}

@media only screen and (max-width: 768px) {
	.portfolio-filters-resp {
		display: block;
	}

	.portfolio-count,
	.portfolio-filters {
		display: none;
	}

	.portfolio-top-panel:not(.filter-type-extended, .panel-with-search, .filters-mobile-dropdown) .portfolio-top-panel-right,
	.portfolio-top-panel:not(.filter-type-extended).panel-with-search .portfolio-top-panel-right .portfolio-sorting {
		display: none;
	}

	.portfolio-top-panel:not(.extended-posts-filter).filter-type-default {
		margin-bottom: 20px;
	}

	.portfolio-filters-resp {
		text-align: left;
	}

	.portfolio-top-panel {
		margin: 0 0 0px;
	}

}


.portfolio-filters-resp ul {
	border-top: 1px solid #dfe5e8;
	border-left: 1px solid #dfe5e8;
	border-right: 1px solid #dfe5e8;
}

.portfolio-filters-resp ul li {
	background: #f4f6f7;
	border-bottom: 1px solid #dfe5e8;
}

.portfolio-filters-resp ul > li a.active {
	background: #fff;
	border-left: 4px solid #00bcd4;
	padding-left: 26px;
	color: #3c3950;
}

.portfolio-filters-resp li a {
	color: #5f727f;
}

.portfolio-filters-resp li a:hover {
	color: #3c3950;
}
.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters,
.portfolio-top-panel-row.filter-style-buttons .portfolio-filters {
	margin-bottom: -10px;
}

.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters a,
.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters div.portfolio-filters-more-button,
.portfolio-top-panel-row.filter-style-tabs-default .portfolio-sorting-select div.portfolio-sorting-select-current {
	min-height: initial;
	padding: 0;
	margin-bottom: 10px;
	margin-right: 30px;
	background: none !important;
	border: none;
	border-radius: 0;
	text-transform: var(--thegem-to-tabs-title-thin-text-transform);
	letter-spacing: var(--thegem-to-tabs-title-thin-letter-spacing);
	color: var(--thegem-to-h6-color);
}
.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters a:not(.filter-text-custom),
.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters div.portfolio-filters-more-button:not(.filter-text-custom),
.portfolio-top-panel-row.filter-style-tabs-default .portfolio-sorting-select div.portfolio-sorting-select-current:not(.filter-text-custom) {
	font-family: var(--thegem-to-tabs-title-thin-font-family);
	font-style: var(--thegem-to-tabs-title-thin-font-style);
	font-weight: var(--thegem-to-tabs-title-thin-font-weight);
	font-size: var(--thegem-to-tabs-title-thin-font-size);
	line-height: var(--thegem-to-tabs-title-thin-line-height);
}



.portfolio-top-panel .portfolio-top-panel-row.filter-style-tabs-default .portfolio-search-filter {
	color: var(--thegem-to-h6-color);
}

.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters div.portfolio-filters-more {
	margin-bottom: 10px;
	margin-right: 30px;
}

.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters div.portfolio-filters-more-button,
.portfolio-top-panel-row.filter-style-tabs-default .portfolio-sorting-select div.portfolio-sorting-select-current {
	margin: 0;
}

.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters a:hover {
	color: var(--thegem-to-h6-color);
}

@media only screen and (max-width: 768px) {

	.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters,
	.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters {
		display: block;
	}
}

.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters a.hover-pointer,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters a.hover-pointer {
	position: relative;
}

.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters a:not(.active).hover-pointer:after,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters a:not(.active).hover-pointer:after {
	content: '';
	display: block;
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -2px;
	left: 50%;
	background: currentColor;
	-webkit-transition: width .3s, height .3s, left .3s;
	-o-transition: width .3s, height .3s, left .3s;
	transition: width .3s, height .3s, left .3s;
	-webkit-transition-timing-function: cubic-bezier(.58,.3,.005,1);
	-o-transition-timing-function: cubic-bezier(.58,.3,.005,1);
	transition-timing-function: cubic-bezier(.58,.3,.005,1);
}

.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters a:not(.active).hover-pointer:hover:after,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters a:not(.active).hover-pointer:hover:after {
	width: 100%;
	left: 0;
	z-index: 2;
}

.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters a.active,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters a.active {
	border-bottom: 2px solid currentColor;
	background: none;
}

@media (min-width: 1025px) {
	.portfolio-top-panel .portfolio-top-panel-row.filter-style-tabs-default .portfolio-search-filter.input-style input,
	.portfolio-top-panel .portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-search-filter.input-style input {
		border-width: 2px;
	}

	.portfolio-top-panel:not(.extended-posts-filter).filter-type-extended .portfolio-top-panel-right .portfolio-search-filter.input-style {
		margin-top: -10px;
		margin-bottom: 0;
	}
}

.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters a.active,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters a,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters div.portfolio-filters-more-button,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-sorting-select div.portfolio-sorting-select-current {
	text-transform: var(--thegem-to-tabs-title-text-transform);
	letter-spacing: 0;
	color: var(--thegem-to-h6-color);
}
.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters a.active:not(.filter-text-custom),
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters a:not(.filter-text-custom),
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters div.portfolio-filters-more-button:not(.filter-text-custom),
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-sorting-select div.portfolio-sorting-select-current:not(.filter-text-custom) {
	font-family: var(--thegem-to-tabs-title-font-family);
	font-style: var(--thegem-to-tabs-title-font-style);
	font-weight: var(--thegem-to-tabs-title-font-weight);
	font-size: var(--thegem-to-tabs-title-font-size);
	line-height: var(--thegem-to-tabs-title-line-height);
}

.portfolio-top-panel-row.filter-style-tabs-default .portfolio-filters a.active {
	letter-spacing: var(--thegem-to-tabs-title-letter-spacing);
}

.portfolio-top-panel-row.filter-style-tabs-default .portfolio-search-filter-button,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-search-filter-button {
	margin: -4px 0;
}

.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters a,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters div.portfolio-filters-more-button,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-sorting-select div.portfolio-sorting-select-current {
	min-height: initial;
	padding: 0;
	margin-bottom: 10px;
	margin-right: 30px;
	background: none !important;
	border: none;
	border-radius: 0;
	text-transform: initial;
	color: var(--thegem-to-body-color);
}

.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters div.portfolio-filters-more {
	margin-bottom: 10px;
	margin-right: 30px;
}

.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters div.portfolio-filters-more-button,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-sorting-select div.portfolio-sorting-select-current {
	margin: 0;
}

.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters a.active,
.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters a.active:hover {
	color: var(--thegem-to-link-color-active);
}

.portfolio-top-panel-row.filter-style-tabs-alternative .portfolio-filters a:hover {
	color: var(--thegem-to-link-color-hover);
}

.portfolio-filters-extended {
	display: flex;
	flex-wrap: wrap;
}

.portfolio-top-panel.filter-type-extended {
	display: block;
	margin: 0 0 20px;
}

.portfolio-navigator {
	font-size: 0;
	line-height: 1;
	text-align: center;
	clear: both;
}

.portfolio-load-more,
.mixed-show-all {
	clear: both;
	margin-top: 100px;
}

.portfolio-load-more .inner,
.mixed-show-all .inner {
	width: 100%;
	overflow: visible;
	text-align: center;
	padding: 0;
	position: relative;
}

.portfolio-load-more .gem-button-separator-line,
.mixed-show-all .gem-button-separator-line {
	border-color: #b6c6c9;
	color: #b6c6c9;
}

.portfolio .portfolio-set {
	position: relative;
	margin-bottom: 20px;
	padding: 0;
	z-index: 1;
	float: none;
}

.portfolio.disable-bottom-margin .portfolio-set {
	margin-bottom: 0;
}

.portfolio:not(.portfolio-slider):is(.portfolio-pagination-normal, .portfolio-pagination-more, .portfolio-pagination-disabled) .portfolio-set {
	margin-bottom: 0;
}

.hover-title.portfolio-items-masonry .portfolio-set {
	margin-bottom: 50px;
}

.portfolio-item {
	text-align: center;
	margin-top: 0;
}

.portfolio .portfolio-item .item-separator-box {
	height: 0;
	font-size: 0;
	line-height: 1;
}

.portfolio.item-separator .portfolio-item:before,
.portfolio.item-separator .portfolio-item:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 6;
	border-left-style: solid;
	border-left-width: 1px;
	opacity: 0;
	-webkit-transition: none;
	transition: none;
}

.portfolio.item-separator .portfolio-item:after {
	opacity: 1;
}

.portfolio.item-separator.no-gaps .fullwidth-block .portfolio-item.right-item:after {
	opacity: 0;
}

.portfolio.item-separator .portfolio-item:after {
	left: auto;
	right: 0;
}

.portfolio.item-separator .portfolio-item.left-item:before {
	opacity: 1;
}

.portfolio.item-separator.no-gaps .fullwidth-block .portfolio-item.left-item:before {
	opacity: 0;
}

.portfolio.item-separator .portfolio-item .item-separator-box:before,
.portfolio.item-separator .portfolio-item .item-separator-box:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 6;
	border-top-style: solid;
	border-top-width: 1px;
	opacity: 1;
}

.portfolio.item-separator .portfolio-item .item-separator-box:before {
	opacity: 0;
}

.portfolio.item-separator .portfolio-item .item-separator-box:after {
	top: auto;
	bottom: 0;
}

.portfolio.item-separator .portfolio-item.top-item .item-separator-box:before {
	opacity: 1;
}

.portfolio.portfolio-pagination-scroll .portfolio-scroll-pagination {
	visibility: hidden;
	position: relative;
}

.portfolio.portfolio-pagination-scroll .portfolio-scroll-pagination.active {
	visibility: visible;
	height: 61px;
}

.portfolio .fullwidth-block {
	padding: 0 21px;
	box-sizing: border-box;
}

.portfolio .fullwidth-block.no-paddings {
	padding: 0;
}

.portfolio.without-padding .fullwidth-block {
	padding: 0;
}

.portfolio .fullwidth-block .portfolio-item {
	float: left;
}

.portfolio-item .wrap {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.portfolio.disable-isotope .portfolio-item .wrap {
	transition: all 0.2s linear, height 0s;
}

.portfolio:not(.portfolio-slider) .portfolio-item .wrap {
	border: none;
}

.portfolio.columns-1 .portfolio-item .wrap {
	border-bottom: 0 none;
}

.portfolio-item .wrap > .caption {
	padding-bottom: 30px;
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.portfolio-item .wrap > .caption:not(.click-disabled) {
	cursor: pointer;
}

.portfolio .portfolio-item .wrap > .caption {
	position: relative;
	z-index: 1;
}

.portfolio.portfolio-grid:not(.extended-products-grid, .columns-1) .portfolio-item .wrap > .caption {
	border-bottom: 1px solid var(--thegem-to-box-border-color, #DFE5E8);
}

.portfolio.portfolio-grid:not(.extended-products-grid, .columns-1) .portfolio-item:hover .wrap > .caption {
	border-bottom-color: #f4f6f7;
}

.portfolio.portfolio-grid.background-style-gray .portfolio-item .wrap > .caption,
.portfolio.portfolio-grid.background-style-dark .portfolio-item .wrap > .caption,
.portfolio.portfolio-grid.background-style-transparent .portfolio-item .wrap > .caption {
	border-bottom-width: 0;
}

.portfolio.background-style-transparent .portfolio-item .wrap > .caption {
	background-color: transparent;
}

.portfolio.background-style-gray .portfolio-item .wrap,
.portfolio.background-style-dark .portfolio-item .wrap {
	border-bottom: 0 none;
}

.portfolio.background-style-gray:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .caption-sizable-content:after,
.portfolio.background-style-gray:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .caption-sizable-content:after,
.portfolio.background-style-dark .portfolio-item:not(:hover) .wrap > .caption .caption-sizable-content:after {
	box-shadow: 0 0 30px 45px #393d50;
}

.portfolio.background-style-dark.version-new.news-grid .portfolio-item .wrap > .caption .author,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .author,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .author,
.portfolio.background-style-dark.version-new.news-grid .portfolio-item .wrap > .caption .post-author-date-separator,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .post-author-date-separator,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .post-author-date-separator,
.portfolio.background-style-dark.version-new.news-grid .portfolio-item .wrap > .caption .post-date,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .post-date,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .post-date,
.portfolio.background-style-dark.version-new.news-grid .portfolio-item .wrap > .caption .description,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .description,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .description,
.portfolio.background-style-dark.version-new.news-grid .portfolio-item .wrap > .caption .grid-post-meta .grid-post-share .icon,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .grid-post-meta .grid-post-share .icon,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .grid-post-meta .grid-post-share .icon,
.portfolio.background-style-dark.version-new.news-grid .portfolio-item .wrap > .caption .grid-post-meta .comments-link a,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .grid-post-meta .comments-link a,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .grid-post-meta .comments-link a,
.portfolio.background-style-dark.version-new.news-grid .portfolio-item .wrap > .caption .grid-post-meta .zilla-likes,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover):not(.list-style) .portfolio-item:hover .wrap > .caption .grid-post-meta .zilla-likes,
.portfolio.background-style-gray.version-new.news-grid:not(.disabled-hover).list-style .portfolio-item .wrap > .caption:hover .grid-post-meta .zilla-likes {
	color: #99a9b5;
}

.portfolio.without-padding .portfolio-item .wrap {
	background: none;
}

.portfolio.hover-title .portfolio-item .wrap {
	border: 0;
	padding-bottom: 0;
	background: none;
}

.portfolio-items-masonry .wrap {
	padding-bottom: 0;
	border: 0;
	background: none;
}

.portfolio-item .image {
	display: inline-block;
	position: relative;
	max-width: 100%;
	padding: 0;
	vertical-align: top;
	overflow: hidden;
	flex: none;
}

.portfolio-grid:not(.columns-1) .portfolio-item .image {
	width: 100%;
}

.portfolio-item .image .image-inner {
	position: relative;
	z-index: 2;
}

.portfolio.columns-1 .portfolio-item .image {
	margin: 0;
	padding: 0;
}

.portfolio.title-on-hover.columns-1 .portfolio-item .image {
	width: 100%;
}

.portfolio-item:not(.product) .image .button {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 4;
	box-sizing: border-box;
	border-style: solid;
	border-color: transparent;
	border-width: 63px;
	border-right-width: 0;
	border-top-width: 0;
	cursor: pointer;
	height: 0;
}

.portfolio-item:not(.product) .image .button:before {
	content: "\e60c";
	font-family: 'thegem-icons';
	font-size: 19px;
	line-height: 1.05;
	position: absolute;
	left: -27px;
	top: 33px;
	z-index: 3;
}

.portfolio-item .image .button .button-corner {
	display: block;
	width: 8px;
	height: 8px;
	cursor: pointer;
	position: absolute;
	right: 0;
	bottom: -63px;
	z-index: 4;
	font-size: 0;
	line-height: 1;
}

.portfolio-item .image .button .button-corner span {
	display: block;
	width: 8px;
	height: 8px;
	cursor: pointer;
	font-size: 0;
	line-height: 1;
}

.portfolio-item .image .button .button-corner b {
	display: none;
	width: 1px;
	height: 2px;
	cursor: pointer;
	font-size: 0;
	line-height: 1;
	position: absolute;
	right: 0;
	bottom: 0;
}

.portfolio.portfolio-items-masonry .image .button .button-corner {
	display: none;
}

.portfolio.portfolio-items-masonry.hover-title .image .button .button-corner {
	display: block;
}

.portfolio.portfolio-items-masonry.hover-title .image .button .button-corner b {
	display: none;
}

.portfolio-item .image .button.active .button-corner {
	display: none;
}

.portfolio.without-padding .portfolio-item .image .button .button-corner {
	display: none;
}

.portfolio-item .image .image-inner {
	overflow: hidden;
}

.portfolio.portfolio-grid:is(.portfolio-style-creative, .portfolio-style-justified):not(.extended-products-grid, .columns-1, .list-style, .full-image) .portfolio-item:not(.double-item, .custom-ratio) .image-inner:not(.empty) {
	aspect-ratio: 1/1;
}

.portfolio.portfolio-grid:not(.inited) .image-inner,
.portfolio.portfolio-grid .image-inner.without-image,
.portfolio.portfolio-grid img[loading="lazy"] {
	background-color: var(--styled-bg-color, #f0f3f2);
}
.portfolio.portfolio-grid .thegem-template-loop-item img[loading="lazy"] {
	background-color: transparent;
}

.portfolio-item .image-inner.empty {
	display: none;
}

.portfolio-item .image picture {
	/*display: block;*/
	/*height: 100%;*/
}

.portfolio-item .image img {
	width: 100%;
	max-width: initial;
	height: auto;
	object-fit: cover;
}

.portfolio-style-masonry .portfolio-item .image img {
	width: calc(100% + 1px);
	margin: -0.5px;
}

.portfolio.portfolio-grid:is(.portfolio-style-creative, .portfolio-style-justified) .portfolio-item .image img {
	height: 100%;
	object-fit: cover;
}

.portfolio:is(.hover-horizontal-sliding, .hover-new-horizontal-sliding, .hover-default-horizontal-sliding) .portfolio-item .image img {
	width: 110%;
}

.portfolio.without-padding .portfolio-item .image img,
.portfolio.without-padding .portfolio-item .image .image-inner {
	border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
}

.portfolio-item .image .overlay {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 3;
	overflow: hidden;
}

.portfolio-item .image .overlay:not(.click-disabled) {
	cursor: pointer;
}

.portfolio-item .image .overlay .overlay-circle {
	display: none;
}

.portfolio-item .image img.blur {
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	-o-filter: blur(3px);
	-ms-filter: blur(3px);
	filter: blur(3px);
	filter: url(https://shop.ariservices.co/wp-content/themes/thegem/css/blur.svg#blur);
	filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=3);
}

.without-padding .portfolio-item .image .overlay {
	border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
}

.portfolio.portfolio-items-masonry.hover-title.without-padding .portfolio-item .image .overlay {
	border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
}

.portfolio-item .image .overlay .portfolio-item-link {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	text-decoration: none;
	z-index: 2;
}

.portfolio-item .image .overlay .links-wrapper {
	display: table;
	width: 100%;
	height: 100%;
}

.portfolio-item .image .overlay .links {
	display: table-cell;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}

.portfolio-item .image .overlay .links a.icon {
	display: inline-block;
	text-decoration: none;
	margin-right: 45px;
	vertical-align: bottom;
}

.portfolio-item.portfolio-item-template .image .overlay .links a.icon:last-of-type {
	margin-right: 0 !important;
}

.portfolio:not(.portfolio-slider):not(.products) .portfolio-item .image .overlay .links a.icon svg {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.portfolio-item .image .overlay .links .portfolio-icons-inner {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	line-height: 1;
	vertical-align: top;
	margin-left: -1px;
}

.portfolio.hover-default .portfolio-item .image .overlay .links .portfolio-icons-inner,
.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons-inner,
.portfolio.hover-zoom-overlay .portfolio-item .image .overlay .links .portfolio-icons-inner {
	justify-content: center;
}

.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons-inner,
.portfolio.hover-circular .portfolio-item .image .overlay .links .portfolio-icons-inner,
.portfolio.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons-inner {
	margin-left: 0;
}

.portfolio-item .image .overlay .links .portfolio-icons-inner a.icon/*,
.portfolio-item .image .overlay .links .portfolio-icons-inner .yith-wcwl-add-to-wishlist,
.portfolio-item .image .overlay .links .portfolio-icons-inner .yith-wcwl-add-to-wishlist > div*/ {
	float: left;
}

@media (min-width: 992px) {
	.portfolio.extended-portfolio-grid .portfolio-item.columns-desktop-5 {
		width: 20%;
	}
	.portfolio.extended-portfolio-grid .portfolio-item.columns-desktop-5:is(.double-item-squared, .double-item-horizontal) {
		width: 40%;
	}
}

.portfolio:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links a.icon {
	margin-right: 15px;
}

.portfolio-item .image .overlay .links a.icon.share {
	margin-right: 0;
}

.portfolio-item .image .overlay .links .portfolio-icons-inner > a.icon:last-child,
.portfolio-item .image .overlay .links .portfolio-icons-inner > div:last-child a.icon {
	margin-right: 0 !important;
}

.portfolio .portfolio-item .image .overlay .links a.icon {
	color: #ffffff;
}

.portfolio .portfolio-item .image .overlay .links a.icon i {
	color: #ffffff;
	transition: all 0.3s;
}

.portfolio .portfolio-item .image .overlay .links a.icon svg {
	fill: #ffffff;
	transition: all 0.3s;
}

.portfolio:not(.hover-zooming-blur) .portfolio-item .image .overlay .links a.icon:hover i {
	color: inherit;
}

.portfolio:not(.hover-zooming-blur) .portfolio-item .image .overlay .links a.icon:hover svg {
	fill: currentColor;
}

.portfolio:not(.products-grid) .portfolio-item .image .overlay .links a.icon:before {
	content: none !important;
}

.portfolio .portfolio-item .image .overlay .links a.icon {
	width: 48px;
	height: 48px;
	line-height: 48px;
}

.portfolio .portfolio-item .image .overlay .links a.icon i.default {
	font-family: 'thegem-icons';
	font-size: 48px;
	font-style: normal;
	line-height: inherit;
	display: inline-block;
}

.portfolio:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links a.icon {
	width: 24px;
	height: 24px;
	line-height: 24px;
}

.portfolio:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links a.icon i,
.portfolio:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links a.icon:before {
	font-size: 24px;
}

.portfolio:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links a.icon svg {
	width: 24px;
	height: 24px;
}

.portfolio-item .image .overlay .links a.page i.default:before {
	content: '\e61f';
}

.portfolio-item .image .overlay .links a.photo i.default:before {
	content: '\e60f';
}

.portfolio-item .image .overlay .links a.self-link i.default:before {
	content: '\e61f';
}

.portfolio-item .image .overlay .links a.inner-link i.default:before {
	content: '\e65b';
}

.portfolio-item .image .overlay .links a.outer-link i.default:before {
	content: '\e623';
}

.portfolio-item .image .overlay .links a.full-image i.default:before {
	content: '\e60f';
}

.portfolio-item .image .overlay .links a.youtube i.default:before,
.portfolio-item .image .overlay .links a.vimeo i.default:before,
.portfolio-item .image .overlay .links a.self_video i.default:before {
	content: '\e610';
}

.portfolio-item .image .overlay .links a.share i.default:before {
	content: '\e65c';
}

.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.page i.default:before {
	content: '\e628';
}

.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.photo i.default:before {
	content: '\e629';
}

.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.self-link i.default:before {
	content: '\e628';
}

.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.inner-link i.default:before {
	content: '\e61c';
}

.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.outer-link i.default:before {
	content: '\e608';
}

.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.full-image i.default:before {
	content: '\e629';
}

.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.youtube i.default:before,
.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.vimeo i.default:before,
.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.self_video i.default:before {
	content: '\e62a';
}

.portfolio .portfolio-item .image .overlay .links a.share i.default:before {
	margin-left: -0.2em;
}

.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.share i.default:before {
	content: '\e65d';
}

.portfolio-items-masonry:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.page i.default:before {
	content: '\e628';
}

.portfolio-items-masonry:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.photo i.default:before {
	content: '\e629';
}

.portfolio-items-masonry:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.self-link i.default:before {
	content: '\e628';
}

.portfolio-items-masonry:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.inner-link i.default:before {
	content: '\e61c';
}

.portfolio-items-masonry:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.outer-link i.default:before {
	content: '\e608';
}

.portfolio-items-masonry:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.full-image i.default:before {
	content: '\e629';
}

.portfolio-items-masonry:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.youtube i.default:before,
.portfolio-items-masonry:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.vimeo i.default:before,
.portfolio-items-masonry:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.self_video i.default:before {
	content: '\e62a';
}

.portfolio-items-masonry:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.share i.default:before {
	content: '\e65d';
}

.portfolio.hover-default:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle,
.portfolio.hover-zoom-overlay:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle,
.with-sidebar .portfolio.hover-default.columns-3:not(.portfolio-slider) .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle {
	display: none;
}

@media (max-width: 430px) {
	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.page i.default:before {
		content: '\e628';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.photo i.default:before {
		content: '\e629';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.self-link i.default:before {
		content: '\e628';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.inner-link i.default:before {
		content: '\e61c';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.outer-link i.default:before {
		content: '\e608';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.full-image i.default:before {
		content: '\e629';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.youtube i.default:before,
	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.vimeo i.default:before,
	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.self_video i.default:before {
		content: '\e62a';
	}

	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.share i.default:before {
		content: '\e65d';
	}
}

@media (min-width: 768px) and (max-width: 870px) {
	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.page i.default:before {
		content: '\e628';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.photo i.default:before {
		content: '\e629';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.self-link i.default:before {
		content: '\e628';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.inner-link i.default:before {
		content: '\e61c';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.outer-link i.default:before {
		content: '\e608';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.full-image i.default:before {
		content: '\e629';
	}

	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.youtube i.default:before,
	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.vimeo i.default:before,
	.portfolio:not(.hover-default) .portfolio-item .image .overlay .links a.self_video i.default:before {
		content: '\e62a';
	}

	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.share i.default:before {
		content: '\e65d';
	}
}

@media (min-width: 768px) and (max-width: 900px) {
	.portfolio:not(.hover-default).portfolio-items-masonry .portfolio-item .image .overlay .links a.page i.default:before {
		content: '\e628';
	}

	.portfolio:not(.hover-default).portfolio-items-masonry .portfolio-item .image .overlay .links a.photo i.default:before {
		content: '\e629';
	}

	.portfolio:not(.hover-default).portfolio-items-masonry .portfolio-item .image .overlay .links a.self-link i.default:before {
		content: '\e628';
	}

	.portfolio:not(.hover-default).portfolio-items-masonry .portfolio-item .image .overlay .links a.inner-link i.default:before {
		content: '\e61c';
	}

	.portfolio:not(.hover-default).portfolio-items-masonry .portfolio-item .image .overlay .links a.outer-link i.default:before {
		content: '\e608';
	}

	.portfolio:not(.hover-default).portfolio-items-masonry .portfolio-item .image .overlay .links a.full-image i.default:before {
		content: '\e629';
	}

	.portfolio:not(.hover-default).portfolio-items-masonry .portfolio-item .image .overlay .links a.youtube i.default:before,
	.portfolio:not(.hover-default).portfolio-items-masonry .portfolio-item .image .overlay .links a.vimeo i.default:before,
	.portfolio:not(.hover-default).portfolio-items-masonry .portfolio-item .image .overlay .links a.self_video i.default:before {
		content: '\e62a';
	}

	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.share i.default:before {
		content: '\e65d';
	}
}

@media (min-width: 1280px) {
	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.page i.default:before {
		content: '\e628';
	}

	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.photo i.default:before {
		content: '\e629';
	}

	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.self-link i.default:before {
		content: '\e628';
	}

	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.inner-link i.default:before {
		content: '\e61c';
	}

	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.outer-link i.default:before {
		content: '\e608';
	}

	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.full-image i.default:before {
		content: '\e629';
	}

	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.youtube i.default:before,
	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.vimeo i.default:before,
	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.self_video i.default:before {
		content: '\e62a';
	}

	.portfolio:not(.hover-default) .fullwidth-block .portfolio-item .image .overlay .links a.share i.default:before {
		content: '\e65d';
	}
}

.portfolio-item .caption {
	text-align: center;
	padding: 32px 30px 0;
}

.portfolio.portfolio-grid:not(.columns-1) .portfolio-item .wrap > .caption {
	/*min-height: 167px;*/
	min-height: initial;
}

.portfolio.no-gaps:not(.columns-1) .portfolio-item .wrap > caption,
.portfolio.background-style-gray:not(.columns-1) .portfolio-item .wrap > caption,
.portfolio.background-style-dark:not(.columns-1) .portfolio-item .wrap > caption {
	min-height: 168px;
}

.portfolio-item .overlay .caption {
	background-color: transparent;
}

.portfolio.columns-1 .portfolio-item .wrap > .caption {
	text-align: left;
}

.portfolio-items-masonry .portfolio-item .caption {
	border-top: 0 !important;
	padding-bottom: 28px;
	margin-top: -1px;
}

.portfolio-items-masonry .portfolio-item .overlay .caption {
	background-color: transparent;
}

.portfolio-items-masonry.without-padding .portfolio-item .caption {
	border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.portfolio-items-masonry.hover-title .portfolio-item .caption {
	border: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	padding-bottom: 0;
}

.portfolio.hover-title .portfolio-item .caption {
	padding: 39px 20px 0;
}

.portfolio.hover-title.columns-3 .portfolio-item .caption {
	padding-top: 25px;
}

.portfolio.hover-title:is(.columns-4, .columns-5, .columns-6) .portfolio-item .caption {
	padding-top: 15px;
}

.portfolio-item .caption .title {
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
	letter-spacing: 0;
}

.portfolio-item .caption .title span {
	display: block;
	margin: 0;
	color: inherit;
	overflow: hidden;
	text-overflow: ellipsis;
}

.portfolio.columns-1 .portfolio-item .caption .title {
	white-space: normal;
	text-overflow: clip;
	margin-bottom: 30px;
}

.portfolio.hover-title .portfolio-item .caption .title {
	margin-bottom: 20px;
}

.portfolio.hover-title:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .caption .title,
.portfolio.title-on-page.hover-gradient:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .caption .title,
.portfolio.title-on-page.hover-circular:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .caption .title,
.portfolio.hover-gradient.fullwidth-columns-6 .portfolio-item:not(.double-item-squared) .overlay .caption .title,
.portfolio.hover-circular.fullwidth-columns-6 .portfolio-item:not(.double-item-squared) .overlay .caption .title,
.portfolio.fullwidth-columns-6 .portfolio-item:not(.double-item-squared) .overlay .caption .title {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 10px;
}

@media (max-width: 767px) {
	.portfolio-style-creative.creative-disable-mobile:is(.columns-mobile-2) .portfolio-item .overlay .caption .title  {
		font-size: 14px;
		line-height: 1.5;
	}
}

@media (min-width: 768px) and (max-width: 992px)  {
	.portfolio-style-creative.creative-disable-tablet:is(.columns-tablet-4) .portfolio-item .overlay .caption .title  {
		font-size: 14px;
		line-height: 1.5;
	}
}

.portfolio .portfolio-item .caption .caption-separator {
	width: 50px;
	height: 1px;
	max-width: 100%;
	margin: 10px auto;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.portfolio:not(.disabled-hover) .portfolio-item:hover .caption .caption-separator {
	width: 90px;
}

.portfolio.columns-1 .portfolio-item .caption .info {
	white-space: nowrap;
}

.portfolio:not(.columns-1) .portfolio-item .caption .info .sep {
	height: auto;
}

.portfolio.columns-1 .portfolio-item .caption .caption-separator-line,
.portfolio.columns-1 .portfolio-item .caption .caption-separator-line-hover {
	position: relative;
	display: inline-block;
	vertical-align: bottom;
	padding-bottom: 18px;
}

.portfolio.columns-1 .portfolio-item .caption .caption-separator-line:after,
.portfolio.columns-1 .portfolio-item .caption .caption-separator-line-hover:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 100%;
}

.portfolio.columns-1 .portfolio-item .caption .caption-separator-line:after,
.portfolio.columns-1 .portfolio-item .caption .caption-separator-line-hover:after {
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.portfolio.columns-1 .portfolio-item .caption .caption-separator-line-hover:after {
	width: 0;
}

.portfolio.columns-1 .portfolio-item:hover .caption .caption-separator-line-hover:after {
	width: 100%;
}

.portfolio-item .wrap > .caption .subtitle,
.portfolio-item .wrap > .caption .info {
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.portfolio-item .caption .subtitle,
.portfolio-item .caption .info,
.portfolio-item .caption .subtitle a,
.portfolio-item .caption .info a,
.portfolio-item .caption .subtitle p {
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

}

.portfolio-item .caption .subtitle span {
	display: block;
	margin: 0;
	color: inherit;
	overflow: hidden;
	text-overflow: ellipsis;
}

.portfolio-items-masonry .portfolio-item .caption .subtitle,
.portfolio-items-masonry .portfolio-item .caption .info,
.portfolio-items-masonry .portfolio-item .caption .subtitle a,
.portfolio-items-masonry .portfolio-item .caption .info a,
.portfolio-items-masonry .portfolio-item .caption .subtitle p {
	white-space: normal;
	overflow: visible;
	text-overflow: clip;
}

.portfolio-item .caption .info a {
	cursor: pointer;
}

.portfolio.columns-1 .portfolio-item .caption .subtitle,
.portfolio.columns-1 .portfolio-item .caption .info,
.portfolio.columns-1 .portfolio-item .caption .subtitle a,
.portfolio.columns-1 .portfolio-item .caption .info a,
.portfolio.columns-1 .portfolio-item .caption .subtitle p {
	text-decoration: none;
	white-space: normal;
	overflow: visible;
}

.portfolio.columns-1 .portfolio-item .wrap {
	position: relative;
	display: flex;
}

.portfolio.columns-1 .portfolio-item .wrap > .caption {
	position: relative;
}

.portfolio-item .entry-info {
	bottom: 31px;
	position: absolute;
	right: 0;
	padding-left: 30px;
}

.portfolio.columns-1 .portfolio-item .caption .info {
	margin-bottom: 16px;
}

.portfolio-item .caption .info {
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: 1.5;
	margin-top: 3px;
}

.portfolio-item .caption .info .separator {
	margin: 0 4px;
}

.portfolio-item .caption .subtitle p {
	margin: 0;
}

.portfolio-item .caption .subtitle a:hover, .portfolio-item .caption .info a:hover {
	text-decoration: underline;
}

.portfolio.columns-1 .portfolio-item .caption .subtitle {
	margin-bottom: 15px;
}

.portfolio .overlay .links .caption .title,
.portfolio .overlay .links .caption .subtitle,
.portfolio .overlay .links .caption .subtitle p,
.portfolio .overlay .links .caption .info {
	white-space: normal;
	overflow: visible;
	text-overflow: clip;
}

.fullwidth-block.portfolio-items-2 .portfolio-item {
	max-width: 555px;
}

.portfolio .portfolio-item .overlay-line {
	height: 2px;
	font-size: 0;
	line-height: 1;
}

@media only screen and (min-width: 1920px) {
	.portfolio.fullwidth-columns-3 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-3 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 25%;
	}

	.portfolio.fullwidth-columns-3 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 50%;
	}

	.portfolio.fullwidth-columns-4 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-4 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 20%;
	}

	.portfolio.fullwidth-columns-4 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 40%;
	}

	.portfolio.fullwidth-columns-5 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-5 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 16.665%;
	}

	.portfolio.fullwidth-columns-5 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 33.33%;
	}

	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 14.2857%;
	}

	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 28.5714%;
	}
}

@media only screen and (min-width: 1680px) and (max-width: 1920px) {
	.portfolio.fullwidth-columns-3 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-3 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 33.333332%;
	}

	.portfolio.fullwidth-columns-3 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 66.66666%;
	}

	.portfolio.fullwidth-columns-4 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-4 .fullwidth-block .portfolio-item-size-container .portfolio-item,
	.portfolio.fullwidth-columns-3.porfolio-even-columns .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 25%;
	}

	.portfolio.fullwidth-columns-4 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical),
	.portfolio.fullwidth-columns-3.porfolio-even-columns .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 50%;
	}

	.portfolio.fullwidth-columns-5 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-5 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 20%;
	}

	.portfolio.fullwidth-columns-5 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 40%;
	}

	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-item-size-container .portfolio-item,
	.portfolio.fullwidth-columns-5.porfolio-even-columns .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 16.665%;
	}

	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical),
	.portfolio.fullwidth-columns-5.porfolio-even-columns .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 33.33%;
	}
}

@media only screen and (min-width: 1280px) and (max-width: 1680px) {
	.portfolio.fullwidth-columns-4 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-4 .fullwidth-block .portfolio-item-size-container .portfolio-item,
	.portfolio.fullwidth-columns-5 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-5 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 25%;
	}

	.portfolio.fullwidth-columns-4 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical),
	.portfolio.fullwidth-columns-5 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 50%;
	}

	.portfolio.fullwidth-columns-3 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-3 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 33.333332%;
	}

	.portfolio.fullwidth-columns-3 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 66.66666%;
	}

	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 20%;
	}

	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 40%;
	}

	.portfolio.fullwidth-columns-3.porfolio-even-columns .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 25%;
	}

	.portfolio.fullwidth-columns-3.porfolio-even-columns .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 50%;
	}

	.portfolio.fullwidth-columns-6.porfolio-even-columns .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 16.665%;
	}

	.portfolio.fullwidth-columns-6.porfolio-even-columns .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 33.33%;
	}
}

@media only screen and (min-width: 830px) and (max-width: 1280px) {
	.portfolio:not(.extended-portfolio-grid) .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio:not(.extended-portfolio-grid) .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 33.333332%;
	}

	.portfolio:not(.extended-portfolio-grid) .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 66.66666%;
	}

	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 25%;
	}

	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 50%;
	}

	.portfolio.porfolio-even-columns .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 25%;
	}

	.portfolio.porfolio-even-columns .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 50%;
	}
}

@media only screen and (max-width: 1100px) {
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 33.333332%;
	}

	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 66.66666%;
	}

	.portfolio.fullwidth-columns-6.porfolio-even-columns .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 25%;
	}

	.portfolio.fullwidth-columns-6.porfolio-even-columns .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 50%;
	}
}

@media only screen and (max-width: 880px) {
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 50%;
	}

	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
		width: 100%;
	}
}

@media only screen and (max-width: 830px) {
	.portfolio:not(.extended-portfolio-grid) .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio:not(.extended-portfolio-grid) .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio:not(.extended-portfolio-grid) .fullwidth-block .portfolio-item-size-container .portfolio-item,
	.portfolio:not(.extended-portfolio-grid) .portfolio-item-size-container .portfolio-item,
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 50%;
	}

	.portfolio:not(.extended-portfolio-grid) .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical),
	.portfolio:not(.extended-portfolio-grid) .portfolio-set .portfolio-item.double-item:not(.double-item-vertical),
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical),
	.portfolio.columns-1 .portfolio-set .portfolio-item,
	.portfolio.columns-1 .portfolio-item-size-container .portfolio-item {
		width: 100%;
	}
}

@media only screen and (max-width: 550px) {
	.portfolio:not(.extended-portfolio-grid) .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio:not(.extended-portfolio-grid) .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item,
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item.double-item:not(.double-item-vertical),
	.portfolio:not(.extended-portfolio-grid) .fullwidth-block .portfolio-item-size-container .portfolio-item,
	.portfolio:not(.extended-portfolio-grid) .portfolio-item-size-container .portfolio-item,
	.portfolio.fullwidth-columns-6 .fullwidth-block .portfolio-item-size-container .portfolio-item {
		width: 100%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1120px) {
	.with-sidebar .portfolio.columns-3 .portfolio-item,
	.with-sidebar .portfolio.columns-3 .portfolio-item-size-container .portfolio-item {
		width: 50%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1100px) {
	.portfolio:is(.columns-4, .columns-5, .columns-6) .portfolio-item,
	.portfolio:is(.columns-4, .columns-5, .columns-6) .portfolio-item-size-container .portfolio-item {
		width: 33.3333%;
	}

	.portfolio:is(.columns-4, .columns-5, .columns-6) .portfolio-item.double-item:not(.double-item-vertical) {
		width: 66.66%;
	}

	.portfolio:is(.columns-4, .columns-5, .columns-6).porfolio-even-columns .portfolio-item-size-container .portfolio-item {
		width: 25%;
	}

	.portfolio:is(.columns-4, .columns-5, .columns-6).porfolio-even-columns .portfolio-item.double-item:not(.double-item-vertical) {
		width: 50%;
	}
}

@media only screen and (min-width: 800px) {
	.portfolio.columns-3.porfolio-even-columns .portfolio-item-size-container .portfolio-item {
		width: 25%;
	}

	.portfolio.columns-3.porfolio-even-columns .portfolio-item.double-item:not(.double-item-vertical) {
		width: 50%;
	}
}

@media only screen and (min-width: 550px) and (max-width: 800px) {
	.portfolio.columns-3.porfolio-even-columns .portfolio-item-size-container .portfolio-item {
		width: 50%;
	}

	.portfolio.columns-3.porfolio-even-columns .portfolio-item.double-item:not(.double-item-vertical) {
		width: 100%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
	.portfolio:is(.columns-4, .columns-5, .columns-6).porfolio-even-columns .portfolio-item-size-container .portfolio-item {
		width: 25%;
	}

	.portfolio:is(.columns-4, .columns-5, .columns-6).porfolio-even-columns .portfolio-item.double-item:not(.double-item-vertical) {
		width: 50%;
	}
}

.portfolio.portfolio-style-metro.fullwidth-columns-4 .fullwidth-block .portfolio-set .portfolio-item,
.portfolio.portfolio-style-metro.fullwidth-columns-5 .fullwidth-block .portfolio-set .portfolio-item,
.portfolio.portfolio-style-metro.fullwidth-columns-6 .fullwidth-block .portfolio-set .portfolio-item,
.portfolio.portfolio-style-metro.fullwidth-columns-4 .fullwidth-block .portfolio-item-size-container .portfolio-item,
.portfolio.portfolio-style-metro.fullwidth-columns-5 .fullwidth-block .portfolio-item-size-container .portfolio-item,
.portfolio.portfolio-style-metro.fullwidth-columns-6 .fullwidth-block .portfolio-item-size-container .portfolio-item {
	width: auto;
}

.portfolio.fullwidth-columns-6 .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .description {
	display: none;
}

/* Vertical sliding hover */

.portfolio.hover-vertical-sliding:not(.version-alternative) .image .overlay .links,
.portfolio.hover-new-vertical-sliding.title-on-hover .image .overlay .links,
.portfolio.hover-default-vertical-sliding .image .overlay .links {
	text-align: left;
	vertical-align: top;
}

.portfolio.hover-vertical-sliding .overlay .links .caption {
	text-align: left;
	padding: 0;
}

.portfolio.hover-vertical-sliding .overlay .links {
	padding: 48px 42px;
}

.portfolio.hover-vertical-sliding .overlay .links a.icon {
	margin-right: 32px;
}

.portfolio.hover-vertical-sliding .overlay .overlay-line {
	margin: 16px 0;
}

.portfolio.hover-vertical-sliding:not(.version-alternative) .overlay .links .caption .description {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 0 42px 35px;
}

.vc_col-sm-9 .portfolio.hover-vertical-sliding .portfolio-item:not(.double-item-squared) .overlay .links {
	padding: 31px 28px;
}

.vc_col-sm-9 .portfolio.hover-vertical-sliding .portfolio-item:not(.double-item-squared) .overlay .description {
	padding: 0 28px 25px;
}

.portfolio.hover-vertical-sliding.columns-2 .overlay .links .caption .subtitle {
	width: 85%;
	margin-bottom: 12px;
}

.portfolio.hover-vertical-sliding.columns-2 .overlay .links .caption .info {
	width: 85%;
}

.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .links .caption .description,
.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle,
.with-sidebar .portfolio.hover-vertical-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle {
	display: none;
}

.portfolio.hover-vertical-sliding.columns-3 .overlay .links .caption .subtitle,
.portfolio.hover-vertical-sliding .fullwidth-block .overlay .links .caption .subtitle {
	margin-bottom: 0;
	width: 90%;
}

.portfolio.portfolio-style-metro.hover-vertical-sliding .overlay .links .caption .subtitle,
.portfolio.portfolio-style-metro.hover-vertical-sliding .overlay .links .caption .info {
	display: none;
}

@media only screen and (max-width: 1170px) {
	.portfolio.hover-vertical-sliding.columns-2 .overlay .links .caption .subtitle {
		width: 85%;
		margin-bottom: 12px;
	}

	.portfolio.hover-vertical-sliding.columns-2 .overlay .links .caption .info {
		width: 85%;
	}
}

@media only screen and (max-width: 920px) {
	.portfolio.hover-vertical-sliding.columns-2 .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding.columns-3 .overlay .links .caption .subtitle {
		display: block;
	}

	.portfolio.hover-vertical-sliding.columns-2 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle {
		margin-bottom: 0;
	}

	.portfolio.hover-vertical-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .info,
	.portfolio.hover-vertical-sliding.columns-2 .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}
}

@media only screen and (max-width: 830px) {
	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .overlay .links .caption .subtitle {
		display: block;
		margin: 0;
	}
}

@media only screen and (max-width: 768px) {
	.portfolio.hover-vertical-sliding.columns-2 .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding.columns-3 .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding .fullwidth-block .overlay .links .caption .subtitle {
		display: block;
	}

	.portfolio.hover-vertical-sliding.columns-2 .portfolio-item:not(.double-item-squared) .overlay .links .caption .info,
	.portfolio.hover-vertical-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .info,
	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .links .caption .info,
	.portfolio.hover-vertical-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: block;
	}
}

@media only screen and (max-width: 460px) {
	.portfolio.hover-vertical-sliding.columns-2 .portfolio-item .overlay .links .caption .info,
	.portfolio.hover-vertical-sliding.columns-3 .portfolio-item .overlay .links .caption .info,
	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item .overlay .links .caption .info,
	.portfolio.hover-vertical-sliding .fullwidth-block .portfolio-item .overlay .links .caption .info,
	.with-sidebar .portfolio.hover-vertical-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle {
		display: none !important;
	}

	.portfolio.hover-vertical-sliding.columns-2 .portfolio-item .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding.columns-3 .portfolio-item .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding .fullwidth-block .portfolio-item .overlay .links .caption .subtitle {
		margin-bottom: 0 !important;
	}
}

@media only screen and (max-width: 412px) {
	.portfolio.hover-vertical-sliding.columns-2 .portfolio-item .overlay .links .caption .info,
	.portfolio.hover-vertical-sliding.columns-3 .portfolio-item .overlay .links .caption .info,
	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item .overlay .links .caption .info,
	.portfolio.hover-vertical-sliding .fullwidth-block .portfolio-item .overlay .links .caption .info {
		display: none !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 800px) {
	.portfolio.hover-vertical-sliding.columns-2 .portfolio-item:not(.double-item-squared) .overlay .links .caption .info,
	.portfolio.hover-vertical-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-vertical-sliding.columns-1 .overlay .links,
	.portfolio.hover-vertical-sliding.columns-2 .overlay .links,
	.portfolio.hover-vertical-sliding.columns-3 .overlay .links {
		padding: 41px 28px;
	}

	.portfolio.hover-vertical-sliding.columns-1 .overlay .links .caption .description,
	.portfolio.hover-vertical-sliding.columns-2 .overlay .links .caption .description,
	.portfolio.hover-vertical-sliding.columns-3 .overlay .links .caption .description {
		padding: 0 28px 25px;
	}

	.portfolio.hover-vertical-sliding.columns-1 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding.columns-2 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle {
		margin-bottom: 0;
	}
}

@media only screen and (max-width: 412px) {
	.portfolio.hover-vertical-sliding.columns-1 .overlay .links,
	.portfolio.hover-vertical-sliding.columns-2 .overlay .links,
	.portfolio.hover-vertical-sliding.columns-3 .overlay .links,
	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .overlay .links,
	.portfolio.hover-vertical-sliding .fullwidth-block .overlay .links {
		padding: 41px 28px;
	}

	.portfolio.hover-vertical-sliding.columns-1 .overlay .links .caption .description,
	.portfolio.hover-vertical-sliding.columns-2 .overlay .links .caption .description,
	.portfolio.hover-vertical-sliding.columns-3 .overlay .links .caption .description,
	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .overlay .links .caption .description,
	.portfolio.hover-vertical-sliding .fullwidth-block .overlay .links .caption .description {
		padding: 0 28px 25px;
	}
}

@media only screen and (max-width: 340px) {
	.portfolio.hover-vertical-sliding.columns-1 .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding.columns-2 .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding.columns-3 .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding .fullwidth-block .overlay .links .caption .subtitle {
		display: none;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1150px) {
	.portfolio.hover-vertical-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-vertical-sliding.columns-3 .overlay .links {
		padding: 41px 28px;
	}

	.portfolio.hover-vertical-sliding.columns-3 .overlay .links .caption .description {
		padding: 0 28px 25px;
	}
}

@media only screen and (min-width: 920px) and (max-width: 992px) {
	.portfolio.hover-vertical-sliding.columns-3 .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding.columns-3 .overlay .links .caption .info {
		display: block;
	}
}

@media only screen and (min-width: 1150px) {
	.with-sidebar .portfolio.hover-vertical-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}

	.with-sidebar .portfolio.hover-vertical-sliding.columns-3 .overlay .links {
		padding: 41px 28px;
	}
}

@media only screen and (min-width: 768px) {
	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .overlay .links {
		padding: 41px 28px;
	}

	.portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .overlay .links .caption .description {
		padding: 0 28px 41px;
	}
}

@media only screen and (min-width: 1735px) {
	.portfolio.hover-vertical-sliding.columns-3 .fullwidth-block .overlay .links .caption .subtitle,
	.portfolio.hover-vertical-sliding.columns-3 .fullwidth-block .overlay .links .caption .info {
		display: block;
	}
}

@media only screen and (min-width: 992px) {
	.with-sidebar .portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .overlay .links {
		padding: 18px 12px;
	}

	.with-sidebar .portfolio.hover-vertical-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .links .caption .title {
		font-size: 14px;
		line-height: 21px;
	}
}

@media only screen and (max-width: 1120px) {
	.with-sidebar .portfolio.hover-vertical-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle {
		display: block;
	}
}

@media only screen and (max-width: 340px) {
	.with-sidebar .portfolio.hover-vertical-sliding.columns-3 .overlay .links .caption .subtitle {
		display: none;
	}
}

@media only screen and (min-width: 1250px) and (max-width: 1770px), screen and (min-width: 992px) and (max-width: 1170px), screen and (min-width: 768px) and (max-width: 900px) {
	.portfolio.hover-vertical-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-vertical-sliding .fullwidth-block .overlay .links .caption .subtitle {
		margin-bottom: 0;
	}

	.portfolio.hover-vertical-sliding .fullwidth-block .overlay .links {
		padding: 41px 28px;
	}

	.portfolio.hover-vertical-sliding .fullwidth-block .overlay .links .caption .description {
		padding: 0 28px 41px;
	}
}

@media only screen and (min-width: 980px) and (max-width: 1070px) {
	.portfolio.hover-vertical-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle {
		display: none;
	}
}

@media only screen and (min-width: 1170px) and (max-width: 1250px), screen and (min-width: 981px) and (max-width: 992px) {
	.portfolio.hover-vertical-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-vertical-sliding .fullwidth-block .overlay .links {
		padding: 18px 12px;
	}

	.portfolio.hover-vertical-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links .caption .title {
		font-size: 14px;
		line-height: 1.5;
	}

	.portfolio.hover-vertical-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links .caption .description {
		padding: 0 12px 41px;
	}
}

/* Default hover */
.portfolio.hover-default .portfolio-item .image .overlay .overlay-line,
.portfolio.hover-zoom-overlay .portfolio-item .image .overlay .overlay-line {
	display: none;
}

.portfolio.hover-default .portfolio-item .image .overlay .links .caption .info {
	display: block;
	/*padding-top: 10px;*/
}

.portfolio.hover-default .portfolio-item .image .overlay .links .caption {
	padding: 30px 30px 0;
}

.portfolio.hover-default .portfolio-item .image .overlay .links a.icon/*,
.portfolio.hover-default .portfolio-item .image .overlay .links .portfolio-icons.product-bottom .yith-wcwl-add-to-wishlist .yith-wcwl-add-button,
.portfolio.hover-default .portfolio-item .image .overlay .links .portfolio-icons.product-bottom .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse*/ {
	margin: 10px;
}

.portfolio.hover-default .portfolio-item .image .overlay .links a.icon {
	width: 48px;
	height: 48px;
}

.portfolio.hover-default .portfolio-item .image .overlay .links a.icon i,
.portfolio.hover-default .portfolio-item .image .overlay .links a.icon:before {
	font-size: 48px;
}

.portfolio.hover-default .portfolio-item .image .overlay .links a.icon svg {
	width: 48px;
	height: 48px;
}

.portfolio:is(.columns-4, .columns-5, .columns-6).hover-default .portfolio-item .image .overlay .links a.icon {
	width: 24px;
	height: 24px;
	line-height: 24px;
}

.portfolio:is(.columns-4, .columns-5, .columns-6).hover-default .portfolio-item .image .overlay .links a.icon i,
.portfolio:is(.columns-4, .columns-5, .columns-6).hover-default .portfolio-item .image .overlay .links a.icon:before {
	font-size: 24px;
}

.portfolio:is(.columns-4, .columns-5, .columns-6).hover-default .portfolio-item .image .overlay .links a.icon svg {
	width: 24px;
	height: 24px;
}

.portfolio.portfolio-style-metro.hover-default .portfolio-item .image .overlay .links .caption .subtitle,
.portfolio.portfolio-style-metro.hover-default .portfolio-item .image .overlay .links .caption .info {
	display: none;
}

@media (max-width: 991px) {
	.portfolio.hover-default .portfolio-item .image .overlay .links a.icon/*,
	.portfolio.hover-default .portfolio-item .image .overlay .links .portfolio-icons.product-bottom .yith-wcwl-add-to-wishlist .yith-wcwl-add-button,
	.portfolio.hover-default .portfolio-item .image .overlay .links .portfolio-icons.product-bottom .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse*/ {
		margin-right: 15px;
	}

	.portfolio.hover-default .portfolio-item .image .overlay .links a.icon {
		width: 24px;
		height: 24px;
		line-height: 24px;
	}

	.portfolio.hover-default .portfolio-item .image .overlay .links a.icon i,
	.portfolio.hover-default .portfolio-item .image .overlay .links a.icon:before {
		font-size: 24px;
	}

	.portfolio.hover-default .portfolio-item .image .overlay .links a.icon svg {
		width: 24px;
		height: 24px;
	}
}

.portfolio.hover-default .fullwidth-block .overlay .links .caption .subtitle {
	display: block;
}

@media only screen and (max-width: 380px) {
	.portfolio.hover-default .portfolio-item .image .overlay .links .caption .subtitle {
		display: none;
	}
}

@media only screen and (min-width: 1120px) {
	.with-sidebar .portfolio.hover-default .overlay .portfolio-item .image .links .caption .subtitle,
	.with-sidebar .portfolio.hover-default .overlay .portfolio-item .image .links .caption .info {
		display: none;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1040px) {
	.with-sidebar .portfolio.hover-default .portfolio-item .image .overlay .links .caption .subtitle,
	.with-sidebar .portfolio.hover-default .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1120px) {
	.portfolio.hover-default.columns-3 .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-default.columns-3 .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}
}

@media only screen and (min-width: 1100px)  and (min-width: 832px) and (max-width: 1030px) {
	.portfolio.hover-default:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .subtitle,
	.portfolio.hover-default:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .info {
		display: none;
	}
}

@media only screen and (min-width: 832px) and (max-width: 1100px) {
	.portfolio.hover-default:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-default:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}
}

@media only screen and (min-width: 1170px) and (max-width: 1250px), screen and (min-width: 900px) and (max-width: 992px) {
	.portfolio.hover-default .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .title {
		font-size: 14px;
		line-height: 1.5;
	}
}

@media only screen and (max-width: 768px) {
	.portfolio.hover-default .fullwidth-block .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-default .fullwidth-block .portfolio-item .image .overlay .links .caption .info {
		display: block;
	}
}

@media only screen and (max-width: 460px) {
	.portfolio.hover-default .fullwidth-block .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-default .fullwidth-block .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}
}

@media only screen and (min-width: 1250px) and (max-width: 1770px), screen and (min-width: 992px) and (max-width: 1170px), screen and (min-width: 768px) and (max-width: 900px) {
}

@media only screen and (min-width: 1170px) and (max-width: 1250px), screen and (min-width: 900px) and (max-width: 992px) {
	.portfolio.hover-default .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .title {
		font-size: 14px;
		line-height: 1.5;
	}
}

@media only screen and (max-width: 370px) {
	.portfolio.hover-default .portfolio-item .image .overlay .links .caption {
		padding-top: 15px;
	}
}

/* Zooming blur hover */

.portfolio.hover-zooming-blur .portfolio-item .image .overlay .overlay-line {
	display: none;
}

.portfolio.hover-zooming-blur .portfolio-item .image img {
	-o-transform: scale(1);
	-ms-transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.portfolio.hover-zooming-blur .portfolio-item .image img.zoom {
	transform: scale(1.15);
	-o-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
}

.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption {
	padding: 30px 30px 0;
}

.portfolio:not(.hover-default, .hover-zoom-overlay) .portfolio-item .image .overlay .links a.icon {
	margin-right: 16px;
}

.portfolio:not(.hover-default, .hover-zoom-overlay) .portfolio-item .image .overlay .links a.icon {
	display: inline-block;
	width: 70px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	border-radius: 50%;
}

.portfolio:not(.hover-default, .hover-zoom-overlay) .portfolio-item .image .overlay .links a.icon i,
.portfolio:not(.hover-default, .hover-zoom-overlay) .portfolio-item .image .overlay .links a.icon:before {
	font-size: 32px;
}

.portfolio:not(.hover-default, .hover-zoom-overlay) .portfolio-item .image .overlay .links a.icon svg {
	width: 32px;
	height: 32px;
}

.portfolio:not(.hover-default, .hover-zooming-blur, .hover-zoom-overlay, .hover-gradient) .portfolio-item .image .overlay .links a.icon {
	width: 32px;
	height: 32px;
	line-height: 32px;
}

.portfolio:not(.hover-default, .hover-zooming-blur, .hover-zoom-overlay, .hover-gradient) .portfolio-item .image .overlay .links a.icon i,
.portfolio:not(.hover-default, .hover-zooming-blur, .hover-zoom-overlay, .hover-gradient) .portfolio-item .image .overlay .links a.icon:before {
	font-size: 32px;
}

.portfolio:not(.hover-default, .hover-zooming-blur, .hover-zoom-overlay, .hover-gradient) .portfolio-item .image .overlay .links a.icon svg {
	width: 32px;
	height: 32px;
}

.portfolio:is(.columns-4, .columns-5, .columns-6):not(.hover-default, .hover-zooming-blur, .hover-zoom-overlay) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon {
	margin-right: 10px;
}

.portfolio:is(.columns-4, .columns-5, .columns-6):not(.hover-default, .hover-zooming-blur, .hover-zoom-overlay, .hover-gradient) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon {
	line-height: 24px;
	width: 24px;
	height: 24px;
}

.portfolio:is(.columns-4, .columns-5, .columns-6):not(.hover-default, .hover-zooming-blur, .hover-zoom-overlay, .hover-gradient) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon i,
.portfolio:is(.columns-4, .columns-5, .columns-6):not(.hover-default, .hover-zooming-blur, .hover-zoom-overlay, .hover-gradient) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon:before {
	font-size: 24px;
}

.portfolio:is(.columns-4, .columns-5, .columns-6):not(.hover-default, .hover-zooming-blur, .hover-zoom-overlay, .hover-gradient) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon svg {
	width: 24px;
	height: 24px;
}

.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon {
	margin: 5px;
}

.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon,
.portfolio.hover-zooming-blur:is(.columns-3, .columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon {
	margin: 4px;
}

.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon {
	background-color: #3c3950;
}

.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon:before {
	background-color: transparent;
}

.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon,
.portfolio.hover-zooming-blur:is(.columns-3, .columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon {
	width: 40px;
	height: 40px;
	line-height: 40px;
	/*font-size: 16px;*/
}

.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon i,
.portfolio.hover-zooming-blur:is(.columns-3, .columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon i,
.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon:before,
.portfolio.hover-zooming-blur:is(.columns-3,.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon:before {
	font-size: 16px;
}

.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon svg,
.portfolio.hover-zooming-blur:is(.columns-3, .columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon svg {
	width: 16px;
	height: 16px;
}

.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption .title {
	margin-bottom: 15px;
}

.portfolio.portfolio-style-metro.hover-zooming-blur .portfolio-item .image .overlay .links .caption .subtitle,
.portfolio.portfolio-style-metro.hover-zooming-blur .portfolio-item .image .overlay .links .caption .info {
	display: none;
}

@media only screen and (max-width: 430px) {
	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon {
		margin-right: 8px;
	}

	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon i,
	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon:before {
		font-size: 16px;
	}

	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon svg {
		width: 16px;
		height: 16px;
	}
}

@media only screen and (max-width: 991px) {
	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon {
		margin-right: 8px;
	}

	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon i,
	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon:before {
		font-size: 16px;
	}

	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links a.icon svg {
		width: 16px;
		height: 16px;
	}

	.portfolio.hover-zooming-blur .portfolio-item.double-item .image .overlay .links a.icon {
		margin-right: 8px;
	}

	.portfolio.hover-zooming-blur .portfolio-item.double-item .image .overlay .links a.icon {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	.portfolio.hover-zooming-blur .portfolio-item.double-item .image .overlay .links a.icon i {
		font-size: 16px;
	}

	.portfolio.hover-zooming-blur .portfolio-item.double-item .image .overlay .links a.icon svg {
		width: 16px;
		height: 16px;
	}
}

@media only screen and (max-width: 380px) {
	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-zooming-blur .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1100px), screen and (min-width: 768px) and (max-width: 830px) {
	.with-sidebar .portfolio.hover-zooming-blur.columns-2 .portfolio-item .image .overlay .links .caption .subtitle,
	.with-sidebar .portfolio.hover-zooming-blur.columns-2 .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}

	.with-sidebar .portfolio.hover-zooming-blur.columns-2 .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 768px) {
	.portfolio.hover-zooming-blur:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .subtitle,
	.portfolio.hover-zooming-blur:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .info,
	.portfolio.hover-zoom-overlay:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .subtitle,
	.portfolio.hover-zoom-overlay:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-zooming-blur:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links .caption .title,
	.portfolio.hover-zoom-overlay:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1120px) {
	.portfolio.hover-zooming-blur.columns-3 .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-zooming-blur.columns-3 .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-zooming-blur.columns-3 .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 1120px) {
	.with-sidebar .portfolio.hover-zooming-blur.columns-3 .portfolio-item .image .overlay .links .caption .subtitle,
	.with-sidebar .portfolio.hover-zooming-blur.columns-3 .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}

	.with-sidebar .portfolio.hover-zooming-blur.columns-3 .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 992px) {
	.with-sidebar .portfolio.hover-zooming-blur:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links .caption {
		padding-top: 15px;
	}

	.with-sidebar .portfolio.hover-zooming-blur:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .caption .title {
		font-size: 14px;
		line-height: 21px;
	}
}

@media only screen and (min-width: 1250px) and (max-width: 1820px), screen and (min-width: 992px) and (max-width: 1170px), screen and (min-width: 768px) and (max-width: 900px) {
	.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 1170px) and (max-width: 1250px), screen and (min-width: 900px) and (max-width: 992px) {
	.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item .image .overlay .links .caption {
		padding-top: 15px;
	}

	.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .title {
		font-size: 14px;
		line-height: 1.5;
	}

	.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-zooming-blur .fullwidth-block .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

/* Gradient hover */

.portfolio.hover-gradient .portfolio-item .image .overlay .overlay-line {
	display: none;
}

.portfolio.hover-gradient .portfolio-item .image img {
	-o-transform: scale(1);
	-ms-transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.portfolio.hover-gradient .portfolio-item .image .overlay .links,
.portfolio.hover-disabled .portfolio-item .image .overlay .links {
	vertical-align: bottom;
	padding: 0;
	text-align: left;
}

.portfolio.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons {
	position: absolute;
	left: 0;
	top: 0;
	padding: 25px 30px;
}

.portfolio.hover-gradient .portfolio-item .image .overlay .links .description {
	position: static;
}

.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption,
.portfolio.hover-disabled .portfolio-item .image .overlay .links .caption {
	padding: 0 30px 25px;
	width: 100%;
	text-align: left;
}

.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon {
	margin-right: 16px;
}

.portfolio:is(.columns-4, .columns-5, .columns-6):not(.hover-default, .hover-gradient, .hover-zooming-blur) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon {
	margin-right: 10px;
}

.portfolio.hover-gradient .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon,
.portfolio.hover-gradient:is(.columns-3, .columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon {
	margin-right: 8px;
}

.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon {
	background-color: rgba(255, 255, 255, 0.8);
	color: #3c3950;
}
.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon:before {
	background-color: transparent;
}

.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon i,
.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon:before {
	color: #3c3950;
}

.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon svg {
	fill: #3c3950;
}

.portfolio.hover-gradient .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon,
.portfolio.hover-gradient:is(.columns-3, .columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon {
	width: 40px;
	height: 40px;
	line-height: 40px;
}

.portfolio.hover-gradient .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon i,
.portfolio.hover-gradient:is(.columns-3, .columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon i,
.portfolio.hover-gradient .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon:before,
.portfolio.hover-gradient:is(.columns-3, .columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon:before {
	font-size: 16px;
}

.portfolio.hover-gradient .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon svg,
.portfolio.hover-gradient:is(.columns-3, .columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links a.icon svg {
	width: 16px;
	height: 16px;
}

.portfolio.hover-gradient:not(.products) .portfolio-item .image .overlay .links .caption .title,
.portfolio.hover-circular:not(.products) .portfolio-item .image .overlay .links .caption .title {
	margin-bottom: 0;
}

.portfolio.portfolio-style-metro.hover-gradient .portfolio-item .image .overlay .links .caption .subtitle,
.portfolio.portfolio-style-metro.hover-gradient .portfolio-item .image .overlay .links .caption .info {
	display: none;
}

.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .subtitle,
.portfolio.hover-disabled .portfolio-item .image .overlay .links .caption .subtitle,
.portfolio.hover-gradient .portfolio-item .wrap > .caption .subtitle {
	display: none !important;
}

@media (max-width: 992px) {

	.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .info,
	.portfolio.hover-gradient .portfolio-item .wrap > .caption .info,
	.portfolio.hover-default .portfolio-item .image .overlay .links .caption .description,
	.portfolio.hover-zoom-overlay .portfolio-item .image .overlay .links .caption .description {
		display: none !important;
	}
}

.portfolio.gem-instagram-gallery.hover-gradient .portfolio-item .image .overlay .links .caption .subtitle {
	display: block !important;
}

.portfolio.hover-gradient.fullwidth-columns-4 .fullwidth-block .portfolio-item .image .overlay .links .caption .subtitle {
	display: block !important;
	max-width: 70%;
}

.hover-gradient .portfolio-item .image .overlay .links .portfolio-sharing-pane {
	text-align: left;
}

.hover-gradient .portfolio-item .image .overlay .links .portfolio-sharing-pane a.socials-item:first-child {
	margin-left: 0;
}

.portfolio.hover-gradient.hover-gradient-title .portfolio-item .image .overlay .links .caption .title,
.portfolio.hover-gradient.hover-gradient-title .portfolio-item .image .overlay .links .caption .description {
	opacity: 1;
}

.portfolio.hover-gradient.hover-gradient-title .portfolio-item .image .overlay .links .caption .title,
.portfolio.hover-gradient.hover-gradient-title .portfolio-item .image .overlay .links .caption .info {
	opacity: 1;
	top: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
}

@media only screen and (max-width: 430px) {
	.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon {
		margin-right: 8px;
	}

	.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon i,
	.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon:before {
		font-size: 16px;
	}

	.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon svg {
		width: 16px;
		height: 16px;
	}
}

@media only screen and (max-width: 991px) {
	.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon/*,
	.portfolio.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons.product-bottom .yith-wcwl-add-to-wishlist .yith-wcwl-add-button,
	.portfolio.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons.product-bottom .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse*/ {
		margin-right: 8px;
	}

	.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon i,
	.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon:before {
		font-size: 16px;
	}

	.portfolio.hover-gradient .portfolio-item .image .overlay .links a.icon svg {
		width: 16px;
		height: 16px;
	}

	.portfolio.hover-gradient .portfolio-item.double-item .image .overlay .links a.icon {
		margin-right: 8px;
	}

	.portfolio.hover-gradient .portfolio-item.double-item .image .overlay .links a.icon {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	.portfolio.hover-gradient .portfolio-item.double-item .image .overlay .links a.icon i {
		font-size: 16px;
	}

	.portfolio.hover-gradient .portfolio-item.double-item .image .overlay .links a.icon svg {
		width: 16px;
		height: 16px;
	}
}

@media only screen and (max-width: 380px) {
	.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-gradient .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1100px), screen and (min-width: 768px) and (max-width: 830px) {
	.with-sidebar .portfolio.hover-gradient.columns-2 .portfolio-item .image .overlay .links .caption .subtitle,
	.with-sidebar .portfolio.hover-gradient.columns-2 .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}

	.with-sidebar .portfolio.hover-gradient.columns-2 .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 768px) {
	.portfolio.hover-gradient:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .subtitle,
	.portfolio.hover-gradient:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .info,
	.portfolio.hover-disabled:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-gradient:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1120px) {
	.portfolio.hover-gradient.columns-3 .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-gradient.columns-3 .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-gradient.columns-3 .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 1120px) {
	.with-sidebar .portfolio.hover-gradient.columns-3 .portfolio-item .image .overlay .links .caption .subtitle,
	.with-sidebar .portfolio.hover-gradient.columns-3 .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}

	.with-sidebar .portfolio.hover-gradient.columns-3 .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 992px) {
	.with-sidebar .portfolio.hover-gradient:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links .caption {
		padding-top: 15px;
	}

	.with-sidebar .portfolio.hover-gradient:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .caption .title {
		font-size: 14px;
		line-height: 21px;
	}
}

@media only screen and (min-width: 1250px) and (max-width: 1820px), screen and (min-width: 992px) and (max-width: 1170px), screen and (min-width: 768px) and (max-width: 900px) {
	.portfolio.hover-gradient .fullwidth-block .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-gradient .fullwidth-block .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-gradient .fullwidth-block .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 1170px) and (max-width: 1250px), screen and (min-width: 900px) and (max-width: 992px) {
	.portfolio.hover-gradient .fullwidth-block .portfolio-item .image .overlay .links .caption {
		padding-top: 15px;
	}

	.portfolio.hover-gradient .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .title {
		font-size: 14px;
		line-height: 1.5;
	}

	.portfolio.hover-gradient .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .product-price .price .amount {
		font-size: 127%;
	}

	.portfolio.hover-gradient .fullwidth-block .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-gradient .fullwidth-block .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-gradient .fullwidth-block .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 1280px) and (max-width: 1550px), screen and (min-width: 768px) and (max-width: 1100px) {
	.portfolio.hover-gradient.fullwidth-columns-4 .fullwidth-block .portfolio-item .image .overlay .links .caption .subtitle {
		display: none !important;
	}
}

/* Circular hover */

.portfolio.hover-circular .portfolio-item .image .overlay .overlay-circle {
	display: block;
}

.portfolio.hover-circular .portfolio-item .image img {
	-o-transform: scale(1);
	-ms-transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.portfolio.hover-circular .portfolio-item .image .overlay .links {
	vertical-align: bottom;
	padding: 0;
	text-align: left;
}

.portfolio.hover-circular .portfolio-item .image .overlay .links .portfolio-icons {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	padding: 35px 25px;
}

.portfolio.hover-circular .portfolio-item .image .overlay .links .description {
	position: static;
}

.portfolio.hover-circular .portfolio-item .image .overlay .links .caption {
	padding: 0 25px 25px;
	width: 100%;
	text-align: left;
}

@media only screen and (min-width: 550px) {
	.portfolio.hover-circular .portfolio-item.double-item-squared .image .overlay .links .portfolio-icons {
		padding: 45px 40px;
	}

	.portfolio.hover-circular .portfolio-item.double-item-horizontal .image .overlay .links .portfolio-icons {
		padding: 35px 40px;
	}

	.portfolio.hover-circular .portfolio-item.double-item-squared .image .overlay .links .caption {
		padding: 0 40px 35px;
	}

	.portfolio.hover-circular .portfolio-item.double-item-horizontal .image .overlay .links .caption {
		padding: 0 40px 25px;
	}
}

.portfolio.hover-circular .portfolio-item .image .overlay .links .caption .subtitle {
	max-width: 70%;
	left: 42px;
	display: none !important;
}

.portfolio.gem-instagram-gallery.hover-circular .portfolio-item .image .overlay .links .caption .subtitle {
	left: 25px;
	display: block !important;
}

.portfolio.hover-circular:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links .caption .subtitle,
.portfolio.hover-circular:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links .caption .info {
	display: none;
}

.hover-circular .portfolio-item .image .overlay .links .portfolio-sharing-pane {
	text-align: left;
}

.hover-circular .portfolio-item .image .overlay .links .portfolio-sharing-pane a.socials-item:first-child {
	margin-left: 0;
}

.portfolio.hover-circular.hover-circular-title .portfolio-item .image .overlay .links .caption .title,
.portfolio.hover-circular.hover-circular-title .portfolio-item .image .overlay .links .caption .description {
	opacity: 1;
}

.portfolio.hover-circular.hover-circular-title .portfolio-item .image .overlay .links .caption .title,
.portfolio.hover-circular.hover-circular-title .portfolio-item .image .overlay .links .caption .info {
	opacity: 1;
	top: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.portfolio.hover-circular .overlay .links a.icon {
	margin-right: 32px;
}

.portfolio.hover-circular .overlay .overlay-line {
	margin: 16px 0;
}

.vc_col-sm-9 .portfolio.hover-circular .portfolio-item:not(.double-item-squared) .overlay .links {
	padding: 31px 28px;
}

@media only screen and (min-width: 1280px) and (max-width: 1550px), screen and (min-width: 550px) and (max-width: 1100px), screen and (max-width: 400px) {
	.portfolio.hover-circular .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-circular .portfolio-item .image .overlay .links .caption .info {
		display: none;
	}
}

@media only screen and (max-width: 430px) {
	.portfolio.hover-circular .portfolio-item .image .overlay .links a.icon {
		margin-right: 8px;
	}

	.portfolio.hover-circular .portfolio-item .image .overlay .links a.icon {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	.portfolio.hover-circular .portfolio-item .image .overlay .links a.icon i,
	.portfolio.hover-circular .portfolio-item .image .overlay .links a.icon:before {
		font-size: 24px;
	}

	.portfolio.hover-circular .portfolio-item .image .overlay .links a.icon svg {
		width: 24px;
		height: 24px;
	}
}

@media only screen and (max-width: 991px) {
	.portfolio.hover-circular .portfolio-item .image .overlay .links a.icon {
		margin-right: 8px;
	}

	.portfolio.hover-circular .portfolio-item .image .overlay .links a.icon {
		width: 24px;
		height: 24px;
		line-height: 24px;
	}

	.portfolio.hover-circular .portfolio-item .image .overlay .links a.icon i,
	.portfolio.hover-circular .portfolio-item .image .overlay .links a.icon:before {
		font-size: 24px;
	}

	.portfolio.hover-circular .portfolio-item .image .overlay .links a.icon svg {
		width: 24px;
		height: 24px;
	}

	.portfolio.hover-circular .portfolio-item.double-item .image .overlay .links a.icon {
		margin-right: 8px;
	}

	.portfolio.hover-circular .portfolio-item.double-item-squared .image .overlay .links a.icon {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	.portfolio.hover-circular .portfolio-item.double-item-squared .image .overlay .links a.icon i,
	.portfolio.hover-circular .portfolio-item.double-item-squared .image .overlay .links a.icon:before {
		font-size: 32px;
	}

	.portfolio.hover-circular .portfolio-item.double-item-squared .image .overlay .links a.icon svg {
		width: 32px;
		height: 32px;
	}
}

@media only screen and (min-width: 992px) {
	.with-sidebar .portfolio.hover-circular:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .image .overlay .caption .title {
		font-size: 14px;
		line-height: 1.5;
	}
}

@media only screen and (min-width: 1170px) and (max-width: 1250px), screen and (min-width: 900px) and (max-width: 992px) {
	.portfolio.hover-circular .fullwidth-block .portfolio-item:not(.double-item-squared) .image .overlay .links .caption .title {
		font-size: 14px;
		line-height: 1.5;
	}

	.portfolio.hover-circular .fullwidth-block .portfolio-item .image .overlay .links .caption .title {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 400px) and (max-width: 550px) {
	.portfolio.hover-circular:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-circular:is(.columns-4, .columns-5, .columns-6) .portfolio-item .image .overlay .links .caption .info {
		display: block;
	}
}

@media only screen and (min-width: 800px) {
	.portfolio.hover-circular.columns-2 .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-circular.columns-2 .portfolio-item .image .overlay .links .caption .info,
	.portfolio.hover-circular.columns-1 .portfolio-item .image .overlay .links .caption .subtitle,
	.portfolio.hover-circular.columns-1 .portfolio-item .image .overlay .links .caption .info {
		display: block;
	}
}

/* Horizontal sliding hover */

.portfolio.hover-horizontal-sliding:not(.version-alternative) .overlay .links,
.portfolio.hover-horizontal-sliding:not(.version-alternative) .portfolio-item .image .links,
.portfolio.hover-new-horizontal-sliding.title-on-hover .overlay .links,
.portfolio.hover-default-horizontal-sliding .overlay .links {
	text-align: left;
	vertical-align: bottom;
}

.portfolio.hover-horizontal-sliding .overlay .links .caption {
	text-align: left;
	padding: 0;
}

.portfolio.hover-horizontal-sliding .overlay .links {
	padding: 39px 50px;
}

.portfolio.hover-horizontal-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links {
	padding: 41px 28px;
}

.portfolio.hover-horizontal-sliding .overlay .links a.icon,
.portfolio.hover-horizontal-sliding .overlay .links a.icon {
	margin-right: 32px;
}

.portfolio.hover-horizontal-sliding .overlay .overlay-line {
	margin: 30px 0;
}

.portfolio.hover-horizontal-sliding.columns-2 .overlay .links .caption .subtitle {
	width: 65%;
	margin-bottom: 3px;
}

.portfolio.hover-horizontal-sliding.columns-2 .overlay .links .caption .info {
	width: 65%;
}

.portfolio.hover-horizontal-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links a.icon,
.portfolio.hover-horizontal-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links a.icon {
	margin-right: 16px;
}

.portfolio.portfolio-style-metro.hover-horizontal-sliding .portfolio-item .image .overlay .links .caption .subtitle,
.portfolio.portfolio-style-metro.hover-horizontal-sliding .portfolio-item .image .overlay .links .caption .info {
	display: none;
}

@media only screen and (max-width: 1170px) {
	.portfolio.hover-horizontal-sliding.columns-2 .overlay .links .caption .subtitle {
		width: 85%;
	}

	.portfolio.hover-horizontal-sliding.columns-2 .overlay .links .caption .info {
		width: 85%;
	}
}

@media only screen and (max-width: 920px) {
	.portfolio.hover-horizontal-sliding.columns-2 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle {
		display: none;
	}

	.portfolio.hover-horizontal-sliding.columns-3 .overlay .links .caption .info {
		display: block;
	}
}

@media only screen and (max-width: 980px) {
	.portfolio.hover-horizontal-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	.portfolio.hover-horizontal-sliding.columns-2 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle,
	.portfolio.hover-horizontal-sliding.columns-3 .overlay .links .caption .subtitle,
	.portfolio.hover-horizontal-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle,
	.portfolio.hover-horizontal-sliding .fullwidth-block .overlay .links .caption .subtitle {
		display: block;
	}

	.portfolio.hover-horizontal-sliding.columns-2 .overlay .links .caption .info,
	.portfolio.hover-horizontal-sliding.columns-3 .overlay .links .caption .info,
	.portfolio.hover-horizontal-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .links .caption .info,
	.portfolio.hover-horizontal-sliding .fullwidth-block .overlay .links .caption .info {
		display: block;
	}
}

@media only screen and (max-width: 460px) {
	.portfolio.hover-horizontal-sliding:is(.columns-2, .columns-3, .columns-4, .columns-5, .columns-6) .overlay .links .caption .subtitle,
	.portfolio.hover-horizontal-sliding .fullwidth-block .overlay .links .caption .subtitle {
		display: none !important;
	}
}

@media only screen and (max-width: 440px) {
	.portfolio.hover-horizontal-sliding:is(.columns-2, .columns-3, .columns-4, .columns-5, .columns-6) .overlay .links .caption .info,
	.portfolio.hover-horizontal-sliding .fullwidth-block .overlay .links .caption .info {
		display: none !important;
	}
}

@media only screen and (min-width: 830px) {
	.with-sidebar .portfolio.hover-horizontal-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .info {
		display: none;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1150px) {
	.with-sidebar .portfolio.hover-horizontal-sliding.columns-2 .portfolio-item:not(.double-item-squared) .overlay .links a.icon {
		margin-right: 23px;
		width: 32px;
		height: 32px;
		line-height: 32px;
	}

	.with-sidebar .portfolio.hover-horizontal-sliding.columns-2 .portfolio-item:not(.double-item-squared) .overlay .links a.icon:before {
		font-size: 32px;
	}

	.with-sidebar .portfolio.hover-horizontal-sliding.columns-2 .portfolio-item:not(.double-item-squared) .overlay .links a.icon svg {
		width: 32px;
		height: 32px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 845px) {
	.portfolio.hover-horizontal-sliding:is(.columns-1, .columns-2, .columns-3) .overlay .links {
		padding: 41px 28px;
	}
}

@media only screen and (max-width: 440px) {
	.portfolio.hover-horizontal-sliding:is(.columns-1, .columns-2, .columns-3, .columns-4, .columns-5, .columns-6) .overlay .links,
	.portfolio.hover-horizontal-sliding .fullwidth-block .overlay .links {
		padding: 41px 30px;
	}
}

@media only screen and (max-width: 360px) {
	.portfolio.hover-horizontal-sliding:is(.columns-1, .columns-2, .columns-3, .columns-4, .columns-5, .columns-6) .overlay .links,
	.portfolio.hover-horizontal-sliding .fullwidth-block .overlay .links {
		padding: 31px 20px;
	}

	.portfolio.hover-horizontal-sliding .overlay .overlay-line {
		margin: 15px 0;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1150px) {
	.portfolio.hover-horizontal-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-horizontal-sliding.columns-3 .overlay .links {
		padding: 41px 28px;
	}

	.portfolio.hover-horizontal-sliding .overlay .overlay-line {
		margin: 15px 0;
	}

	.with-sidebar .portfolio.hover-horizontal-sliding.columns-2 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle {
		display: none;
	}
}

@media only screen and (min-width: 920px) and (max-width: 992px) {
	.portfolio.hover-horizontal-sliding.columns-3 .overlay .links .caption .subtitle,
	.portfolio.hover-horizontal-sliding.columns-3 .overlay .links .caption .info {
		display: block;
	}
}

@media only screen and (min-width: 1150px) {
	.with-sidebar .portfolio.hover-horizontal-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}

	.with-sidebar .portfolio.hover-horizontal-sliding.columns-3 .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle {
		display: none;
	}

	.with-sidebar .portfolio.hover-horizontal-sliding.columns-3 .overlay .links {
		padding: 41px 28px;
	}

	.portfolio.hover-horizontal-sliding .overlay .overlay-line {
		margin: 15px 0;
	}
}

@media only screen and (min-width: 768px) {

	.portfolio.hover-horizontal-sliding:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item-squared) .overlay .links .caption .subtitle {
		display: none;
	}

	.portfolio.hover-horizontal-sliding:is(.columns-4, .columns-5, .columns-6) .overlay .links {
		padding: 41px 28px;
	}

	.portfolio.hover-horizontal-sliding .overlay .overlay-line {
		margin: 15px 0;
	}
}

@media only screen and (min-width: 1735px) {
	.portfolio.hover-horizontal-sliding.columns-3 .fullwidth-block .overlay .links .caption .subtitle,
	.portfolio.hover-horizontal-sliding.columns-3 .fullwidth-block .overlay .links .caption .info {
		display: block;
	}
}

@media only screen and (min-width: 992px) {
	.with-sidebar .portfolio.hover-horizontal-sliding:is(.columns-4, .columns-5, .columns-6) .overlay .links {
		padding: 18px 12px;
	}

	.with-sidebar .portfolio.hover-horizontal-sliding:is(.columns-4, .columns-5, .columns-6) .overlay .links .caption .title {
		font-size: 14px;
		line-height: 1.5;
	}

	.portfolio.hover-horizontal-sliding .overlay .overlay-line {
		margin: 15px 0;
	}
}

@media only screen and (min-width: 1250px) and (max-width: 1770px), screen and (min-width: 992px) and (max-width: 1170px), screen and (min-width: 768px) and (max-width: 900px) {
	.portfolio.hover-horizontal-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-horizontal-sliding .fullwidth-block .overlay .links {
		padding: 41px 28px;
	}

	.portfolio.hover-horizontal-sliding .overlay .overlay-line {
		margin: 15px 0;
	}
}

@media only screen and (min-width: 1170px) and (max-width: 1250px), screen and (min-width: 900px) and (max-width: 992px) {
	.portfolio.hover-horizontal-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links .caption .info {
		display: none;
	}

	.portfolio.hover-horizontal-sliding .fullwidth-block .overlay .links {
		padding: 18px 12px;
	}

	.portfolio.hover-horizontal-sliding .overlay .overlay-line {
		margin: 15px 0;
	}
}

/* Disabled hover */

.portfolio.hover-disabled .portfolio-item .image .overlay,
.portfolio.hover-disabled .portfolio-item:hover .image .overlay,
.portfolio.hover-disabled .portfolio-item.hover-effect .image .overlay {
	display: block;
}

.portfolio.hover-disabled:not(.caption-position-image) .portfolio-item .image .overlay .links-wrapper {
	/*display: none;*/
}

.portfolio.hover-disabled .portfolio-item .image .overlay .links .caption {
	width: 100%;
}

/* PORTFOLIO TOP PANEL */

.portfolio-top-panel {
	display: table;
	width: 100%;
}

.portfolio-top-panel-left,
.portfolio-top-panel-right {
	display: table-cell;
	vertical-align: top;
}

.portfolio-sorting {
	display: inline-block;
	white-space: nowrap;
	margin: 0;
}

.portfolio-sorting.title-h6 {
	margin: 0;
}

.portfolio-sorting > div {
	display: inline-block;
	vertical-align: middle;
}

.portfolio-sorting-sep {
	height: 30px;
	width: 1px;
	margin: 0 20px;
	background-color: #b6c6c9;
}

.portfolio-sorting label {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	font-size: 14px;
}

.sorting-switcher {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 24px;
	border-radius: 12px;
	background-color: #b6c6c9;
}

.sorting-switcher:after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	top: 4px;
	left: 4px;
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
	background-color: #ffffff;
	border-radius: 50%;
}

.sorting-switcher.right:after {
	left: 20px;
}

.portfolio-top-panel.filter-type-default .portfolio-filters-resp {
	margin: 0;
}

.portfolio-top-panel.filter-type-default .portfolio-search-filter {
	margin-left: 5px;
}

@media (min-width: 768px) {
	.portfolio-top-panel.filter-type-default .portfolio-search-filter {
		margin-left: 15px;
	}
}

.portfolio-sharing-pane {
	height: 0;
	text-align: center;
}

.portfolio.hover-horizontal-sliding .portfolio-sharing-pane,
.portfolio.hover-vertical-sliding .portfolio-sharing-pane {
	text-align: left;
}

.portfolio-likes {
	margin-top: 0;
	height: 0;
	opacity: 0;
	text-align: center;
	text-align: -webkit-center;
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.portfolio-item.hide-likes .portfolio-likes {
	-o-transition: none;
	-webkit-transition: none;
	transition: none;
}

.portfolio-item:not(.hide-likes):hover .portfolio-likes,
.portfolio-item .portfolio-likes.visible {
	margin-top: 10px;
	height: 25px;
	opacity: 1;
}

.portfolio-likes .zilla-likes {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
}

.portfolio .zilla-likes {
	line-height: 1.3;
}

.portfolio .zilla-likes:before {
	content: none !important;
}

.portfolio .zilla-likes i {
	font-size: 16px;
	font-style: normal;
	margin-right: 6px;
	vertical-align: top;
}

.portfolio .portfolio-likes .zilla-likes i {
	font-size: 24px;
}

.portfolio .zilla-likes i.default:before {
	content: '\e641';
	display: inline-block;
	font-family: "thegem-icons";
	font-weight: normal;
	line-height: inherit;
}

.portfolio-item .image .overlay .portfolio-sharing-pane {
	/*white-space: nowrap;*/
	font-size: 0;
}

.portfolio:not(.hover-default, .hover-zooming-blur, .hover-gradient) .portfolio-item .image .overlay .portfolio-sharing-pane {
	margin-left: -6px;
}

.portfolio:is(.columns-4, .columns-5, .columns-6):not(.hover-default, .hover-zooming-blur, .hover-gradient) .portfolio-item .image .overlay .portfolio-sharing-pane {
	margin-left: -3px;
}

.portfolio-item .image .overlay .portfolio-sharing-pane .socials-item {
	margin: 0 10px;
}

.portfolio:is(.columns-3, .columns-4, .columns-5, .columns-6, .fullwidth-columns-4, .fullwidth-columns-5, .fullwidth-columns-6) .portfolio-item .image .overlay .portfolio-sharing-pane .socials-item {
	margin: 0 5px;
}

.caption-sizable-content {
	position: absolute;
	padding: inherit;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 30px;
	overflow: hidden;
}

.caption-sizable-content:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.caption-sizable-content .after-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.caption-sizable-content.with-bottom-line {
	bottom: 70px;
}

.caption-bottom-line {
	position: absolute;
	padding: inherit;
	padding-right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
}

.portfolio.columns-1 .portfolio-item .caption-bottom-line .gem-button {
	margin-bottom: 0;
	margin-right: 15px;
}

@media only screen and (max-width: 991px) {
	.portfolio.columns-1 .portfolio-item .wrap {
		display: block;
	}

	.caption-sizable-content,
	.caption-bottom-line {
		position: relative;
		bottom: auto;
		padding: 0;
	}

	.caption-sizable-content:after {
		display: none;
	}
}

.portfolio.columns-1.background-style-white.no-gaps .portfolio-item:not([style*='top: 0px;']) .wrap > .caption {
	border-top: 0;
}

.portfolio-title {
	text-align: center;
}

.hover-gradient.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .title,
.hover-circular.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .title {
	color: #212227;
}

.hover-gradient.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .subtitle,
.hover-circular.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .subtitle,
.hover-gradient.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .post-date,
.hover-circular.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .post-date,
.hover-gradient.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .author .author-name,
.hover-gradient.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .author .author-name a,
.hover-gradient.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .product-info .product-price,
.hover-circular.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .product-info .product-price,
.hover-gradient.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .product-info .product-price .amount,
.hover-circular.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .product-info .product-price .amount,
.news-grid.portfolio.hover-circular.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .info,
.news-grid.portfolio.hover-circular.title-on-page.title-style-dark .portfolio-item .image .overlay .links .caption .info a {
	color: #212227;
}

.news-grid.portfolio.title-on-page.hover-circular.title-style-dark .portfolio-item .image .overlay .links .caption .info span.sep {
	border-left-color: #212227;
}

.portfolio-load-more .gem-button-separator-button,
.mixed-show-all .gem-button-separator-button {
	padding: 0 20px;
}

.portfolio-load-more .gem-button-container .gem-button-separator-type-square,
.mixed-show-all .gem-button-container .gem-button-separator-type-square {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gem-button-icon-position-right .gem-inner-wrapper-btn {
	flex-direction: row-reverse;
}

.portfolio .gem-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
}

.portfolio .gem-pagination a,
.portfolio .gem-pagination span.page-numbers {
	box-sizing: content-box;
	line-height: 30px;
}

.portfolio:not(.category-grid) .gem-pagination .prev, .portfolio:not(.category-grid) .gem-pagination .next {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.portfolio:not(.category-grid) .gem-pagination .prev:before, .portfolio:not(.category-grid)  .gem-pagination .next:before {
	content: none;
}

.portfolio .gem-pagination .prev i, .portfolio .gem-pagination .next i {
	font-size: 24px;
}

.portfolio .gem-pagination .prev i.default, .portfolio .gem-pagination .next i.default {
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
}

.gem-pagination .prev i.default:before {
	content: '\e636';
}

.gem-pagination .next i.default:before {
	content: '\e634';
}

.portfolio .gem-button-separator, .portfolio .gem-button-separator-line {
	width: 100%;
}

.portfolio.caption-position-zigzag.portfolio-pagination-normal .portfolio-item.item-even .wrap,
.portfolio.caption-position-zigzag:not(.portfolio-pagination-normal) .portfolio-item:nth-child(even) .wrap {
	flex-direction: row-reverse;
}

.portfolio.portfolio-list .portfolio-item {
	margin-bottom: -1px;
}

.portfolio.disable-isotope .portfolio-set {
	display: flex;
	flex-wrap: wrap;
}

.portfolio.disable-isotope:not(.portfolio-list, .list-style, .columns-1).title-on-page .portfolio-set .portfolio-item .wrap {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.portfolio.disable-isotope.title-on-page .portfolio-set .portfolio-item .wrap > .caption {
	flex: auto;
}

.portfolio .portfolio-item.product.inline-column {
	float: left;
	margin-bottom: 0;
}

.preloader-new ~ * .portfolio-set {
	opacity: 0.6;
}

.preloader-new .preloader-spin,
.preloader-new .preloader-spin-new {
	top: 100px;
	left: initial;
	right: 50%;
}

.portfolio.hover-none .portfolio-item .image .overlay {
	display: block;
}

.portfolio-preloader-wrapper {
	position: relative;
	width: 100%;
	clear: both;
}

/* Creative Grid */

.portfolio-grid.portfolio-style-creative .portfolio-set {
	display: grid;
	grid-auto-rows: minmax(0, 1fr);
}
.portfolio-grid.portfolio-style-creative .portfolio-set:before, .portfolio-grid.portfolio-style-creative .portfolio-set:after {
	content: none;
}
.portfolio-grid.portfolio-style-creative.columns-mobile-1 .portfolio-set {
	grid-template-columns: minmax(0, 1fr);
}
.portfolio-grid.portfolio-style-creative.columns-mobile-2 .portfolio-set {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
@media (min-width: 768px) {
	.portfolio-grid.portfolio-style-creative.columns-tablet-2 .portfolio-set {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
	.portfolio-grid.portfolio-style-creative.columns-tablet-3 .portfolio-set {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	}
	.portfolio-grid.portfolio-style-creative.columns-tablet-4 .portfolio-set {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	}
}
@media (min-width: 992px) {
	.portfolio-grid.portfolio-style-creative.columns-1 .portfolio-set {
		grid-template-columns: minmax(0, 1fr);
	}
	.portfolio-grid.portfolio-style-creative.columns-2 .portfolio-set {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
	.portfolio-grid.portfolio-style-creative.columns-3 .portfolio-set {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	}
	.portfolio-grid.portfolio-style-creative:is(.columns-4, .fullwidth-columns-4) .portfolio-set {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	}
	.portfolio-grid.portfolio-style-creative:is(.columns-5, .fullwidth-columns-5) .portfolio-set {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	}
	.portfolio-grid.portfolio-style-creative:is(.columns-6, .fullwidth-columns-6) .portfolio-set {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	}
}
.portfolio-grid.portfolio-style-creative .portfolio-item {
	width: auto !important;
}
.portfolio-grid.portfolio-style-creative .portfolio-item:not(.size-item) .wrap-out {
	position: relative;
	height: 100%;
}
.portfolio-grid.portfolio-style-creative .portfolio-item:not(.size-item) .wrap-out .wrap {
	/*position: absolute;*/
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.portfolio-grid.portfolio-style-creative .portfolio-item:not(.size-item) .wrap-out .wrap .image .image-inner,
.portfolio-grid.portfolio-style-creative .portfolio-item:not(.size-item) .wrap-out .wrap .image .post-featured-content {
	height: 100%;
}
.portfolio-grid.portfolio-style-creative .portfolio-item:not(.size-item) .wrap-out .wrap .image {
	flex: none;
}
.portfolio-grid.portfolio-style-creative .portfolio-item:not(.size-item) .wrap-out .wrap > .caption {
	flex: none;
}
.portfolio-grid.portfolio-style-creative .portfolio-item.double-item .wrap-out .wrap .image {
	flex: auto;
}
.portfolio-grid.portfolio-style-creative .portfolio-item.double-item .wrap-out .wrap .image .image-inner {
	position: absolute;
	width: 100%;
}
.portfolio-grid.portfolio-style-creative .portfolio-item.double-item .wrap-out .wrap > .caption {
	flex: none;
}
.portfolio-grid.portfolio-style-creative .portfolio-item.size-item {
	grid-column-end: span 1 !important;
	grid-row-end: span 1 !important;
	grid-column-start: 1;
	grid-row-start: 1;
	z-index: -1;
	opacity: 0 !important;
	visibility: hidden;
}
.portfolio-grid.portfolio-style-creative .portfolio-item:first-child {
	grid-column-start: 1;
	grid-row-start: 1;
}
.portfolio-grid.portfolio-style-creative .portfolio-item.double-item-squared {
	grid-column-end: span 2;
	grid-row-end: span 2;
}
.portfolio-grid.portfolio-style-creative .portfolio-item.double-item-horizontal {
	grid-column-end: span 2;
}
.portfolio-grid.portfolio-style-creative .portfolio-item.double-item-vertical {
	grid-row-end: span 2;
}
@media (max-width: 767px) {
	.portfolio-grid.portfolio-style-creative.creative-disable-mobile .portfolio-item {
		grid-column-end: span 1 !important;
		grid-row-end: span 1 !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.portfolio-grid.portfolio-style-creative.creative-disable-tablet .portfolio-item {
		grid-column-end: span 1 !important;
		grid-row-end: span 1 !important;
	}
}
.portfolio-grid.portfolio-style-creative.title-on-hover .portfolio-item.double-item .image {
	position: absolute;
	width: 100%;
	height: 100%;
}

/* End Creative Grid */

.portfolio.portfolio-grid.hover-elements-size-small:is(.hover-default, .hover-horizontal-sliding, .hover-vertical-sliding, .hover-circular) .portfolio-item .image .overlay .links a.icon {
	width: 24px;
	height: 24px;
	line-height: 24px;
}
.portfolio.portfolio-grid.hover-elements-size-small:is(.hover-default, .hover-horizontal-sliding, .hover-vertical-sliding, .hover-circular) .portfolio-item .image .overlay .links a.icon {
	margin-right: 20px;
}
.portfolio.portfolio-grid.hover-elements-size-small:is(.hover-default, .hover-horizontal-sliding, .hover-vertical-sliding, .hover-circular) .portfolio-item .image .overlay .links a.icon i,
.portfolio.portfolio-grid.hover-elements-size-small:is(.hover-default, .hover-horizontal-sliding, .hover-vertical-sliding, .hover-circular) .portfolio-item .image .overlay .links a.icon:before {
	font-size: 24px;
}
.portfolio.portfolio-grid.hover-elements-size-small:is(.hover-zooming-blur, .hover-gradient) .portfolio-item .image .overlay .links a.icon {
	width: 40px;
	height: 40px;
	line-height: 40px;
}
.portfolio.portfolio-grid.hover-elements-size-small:is(.hover-zooming-blur, .hover-gradient) .portfolio-item .image .overlay .links a.icon  {
	margin-right: 8px;
}
.portfolio.portfolio-grid.hover-elements-size-small:is(.hover-zooming-blur, .hover-gradient) .portfolio-item .image .overlay .links a.icon i,
.portfolio.portfolio-grid.hover-elements-size-small:is(.hover-zooming-blur, .hover-gradient) .portfolio-item .image .overlay .links a.icon:before {
	font-size: 16px;
}
.portfolio.hover-title.hover-elements-size-small .portfolio-item .overlay .caption .title,
.portfolio.title-on-page.hover-gradient.hover-elements-size-small .portfolio-item .overlay .caption .title,
.portfolio.title-on-page.hover-circular.hover-elements-size-small .portfolio-item .overlay .caption .title,
.portfolio.title-on-page.hover-disabled.hover-elements-size-small .portfolio-item .overlay .caption .title,
.portfolio.hover-gradient.hover-elements-size-small .portfolio-item .overlay .caption .title,
.portfolio.hover-circular.hover-elements-size-small .portfolio-item .overlay .caption .title,
.portfolio.hover-disabled.hover-elements-size-small .portfolio-item .overlay .caption .title,
.portfolio.hover-elements-size-small .portfolio-item .overlay .caption .title {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 10px;
}
.portfolio.hover-default.hover-elements-size-small .portfolio-item .overlay .links .caption .subtitle,
.portfolio.hover-zoom-overlay.hover-elements-size-small .portfolio-item .overlay .links .caption .subtitle {
	display: none;
}

.portfolio.portfolio-grid.hover-elements-size-big:is(.hover-default, .hover-horizontal-sliding, .hover-vertical-sliding, .hover-circular) .portfolio-item .image .overlay .links a.icon {
	width: 48px;
	height: 48px;
	line-height: 48px;
	margin: 10px;
}
.portfolio.portfolio-grid.hover-elements-size-big:is(.hover-default, .hover-horizontal-sliding, .hover-vertical-sliding, .hover-circular) .portfolio-item .image .overlay .links a.icon i,
.portfolio.portfolio-grid.hover-elements-size-big:is(.hover-default, .hover-horizontal-sliding, .hover-vertical-sliding, .hover-circular) .portfolio-item .image .overlay .links a.icon:before {
	font-size: 48px;
}
.portfolio.portfolio-grid.hover-elements-size-big:is(.hover-zooming-blur, .hover-gradient) .portfolio-item .image .overlay .links a.icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	margin: 5px;
}
.portfolio.portfolio-grid.hover-elements-size-big:is(.hover-zooming-blur, .hover-gradient) .portfolio-item .image .overlay .links a.icon i,
.portfolio.portfolio-grid.hover-elements-size-big:is(.hover-zooming-blur, .hover-gradient) .portfolio-item .image .overlay .links a.icon:before {
	font-size: 32px;
}
.portfolio.portfolio-grid.hover-elements-size-big:is(.hover-default, .hover-horizontal-sliding, .hover-vertical-sliding, .hover-circular, .hover-zooming-blur, .hover-gradient, .hover-zoom-overlay, .hover-disabled) .portfolio-item .wrap .overlay .caption .title {
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 0;
}
.portfolio.portfolio-grid.hover-elements-size-big:is(.hover-default, .hover-horizontal-sliding, .hover-vertical-sliding, .hover-circular, .hover-zooming-blur, .hover-gradient, .hover-zoom-overlay) .portfolio-item .wrap .overlay .caption .subtitle,
.portfolio.portfolio-grid.hover-elements-size-big:is(.hover-default, .hover-horizontal-sliding, .hover-vertical-sliding, .hover-circular, .hover-zooming-blur, .hover-gradient, .hover-zoom-overlay) .portfolio-item .wrap .image .overlay .links .caption .info {
	display: block;
}

.portfolio.portfolio-grid .portfolio-item .portfolio-video-icon {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 0;
	line-height: 1;
	opacity: 0.8;
	transition: opacity 0.2s;
	z-index: 100;
}

.portfolio.portfolio-grid .portfolio-item .portfolio-video-icon:hover {
	opacity: 1;
}

.portfolio.portfolio-grid .portfolio-item .portfolio-video-icon:before {
	content: '\e655';
	font-family: 'thegem-icons';
	font-size: 50px;
	color: #ffffff;
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.portfolio.portfolio-grid .portfolio-item.small-item .portfolio-video-icon:before {
	font-size: 60px;
}

.portfolio.portfolio-grid .portfolio-item.appearance-type-video .image-inner,
.portfolio.portfolio-grid .portfolio-item.appearance-type-animated_gif .image-inner,
.portfolio.portfolio-grid .portfolio-item.appearance-type-gallery .image-inner {
	z-index: initial;
}

.portfolio.portfolio-grid .portfolio-item.hide-overlay .overlay {
	z-index: -1;
}

.portfolio.portfolio-grid .portfolio-item.appearance-type-video .overlay:before,
.portfolio.portfolio-grid .portfolio-item.appearance-type-animated_gif .overlay:before,
.portfolio.portfolio-grid .portfolio-item.appearance-type-gallery .overlay:before {
	content: none !important;
}

.portfolio.portfolio-grid .portfolio-item.appearance-type-video img,
.portfolio.portfolio-grid .portfolio-item.appearance-type-animated_gif img,
.portfolio.portfolio-grid .portfolio-item.appearance-type-gallery img {
	transform: none !important;
}

@media (max-width: 991px) {

	.portfolio-item .gem-video-portfolio.hide-on-mobile {
		display: none;
	}
}

@media (min-width: 992px) {

	.portfolio-grid .portfolio-item .video-image-mobile {
		display: none;
		opacity: 0;
	}

	.portfolio-grid.portfolio-style-metro .portfolio-item .video-image-mobile,
	.portfolio-grid.portfolio-style-masonry .portfolio-item:not(.custom-ratio) .video-image-mobile {
		display: block;
	}
}

.gem-video-portfolio video, .gem-video-portfolio iframe {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.gem-video-portfolio.type-youtube iframe {
	aspect-ratio: 16/9;
	height: auto;
	max-height: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.gem-video-portfolio video {
	object-fit: cover;
}

.gem-video-portfolio-mobile, .gem-video-portfolio-overlay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
}

.portfolio:not(.columns-1) .portfolio-item .image img.gem-gif-poster {
	position: absolute !important;
	top: 0;
	left: 0;
}

.portfolio-item:hover .image:not(.gif-load-on-hover) img.gem-gif-poster,
.portfolio-item .image.gif-load-on-hover img.gem-gif-portfolio {
	opacity: 0;
}

.portfolio-grid.portfolio-style-metro .gem-video-portfolio {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.portfolio-item .video-type-icon, .portfolio-item .gif-type-icon {
	position: absolute;
	right: 9px;
	top: 9px;
	height: auto;
	fill: #ffffff;
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.portfolio-item .video-type-icon{
	width: 16px;
}

.portfolio-item .gif-type-icon {
	width: 18px;
}

.portfolio-image-slider {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/1;
}

.portfolio-image-slider:before {
	content: none !important;
}

.portfolio.columns-1 .portfolio-item .image img.gem-gif-portfolio {
	position: absolute;
	left: 0;
	top: 0;
}

.portfolio.columns-1 .portfolio-item .image img.gem-gif-poster {
	position: relative;
}

.portfolio.columns-1 .portfolio-item:not(.custom-ratio) .video-image-mobile {
	display: block;
}

.portfolio.columns-1 .portfolio-image-slider {
	position: absolute;
}

.portfolio-grid.portfolio-style-metro .portfolio-image-slider {
	position: absolute;
}

.portfolio-image-slider .slide {
	width: 100%;
	height: 100%;
	position: absolute;
	transition: all 0.5s;
}

.portfolio-image-slider .slide:first-child {
	z-index: 1;
}

.portfolio-image-slider .btn {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: 0 0;
	color: inherit;
	border: none;
	padding: 0!important;
	font: inherit;
	opacity: 0;
	transition: opacity 0.3s linear;
	z-index: 100;
}
.portfolio-item:hover .portfolio-image-slider .btn {
	opacity: 1;
}

.portfolio-image-slider .btn:before {
	content: '';
	width: 18px;
	height: 18px;
}

.portfolio-image-slider .btn.btn-prev {
	left: 0;
}

.portfolio-image-slider .btn.btn-prev:before {
	background-image: url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/ar2.svg');
}

.portfolio-image-slider .btn.btn-next {
	right: 0;
}

.portfolio-image-slider .btn.btn-next:before {
	background-image: url('https://shop.ariservices.co/wp-content/themes/thegem/css/../images/ar1.svg');
}

.portfolio-image-slider .slide img {
	width: 100% !important;
	height: 100%;
}

/* Alternative Version */

.portfolio-grid.version-alternative:not(.hover-disabled) .portfolio-item .image .overlay .links {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.portfolio-grid.version-alternative .portfolio-item .caption .title,
.portfolio-grid.version-alternative .portfolio-item .caption .title span {
	text-transform: none;
	letter-spacing: 0
}

.portfolio-grid.version-alternative.background-style-transparent:not(.columns-1):not(.list-style) .portfolio-item .wrap > .caption {
	padding-left: 0;
	padding-right: 0;
}

.portfolio-grid.version-alternative:is(.hover-default, .hover-zooming-blur, .hover-vertical-sliding) .portfolio-item .image .set,
.portfolio-grid.version-alternative.caption-position-page .portfolio-item .image .set,
.portfolio-grid.version-alternative.hover-horizontal-sliding .portfolio-item .image .date {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	color: var(--thegem-to-icons-portfolio-gallery-color-hover);
	background: #000000;
	max-width: calc(100% - 30px);
	white-space: normal;
	text-overflow: clip;
	overflow: auto;
	font-size: 75%;
	line-height: 1.5;
	padding: 0 8px;
	text-align: left;
	-webkit-transition: transform 0.3s;
	transition: transform 0.3s;
}

.portfolio-grid.version-alternative.caption-position-hover:is(.hover-default, .hover-zooming-blur, .hover-vertical-sliding) .portfolio-item .image .set,
.portfolio-grid.version-alternative.caption-position-page .portfolio-item .image .set,
.portfolio-grid.version-alternative.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .date {
	background-color: rgba(0, 0, 0, 0.7);
}

.portfolio-grid.version-alternative .portfolio-item .image .set a {
	color: inherit;
}

.portfolio-grid.version-alternative:is(.hover-default, .hover-horizontal-sliding) .portfolio-item .image .overlay .links .caption .info {
	padding: 0;
	margin: 0 0 6px 0;
}

.portfolio-grid.version-alternative .portfolio-item .image .overlay .links .caption .title {
	margin-bottom: 10px;
}

.portfolio-grid.version-alternative .portfolio-item .image .set a:hover {
	text-decoration: underline;
}

.portfolio-grid.version-alternative .portfolio-item .wrap > .caption {
	display: flex;
	flex-direction: column;
	padding: 18px 38px;
	text-align: left;
}

.portfolio-grid.version-alternative.background-style-transparent .portfolio-item .wrap > .caption {
	 padding-left: 0;
	 padding-right: 0;
}

.portfolio-grid.version-alternative .portfolio-item .wrap > .caption > div {
	margin-bottom: 10px;
}

.portfolio-grid.version-alternative .portfolio-item .wrap > .caption > div.subtitle {
	margin-bottom: 13px;
}

.portfolio-grid.version-alternative .portfolio-item .wrap > .caption > div:last-child {
	margin-bottom: 0;
}

.portfolio-grid.version-alternative .portfolio-item .wrap > .caption .info {
	font-size: 75%;
	margin-top: 0;
	line-height: 1.5;
}

.portfolio-grid.version-alternative .image .portfolio-likes {
	height: auto !important;
	margin: 0 0 10px 0;
	text-align: left;
}

.portfolio-grid.version-alternative.caption-position-page .portfolio-item .wrap > .caption .title {
	color: var(--thegem-to-h4-color, #3c3950);
	margin-bottom: 6px;
	transition: all 0.3s;
}

.portfolio-grid.background-style-dark.caption-position-page .portfolio-item:not(:hover, .hover-effect) .wrap > .caption .title,
.portfolio-grid.background-style-gray.caption-position-page .portfolio-item:is(:hover, .hover-effect) .wrap > .caption .title {
	color: var(--thegem-to-main-bg-color);
}

.portfolio-grid.background-style-dark.caption-position-page.list-style .portfolio-item .details .details-item,
.portfolio-grid.background-style-dark.caption-position-page.list-style .portfolio-item .details .details-item .label,
.portfolio-grid.background-style-dark.caption-position-page .portfolio-item:not(:hover, .hover-effect) .details .details-item,
.portfolio-grid.background-style-dark.caption-position-page .portfolio-item:not(:hover, .hover-effect) .details .details-item .label,
.portfolio-grid.background-style-gray.caption-position-page:not(.list-style) .portfolio-item:is(:hover, .hover-effect) .details .details-item,
.portfolio-grid.background-style-gray.caption-position-page:not(.list-style) .portfolio-item:is(:hover, .hover-effect) .details .details-item .label {
	color: var(--thegem-to-portfolio-date-color);
}

.portfolio-grid.background-style-dark.caption-position-page.list-style .portfolio-item .details .details-item,
.portfolio-grid.background-style-dark.caption-position-page .portfolio-item:not(:hover, .hover-effect) .details .details-item,
.portfolio-grid.background-style-gray.caption-position-page:not(.list-style) .portfolio-item:is(:hover, .hover-effect) .details .details-item {
	border-color: var(--thegem-to-body-color);
}

.portfolio-grid.version-alternative.caption-position-page:not(.disabled-hover).background-style-transparent .portfolio-item:is(:hover, .hover-effect) .wrap > .caption .title {
	color: var(--thegem-to-link-color, #00bcd4);
}

.portfolio-grid.version-alternative.caption-position-page .portfolio-item .wrap > .caption .info {
	margin: 0 0 10px 0;
}

.portfolio-grid.version-alternative.caption-position-page .portfolio-likes {
	height: auto !important;
	opacity: 1;
	margin: auto 0 0 0 !important;
	text-align: left;
}

.portfolio-grid.version-alternative:is(.caption-position-hover, .caption-position-image) .portfolio-item .image .portfolio-likes {
	color: var(--thegem-to-icons-portfolio-gallery-color-hover);
}

.portfolio-grid.version-alternative .portfolio-likes .zilla-likes {
	font-size: 87.5%;
	color: inherit;
}

.portfolio-grid.version-alternative .portfolio-likes .zilla-likes i {
	font-style: normal;
	margin-right: 4px;
	font-size: 14px;
}

.portfolio-grid.version-alternative.caption-position-page .portfolio-likes .zilla-likes i {
	color: #f44336;
}

.portfolio-grid.version-alternative .portfolio-likes .zilla-likes i.default:before {
	content: '\e66b';
	font-size: inherit;
	vertical-align: middle;
}

.portfolio-grid.version-alternative:is(.hover-horizontal-sliding, .hover-vertical-sliding) .overlay .links {
	padding: 30px;
}

.portfolio-grid:is(.version-alternative, .version-new):is(.caption-position-hover, .caption-position-image) .overlay .links .caption .description:not(:last-child) .subtitle,
.portfolio-grid:is(.version-alternative, .version-new):is(.caption-position-hover, .caption-position-image) .overlay .links .caption .description .subtitle:not(:last-child),
.portfolio-grid:is(.version-alternative, .version-new):is(.caption-position-hover, .caption-position-image) .overlay .links .caption .details:not(:last-child) {
	margin-bottom: 10px;
}

.portfolio-grid.version-alternative:not(.ready) .slide-content-hidden {
	 display: none;
}

.portfolio-grid.version-alternative .portfolio-item .slide-content-hidden {
	transition: all 0.3s;
}

.portfolio-grid.version-alternative.caption-position-page.hover-horizontal-sliding .portfolio-sharing-pane,
.portfolio-grid.version-alternative.caption-position-page.hover-vertical-sliding .portfolio-sharing-pane {
	text-align: center;
}

.portfolio-item .details .details-item {
	display: flex;
	align-items: center;
}

.portfolio-item .details .details-item .label {
	display: flex;
	align-items: center;
	height: 100%;
	color: inherit;
	margin: 0 0.6em 0 0;
	transition: all 0.3s;
}

.portfolio-item .details .details-item .label i,
.portfolio-item .details .details-item .value i {
	font-size: inherit;
}

.portfolio-item .details .details-item .label i:not(:last-child),
.portfolio-item .details .details-item .label svg:not(:last-child),
.portfolio-item .details .details-item .value i:not(:last-child),
.portfolio-item .details .details-item .value svg:not(:last-child) {
	margin-right: 6px;
}

.portfolio-item .details .details-item .value {
	display: flex;
	align-items: center;
	height: 100%;
	color: inherit;
	margin: 0;
}

.portfolio.caption-position-image .portfolio-item .details:not(:last-child) {
	margin-bottom: 6px;
}

.portfolio.caption-position-page .portfolio-item .details.layout-vertical .details-item .value {
	color: var(--thegem-to-portfolio-date-color);
}

.portfolio-item .details.layout-inline {
	display: flex;
	flex-wrap: wrap;
	column-gap: 14px;
	row-gap: 2px;
}

.portfolio-item .details.layout-inline.with-separator {
	column-gap: 6px;
}

.portfolio-item .details.layout-inline.style-labels {
	row-gap: 10px;
}

.portfolio-item .details.layout-inline.style-labels .details-item {
	border: 1px solid currentColor;
	padding: 0 0.4em;
}

.portfolio-item .details.layout-vertical .details-item {
	padding: 5px 0;
}

.portfolio-item .details.layout-vertical.with-divider .details-item:not(:first-child) {
	padding-top: 10px;
}

.portfolio-item .details.layout-vertical.with-divider .details-item:not(:last-child) {
	padding-bottom: 10px;
	border-bottom: 1px solid var(--thegem-to-divider-color);
	transition: all 0.3s;
}

.portfolio.version-new:is(.caption-position-hover, .caption-position-image):is(.hover-new-default, .hover-new-zooming-blur, .hover-new-gradient, .hover-new-zoom-overlay) .details,
.portfolio.version-alternative:is(.caption-position-hover, .caption-position-image):is(.hover-default, .hover-zooming-blur, .hover-gradient, .hover-zoom-overlay) .details,
.portfolio:not(.version-alternative, .version-new).caption-position-hover:is(.hover-default, .hover-zooming-blur, .hover-default-zooming-blur, .hover-zoom-overlay) .details {
	justify-content: center;
}

.portfolio-item .details .separator:last-child {
	display: none;
}

.portfolio:not(.version-alternative) .details {
	margin-top: 8px;
}

.portfolio:not(.version-alternative) .details.top-position {
	margin: 0 0 6px 0;
}

.portfolio:not(.version-alternative, .version-new).caption-position-page .details.layout-inline {
	justify-content: center;
}

.portfolio-item .details.layout-vertical.details-alignment-left .details-item {
	justify-content: flex-start;
	text-align: left;
}

.portfolio-item .details.layout-vertical.details-alignment-right .details-item {
	justify-content: flex-end;
	text-align: right;
}

.portfolio-item .details.layout-vertical.details-alignment-justify .details-item {
	justify-content: space-between;
}

.portfolio-item .details.layout-vertical.details-alignment-justify .details-item .label {
	text-align: left;
}

.portfolio-item .details.layout-vertical.details-alignment-justify .details-item .value {
	text-align: right;
}

.portfolio-item .details.layout-inline.details-alignment-left {
	justify-content: flex-start !important;
}

.portfolio-item .details.layout-inline.details-alignment-right {
	justify-content: flex-end !important;
}

.portfolio-item .details.layout-inline.details-alignment-center {
	justify-content: center !important;
}

a.additional-meta {
	cursor: pointer;
}

.portfolio-item .caption .read-more-button {
	margin-top: 10px;
}

.portfolio-item .caption .gem-button {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 1001px) {

	.portfolio-top-panel.filters-top-sticky {
		padding: 10px 0;
	}

	.portfolio-top-panel.filters-top-sticky.filter-type-extended {
		padding: 13px 0;
		margin-bottom: 7px;
	}
}

.portfolio-top-panel.sticky-fixed .portfolio-top-panel {
	background-color: var(--thegem-to-main-bg-color, #FFFFFF);
}

body.shown-sticky-filters #site-header.fixed,
body.shown-sticky-filters .header-sticky-template {
	transition: all .6s cubic-bezier(.19,1,.22,1);
	transform: translateY(-100%) !important;
}

body.hidden-sticky-filters #site-header.fixed,
body.hidden-sticky-filters .header-sticky-template {
	transition: all .6s cubic-bezier(.19,1,.22,1);
	transform: none;
}

.portfolio-selected-filters {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	clear: both;
	z-index: 4;
}
.portfolio-selected-filters .portfolio-selected-filter-item {
	margin: 10px 10px 0 0;
	padding: 2px 10px 3px 10px;
	line-height: 1.1;
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	cursor: default;
	transition: all 0.3s;
}
.portfolio-selected-filters .portfolio-selected-filter-item.clear-filters {
	cursor: pointer;
	margin-top: 15px;
	order: 1;
}
.portfolio-selected-filters .portfolio-selected-filter-item.clear-filters:last-child {
	display: none;
}
.portfolio-selected-filters .portfolio-selected-filter-item.category {
	order: 2;
}
.portfolio-selected-filters .portfolio-selected-filter-item.attribute.product-tag {
	order: 3;
}
.portfolio-selected-filters .portfolio-selected-filter-item.attribute {
	order: 4;
}
.portfolio-selected-filters .portfolio-selected-filter-item.price {
	order: 5;
}
.portfolio-selected-filters .portfolio-selected-filter-item.status {
	order: 6;
}
.portfolio-selected-filters .portfolio-selected-filter-item.search {
	order: 7;
}
.portfolio-selected-filters .portfolio-selected-filter-item i.delete-filter {
	font-style: normal;
	font-family: "thegem-icons";
	font-weight: normal;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-variant: normal;
	text-rendering: auto;
	font-size: 1.1em;
	line-height: 1;
	margin-right: -3px;
	cursor: pointer;
}
.portfolio-selected-filters .portfolio-selected-filter-item i.delete-filter:before {
	content: "\e619";
}
.portfolio-selected-filters.portfolio-selected-filters-clone {
	display: none;
}
.portfolio-top-panel.selected-only {
	margin-bottom: 0 !important;
}
.portfolio-top-panel.selected-only .portfolio-selected-filters .portfolio-selected-filter-item {
	margin: 0 10px 20px 0;
}
@media (min-width: 992px) {
	.portfolio-top-panel.sidebar-filter.selected-only .portfolio-selected-filters .portfolio-selected-filter-item {
		margin-bottom: 20px;
	}
}
.portfolio-top-panel > .portfolio-selected-filters.center {
	justify-content: center;
}
.portfolio-top-panel > .portfolio-selected-filters.center .portfolio-selected-filter-item {
	margin: 10px 5px 0 5px;
}
.portfolio-top-panel > .portfolio-selected-filters.right {
	justify-content: flex-end;
}
.portfolio-top-panel > .portfolio-selected-filters.right .portfolio-selected-filter-item {
	margin: 10px 0 0 10px;
}
.portfolio-top-panel .portfolio-top-panel-row {
	display: flex;
	align-items: flex-start;
}
.portfolio-top-panel .portfolio-top-panel-left {
	flex: auto;
	max-width: 100%;
}
.portfolio-top-panel .portfolio-top-panel-right {
	margin-left: 10px;
}
.portfolio-filters-list {
  margin: 0 !important;
}
.portfolio-filters-list .portfolio-show-filters-button {
  position: relative;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  text-align: left;
  padding: 3px 15px 4px 13px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 13px;
  cursor: pointer;
  z-index: 5;
}
.portfolio-filters-list .portfolio-show-filters-button .portfolio-show-filters-button-icon {
  margin-right: 0.2em;
  font-style: normal;
  font-family: "thegem-icons";
  font-weight: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  transform: translateY(2px);
}
.portfolio-filters-list .portfolio-show-filters-button .portfolio-show-filters-button-icon:before {
  content: "\e669";
}
.portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .portfolio-filters-outer:not(.without-padding) {
  padding-right: 42px;
}
.portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .portfolio-filter-item {
  width: 100%;
  padding: 25px 0;
  margin: 0;
}
.portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .portfolio-filter-item .widget-title {
  margin: 0 0 20px 0;
  cursor: default;
}
.portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .portfolio-filter-item .widget-title .widget-title-arrow {
  display: none;
}
.portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .portfolio-filter-item.portfolio-selected-filters {
  padding-top: 15px;
  order: 11;
}
.portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul {
  padding: 0;
  margin: 0;
}
.portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul ul {
  padding: 0 0 0 20px;
}
.portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .filters-apply-button {
  width: 100%;
  margin: 0;
}
.portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .portfolio-search-filter {
  width: 100%;
}
.portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .portfolio-filter-item.portfolio-selected-filters.hide-on-sidebar {
  display: none;
}
@media (min-width: 992px) {
  .portfolio-filters-list:not(.prevent-hidden-mobile, [data-breakpoint]).style-sidebar .portfolio-filters-outer:not(.without-padding) {
    padding-right: 42px;
  }
  .portfolio-filters-list:not(.prevent-hidden-mobile, [data-breakpoint]).style-sidebar .portfolio-filter-item {
    width: 100%;
    padding: 25px 0;
    margin: 0;
  }
  .portfolio-filters-list:not(.prevent-hidden-mobile, [data-breakpoint]).style-sidebar .portfolio-filter-item .widget-title {
    margin: 0 0 20px 0;
    cursor: default;
  }
  .portfolio-filters-list:not(.prevent-hidden-mobile, [data-breakpoint]).style-sidebar .portfolio-filter-item .widget-title .widget-title-arrow {
    display: none;
  }
  .portfolio-filters-list:not(.prevent-hidden-mobile, [data-breakpoint]).style-sidebar .portfolio-filter-item.portfolio-selected-filters {
    padding-top: 15px;
    order: 11;
  }
  .portfolio-filters-list:not(.prevent-hidden-mobile, [data-breakpoint]).style-sidebar .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul {
    padding: 0;
    margin: 0;
  }
  .portfolio-filters-list:not(.prevent-hidden-mobile, [data-breakpoint]).style-sidebar .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul ul {
    padding: 0 0 0 20px;
  }
  .portfolio-filters-list:not(.prevent-hidden-mobile, [data-breakpoint]).style-sidebar .filters-apply-button {
    width: 100%;
    margin: 0;
  }
  .portfolio-filters-list:not(.prevent-hidden-mobile, [data-breakpoint]).style-sidebar .portfolio-search-filter {
    width: 100%;
  }
  .portfolio-filters-list:not(.prevent-hidden-mobile, [data-breakpoint]).style-sidebar .portfolio-filter-item.portfolio-selected-filters.hide-on-sidebar {
    display: none;
  }
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .widget-area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filters-area {
  position: relative;
  z-index: 5;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filters-area:hover {
  z-index: 6;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: -5px;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .widget-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 3px 11px 4px 16px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 13px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: initial;
  margin: 0;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .widget-title:after {
  content: none;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .widget-title span.widget-title-arrow {
  transition: all 0.3s;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .widget-title span.widget-title-arrow:before {
  display: block;
  content: '\e602';
  font-style: normal;
  font-family: "thegem-icons";
  font-weight: normal;
  -webkit-font-smoothing: initial;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .widget-title .widget-title-by {
  display: none;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  width: max-content;
  width: -webkit-max-content;
  background-color: var(--thegem-to-main-bg-color, #FFFFFF);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  z-index: 5;
  max-width: 260px;
  max-height: 500px;
  overflow: auto;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list.portfolio-filter-item-collapsible {
  width: 260px;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul {
  padding: 25px 28px;
  margin: 0;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul ul {
  padding: 0 0 0 20px;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list .price-range-slider {
  padding: 10px;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list .price-range-slider .slider-amount {
  width: 200px;
  max-width: 100%;
  text-align: center;
  padding: 5px;
  transition: all 0.3s;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list .price-range-slider .slider-amount .slider-amount-text {
  display: none;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown).attribute .portfolio-filter-item-list > ul, .portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown).status .portfolio-filter-item-list > ul {
  padding: 25px 28px 25px 20px;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown).attribute.attribute-type-label .portfolio-filter-item-list ul, .portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown).status.attribute-type-label .portfolio-filter-item-list ul {
  padding: 25px 20px;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown):not(.display-type-dropdown):hover .widget-title span.widget-title-arrow {
  transform: rotate(180deg);
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile):not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown):not(.display-type-dropdown):hover .portfolio-filter-item-list {
  display: block;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile) .portfolio-selected-filters {
  display: none;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile) .widget {
  display: none;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile) .portfolio-filter-item.display-type-dropdown {
  width: 200px;
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile) .filters-apply-button .gem-button {
  width: 100%;
}
@media (min-width: 992px) {
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .widget-area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    gap: 10px;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filters-area {
    position: relative;
    z-index: 5;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filters-area:hover {
    z-index: 6;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) {
    position: relative;
    padding-bottom: 5px;
    margin-bottom: -5px;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .widget-title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    padding: 3px 11px 4px 16px;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 13px;
    line-height: 1;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: initial;
    margin: 0;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .widget-title:after {
    content: none;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .widget-title span.widget-title-arrow {
    transition: all 0.3s;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .widget-title span.widget-title-arrow:before {
    display: block;
    content: '\e602';
    font-style: normal;
    font-family: "thegem-icons";
    font-weight: normal;
    -webkit-font-smoothing: initial;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .widget-title .widget-title-by {
    display: none;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list {
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    width: max-content;
    width: -webkit-max-content;
    background-color: var(--thegem-to-main-bg-color, #FFFFFF);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    z-index: 5;
    max-width: 260px;
    max-height: 500px;
    overflow: auto;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list.portfolio-filter-item-collapsible {
    width: 260px;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul {
    padding: 25px 28px;
    margin: 0;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul ul {
    padding: 0 0 0 20px;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list .price-range-slider {
    padding: 10px;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list .price-range-slider .slider-amount {
    width: 200px;
    max-width: 100%;
    text-align: center;
    padding: 5px;
    transition: all 0.3s;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list .price-range-slider .slider-amount .slider-amount-text {
    display: none;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown).attribute .portfolio-filter-item-list > ul, .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown).status .portfolio-filter-item-list > ul {
    padding: 25px 28px 25px 20px;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown).attribute.attribute-type-label .portfolio-filter-item-list ul, .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown).status.attribute-type-label .portfolio-filter-item-list ul {
    padding: 25px 20px;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown):not(.display-type-dropdown):hover .widget-title span.widget-title-arrow {
    transform: rotate(180deg);
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard:not(.single-filter) .portfolio-filter-item:not(.display-type-dropdown):not(.display-type-dropdown):hover .portfolio-filter-item-list {
    display: block;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard .portfolio-selected-filters {
    display: none;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard .widget {
    display: none;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard .portfolio-filter-item.display-type-dropdown {
    width: 200px;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard .filters-apply-button .gem-button {
    width: 100%;
  }
}
.portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile) h2, .portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile) .portfolio-show-filters-button, .portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile) .portfolio-close-filters, .portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) h2, .portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .portfolio-show-filters-button, .portfolio-filters-list[data-breakpoint].style-sidebar:not(.style-sidebar-mobile) .portfolio-close-filters {
  display: none;
}
@media (min-width: 992px) {
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) h2, .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-show-filters-button, .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-close-filters {
    display: none;
  }
}
.portfolio-filters-list:is(.style-sidebar, .style-hidden) .widget-area .portfolio-filter-item:first-child, .portfolio-filters-list[data-breakpoint].style-standard-mobile .widget-area .portfolio-filter-item:first-child {
  border-top: none;
  padding-top: 0;
}
.portfolio-filters-list:is(.style-sidebar, .style-hidden) .widget-area .portfolio-filter-item:last-child, .portfolio-filters-list[data-breakpoint].style-standard-mobile .widget-area .portfolio-filter-item:last-child {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .portfolio-filters-list:not([data-breakpoint]).style-standard .widget-area .portfolio-filter-item:first-child {
    border-top: none;
    padding-top: 0;
  }
  .portfolio-filters-list:not([data-breakpoint]).style-standard .widget-area .portfolio-filter-item:last-child {
    padding-bottom: 0;
  }
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .widget-title {
  margin: 0 0 20px 0;
  cursor: default;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .dropdown-selector {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: -5px;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .selector-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 38px;
  line-height: 1.1;
  border-radius: 3px;
  padding-left: 18px;
  padding-right: 12px;
  border: 1px solid var(--thegem-to-form-elements-border-color);
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .selector-title span.widget-title-arrow {
  transition: all 0.3s;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .selector-title span.widget-title-arrow:before {
  display: block;
  content: '\e602';
  font-style: normal;
  font-family: "thegem-icons";
  font-weight: normal;
  -webkit-font-smoothing: initial;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .selector-title span.name {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .selector-title span.name span:last-child .separator {
  display: none;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .portfolio-filter-item-list {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  width: max-content;
  width: -webkit-max-content;
  background-color: var(--thegem-to-main-bg-color, #FFFFFF);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  z-index: 5;
  max-width: 260px;
  max-height: 500px;
  overflow: auto;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .portfolio-filter-item-list.portfolio-filter-item-collapsible {
  width: 260px;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .portfolio-filter-item-list ul {
  padding: 25px 28px;
  margin: 0;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .portfolio-filter-item-list ul ul {
  padding: 0 0 0 20px;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .portfolio-filter-item-list .price-range-slider {
  padding: 10px;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .portfolio-filter-item-list .price-range-slider .slider-amount {
  width: 200px;
  max-width: 100%;
  text-align: center;
  padding: 5px;
  transition: all 0.3s;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .portfolio-filter-item-list .price-range-slider .slider-amount .slider-amount-text {
  display: none;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown.attribute .portfolio-filter-item-list > ul, .portfolio-filters-list .portfolio-filter-item.display-type-dropdown.status .portfolio-filter-item-list > ul {
  padding: 25px 28px 25px 20px;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown.attribute.attribute-type-label .portfolio-filter-item-list ul, .portfolio-filters-list .portfolio-filter-item.display-type-dropdown.status.attribute-type-label .portfolio-filter-item-list ul {
  padding: 25px 20px;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .portfolio-filter-item-list {
  width: 100%;
  max-width: initial;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .dropdown-selector.collapsed {
  z-index: 99;
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .dropdown-selector.collapsed .selector-title span.widget-title-arrow {
  transform: rotate(180deg);
}
.portfolio-filters-list .portfolio-filter-item.display-type-dropdown .dropdown-selector.collapsed .portfolio-filter-item-list {
  display: block;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer {
  position: fixed;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  left: 0;
  top: 0;
  z-index: -1;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer:before, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(33, 35, 49, 0.5);
  opacity: 0;
  transition: all 0.3s;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer.close-animation, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer.close-animation {
  z-index: 1001;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer.visible, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer.visible {
  display: block;
  z-index: 1001;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer.visible:before, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer.visible:before {
  opacity: 1;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer.visible .portfolio-close-filters, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer.visible .portfolio-close-filters {
  opacity: 1;
  transition: all 0.3s linear 0.3s;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer.visible .portfolio-filters-area, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer.visible .portfolio-filters-area {
  left: 0;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer:not(.close-animation, .visible), .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer:not(.close-animation, .visible) {
  left: -100%;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer .portfolio-filters-area, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer .portfolio-filters-area {
  position: relative;
  float: left;
  left: -100%;
  top: 0;
  width: 350px;
  max-width: 75%;
  min-width: 250px;
  height: 100%;
  padding: 5px;
  flex-direction: column;
  flex-wrap: nowrap;
  background: var(--thegem-to-main-bg-color, #FFFFFF);
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .portfolio-filters-list.style-hidden .portfolio-filters-outer .portfolio-filters-area, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer .portfolio-filters-area {
    width: 480px;
  }
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer .portfolio-filters-area.shadowed, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer .portfolio-filters-area.shadowed {
  box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.05);
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable {
  padding: 20px 30px;
  height: 100%;
  overflow: auto;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable::-webkit-scrollbar-track, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable::-webkit-scrollbar-track {
  background-color: transparent;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable::-webkit-scrollbar, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}
.portfolio-filters-list.style-hidden .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable::-webkit-scrollbar-thumb, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable::-webkit-scrollbar-thumb {
  background-color: #dfe5e8;
  border-radius: 2px;
}
.portfolio-filters-list.style-hidden .portfolio-filters-area-scrollable .portfolio-filter-item, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-area-scrollable .portfolio-filter-item {
  padding: 25px 10px;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .portfolio-filters-list.style-hidden .portfolio-filters-area-scrollable .portfolio-filter-item, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-area-scrollable .portfolio-filter-item {
    padding: 25px 30px;
  }
  .portfolio-filters-list.style-hidden .portfolio-filters-area-scrollable .portfolio-filter-item.display-type-dropdown .widget-title, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-area-scrollable .portfolio-filter-item.display-type-dropdown .widget-title {
    margin-bottom: 0;
  }
  .portfolio-filters-list.style-hidden .portfolio-filters-area-scrollable .portfolio-filter-item.display-type-dropdown .widget-title .widget-title-arrow, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-area-scrollable .portfolio-filter-item.display-type-dropdown .widget-title .widget-title-arrow {
    display: block;
  }
  .portfolio-filters-list.style-hidden .portfolio-filters-area-scrollable .portfolio-filter-item.display-type-dropdown .portfolio-filter-item-list, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-area-scrollable .portfolio-filter-item.display-type-dropdown .portfolio-filter-item-list {
    left: 30px;
    top: calc(100% - 20px);
    width: calc(100% - 60px);
  }
}
.portfolio-filters-list.style-hidden .portfolio-filters-area-scrollable .portfolio-filter-item .widget-title, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-area-scrollable .portfolio-filter-item .widget-title {
  margin: 0 0 20px 0;
  cursor: default;
}
.portfolio-filters-list.style-hidden .portfolio-filters-area-scrollable .portfolio-filter-item .widget-title .widget-title-arrow, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-area-scrollable .portfolio-filter-item .widget-title .widget-title-arrow {
  display: none;
}
.portfolio-filters-list.style-hidden .portfolio-filters-area-scrollable .portfolio-filter-item.portfolio-selected-filters, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-area-scrollable .portfolio-filter-item.portfolio-selected-filters {
  padding-top: 15px;
  order: 11;
}
.portfolio-filters-list.style-hidden .portfolio-filters-area-scrollable .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-area-scrollable .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul {
  padding: 0;
  margin: 0;
}
.portfolio-filters-list.style-hidden .portfolio-filters-area-scrollable .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul ul, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .portfolio-filters-area-scrollable .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul ul {
  padding: 0 0 0 20px;
}
.portfolio-filters-list.style-hidden .filters-apply-button, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .filters-apply-button {
  padding: 0 10px;
  margin: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .portfolio-filters-list.style-hidden .filters-apply-button, .portfolio-filters-list[data-breakpoint]:is(.style-sidebar-mobile, .style-standard-mobile) .filters-apply-button {
    padding: 0 30px;
  }
}
@media (max-width: 991px) {
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer {
    position: fixed;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(33, 35, 49, 0.5);
    opacity: 0;
    transition: all 0.3s;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer.close-animation {
    z-index: 1001;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer.visible {
    display: block;
    z-index: 1001;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer.visible:before {
    opacity: 1;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer.visible .portfolio-close-filters {
    opacity: 1;
    transition: all 0.3s linear 0.3s;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer.visible .portfolio-filters-area {
    left: 0;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer:not(.close-animation, .visible) {
    left: -100%;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer .portfolio-filters-area {
    position: relative;
    float: left;
    left: -100%;
    top: 0;
    width: 350px;
    max-width: 75%;
    min-width: 250px;
    height: 100%;
    padding: 5px;
    flex-direction: column;
    flex-wrap: nowrap;
    background: var(--thegem-to-main-bg-color, #FFFFFF);
    transition: all 0.3s;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer .portfolio-filters-area {
    width: 480px;
  }
}
@media (max-width: 991px) {
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer .portfolio-filters-area.shadowed {
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.05);
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable {
    padding: 20px 30px;
    height: 100%;
    overflow: auto;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable::-webkit-scrollbar {
    width: 4px;
    background-color: transparent;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-outer .portfolio-filters-area .portfolio-filters-area-scrollable::-webkit-scrollbar-thumb {
    background-color: #dfe5e8;
    border-radius: 2px;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-area-scrollable .portfolio-filter-item {
    padding: 25px 10px;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-area-scrollable .portfolio-filter-item {
    padding: 25px 30px;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-area-scrollable .portfolio-filter-item.display-type-dropdown .widget-title {
    margin-bottom: 0;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-area-scrollable .portfolio-filter-item.display-type-dropdown .widget-title .widget-title-arrow {
    display: block;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-area-scrollable .portfolio-filter-item.display-type-dropdown .portfolio-filter-item-list {
    left: 30px;
    top: calc(100% - 20px);
    width: calc(100% - 60px);
  }
}
@media (max-width: 991px) {
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-area-scrollable .portfolio-filter-item .widget-title {
    margin: 0 0 20px 0;
    cursor: default;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-area-scrollable .portfolio-filter-item .widget-title .widget-title-arrow {
    display: none;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-area-scrollable .portfolio-filter-item.portfolio-selected-filters {
    padding-top: 15px;
    order: 11;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-area-scrollable .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul {
    padding: 0;
    margin: 0;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .portfolio-filters-area-scrollable .portfolio-filter-item:not(.display-type-dropdown) .portfolio-filter-item-list ul ul {
    padding: 0 0 0 20px;
  }
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .filters-apply-button {
    padding: 0 10px;
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .portfolio-filters-list:not([data-breakpoint]):is(.style-sidebar, .style-standard) .filters-apply-button {
    padding: 0 30px;
  }
}

@media (min-width: 992px) {
  .portfolio-filters-list.single-filter.style-standard .portfolio-filter-item .widget-title {
    display: none;
  }
  .portfolio-filters-list.single-filter.style-standard .portfolio-filter-item .portfolio-filter-item-list ul {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .portfolio-filters-list.single-filter.style-standard .portfolio-filter-item .portfolio-filter-item-list ul li {
    margin: 0 30px 13px 0;
    line-height: 1;
  }
  .portfolio-filters-list.single-filter.style-standard .portfolio-filter-item .portfolio-filter-item-list ul li a span.count {
    margin-left: 10px;
  }
}
.portfolio-filters-list .portfolio-close-filters {
  float: left;
  position: relative;
  top: 10px;
  left: -40px;
  color: #99a9b5;
  font-size: 30px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .portfolio-filters-list .portfolio-close-filters {
    color: #ffffff;
    top: 15px;
    left: 15px;
    padding: 5px;
  }
  .portfolio-filters-list .portfolio-close-filters:hover:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0.075;
  }
}
.portfolio-filters-list .portfolio-close-filters:before {
  content: "\e619";
  font-style: normal;
  font-family: 'thegem-icons';
  font-weight: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  display: block;
  transform: translate(-0.5px, -0.5px);
}
.portfolio-filters-list .portfolio-close-filters:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -moz-transform: scale(0.7);
  transform: scale(0.7);
  transition: transform 200ms cubic-bezier(0.345, 0.115, 0.135, 1.42), opacity 150ms ease-out;
  box-shadow: 0 4px 20px rgba(34, 34, 34, 0.15);
  opacity: 0;
}
.portfolio-filters-list .portfolio-filters-area .portfolio-filters-area-scrollable, .portfolio-filters-list .portfolio-filters-area .portfolio-filters-area-scrollable .widget-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
.portfolio-filters-list .portfolio-filters-area h2 {
  width: 100%;
  text-transform: initial;
  padding: 0 10px 25px 10px;
  margin: 0;
  cursor: default;
}
@media (min-width: 992px) {
  .portfolio-filters-list .portfolio-filters-area h2 {
    padding: 0 25px 25px 25px;
  }
}
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list {
  overflow: auto;
}
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list::-webkit-scrollbar-track {
  background-color: transparent;
}
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}
.portfolio-filters-list .portfolio-filter-item .portfolio-filter-item-list::-webkit-scrollbar-thumb {
  background-color: #dfe5e8;
  border-radius: 2px;
}
.portfolio-filters-list .portfolio-filter-item ul {
  list-style: none;
}
.portfolio-filters-list .portfolio-filter-item ul li a {
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  color: inherit;
  word-break: break-word;
}
.portfolio-filters-list .portfolio-filter-item ul li a span.title {
  margin-right: auto;
}
.portfolio-filters-list .portfolio-filter-item ul li a span.color {
  flex: none;
}
.portfolio-filters-list .portfolio-filter-item ul li a span.count, .portfolio-filters-list .portfolio-filter-item ul li a .filters-collapsible-arrow {
  flex: none;
  margin-left: 20px;
  display: block;
  color: inherit;
  background-color: var(--styled-bg-color, #f0f3f2);
  font-size: var(--thegem-to-body-tiny-font-size, 14px);
  padding: 2px 8px;
  line-height: 1;
  border-radius: 11px;
  transition: background-color 0.3s;
}
@media (min-width: 992px) {
  .portfolio-filters-list .portfolio-filter-item ul li a span.count, .portfolio-filters-list .portfolio-filter-item ul li a .filters-collapsible-arrow {
    margin-left: 45px;
  }
}
.portfolio-filters-list .portfolio-filter-item ul li a .filters-collapsible-arrow {
  padding: 2px;
  margin-left: 6px;
  transform: translateY(0.1em);
}
.portfolio-filters-list .portfolio-filter-item ul li a .filters-collapsible-arrow:before {
  display: block;
  content: '\e602';
  font-style: normal;
  font-family: "thegem-icons";
  font-weight: normal;
  -webkit-font-smoothing: initial;
}
.portfolio-filters-list .portfolio-filter-item ul li a .filters-collapsible-arrow:hover {
  color: #FFFFFF;
  background-color: var(--thegem-to-widget-hover-link_color, #00BCD4);
}
.portfolio-filters-list .portfolio-filter-item ul li a:not(.collapsed) .filters-collapsible-arrow {
  transform: translateY(0.1em) rotate(180deg);
  color: #FFFFFF;
  background-color: var(--thegem-to-widget-hover-link_color, #00BCD4);
}
.portfolio-filters-list .portfolio-filter-item ul li a:not(.disable):hover span.count, .portfolio-filters-list .portfolio-filter-item ul li a:not(.disable):hover + span.count {
  color: #FFFFFF;
  background-color: var(--thegem-to-widget-hover-link_color, #00BCD4);
}
.portfolio-filters-list .portfolio-filter-item ul li a.active span.count {
  color: #FFFFFF;
  background-color: var(--thegem-to-widget-hover-link_color, #00BCD4);
}
.portfolio-filters-list .portfolio-filter-item ul li a.disable {
  opacity: 0.5;
  cursor: default;
}
.portfolio-filters-list .portfolio-filter-item ul li ul {
  padding: 0 0 0 20px;
}
.portfolio-filters-list .portfolio-filter-item .price-range-slider .slider-range {
  position: relative;
  border: none;
  height: 4px;
  width: 90%;
  margin: 20px auto 30px auto;
  z-index: 1 !important;
}
.portfolio-filters-list .portfolio-filter-item .price-range-slider .slider-range .ui-slider-range {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--thegem-to-widget-hover-link_color);
  z-index: 1;
}
.portfolio-filters-list .portfolio-filter-item .price-range-slider .slider-range .ui-slider-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin: 0;
  background: var(--thegem-to-widget-hover-link_color);
  z-index: 2;
}
.portfolio-filters-list .portfolio-filter-item .price-range-slider .slider-range .ui-slider-handle:focus {
  outline: none;
}
.portfolio-filters-list .portfolio-filter-item .price-range-slider .slider-range .ui-slider-handle + span:focus {
  outline: none;
}
.portfolio-filters-list .portfolio-filter-item .price-range-slider .slider-amount {
  padding: 0;
}
.portfolio-filters-list .portfolio-filter-item .price-range-slider .slider-amount .slider-amount-value {
  font-size: 1.1em;
}
.portfolio-filters-list .portfolio-filter-item.multiple ul li a, .portfolio-filters-list .portfolio-filter-item.woocommerce ul li a {
  position: relative;
  text-transform: inherit;
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
}
.portfolio-filters-list .portfolio-filter-item.multiple ul li a:before, .portfolio-filters-list .portfolio-filter-item.woocommerce ul li a:before {
  color: currentColor;
  flex: none;
  margin-right: 0.2em;
  content: "\e646";
  font-family: 'thegem-icons';
  font-weight: normal;
  font-style: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
}
.portfolio-filters-list .portfolio-filter-item.multiple ul li a.active:before, .portfolio-filters-list .portfolio-filter-item.multiple ul li.chosen a:before, .portfolio-filters-list .portfolio-filter-item.woocommerce ul li a.active:before, .portfolio-filters-list .portfolio-filter-item.woocommerce ul li.chosen a:before {
  opacity: 1;
}
.portfolio-filters-list .portfolio-filter-item.single:not(.attribute-type-label) .portfolio-filter-item-list ul li a {
  position: relative;
}
.portfolio-filters-list .portfolio-filter-item.single:not(.attribute-type-label) .portfolio-filter-item-list ul li a span.check {
  flex: none;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
  box-sizing: border-box;
  transform: translateY(1px);
}
.portfolio-filters-list .portfolio-filter-item.single:not(.attribute-type-label) .portfolio-filter-item-list ul li a.active span.check {
  position: relative;
  border-color: currentColor;
}
.portfolio-filters-list .portfolio-filter-item.single:not(.attribute-type-label) .portfolio-filter-item-list ul li a.active span.check:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 2px;
  top: 2px;
  background-color: currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}
.portfolio-filters-list .portfolio-filters-area .portfolio-search-filter:last-child {
  margin-bottom: 0;
}
.portfolio-filters-list .portfolio-filters-area .portfolio-search-filter input {
  width: 100%;
  box-sizing: border-box;
}
.portfolio-filters-list .portfolio-filters-area .portfolio-search-filter .portfolio-search-filter-button {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
}
.portfolio-filters-list .filters-apply-button {
  border: none !important;
}
.portfolio-filters-list .filters-apply-button .gem-button {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.portfolio-filters-list .filters-apply-button .gem-button.gem-button-size-small {
  height: 38px;
}
.portfolio-filters-list .filters-apply-button .gem-button.gem-button-style-flat {
  border: 2px solid var(--thegem-to-widget-hover-link_color, #00BCD4);
  background-color: var(--thegem-to-widget-hover-link_color, #00BCD4);
}
.portfolio-filters-list .filters-apply-button .gem-button.gem-button-style-flat:hover {
  color: var(--thegem-to-widget-hover-link_color, #00BCD4);
  background: transparent;
}

.portfolio .portfolio-filters-list[data-breakpoint].style-standard:not(.style-standard-mobile) .with-search-filter {
  display: none;
}

@media (min-width: 992px) {
  .portfolio .portfolio-filters-list:not([data-breakpoint]).style-standard .with-search-filter {
    display: none;
  }
}
.portfolio-sorting-select, .portfolio-filters-more {
  position: relative;
  width: fit-content;
  width: -webkit-fit-content;
  margin-left: auto;
  padding-bottom: 5px;
  margin-bottom: -5px;
  z-index: 5;
}
.portfolio-sorting-select div.portfolio-sorting-select-current, .portfolio-sorting-select .portfolio-filters-more-button, .portfolio-filters-more div.portfolio-sorting-select-current, .portfolio-filters-more .portfolio-filters-more-button {
  position: relative;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.portfolio-sorting-select div.portfolio-sorting-select-current .portfolio-sorting-select-current-arrow, .portfolio-sorting-select div.portfolio-sorting-select-current .portfolio-filters-more-button-arrow, .portfolio-sorting-select .portfolio-filters-more-button .portfolio-sorting-select-current-arrow, .portfolio-sorting-select .portfolio-filters-more-button .portfolio-filters-more-button-arrow, .portfolio-filters-more div.portfolio-sorting-select-current .portfolio-sorting-select-current-arrow, .portfolio-filters-more div.portfolio-sorting-select-current .portfolio-filters-more-button-arrow, .portfolio-filters-more .portfolio-filters-more-button .portfolio-sorting-select-current-arrow, .portfolio-filters-more .portfolio-filters-more-button .portfolio-filters-more-button-arrow {
  transition: all 0.3s;
}
.portfolio-sorting-select div.portfolio-sorting-select-current .portfolio-sorting-select-current-arrow:before, .portfolio-sorting-select div.portfolio-sorting-select-current .portfolio-filters-more-button-arrow:before, .portfolio-sorting-select .portfolio-filters-more-button .portfolio-sorting-select-current-arrow:before, .portfolio-sorting-select .portfolio-filters-more-button .portfolio-filters-more-button-arrow:before, .portfolio-filters-more div.portfolio-sorting-select-current .portfolio-sorting-select-current-arrow:before, .portfolio-filters-more div.portfolio-sorting-select-current .portfolio-filters-more-button-arrow:before, .portfolio-filters-more .portfolio-filters-more-button .portfolio-sorting-select-current-arrow:before, .portfolio-filters-more .portfolio-filters-more-button .portfolio-filters-more-button-arrow:before {
  display: block;
  content: '\e602';
  font-style: normal;
  font-family: "thegem-icons";
  font-weight: normal;
  -webkit-font-smoothing: initial;
}
@media (max-width: 500px) {
  .portfolio-sorting-select div.portfolio-sorting-select-current .portfolio-sorting-select-name .portfolio-sorting-select-name-by, .portfolio-sorting-select .portfolio-filters-more-button .portfolio-sorting-select-name .portfolio-sorting-select-name-by, .portfolio-filters-more div.portfolio-sorting-select-current .portfolio-sorting-select-name .portfolio-sorting-select-name-by, .portfolio-filters-more .portfolio-filters-more-button .portfolio-sorting-select-name .portfolio-sorting-select-name-by {
    display: none;
  }
  .portfolio-sorting-select div.portfolio-sorting-select-current .portfolio-sorting-select-name .portfolio-sorting-select-name-type, .portfolio-sorting-select .portfolio-filters-more-button .portfolio-sorting-select-name .portfolio-sorting-select-name-type, .portfolio-filters-more div.portfolio-sorting-select-current .portfolio-sorting-select-name .portfolio-sorting-select-name-type, .portfolio-filters-more .portfolio-filters-more-button .portfolio-sorting-select-name .portfolio-sorting-select-name-type {
    text-transform: capitalize;
  }
}
.portfolio-sorting-select div.portfolio-sorting-select-current, .portfolio-filters-more div.portfolio-sorting-select-current {
  font-size: 16px;
  line-height: 1;
  text-align: left;
  padding: 3px 11px 4px 15px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 13px;
}
.portfolio-sorting-select ul, .portfolio-sorting-select .portfolio-filters-more-dropdown, .portfolio-filters-more ul, .portfolio-filters-more .portfolio-filters-more-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  list-style: none;
  margin: 0;
  padding: 30px;
  background-color: var(--thegem-to-main-bg-color, #FFFFFF);
  box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.05);
  z-index: 2;
  max-height: 500px;
  overflow: auto;
}
.portfolio-sorting-select ul::-webkit-scrollbar-track, .portfolio-sorting-select .portfolio-filters-more-dropdown::-webkit-scrollbar-track, .portfolio-filters-more ul::-webkit-scrollbar-track, .portfolio-filters-more .portfolio-filters-more-dropdown::-webkit-scrollbar-track {
  background-color: transparent;
}
.portfolio-sorting-select ul::-webkit-scrollbar, .portfolio-sorting-select .portfolio-filters-more-dropdown::-webkit-scrollbar, .portfolio-filters-more ul::-webkit-scrollbar, .portfolio-filters-more .portfolio-filters-more-dropdown::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}
.portfolio-sorting-select ul::-webkit-scrollbar-thumb, .portfolio-sorting-select .portfolio-filters-more-dropdown::-webkit-scrollbar-thumb, .portfolio-filters-more ul::-webkit-scrollbar-thumb, .portfolio-filters-more .portfolio-filters-more-dropdown::-webkit-scrollbar-thumb {
  background-color: #dfe5e8;
  border-radius: 2px;
}
.portfolio-sorting-select ul li, .portfolio-sorting-select .portfolio-filters-more-dropdown li, .portfolio-filters-more ul li, .portfolio-filters-more .portfolio-filters-more-dropdown li {
  color: inherit;
  font-size: 16px;
  line-height: 1.2;
}
.portfolio-sorting-select ul li, .portfolio-sorting-select ul a, .portfolio-sorting-select .portfolio-filters-more-dropdown li, .portfolio-sorting-select .portfolio-filters-more-dropdown a, .portfolio-filters-more ul li, .portfolio-filters-more ul a, .portfolio-filters-more .portfolio-filters-more-dropdown li, .portfolio-filters-more .portfolio-filters-more-dropdown a {
  display: block;
  max-width: 170px;
  width: max-content;
  width: -webkit-max-content;
  text-align: left;
  margin: 0 !important;
  cursor: pointer;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .portfolio-sorting-select ul li, .portfolio-sorting-select ul a, .portfolio-sorting-select .portfolio-filters-more-dropdown li, .portfolio-sorting-select .portfolio-filters-more-dropdown a, .portfolio-filters-more ul li, .portfolio-filters-more ul a, .portfolio-filters-more .portfolio-filters-more-dropdown li, .portfolio-filters-more .portfolio-filters-more-dropdown a {
    max-width: 240px;
  }
}
.portfolio-sorting-select ul li:not(:last-child), .portfolio-sorting-select ul a:not(:last-child), .portfolio-sorting-select .portfolio-filters-more-dropdown li:not(:last-child), .portfolio-sorting-select .portfolio-filters-more-dropdown a:not(:last-child), .portfolio-filters-more ul li:not(:last-child), .portfolio-filters-more ul a:not(:last-child), .portfolio-filters-more .portfolio-filters-more-dropdown li:not(:last-child), .portfolio-filters-more .portfolio-filters-more-dropdown a:not(:last-child) {
  margin-bottom: 5px !important;
}
.portfolio-sorting-select .portfolio-filters-more-dropdown, .portfolio-filters-more .portfolio-filters-more-dropdown {
  left: 0;
  right: initial;
}

.portfolio-filters-more {
  display: inline-block;
  margin-left: 0;
}

.portfolio-sorting-select.active div.portfolio-sorting-select-current .portfolio-sorting-select-current-arrow,
.portfolio-sorting-select.active .portfolio-filters-more-button .portfolio-filters-more-button-arrow, .portfolio-filters-more.active div.portfolio-sorting-select-current .portfolio-sorting-select-current-arrow,
.portfolio-filters-more.active .portfolio-filters-more-button .portfolio-filters-more-button-arrow {
  transform: rotate(180deg);
}
.portfolio-sorting-select.active ul, .portfolio-sorting-select.active .portfolio-filters-more-dropdown, .portfolio-filters-more.active ul, .portfolio-filters-more.active .portfolio-filters-more-dropdown {
  display: block;
}

@media (min-width: 992px) {
  .portfolio-top-panel.sidebar-filter > .portfolio-selected-filters {
    display: none;
  }
  .portfolio-top-panel.sidebar-filter .portfolio-selected-filters .portfolio-selected-filter-item {
    margin: 0 10px 10px 0;
  }
}
@media (max-width: 999px) {
  .portfolio-top-panel.sidebar-filter .portfolio-top-panel-left .portfolio-selected-filters {
    display: none;
  }
}

#main.over-header {
  z-index: initial;
}

.portfolio.filters-opened .preloader-new {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
}
@media (max-width: 767px) {
  .portfolio.filters-opened .preloader-new {
    background-color: rgba(153, 169, 181, 0.7);
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    -moz-background-size: 40px 40px;
    -o-background-size: 40px 40px;
    background-size: 40px 40px;
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -moz-animation: progress-bar-stripes 2s linear infinite;
    -ms-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
  }
  .portfolio.filters-opened .preloader-new .preloader-spin, .portfolio.filters-opened .preloader-new .preloader-spin-new {
    display: none;
  }
  @-webkit-keyframes progress-bar-stripes {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 40px 0;
    }
  }
  @-moz-keyframes progress-bar-stripes {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 40px 0;
    }
  }
  @-ms-keyframes progress-bar-stripes {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 40px 0;
    }
  }
  @-o-keyframes progress-bar-stripes {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 40px 0;
    }
  }
  @keyframes progress-bar-stripes {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 40px 0;
    }
  }
}

@media (max-width: 991px) {
  .with-filter-sidebar .filter-sidebar {
    margin-bottom: 20px;
  }
  .with-filter-sidebar .filter-sidebar.left {
    float: left;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .with-filter-sidebar {
    display: flex;
  }
  .with-filter-sidebar .content {
    width: 75%;
  }
  .with-filter-sidebar .filter-sidebar {
    width: 25%;
    max-width: 350px;
  }
  .with-filter-sidebar .content {
    flex: 1;
  }
}

@media (min-width: 992px) {
  .panel-sidebar-position-right .with-filter-sidebar {
    flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .panel-sidebar-position-right .portfolio-filters-list.style-sidebar .portfolio-filters-outer:not(.without-padding) {
    padding-right: 0;
    padding-left: 45px;
  }
}

.portfolio-top-panel:not(.filter-type-default) {
  display: block;
}
.portfolio-top-panel:not(.filter-type-default):not(.extended-posts-filter) {
  margin: 0 0 20px;
}
.portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left {
  min-width: initial;
}
.portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.center .widget-area-wrap {
  margin-left: auto;
  margin-right: auto;
}
.portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.center .portfolio-filters-extended {
  justify-content: center;
}
@media (min-width: 768px) {
  .portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.center .portfolio-filters-list.single-filter[data-breakpoint].style-standard:not(.style-standard-mobile) .portfolio-filter-item .portfolio-filter-item-list ul {
    justify-content: center;
  }
  .portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.center .portfolio-filters-list.single-filter[data-breakpoint].style-standard:not(.style-standard-mobile) .portfolio-filter-item .portfolio-filter-item-list ul li {
    margin: 0 15px 13px 15px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.center .portfolio-filters-list.single-filter:not([data-breakpoint]).style-standard .portfolio-filter-item .portfolio-filter-item-list ul {
    justify-content: center;
  }
  .portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.center .portfolio-filters-list.single-filter:not([data-breakpoint]).style-standard .portfolio-filter-item .portfolio-filter-item-list ul li {
    margin: 0 15px 13px 15px;
  }
}

.portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.right .widget-area-wrap {
  margin-left: auto;
}
.portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.right .portfolio-filters-extended {
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.right .portfolio-filters-list.single-filter[data-breakpoint].style-standard:not(.style-standard-mobile) .portfolio-filter-item .portfolio-filter-item-list ul {
    justify-content: flex-end;
  }
  .portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.right .portfolio-filters-list.single-filter[data-breakpoint].style-standard:not(.style-standard-mobile):not(.has-right-panel) .portfolio-filter-item .portfolio-filter-item-list ul li {
    margin: 0 0 13px 30px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.right .portfolio-filters-list.single-filter:not([data-breakpoint]).style-standard .portfolio-filter-item .portfolio-filter-item-list ul {
    justify-content: flex-end;
  }
  .portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.right .portfolio-filters-list.single-filter:not([data-breakpoint]).style-standard:not(.has-right-panel) .portfolio-filter-item .portfolio-filter-item-list ul li {
    margin: 0 0 13px 30px;
  }
}

.portfolio-top-panel:not(.filter-type-default) .portfolio-top-panel-row .portfolio-top-panel-left.justify .portfolio-filters-extended {
  justify-content: space-between;
}

.with-filter-sidebar .portfolio-top-panel {
  display: block;
}
.with-filter-sidebar .portfolio-top-panel:not(.extended-posts-filter) {
  margin: 0 0 35px;
}

.portfolio-top-panel .portfolio-top-panel-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: right;
  flex: none;
}
@media (max-width: 930px) {
  .portfolio-top-panel .portfolio-top-panel-right > span {
    display: none;
  }
}
.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter:not(.input-style) {
  position: relative;
  padding-left: 5px;
  z-index: 5;
}
@media (max-width: 930px) {
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter:not(.input-style):not(.mobile-visible) {
    display: none;
  }
}
.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter:not(.input-style) .portfolio-search-filter-form {
  display: none;
  position: absolute;
  top: 50%;
  right: 37px;
  transform: translateY(-50%);
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter:not(.input-style) .portfolio-search-filter-form.ajax-loading:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 40px;
  border: 2px solid #5f727f;
  border-top: 2px solid transparent;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter:not(.input-style) input {
  width: 220px;
  padding: 5px 18px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter:not(.input-style) input {
    width: 350px;
  }
}
.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter:not(.input-style).active .portfolio-search-filter-form {
  display: block;
}
.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter:not(.input-style) .portfolio-search-filter-button {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s;
}
.portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter:not(.input-style) .portfolio-search-filter-button:before {
  font-size: 14px;
}
@media (max-width: 1024px) {
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style {
    position: relative;
    padding-left: 5px;
    z-index: 5;
  }
}
@media (max-width: 1024px) and (max-width: 930px) {
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style:not(.mobile-visible) {
    display: none;
  }
}
@media (max-width: 1024px) {
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-form {
    display: none;
    position: absolute;
    top: 50%;
    right: 37px;
    transform: translateY(-50%);
    padding: 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  }
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-form.ajax-loading:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 40px;
    border: 2px solid #5f727f;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    animation: spin 2s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style input {
    width: 220px;
    padding: 5px 18px;
    box-sizing: border-box;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style input {
    width: 350px;
  }
}
@media (max-width: 1024px) {
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style.active .portfolio-search-filter-form {
    display: block;
  }
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-button {
    display: block;
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-button:before {
    font-size: 14px;
  }
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-button, .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-button:hover {
    color: inherit;
    background: transparent;
  }
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-button:before, .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-button:hover:before {
    content: "\e612";
    font-size: 22px;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1025px) {
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style {
    margin: -6px 0 -6px 15px;
  }
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-form {
    background: transparent;
  }
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style input {
    background: transparent;
    border-radius: 0;
    color: inherit;
    border-bottom: 1px solid currentColor;
    padding-left: 33px;
    padding-right: 5px;
  }
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-button {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    margin: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-button:before {
    content: "\e612";
    font-size: 22px;
    transform: translate(-50%, -50%);
  }
  .portfolio-top-panel .portfolio-top-panel-right .portfolio-search-filter.input-style .portfolio-search-filter-button:hover {
    color: inherit;
    background: transparent;
  }
}

.portfolio-search-filter {
  position: relative;
}
.portfolio-search-filter input[type="search"] {
  display: block;
  border: none;
  padding: 7px 33px 7px 18px;
  border-radius: 17px;
  line-height: 1;
}
.portfolio-search-filter input[type="search"]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: currentColor;
  opacity: 0.8;
}
.portfolio-search-filter input[type="search"]::-moz-placeholder {
  /* Firefox 19+ */
  color: currentColor;
  opacity: 0.8;
}
.portfolio-search-filter input[type="search"]:-ms-input-placeholder {
  /* IE 10+ */
  color: currentColor;
  opacity: 0.8;
}
.portfolio-search-filter input[type="search"]:-moz-placeholder {
  /* Firefox 18- */
  color: currentColor;
  opacity: 0.8;
}
.portfolio-search-filter .portfolio-search-filter-button {
  position: relative;
  font-size: 0;
  letter-spacing: 0;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  cursor: pointer;
}
.portfolio-search-filter .portfolio-search-filter-button:before {
  content: "\e67b";
  font-size: 16px;
  font-style: normal;
  font-family: "thegem-icons";
  font-weight: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateY(180deg);
}

.portfolio-top-panel.extended-posts-filter {
  margin-bottom: 0;
}
.portfolio-top-panel.extended-posts-filter.hide-separator .portfolio-filters-list:is(.style-hidden, .style-sidebar) .portfolio-filter-item, .portfolio-top-panel.extended-posts-filter.hide-separator .portfolio-filters-list[data-breakpoint].style-standard-mobile .portfolio-filter-item {
  border: none;
}
@media (max-width: 991px) {
  .portfolio-top-panel.extended-posts-filter.hide-separator .portfolio-filters-list:not([data-breakpoint]).style-standard .portfolio-filter-item {
    border: none;
  }
}

.portfolio-top-panel .extended-posts-filter .portfolio-filters-list .portfolio-filter-item .portfolio-search-filter input,
.extended-posts-sorting .portfolio-sorting-select div.portfolio-sorting-select-current {
  color: inherit;
  background: transparent;
  min-height: 38px;
  line-height: 1.1;
  border-radius: 3px;
  padding-left: 18px;
  padding-right: 12px;
  border: 1px solid var(--thegem-to-form-elements-border-color);
}

.extended-posts-sorting .portfolio-sorting-select {
  width: 200px;
}
.extended-posts-sorting .portfolio-sorting-select.active {
  z-index: 6;
}
.extended-posts-sorting .portfolio-sorting-select .portfolio-sorting-select-current {
  width: 100%;
  justify-content: space-between;
}
.extended-posts-sorting .portfolio-sorting-select ul {
  width: 100%;
}
.extended-posts-sorting .portfolio-sorting-select ul li {
  width: 100%;
  max-width: initial;
}
.extended-posts-sorting .portfolio-sorting-select.alignment-left {
  margin-left: 0;
  margin-right: auto;
}
.extended-posts-sorting .portfolio-sorting-select.alignment-center {
  margin-left: auto;
  margin-right: auto;
}
.extended-posts-sorting .portfolio-sorting-select.alignment-right {
  margin-left: auto;
  margin-right: 0;
}
.extended-posts-sorting .portfolio-sorting-select.alignment-justify {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}



.portfolio.extended-products-grid .portfolio-item .caption .product-bottom {
  padding: 0 0 0 0;
  display: block; }

.portfolio.extended-products-grid .portfolio-item .caption .product-rating {
  margin-top: 0; }

.portfolio.extended-products-grid .portfolio-item .caption .product-rating .empty-rating:before {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.portfolio.extended-products-grid .portfolio-item:hover .caption .product-rating .empty-rating:before,
.portfolio.extended-products-grid .portfolio-item.hover-effect .caption .product-rating .empty-rating:before {
  width: 90px; }

.portfolio.extended-products-grid.hover-title .portfolio-item.product .product-labels,
.portfolio.extended-products-grid.hover-gradient .portfolio-item.product .product-labels,
.portfolio.extended-products-grid.hover-circular .portfolio-item.product .product-labels {
  -o-transition: opacity 0.25s ease-out 0.2s;
  -webkit-transition: opacity 0.25s ease-out 0.2s;
  transition: opacity 0.25s ease-out 0.2s; }

.portfolio.extended-products-grid.hover-title:not(.hover-disabled) .portfolio-item.product:hover .product-labels,
.portfolio.extended-products-grid.hover-title:not(.hover-disabled) .portfolio-item.product.hover-effect .product-labels,
.portfolio.extended-products-grid.hover-gradient:not(.hover-disabled) .portfolio-item.product:hover .product-labels,
.portfolio.extended-products-grid.hover-gradient:not(.hover-disabled) .portfolio-item.product.hover-effect .product-labels,
.portfolio.extended-products-grid.hover-circular:not(.hover-disabled) .portfolio-item.product:hover .product-labels,
.portfolio.extended-products-grid.hover-circular:not(.hover-disabled) .portfolio-item.product.hover-effect .product-labels {
  opacity: 0;
  -o-transition: opacity 0.25s ease-out;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  z-index: 2; }

.portfolio.extended-products-grid .portfolio-item .image-inner picture img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  left: 0;
  width: 100%;
  max-width: 100% !important; }

.portfolio.extended-products-grid.disable-isotope .image .image-inner picture img {
  position: absolute;
  top: 0; }

.portfolio.extended-products-grid .portfolio-item.product.image-hover .image-inner img.image-hover {
  position: absolute;
  left: 100%;
  top: 0;
  -o-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out; }

.portfolio.extended-products-grid.hover-horizontal-sliding .portfolio-item:hover .image-inner picture img,
.portfolio.extended-products-grid.hover-horizontal-sliding .portfolio-item.hover-effect .image-inner picture img {
  webkit-transform: translate(0, 0) scale(1.12);
  transform: translate(0, 0) scale(1.12);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s; }

.portfolio.extended-products-grid .portfolio-item.product.image-hover .image-inner picture img.image-hover {
  display: none; }

.portfolio.extended-products-grid .portfolio-item.product.image-hover .image-inner picture img.image-hover.hover-fade {
  position: absolute;
  left: 0 !important;
  top: 0;
  opacity: 0;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }

.portfolio.products.extended-products-grid:not(.list-style) .portfolio-item.product.image-hover:hover .image-inner picture img.image-hover,
.portfolio.products.extended-products-grid:not(.list-style) .portfolio-item.product.image-hover.hover-effect .image-inner picture img.image-hover,
.portfolio.products.extended-products-grid.list-style .portfolio-item.product.image-hover .image:hover .image-inner picture img.image-hover {
  left: 0 !important;
  opacity: 1; }

.portfolio.extended-products-grid.hover-horizontal-sliding:not(.list-style) .portfolio-item.image-hover:hover .image .image-inner picture img,
.portfolio.extended-products-grid.hover-horizontal-sliding:not(.list-style) .portfolio-item.image-hover.hover-effect .image .image-inner picture img,
.portfolio.extended-products-grid.hover-horizontal-sliding.list-style .portfolio-item.image-hover .image:hover .image-inner picture img {
  -webkit-transform: none;
  transform: none; }

.portfolio.extended-products-grid .portfolio-item .overlay .caption .product-rating {
  display: inline-block;
  margin: 18px 0 0 0; }

.portfolio.extended-products-grid .portfolio-item .overlay .caption .product-rating.product-rating-empty {
  display: none; }

.portfolio.extended-products-grid .portfolio-item.product .overlay > a {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

.portfolio.extended-products-grid.title-on-page .portfolio-item.product .overlay .links-wrapper {
  display: none; }

.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom .clear {
  display: none; }

.portfolio.extended-products-grid .portfolio-item .image .overlay .portfolio-icons.product-bottom a.added_to_cart,
.portfolio.extended-products-grid .portfolio-item .image .overlay .portfolio-icons.product-bottom a.added_to_cart:before,
.portfolio.extended-products-grid .portfolio-item .image .overlay .portfolio-icons.product-bottom .yith-wcwl-wishlistaddedbrowse a,
.portfolio.extended-products-grid .portfolio-item .image .overlay .portfolio-icons.product-bottom .yith-wcwl-wishlistaddedbrowse a:before {
  font-size: 120%; }

.portfolio.extended-products-grid .portfolio-item .image .overlay .portfolio-icons.product-bottom a.added_to_cart:before,
.portfolio.extended-products-grid .portfolio-item .image .overlay .portfolio-icons.product-bottom .yith-wcwl-wishlistaddedbrowse a:before {
  vertical-align: top; }

.portfolio.extended-products-grid .portfolio-item .image .overlay .portfolio-icons.product-bottom .yith-wcwl-wishlistaddedbrowse a:before {
  line-height: 90%; }

.portfolio.extended-products-grid .portfolio-item .wrap .caption .product-bottom .gem-button-container.bottom-product-link:before {
  display: none; }

.portfolio.extended-products-grid .portfolio-item .wrap .caption .product-bottom .gem-button-container.bottom-product-link a {
  color: inherit;
  margin: 0;
  width: auto;
  margin-left: -4px;
  line-height: inherit; }

.portfolio.extended-products-grid .portfolio-item .wrap .caption .product-bottom .gem-button-container.bottom-product-link a {
  margin-left: 0; }

.portfolio.extended-products-grid .portfolio-item .portfolio-icons.product-bottom .icon {
  vertical-align: middle;
  margin-left: 0; }

.portfolio.extended-products-grid .portfolio-item .image .overlay .portfolio-icons.product-bottom .yith-wcwl-add-to-wishlist {
  margin: 0; }

.portfolio.extended-products-grid .portfolio-item .overlay .caption .description {
  margin-bottom: 18px; }

.portfolio.extended-products-grid .portfolio-item .overlay .caption .subtitle p {
  max-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis; }

.portfolio.extended-products-grid .portfolio-item .overlay .product-rating .star-rating > span:before {
  color: #ffffff; }

.portfolio.extended-products-grid.hover-gradient .portfolio-item .overlay .product-rating .star-rating:before {
  color: #ffffff; }

.portfolio.extended-products-grid.hover-gradient .portfolio-item .overlay .product-rating .star-rating > span:before {
  color: #ffc107; }

.portfolio.extended-products-grid .portfolio-item .image .overlay .links .caption {
  padding-top: 23px; }

.portfolio.extended-products-grid.columns-4 .portfolio-item .overlay .caption .product-rating {
  margin: 11px 0 0 0; }

.portfolio.extended-products-grid.columns-4 .portfolio-item .overlay .caption .description {
  margin-bottom: 5px; }

.portfolio.extended-products-grid.columns-4 .portfolio-item .image .overlay .links .caption {
  padding-top: 13px; }

.portfolio.extended-products-grid.hover-default.columns-4 .portfolio-item .image .overlay .links .portfolio-sharing-pane.active,
.portfolio.extended-products-grid.hover-default.fullwidth-columns-5 .portfolio-item .image .overlay .links .portfolio-sharing-pane.active,
.portfolio.extended-products-grid.hover-default.fullwidth-columns-6 .portfolio-item .image .overlay .links .portfolio-sharing-pane.active {
  margin-bottom: 22px; }

.portfolio.extended-products-grid.hover-zooming-blur.columns-4 .portfolio-item .image .overlay .links .portfolio-sharing-pane.active,
.portfolio.extended-products-grid.hover-zooming-blur.fullwidth-columns-5 .portfolio-item .image .overlay .links .portfolio-sharing-pane.active,
.portfolio.extended-products-grid.hover-zooming-blur.fullwidth-columns-6 .portfolio-item .image .overlay .links .portfolio-sharing-pane.active {
  margin-bottom: 13px; }

.portfolio.extended-products-grid.fullwidth-columns-5 .portfolio-item .overlay .caption .product-rating {
  margin: 11px 0 0 0; }

.portfolio.extended-products-grid.fullwidth-columns-5 .portfolio-item .overlay .caption .description {
  margin-bottom: 5px; }

.portfolio.extended-products-grid.fullwidth-columns-5 .portfolio-item .image .overlay .links .caption {
  padding-top: 13px; }

.portfolio.extended-products-grid.fullwidth-columns-6 .portfolio-item .overlay .caption .product-rating {
  margin: 11px 0 0 0; }

.portfolio.extended-products-grid.fullwidth-columns-6 .portfolio-item .overlay .caption .description {
  margin-bottom: 5px; }

.portfolio.extended-products-grid.fullwidth-columns-6 .portfolio-item .image .overlay .links .caption {
  padding-top: 13px; }

.portfolio.extended-products-grid.hover-horizontal-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links,
.portfolio.extended-products-grid.hover-horizontal-sliding .portfolio-item:not(.double-item-squared) .overlay .links,
.portfolio.extended-products-grid.hover-vertical-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links,
.portfolio.extended-products-grid.hover-vertical-sliding .portfolio-item:not(.double-item-squared) .overlay .links {
  padding: 0; }

.portfolio.extended-products-grid.columns-4.hover-gradient .portfolio-item .overlay .links .portfolio-icons {
  padding-left: 15px;
  padding-right: 15px; }

.portfolio.extended-products-grid.hover-vertical-sliding .portfolio-item .overlay .links .caption .description {
  padding-left: 30px;
  padding-bottom: 25px; }

.portfolio.extended-products-grid.columns-4.hover-gradient .portfolio-item .overlay .links .caption {
  padding-left: 15px; }

.portfolio.extended-products-grid.hover-horizontal-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links .caption,
.portfolio.extended-products-grid.hover-horizontal-sliding .portfolio-item:not(.double-item-squared) .overlay .links .caption,
.portfolio.extended-products-grid.hover-vertical-sliding .fullwidth-block .portfolio-item:not(.double-item-squared) .overlay .links .caption,
.portfolio.extended-products-grid.hover-vertical-sliding .portfolio-item:not(.double-item-squared) .overlay .links .caption {
  padding-top: 5px; }

.portfolio.extended-products-grid.fullwidth-columns-6.hover-circular .overlay .overlay-line {
  margin: 5px 0; }

.portfolio.extended-products-grid.hover-gradient .portfolio-item .image .overlay .links .description,
.portfolio.extended-products-grid.hover-circular .portfolio-item .image .overlay .links .description {
  display: block !important;
  height: 0;
  overflow: hidden;
  position: relative;
  margin: 0; }

.portfolio.extended-products-grid.title-on-page.hover-zooming-blur .portfolio-item.image-hover .image .image-inner img,
.portfolio.extended-products-grid.title-on-page.hover-gradient .portfolio-item.image-hover .image .image-inner img,
.portfolio.extended-products-grid.title-on-page.hover-vertical-sliding .portfolio-item.image-hover .image .image-inner img {
  -webkit-transform: scale(1);
  transform: scale(1); }

@media only screen and (min-width: 800px) and (max-width: 1150px) {
  .portfolio.extended-products-grid.columns-3.hover-vertical-sliding .portfolio-item .overlay .caption .description,
  .portfolio.extended-products-grid.columns-4.hover-vertical-sliding .portfolio-item .overlay .caption .description {
    display: none; } }
@media only screen and (max-width: 1100px) {
  .portfolio.extended-products-grid .portfolio-item .overlay .caption .product-rating {
    margin: 11px 0 0 0; }

  .portfolio.extended-products-grid .portfolio-item .overlay .caption .description {
    margin-bottom: 5px; }

  .portfolio.extended-products-grid .portfolio-item .image .overlay .links .caption {
    padding-top: 17px; }

  .portfolio.extended-products-grid.columns-3 .portfolio-item .overlay .caption .description {
    display: none; }

  .portfolio.extended-products-grid.hover-horizontal-sliding .overlay .overlay-line {
    margin: 15px 0; }

  .portfolio.extended-products-grid.hover-default .portfolio-item:hover .image .overlay .links .portfolio-sharing-pane.active,
  .portfolio.extended-products-grid.hover-default .portfolio-item.hover-effect .image .overlay .links .portfolio-sharing-pane.active {
    margin-bottom: 20px; }

  .portfolio.extended-products-grid.hover-zooming-blur .portfolio-item:hover .image .overlay .links .portfolio-sharing-pane.active,
  .portfolio.extended-products-grid.hover-zooming-blur .portfolio-item.hover-effect .image .overlay .links .portfolio-sharing-pane.active {
    margin-bottom: 13px; } }
@media only screen and (max-width: 700px) {
  .portfolio.extended-products-grid .portfolio-item .overlay .caption .description {
    display: none; } }
@media only screen and (max-width: 550px) {
  .portfolio.extended-products-grid .portfolio-item .overlay .caption .description,
  .portfolio.extended-products-grid.columns-3 .portfolio-item .overlay .caption .description,
  .portfolio.extended-products-grid.columns-4 .portfolio-item .overlay .caption .description {
    display: block; } }
@media (min-width: 1170px) and (max-width: 1250px) {
  .portfolio.extended-products-grid .fullwidth-block .portfolio-item .overlay .links .caption .description {
    display: none; } }
@media (min-width: 1280px) and (max-width: 1550px), (max-width: 1170px) {
  .portfolio.extended-products-grid .fullwidth-block .portfolio-item .overlay .caption .product-rating {
    margin: 11px 0 0 0; }

  .portfolio.extended-products-grid .fullwidth-block .portfolio-item .overlay .caption .description {
    margin-bottom: 5px; }

  .portfolio.extended-products-grid .fullwidth-block .portfolio-item .image .overlay .links .caption {
    padding-top: 13px; }

  .portfolio.extended-products-grid .fullwidth-block .portfolio-item .overlay .caption .description {
    display: none; }

  .portfolio.extended-products-grid.hover-horizontal-sliding .overlay .overlay-line {
    margin: 15px 0; } }
@media only screen and (min-width: 550px) and (max-width: 1200px) {
  .portfolio.extended-products-grid.hover-horizontal-sliding.columns-3 .portfolio-item .overlay .caption .description {
    display: none; } }
.portfolio.extended-products-grid .portfolio-item.item-small-size .overlay .caption .description {
  display: none !important; }

.portfolio.extended-products-grid.portfolio-disable-socials .portfolio-item .image .overlay .links .portfolio-icons.product-bottom .yith-wcwl-add-to-wishlist > div {
  margin-right: 0; }

.portfolio.extended-products-grid.extended-products-grid .portfolio-item .wrap > .caption .product-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  width: fit-content;
  width: -webkit-fit-content;
  margin: 6px auto; }

.portfolio.extended-products-grid.extended-products-grid .product-bottom a.icon,
.portfolio.extended-products-grid.extended-products-grid .product-bottom .icon a,
.portfolio.extended-products-grid.extended-products-grid .product-bottom a.add_to_wishlist {
  display: block;
  height: auto;
  vertical-align: middle;
  line-height: 1; }

.portfolio.extended-products-grid.extended-products-grid .yith-wcwl-wishlistaddedbrowse,
.portfolio.extended-products-grid.extended-products-grid .yith-wcwl-wishlistexistsbrowse {
  line-height: 1; }

.portfolio.extended-products-grid.extended-products-grid .yith-wcwl-wishlistaddedbrowse a,
.portfolio.extended-products-grid.extended-products-grid .yith-wcwl-wishlistexistsbrowse a {
  display: block; }

.portfolio.extended-products-grid.extended-products-grid .product-bottom a.icon svg,
.portfolio.extended-products-grid.extended-products-grid .product-bottom .icon a svg,
.portfolio.extended-products-grid .portfolio-item .image .overlay .links a.icon svg,
.portfolio.extended-products-grid .portfolio-item .image .overlay .links .icon a svg {
  fill: currentColor;
  width: 16px;
  height: 16px; }

.portfolio.extended-products-grid.extended-products-grid .product-bottom a.icon i,
.portfolio.extended-products-grid.extended-products-grid .product-bottom .icon a i {
  font-size: 16px;
  vertical-align: top;
  line-height: inherit; }

.portfolio.extended-products-grid.extended-products-grid .product-bottom a.icon i.default,
.portfolio.extended-products-grid.extended-products-grid .product-bottom .icon a i.default,
.portfolio.extended-products-grid.extended-products-grid .cart.type_button i.default {
  font-style: normal;
  font-family: 'thegem-icons';
  font-weight: normal;
  -webkit-font-smoothing: initial; }

.portfolio.extended-products-grid.extended-products-grid .product-bottom .bottom-product-link:before,
.portfolio.extended-products-grid.extended-products-grid .product-bottom .cart .button:before,
.portfolio.extended-products-grid.extended-products-grid .product-bottom .add_to_wishlist:before,
.extended-products-grid.extended-products-grid .product-bottom .yith-wcwl-wishlistexistsbrowse a:before {
  content: none !important; }

.portfolio.extended-products-grid .product-bottom .bottom-product-link i.default:before {
  content: '\e628'; }

.portfolio.extended-products-grid .product-bottom .cart i.default:before {
  content: '\e660'; }

.portfolio.extended-products-grid .product-bottom a.add_to_wishlist i.default:before {
  content: '\e65e'; }

.portfolio.extended-products-grid .product-bottom .yith-wcwl-add-to-wishlist {
  opacity: 1 !important; }
.portfolio.extended-products-grid .product-bottom a.add_to_wishlist .blockUI, .portfolio.extended-products-grid .product-bottom a.delete_item .blockUI, .portfolio.extended-products-grid .product-bottom .yith-icon .blockUI {
  display: none !important; }

.portfolio.extended-products-grid .product .product-labels {
  width: auto;
  right: 0;
  transform: translateX(35%); }

.portfolio.extended-products-grid .product .product-labels .text {
  display: block; }

.portfolio.extended-products-grid .portfolio-item .image .overlay .links .portfolio-icons.product-bottom a.icon i,
.portfolio.extended-products-grid .portfolio-item .image .overlay .links .portfolio-icons.product-bottom .icon a i {
  color: inherit; }

.portfolio.extended-products-grid.hover-gradient .portfolio-item .image .overlay .links a.icon:before,
.portfolio.extended-products-grid.hover-gradient .portfolio-item .image .overlay .links .icon a:before {
  background-color: transparent; }

.portfolio.extended-products-grid.background-style-transparent:not(.columns-1) .portfolio-item .wrap > .caption {
  background-color: transparent; }
  .portfolio.extended-products-grid.background-style-transparent:not(.columns-1) .portfolio-item .wrap > .caption.left, .portfolio.extended-products-grid.background-style-transparent:not(.columns-1) .portfolio-item .wrap > .caption.right {
    padding-left: 0;
    padding-right: 0; }

.empty-price {
  opacity: 0; }

.portfolio-row, .portfolio-item {
  border-width: 0; }

.yith-icon > i {
  display: none !important; }

.portfolio.extended-products-grid .portfolio-set {
  margin-top: 0;
  margin-bottom: 0; }
.portfolio.extended-products-grid .portfolio-row-outer {
  position: relative; }
.portfolio.extended-products-grid .portfolio-item.product .loading + * {
  opacity: 1; }
@media (min-width: 992px) {
  .portfolio.extended-products-grid .portfolio-item.product.columns-desktop-5 {
    width: 20%; }
    .portfolio.extended-products-grid .portfolio-item.product.columns-desktop-5:is(.double-item-squared, .double-item-horizontal) {
      width: 40%; } }
.portfolio.extended-products-grid .portfolio-item.product.inline-column {
  float: left;
  margin-bottom: 0; }
.portfolio.extended-products-grid .portfolio-item.product .reviews + .actions > *:first-child {
  margin-top: 5px; }
.portfolio.extended-products-grid .portfolio-item.product .actions {
  width: -moz-available;
  width: -webkit-fill-available;
  margin: 0 -2px;
  line-height: 1.2; }
  .portfolio.extended-products-grid .portfolio-item.product .actions > * {
    display: inline-block;
    margin: 0 2px 5px 2px; }
  .portfolio.extended-products-grid .portfolio-item.product .actions .button {
    color: #5f727f;
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
    background: #dfe5e8;
    border: 1px solid #dfe5e8;
    padding: 5px 9px 6px 9px;
    border-radius: 30px; }
    .portfolio.extended-products-grid .portfolio-item.product .actions .button:hover {
      color: #ffff;
      background-color: #00bcd4;
      border-color: #00bcd4;
      transition: all 0.3s; }
.portfolio.extended-products-grid .portfolio-item.product .image {
  width: 100%;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  overflow: visible; }
  .portfolio.extended-products-grid .portfolio-item.product .image .image-inner {
    height: 100%;
    z-index: 1; }
  .portfolio.extended-products-grid .portfolio-item.product .image .overlay .product-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links-wrapper {
    table-layout: fixed; }
  .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons {
    line-height: 1;
    z-index: 1; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .portfolio-icons-inner {
      margin-right: -10px; }
      .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon {
        margin: 0 10px 0 0; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .icon a {
      position: relative;
      width: 20px;
      height: 20px;
      line-height: 20px;
      font-size: 0;
      letter-spacing: 0;
      padding: 0;
      margin: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      flex: none; }
      .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons a.icon:before, .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .icon a:before {
        content: none !important; }
      .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .icon a i {
        font-size: 20px;
        line-height: initial;
        transition: none; }
      .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .icon a svg {
        width: 20px;
        height: 20px; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons a.added_to_cart {
      display: none !important; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active {
      margin: 10px 0; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .portfolio-sharing-pane .socials-item {
      margin: 0 4px; }
      .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .portfolio-sharing-pane .socials-item:first-child {
        margin-left: 0 !important; }
      .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .portfolio-sharing-pane .socials-item:last-child {
        margin-right: 0 !important; }
      .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .portfolio-sharing-pane .socials-item .socials-item-icon {
        font-size: 14px; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons a.added_to_cart, .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .yith-wcwl-wishlistaddedbrowse a {
      font-size: 0;
      letter-spacing: 0; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .delete_item:before, .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .yith-wcwl-wishlistaddedbrowse a:before {
      content: none; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .yith-wcwl-add-button, .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .portfolio-icons .yith-wcwl-wishlistexistsbrowse {
      margin-right: 0 !important;
      font-size: 0;
      letter-spacing: 0; }
  .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .caption {
    position: relative;
    padding: 10px 20px 0 20px;
    z-index: 1; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .caption .product-info {
      display: block; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .caption .product-price {
      margin-bottom: 5px; }
      .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .caption .product-price .price {
        display: inline-block; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .caption .categories {
      color: #FFFFFF;
      padding-left: 3px;
      padding-right: 3px;
      margin-left: -3px;
      margin-right: -3px; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .caption > .categories {
      margin: 0 0 5px 0; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .caption a.added_to_cart {
      display: none !important; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .caption .cart.type_button .button {
      width: fit-content;
      width: -webkit-fit-content;
      height: auto;
      font-size: 14px;
      line-height: 1;
      padding: 6px 15px;
      margin: 5px auto 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center;
      transform: none;
      transition: all 0.3s; }
      .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .caption .cart.type_button .button i {
        color: currentColor;
        margin-right: 5px;
        font-size: 16px; }
      .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .caption .cart.type_button .button.loading {
        position: initial; }
    .portfolio.extended-products-grid .portfolio-item.product .image .overlay .links .caption .actions > * {
      margin: 5px 2px 0 2px; }
  .portfolio.extended-products-grid .portfolio-item.product .image .preloader-spin-new {
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px; }
    .portfolio.extended-products-grid .portfolio-item.product .image .preloader-spin-new + .image-inner {
      opacity: 0.6; }
.portfolio.extended-products-grid .portfolio-item.product .wrap {
  position: relative;
  width: 100%;
  border: none; }
  .portfolio.extended-products-grid .portfolio-item.product .wrap > .caption {
    position: initial;
    min-height: initial;
    padding: 18px 5px 13px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    cursor: default;
    border-width: 0;
    z-index: 4; }
    @media (min-width: 768px) {
      .portfolio.extended-products-grid .portfolio-item.product .wrap > .caption {
        padding: 18px 10px 13px 10px; } }
    @media (min-width: 992px) {
      .portfolio.extended-products-grid .portfolio-item.product .wrap > .caption {
        padding: 18px 20px 13px 20px; } }
    .portfolio.extended-products-grid .portfolio-item.product .wrap > .caption .product-rating {
      margin-top: 0; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap > .caption .categories {
      margin-bottom: 5px; }
      .portfolio.extended-products-grid .portfolio-item.product .wrap > .caption .categories a {
        transition: all 0.3s; }
  .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption {
    margin: 11px auto 5px auto; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption.empty {
      margin: 0; }
    @media (max-width: 991px) {
      .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption.empty-mobile {
        margin: 0; } }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption > * {
      margin: 0; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .yith-wcwl-add-to-wishlist, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .post-footer-sharing {
      margin: 0; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption a.icon, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .icon a {
      width: 39px;
      height: 39px;
      line-height: initial;
      font-size: 0;
      letter-spacing: 0;
      margin: 0 5px;
      text-align: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      justify-content: center; }
      .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption a.icon:hover, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .icon a:hover {
        transition: all 0.3s; }
      .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption a.icon .icon, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .icon a .icon {
        margin: 0; }
      .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption a.icon i, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .icon a i {
        display: inline-block;
        font-size: 16px;
        color: inherit; }
      .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption a.icon svg, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .icon a svg {
        width: 16px;
        height: 16px; }
      .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption a.icon.delete_item ~ *, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .icon a.delete_item ~ * {
        display: none; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption > *:first-child, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption > *:first-child a.icon, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption > *:first-child .icon a {
      margin-left: 0 !important; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption > *:last-child, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption > *:last-child a.icon, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption > *:last-child .icon a {
      margin-right: 0 !important; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption a.added_to_cart {
      display: none !important; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .cart.type_button .button {
      width: auto !important;
      height: auto !important;
      font-size: 14px;
      line-height: 1.2;
      text-align: left;
      padding: 5px 9px 6px 9px;
      margin: 4px 0 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      justify-content: center;
      transition: all 0.3s; }
      @media (min-width: 992px) {
        .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .cart.type_button .button {
          padding: 5px 15px 6px 15px; } }
      .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .cart.type_button .button i {
        color: currentColor;
        font-size: 16px;
        line-height: 1; }
      .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .cart.type_button .button .space {
        display: inline-block;
        width: 7px; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .delete_item:before, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .yith-wcwl-wishlistaddedbrowse a:before {
      content: none; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .cart i.default.variable:before,
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .cart.variable-type-button i.default:before {
      content: "\e661"; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .added_to_cart:before {
      content: none; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .icons-top {
      position: absolute;
      right: 4px;
      top: 4px;
      z-index: 99; }
      .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .icons-top > * {
        display: block;
        margin: 0 0 3px 0; }
      .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .icons-top .icon {
        margin: 0; }
      .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .icons-top a.icon, .portfolio.extended-products-grid .portfolio-item.product .wrap .product-bottom.on-page-caption .icons-top .icon a {
        width: 32px;
        height: 32px; }
@media (min-width: 992px) {
  .portfolio.extended-products-grid .portfolio-item.product.col-md-12 .wrap > .caption {
    padding: 27px 20px 19px 20px; } }
.portfolio.extended-products-grid .portfolio-item.product .caption .title {
  display: block;
  margin-bottom: 5px;
  white-space: initial;
  overflow: hidden; }
  .portfolio.extended-products-grid .portfolio-item.product .caption .title a {
    margin: 0;
    color: inherit; }
    .portfolio.extended-products-grid .portfolio-item.product .caption .title a.default {
      color: inherit;
      font-family: inherit;
      font-size: inherit;
      line-height: inherit; }
.portfolio.extended-products-grid .portfolio-item.product .caption .product-price {
  margin-bottom: 5px; }
  .portfolio.extended-products-grid .portfolio-item.product .caption .product-price .price {
    display: inline-block; }
.portfolio.extended-products-grid .portfolio-item.product .caption .categories {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-left: auto;
  margin-right: auto; }
  .portfolio.extended-products-grid .portfolio-item.product .caption .categories a {
    color: currentColor;
    text-decoration: none; }
.portfolio.extended-products-grid .portfolio-item.product .caption .product-info {
  max-width: 100%;
  padding: 0 0 0 0;
  line-height: 0; }
.portfolio.extended-products-grid .portfolio-item.product .caption .list-right {
  line-height: 0; }
.portfolio.extended-products-grid .portfolio-item.product .caption .price-wrap {
  margin: 0; }
.portfolio.extended-products-grid .portfolio-item.product .caption .product-price .price {
  transition: all 0.3s; }
  .portfolio.extended-products-grid .portfolio-item.product .caption .product-price .price p {
    margin: 0; }
  .portfolio.extended-products-grid .portfolio-item.product .caption .product-price .price ins, .portfolio.extended-products-grid .portfolio-item.product .caption .product-price .price .amount {
    font-size: 1em;
    line-height: inherit;
    color: inherit !important;
    font-family: inherit;
    text-decoration: none; }
  .portfolio.extended-products-grid .portfolio-item.product .caption .product-price .price del {
    display: inline; }
    .portfolio.extended-products-grid .portfolio-item.product .caption .product-price .price del .amount {
      font-size: 0.89em;
      opacity: 0.5;
      line-height: 1; }
.portfolio.extended-products-grid .portfolio-item.product .caption .hide-separator .empty-rating, .portfolio.extended-products-grid .portfolio-item.product .caption .hide-separator .product-rating-empty {
  display: none; }
.portfolio.extended-products-grid .portfolio-item.product .caption .product-rating {
  margin-top: 5px; }
  .portfolio.extended-products-grid .portfolio-item.product .caption .product-rating .star-rating {
    font-size: 14px;
    height: 14px;
    line-height: 14px;
    width: 70px; }
    .portfolio.extended-products-grid .portfolio-item.product .caption .product-rating .star-rating span {
      padding-top: 1em; }
  .portfolio.extended-products-grid .portfolio-item.product .caption .product-rating .empty-rating {
    padding-top: 7px;
    padding-bottom: 6px; }
  .portfolio.extended-products-grid .portfolio-item.product .caption .product-rating .reviews-count {
    display: none; }
.portfolio.extended-products-grid .portfolio-item.product .caption .reviews.show-count .product-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px; }
  .portfolio.extended-products-grid .portfolio-item.product .caption .reviews.show-count .product-rating .star-rating {
    margin: 0; }
  .portfolio.extended-products-grid .portfolio-item.product .caption .reviews.show-count .product-rating .reviews-count {
    display: block; }
.portfolio.extended-products-grid .portfolio-item.product .product-labels {
  right: initial;
  left: 4px;
  top: 4px;
  transform: none;
  z-index: 10; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels .label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-1 .label {
    width: 46px;
    height: 46px;
    padding: 4px; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-1 .out-of-stock-label + .onsale, .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-1 .out-of-stock-label + .new-label {
    margin-top: -15%; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-1 .onsale .text {
    font-size: 1.3em; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-1 .onsale + .new-label {
    margin-top: -15%; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-1 .new-label {
    width: 32px;
    height: 32px; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-2 {
    left: -6px; }
    .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-2 .label {
      position: relative;
      width: fit-content;
      width: -webkit-fit-content;
      height: auto;
      padding: 5px 7px 4px 7px;
      margin: 3px 0 0 0;
      border-radius: 3px 3px 3px 0;
      z-index: 1; }
      .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-2 .label .text {
        font-size: 1.4em; }
      .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-2 .label:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        border-right-width: 6px;
        border-right-style: solid;
        border-bottom: 6px solid transparent;
        filter: brightness(80%); }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-3 {
    left: 4px;
    top: 4px; }
    .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-3 .label {
      position: relative;
      width: fit-content;
      width: -webkit-fit-content;
      height: auto;
      padding: 4px 7px 4px 7px;
      margin: 0 0 4px 0;
      border-radius: 10px;
      z-index: 1; }
    .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-3 .onsale .text {
      font-size: 1.3em; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-4 {
    left: 0;
    top: 0; }
    .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-4 .label {
      position: relative;
      width: fit-content;
      width: -webkit-fit-content;
      height: auto;
      padding: 5px 7px 4px 7px;
      margin: 0 0 2px 0;
      border-radius: 0;
      z-index: 1; }
      .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-4 .label .text {
        font-size: 1.4em; }
      .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-4 .label svg {
        position: absolute;
        left: 100%;
        top: 0; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-5 .label {
    width: 46px;
    height: 46px;
    line-height: 1.2;
    padding: 4px;
    transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    border-radius: 70px 40px 70px 40px;
    border-style: dotted;
    margin: 6px 0px 0px 8px !important; }
    .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-5 .label .rotate-back {
      transform: rotate(-20deg);
      -webkit-transform: rotate(-20deg); }
    .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-5 .label .text {
      transform: rotate(-25deg);
      -webkit-transform: rotate(-25deg); }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-5 .out-of-stock-label + .onsale, .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-5 .out-of-stock-label + .new-label {
    margin-top: -15%; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-5 .onsale {
    border-color: #F0F3F2; }
    .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-5 .onsale .text {
      font-size: 1.5em; }
    .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-5 .onsale + .new-label {
      margin-top: -15%; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-5 .new-label {
    width: 38px;
    height: 38px;
    border-color: #F0F3F2; }
    .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-5 .new-label .text {
      font-size: 1.3em; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-6 .label {
    padding: 4px; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-6 .out-of-stock-label {
    width: 40px;
    height: 40px;
    transform: rotate(340deg);
    -webkit-transform: rotate(340deg);
    border-radius: 3px 3px 3px 3px;
    margin: 10px 10px 10px 10px; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-6 .onsale {
    width: 36px;
    height: 36px;
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    border-radius: 3px 3px 3px 3px;
    margin: 10px 10px 10px 10px; }
    .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-6 .onsale .text {
      font-size: 1.7em;
      line-height: 1.1; }
  .portfolio.extended-products-grid .portfolio-item.product .product-labels.style-6 .new-label {
    width: 26px;
    height: 26px;
    transform: rotate(355deg);
    -webkit-transform: rotate(355deg);
    border-radius: 3px 3px 3px 3px;
    margin: 10px 10px 10px 10px; }
@media (min-width: 992px) {
  .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .portfolio-icons .icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin: 0 30px 0 0; }
    .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .portfolio-icons .icon a i {
      font-size: 45px; }
    .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .portfolio-icons .icon a svg {
      width: 45px;
      height: 45px; }
  .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active {
    margin: 20px 0; }
  .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .portfolio-icons .portfolio-sharing-pane .socials-item {
    margin: 0 10px; }
    .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .portfolio-icons .portfolio-sharing-pane .socials-item .socials-item-icon {
      font-size: 16px; }
  .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .portfolio-icons .yith-wcwl-wishlistaddedbrowse a {
    font-size: 16px; }
  .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .caption {
    padding: 20px 40px 0 40px; }
    .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .caption .title {
      margin-bottom: 15px; }
    .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .caption .description {
      display: block;
      height: auto;
      margin-bottom: 15px; }
      .portfolio.extended-products-grid .portfolio-item.product.bigger .image .overlay .links .caption .description .subtitle {
        display: block !important;
        position: initial;
        max-width: inherit; } }
.portfolio.extended-products-grid .portfolio-item.product .quick-view-button {
  line-height: 1;
  font-size: 12px; }
  @media (min-width: 768px) {
    .portfolio.extended-products-grid .portfolio-item.product .quick-view-button {
      font-size: 16px; } }
.portfolio.extended-products-grid .portfolio-item.product:hover .quick-view-button, .portfolio.extended-products-grid .portfolio-item.product.hover-effect .quick-view-button {
  opacity: 1;
  visibility: visible; }
.portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay {
  display: block; }
  .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay .links-wrapper {
    display: flex !important; }
  .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    margin-top: auto; }
    .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay .links .portfolio-icons {
      position: absolute !important;
      right: 0;
      top: 0;
      padding: 4px; }
      .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay .links .portfolio-icons .portfolio-icons-inner {
        justify-content: flex-end; }
      .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay .links .portfolio-icons .portfolio-sharing-pane {
        text-align: right;
        padding-right: 4px; }
    .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay .links .caption {
      text-align: left;
      padding: 8px 10px; }
      .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay .links .caption > * {
        transform-origin: left; }
      .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay .links .caption .categories {
        position: initial;
        transform: none;
        opacity: 1; }
      .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay .links .caption .title {
        position: initial;
        transform: none;
        opacity: 1; }
  .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay .product-rating .star-rating:before {
    color: #b6c6c9; }
  .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay .product-rating .star-rating > span:before {
    color: #ffc107; }
  .portfolio.extended-products-grid.caption-position-image .portfolio-item.product .image .overlay:after {
    content: none !important; }
.portfolio.extended-products-grid.caption-position-image .portfolio-item.product .product-labels.style-2 {
  top: 5px;
  bottom: initial; }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-image .portfolio-item.product.col-md-12 .image .overlay .links .caption {
    padding: 20px 15px; } }
.portfolio.extended-products-grid.caption-container-preset-dark .portfolio-item .image .overlay .links-wrapper {
  display: flex !important; }
  .portfolio.extended-products-grid.caption-container-preset-dark .portfolio-item .image .overlay .links-wrapper .links {
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    margin-top: auto; }
    .portfolio.extended-products-grid.caption-container-preset-dark .portfolio-item .image .overlay .links-wrapper .links .caption .categories {
      width: fit-content;
      width: -webkit-fit-content;
      max-width: 100%;
      font-size: 12px;
      line-height: 1.2;
      padding: 2px 5px;
      background-color: #ffffff;
      color: #212227; }
    .portfolio.extended-products-grid.caption-container-preset-dark .portfolio-item .image .overlay .links-wrapper .links .caption .product-price .price {
      color: #ffffff; }
    .portfolio.extended-products-grid.caption-container-preset-dark .portfolio-item .image .overlay .links-wrapper .links .caption .cart.type_button .button {
      color: #ffffff;
      border-color: #ffffff;
      background-color: transparent; }
.portfolio.extended-products-grid.caption-container-preset-dark.hover-slide .portfolio-item .image .overlay .links-wrapper .links .portfolio-sharing-pane .socials-item, .portfolio.extended-products-grid.caption-container-preset-dark.hover-fade .portfolio-item .image .overlay .links-wrapper .links .portfolio-sharing-pane .socials-item {
  color: #212227; }
.portfolio.extended-products-grid.caption-container-preset-dark .portfolio-item.product .actions .button {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff; }
.portfolio.extended-products-grid.caption-container-preset-light .portfolio-item .image .overlay .links-wrapper {
  display: flex !important; }
  .portfolio.extended-products-grid.caption-container-preset-light .portfolio-item .image .overlay .links-wrapper .links {
    height: 50%;
    background: linear-gradient(180deg, rgba(246, 246, 248, 0) 0%, #f6f6f8 100%);
    display: flex;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    margin-top: auto; }
    .portfolio.extended-products-grid.caption-container-preset-light .portfolio-item .image .overlay .links-wrapper .links .caption .categories {
      width: fit-content;
      width: -webkit-fit-content;
      max-width: 100%;
      font-size: 12px;
      line-height: 1.2;
      padding: 2px 5px;
      color: #ffffff; }
.portfolio.extended-products-grid.caption-container-preset-light.hover-slide .portfolio-item .image .overlay .links-wrapper .links .portfolio-sharing-pane .socials-item, .portfolio.extended-products-grid.caption-container-preset-light.hover-fade .portfolio-item .image .overlay .links-wrapper .links .portfolio-sharing-pane .socials-item {
  color: #212227; }
.portfolio.extended-products-grid.caption-container-preset-light .portfolio-item.product .actions .button {
  color: #212227;
  background: transparent;
  border-color: #212227; }
.portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item .image .overlay .links-wrapper {
  display: flex !important; }
  .portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item .image .overlay .links-wrapper .links {
    display: flex;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    margin-top: auto; }
    .portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item .image .overlay .links-wrapper .links .caption .categories {
      width: fit-content;
      width: -webkit-fit-content;
      max-width: 100%;
      font-size: 12px;
      line-height: 1.2;
      padding: 2px 5px;
      color: #ffffff; }
.portfolio.extended-products-grid.caption-container-preset-transparent.hover-slide .portfolio-item .image .overlay .links-wrapper .links .portfolio-sharing-pane .socials-item, .portfolio.extended-products-grid.caption-container-preset-transparent.hover-fade .portfolio-item .image .overlay .links-wrapper .links .portfolio-sharing-pane .socials-item {
  color: #212227; }
.portfolio.extended-products-grid.caption-container-preset-transparent .portfolio-item.product .actions .button {
  color: #212227;
  background: transparent;
  border-color: #212227; }
.portfolio.extended-products-grid.caption-container-preset-solid.caption-position-hover .portfolio-item .image .overlay:after, .portfolio.extended-products-grid.caption-container-preset-solid.caption-position-image .portfolio-item .image .overlay:after {
  content: none; }
.portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item .image .overlay .links-wrapper {
  display: flex !important; }
  .portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item .image .overlay .links-wrapper .links {
    background: rgba(240, 243, 242, 0.8);
    height: fit-content;
    display: flex;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    margin-top: auto; }
    .portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item .image .overlay .links-wrapper .links .caption .categories {
      width: fit-content;
      width: -webkit-fit-content;
      max-width: 100%;
      font-size: 12px;
      line-height: 1.2;
      padding: 2px 5px;
      color: #ffffff; }
.portfolio.extended-products-grid.caption-container-preset-solid.hover-slide .portfolio-item .image .overlay .links-wrapper .links .portfolio-sharing-pane .socials-item, .portfolio.extended-products-grid.caption-container-preset-solid.hover-fade .portfolio-item .image .overlay .links-wrapper .links .portfolio-sharing-pane .socials-item {
  color: #212227; }
.portfolio.extended-products-grid.caption-container-preset-solid .portfolio-item.product .actions .button {
  color: #212227;
  background: transparent;
  border-color: #212227; }
.portfolio.extended-products-grid.caption-position-hover .portfolio-item .image .overlay .links {
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.2s;
  transition: opacity 0.5s 0.2s; }
.portfolio.extended-products-grid.caption-position-hover .portfolio-item:hover .image .overlay .links {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s; }
.portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item.product .actions .button {
  color: #212227;
  background: transparent;
  border-color: #212227; }
.portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.product .image .overlay .links .caption .cart.type_button .button:not(:hover), .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.product .image .overlay .links .caption .cart.type_button .button:not(:hover), .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.product .image .overlay .links .caption .cart.type_button .button:not(:hover), .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.product .image .overlay .links .caption .cart.type_button .button:not(:hover), .portfolio.extended-products-grid.caption-position-hover.hover-default .portfolio-item.product .image .overlay .links .caption .cart.type_button .button:not(:hover) {
  color: #ffffff;
  border-color: #ffffff; }
.portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.product .actions .button, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.product .actions .button, .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.product .actions .button, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.product .actions .button, .portfolio.extended-products-grid.caption-position-hover.hover-default .portfolio-item.product .actions .button {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff; }
.portfolio.extended-products-grid.caption-position-hover:not(.hover-zooming-blur):not(.hover-slide):not(.hover-fade) .portfolio-item .image .links .caption .product-price .price {
  color: #ffffff; }
.portfolio.extended-products-grid.caption-position-hover:not(.hover-zooming-blur):not(.hover-slide):not(.hover-fade) .portfolio-item .image .links .caption .cart.type_button .button:not(:hover) {
  background-color: transparent; }
.portfolio.extended-products-grid.caption-position-hover.hover-default .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-default .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-default .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-default .portfolio-item .image .overlay .links .portfolio-icons .icon a {
  color: #ffffff;
  background: initial; }
.portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .overlay-line, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .overlay-line, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .overlay-line, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .overlay-line {
  display: none; }
.portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links {
  vertical-align: bottom;
  padding: 0;
  text-align: left; }
  .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons {
    position: absolute;
    right: 0;
    top: 0;
    padding: 4px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner {
      margin-right: -4px;
      justify-content: flex-end; }
      .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon {
        margin: 0 4px 0 0; }
    .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .icon a {
      width: 32px !important;
      height: 32px !important;
      line-height: 32px !important;
      margin: 0;
      font-size: 0;
      letter-spacing: 0;
      padding: 0;
      visibility: visible;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      justify-content: center; }
      .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .icon a i {
        font-size: 16px !important;
        line-height: initial; }
      .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .icon a svg {
        width: 16px;
        height: 16px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons a.added_to_cart, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons a.added_to_cart, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons a.added_to_cart, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons a.added_to_cart {
      display: none !important; }
    .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .cart.type_button .button, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .cart.type_button .button, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .cart.type_button .button, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .cart.type_button .button {
      width: auto;
      height: auto;
      color: #212227;
      font-size: 14px;
      line-height: 1;
      background: #dfe5e8;
      padding: 7px 15px;
      margin: 4px auto;
      border-radius: 14px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .cart.type_button .button i, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .cart.type_button .button i, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .cart.type_button .button i, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .cart.type_button .button i {
        margin-right: 5px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane {
      background: #dfe5e8;
      padding: 5px 10px;
      border-radius: 15px;
      height: auto; }
      .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active {
        margin: 6px 0; }
  .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .caption {
    width: 100%;
    text-align: left;
    padding: 8px 10px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .caption .categories, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .caption .categories, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .caption .categories, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .caption .categories {
      margin: 0 0 5px 0; }
    .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .caption .product-info, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .caption .product-info, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .caption .product-info, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .caption .product-info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .caption .product-info .product-price, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .caption .product-info .product-price, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .caption .product-info .product-price, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .caption .product-info .product-price {
        margin-right: auto;
        width: 100%; }
      .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .links .caption .product-info.with-button .product-price, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .links .caption .product-info.with-button .product-price, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .links .caption .product-info.with-button .product-price, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .links .caption .product-info.with-button .product-price {
        width: 100%; }
.portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .product-rating .star-rating:before, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .product-rating .star-rating:before, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .product-rating .star-rating:before, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .product-rating .star-rating:before {
  color: #b6c6c9; }
.portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item .image .overlay .product-rating .star-rating > span:before, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item .image .overlay .product-rating .star-rating > span:before, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item .image .overlay .product-rating .star-rating > span:before, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item .image .overlay .product-rating .star-rating > span:before {
  color: #ffc107; }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-slide .portfolio-item.col-md-12 .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-hover.hover-fade .portfolio-item.col-md-12 .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-slide .portfolio-item.col-md-12 .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-fade .portfolio-item.col-md-12 .image .overlay .links .caption {
    padding: 20px 15px; } }
.portfolio.extended-products-grid.caption-position-hover:not(.hover-slide):not(.hover-fade) .portfolio-item.product .caption .categories, .portfolio.extended-products-grid.caption-position-image:not(.hover-slide):not(.hover-fade) .portfolio-item.product .caption .categories {
  padding-top: 2px;
  padding-bottom: 2px; }
.portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.product .caption .categories, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.product .caption .categories, .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.product .caption .categories, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.product .caption .categories, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.product .caption .categories, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.product .caption .categories, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.product .caption .categories, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.product .caption .categories {
  margin-left: 0; }
.portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .overlay-line, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .overlay-line, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .overlay-line, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .overlay-line, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .overlay-line, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .overlay-line {
  margin: 10px 0; }
  .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .overlay-line:after, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .overlay-line:after, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .overlay-line:after, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .overlay-line:after, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .overlay-line:after, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .overlay-line:after {
    height: 1px; }
.portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .portfolio-icons {
  padding: 10px 10px 0 10px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner {
    margin-right: -10px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon {
      margin: 0 10px 0 0; }
  .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .icon a {
    position: initial;
    width: 16px;
    height: 16px;
    color: #ffffff;
    line-height: 16px;
    background: initial;
    padding: 0;
    margin: 0; }
    .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .icon a i {
      font-size: 16px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .icon a svg {
      width: 16px;
      height: 16px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active {
    margin-bottom: 20px; }
.portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .caption {
  padding: 0 10px 10px 10px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item .image .overlay .links .caption .description, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item .image .overlay .links .caption .description, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .caption .description, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item .image .overlay .links .caption .description, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item .image .overlay .links .caption .description, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .caption .description {
    position: relative;
    padding: 0; }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.col-md-12 .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.col-md-12 .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.col-md-12 .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.col-md-12 .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.col-md-12 .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.col-md-12 .image .overlay .links .caption {
    padding: 0 15px 15px 15px; } }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.bigger .image .overlay .links, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.bigger .image .overlay .links {
    padding: 35px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .overlay-line, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .overlay-line, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.bigger .image .overlay .links .overlay-line, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .overlay-line, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .overlay-line, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.bigger .image .overlay .links .overlay-line {
      margin: 20px 0; }
      .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .overlay-line:after, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .overlay-line:after, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.bigger .image .overlay .links .overlay-line:after, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .overlay-line:after, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .overlay-line:after, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.bigger .image .overlay .links .overlay-line:after {
        height: 2px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a {
      width: 35px;
      height: 35px;
      line-height: 35px;
      margin: 0 14px 0 0; }
      .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i {
        font-size: 35px; }
      .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg {
        width: 35px;
        height: 35px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-hover.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-image.hover-vertical-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-image.hover-horizontal-sliding .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-sharing-pane.active {
      margin-bottom: 30px; } }
.portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner {
  margin-right: -4px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons .portfolio-icons-inner > .icon {
    margin: 0 4px 0 0;
    visibility: visible; }
.portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons .icon a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  padding: 0;
  margin: 0;
  border-radius: 50%; }
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons .icon a i {
    font-size: 16px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons .icon a svg {
    width: 16px;
    height: 16px; }
.portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .caption .product-rating .star-rating:before, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .caption .product-rating .star-rating:before, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .caption .product-rating .star-rating:before, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .caption .product-rating .star-rating:before {
  color: #FFFFFF; }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner {
    margin-right: -10px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a {
    width: 65px;
    height: 65px;
    line-height: 65px;
    margin: 0 10px 0 0; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i {
      font-size: 30px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg {
      width: 30px;
      height: 30px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .caption .title, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.bigger .image .overlay .links .caption .title, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .caption .title, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.bigger .image .overlay .links .caption .title {
    margin-bottom: 15px; } }
@media (max-width: 767px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a {
    width: 26px;
    height: 26px;
    line-height: 26px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a i {
      font-size: 13px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg {
      width: 13px;
      height: 13px; } }
@media (max-width: 767px) and (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner {
    margin-right: -8px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a {
    width: 52px;
    height: 52px;
    line-height: 52px;
    margin: 0 8px 0 0; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i {
      font-size: 26px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-mobile-2x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg {
      width: 26px;
      height: 26px; } }

@media (min-width: 768px) and (max-width: 991px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a {
    width: 26px;
    height: 26px;
    line-height: 26px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a i {
      font-size: 13px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg {
      width: 13px;
      height: 13px; } }
@media (min-width: 768px) and (max-width: 991px) and (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner {
    margin-right: -8px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a {
    width: 52px;
    height: 52px;
    line-height: 52px;
    margin: 0 8px 0 0; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i {
      font-size: 26px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-tablet-4x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg {
      width: 26px;
      height: 26px; } }

@media (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a {
    width: 26px;
    height: 26px;
    line-height: 26px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a i {
      font-size: 13px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item .image .overlay .links .portfolio-icons .icon a svg {
      width: 13px;
      height: 13px; } }
@media (min-width: 992px) and (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .portfolio-icons-inner {
    margin-right: -8px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a {
    width: 52px;
    height: 52px;
    line-height: 52px;
    margin: 0 8px 0 0; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon i, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a i {
      font-size: 26px; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-hover.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6x .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-5 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons a.icon svg, .portfolio.extended-products-grid.caption-position-image.hover-gradient.columns-desktop-6 .portfolio-item.bigger .image .overlay .links .portfolio-icons .icon a svg {
      width: 26px;
      height: 26px; } }

.portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .caption {
  padding: 10px 10px 0 10px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .caption .title, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .caption .title {
    margin-bottom: 5px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .caption .cart.type_button .button, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .caption .cart.type_button .button {
    margin-left: auto; }
    .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .caption .cart.type_button .button:not(:hover), .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .caption .cart.type_button .button:not(:hover) {
      color: #212227;
      background-color: transparent;
      border-color: #212227; }
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .caption .product-price .price, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .caption .categories, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .caption .product-price .price, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .caption .categories {
    color: #393d50; }
.portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item .image .overlay .links .icon a, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links a.icon, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item .image .overlay .links .icon a {
  color: #ffffff;
  background-color: #393d50; }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-zooming-blur .portfolio-item.bigger .image .overlay .links .caption {
    padding: 25px 25px 0 25px; } }
.portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-hover.hover-disabled .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-image.hover-disabled .portfolio-item .image .overlay .links .portfolio-icons {
  padding: 10px; }
.portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-hover.hover-disabled .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-disabled .portfolio-item .image .overlay .links .caption {
  padding: 10px; }
.portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links a.icon:hover, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item .image .overlay .links .icon a:hover, .portfolio.extended-products-grid.caption-position-hover.hover-disabled .portfolio-item .image .overlay .links a.icon, .portfolio.extended-products-grid.caption-position-hover.hover-disabled .portfolio-item .image .overlay .links a.icon:hover, .portfolio.extended-products-grid.caption-position-hover.hover-disabled .portfolio-item .image .overlay .links .icon a, .portfolio.extended-products-grid.caption-position-hover.hover-disabled .portfolio-item .image .overlay .links .icon a:hover, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links a.icon, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links a.icon:hover, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .icon a, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item .image .overlay .links .icon a:hover, .portfolio.extended-products-grid.caption-position-image.hover-disabled .portfolio-item .image .overlay .links a.icon, .portfolio.extended-products-grid.caption-position-image.hover-disabled .portfolio-item .image .overlay .links a.icon:hover, .portfolio.extended-products-grid.caption-position-image.hover-disabled .portfolio-item .image .overlay .links .icon a, .portfolio.extended-products-grid.caption-position-image.hover-disabled .portfolio-item .image .overlay .links .icon a:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #393d50; }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.col-md-12 .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-hover.hover-disabled .portfolio-item.col-md-12 .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.col-md-12 .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-disabled .portfolio-item.col-md-12 .image .overlay .links .caption {
    padding: 15px; } }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-hover.hover-disabled .portfolio-item.bigger .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.bigger .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-image.hover-disabled .portfolio-item.bigger .image .overlay .links .portfolio-icons {
    padding: 35px; }
  .portfolio.extended-products-grid.caption-position-hover.hover-gradient .portfolio-item.bigger .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-hover.hover-disabled .portfolio-item.bigger .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-gradient .portfolio-item.bigger .image .overlay .links .caption, .portfolio.extended-products-grid.caption-position-image.hover-disabled .portfolio-item.bigger .image .overlay .links .caption {
    padding: 35px; } }
.portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item .image .overlay .links .portfolio-icons {
  width: 100%;
  padding: 10px; }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-hover.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.caption-position-image.hover-circular .portfolio-item.bigger .image .overlay .links .portfolio-icons {
    padding: 35px; } }
.portfolio.extended-products-grid.hover-default .portfolio-item .image .overlay .links .caption .cart.type_button .button {
  margin-left: auto; }
.portfolio.extended-products-grid.hover-default .portfolio-item .caption .quick-view-button i.default:before, .portfolio.extended-products-grid.hover-default .image .portfolio-icons.product-bottom .quick-view-button i.default:before {
  content: '\e677'; }
.portfolio.extended-products-grid.hover-default .portfolio-item .caption .cart i.default:before, .portfolio.extended-products-grid.hover-default .image .portfolio-icons.product-bottom .cart i.default:before {
  content: '\e660'; }
.portfolio.extended-products-grid.hover-default .portfolio-item .caption .cart i.default.variable:before,
.portfolio.extended-products-grid.hover-default .portfolio-item .caption .cart.variable-type-button i.default:before, .portfolio.extended-products-grid.hover-default .image .portfolio-icons.product-bottom .cart i.default.variable:before,
.portfolio.extended-products-grid.hover-default .image .portfolio-icons.product-bottom .cart.variable-type-button i.default:before {
  content: "\e661"; }
.portfolio.extended-products-grid.hover-default .portfolio-item .caption .bottom-product-link i.default:before, .portfolio.extended-products-grid.hover-default .image .portfolio-icons.product-bottom .bottom-product-link i.default:before {
  content: '\e670'; }
.portfolio.extended-products-grid.hover-default .portfolio-item .caption .yith-wcwl-add-button i.default:before, .portfolio.extended-products-grid.hover-default .image .portfolio-icons.product-bottom .yith-wcwl-add-button i.default:before {
  content: '\e66b'; }
.portfolio.extended-products-grid.hover-default .portfolio-item .caption .yith-wcwl-wishlistexistsbrowse i.default:before,
.portfolio.extended-products-grid.hover-default .portfolio-item .caption .yith-wcwl-wishlistaddedbrowse i.default:before,
.portfolio.extended-products-grid.hover-default .portfolio-item .caption .yith-wcwl-add-button .delete_item i.default:before, .portfolio.extended-products-grid.hover-default .image .portfolio-icons.product-bottom .yith-wcwl-wishlistexistsbrowse i.default:before,
.portfolio.extended-products-grid.hover-default .image .portfolio-icons.product-bottom .yith-wcwl-wishlistaddedbrowse i.default:before,
.portfolio.extended-products-grid.hover-default .image .portfolio-icons.product-bottom .yith-wcwl-add-button .delete_item i.default:before {
  content: "\e641"; }
.portfolio.extended-products-grid.hover-default .portfolio-item .caption a.share i.default:before, .portfolio.extended-products-grid.hover-default .image .portfolio-icons.product-bottom a.share i.default:before {
  content: '\e65c';
  margin-left: -0.2em; }
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .caption .quick-view-button i.default:before, .portfolio.extended-products-grid:not(.hover-default) .portfolio-item .image .portfolio-icons.product-bottom .quick-view-button i.default:before {
  content: '\e678'; }
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .caption .cart i.default:before, .portfolio.extended-products-grid:not(.hover-default) .portfolio-item .image .portfolio-icons.product-bottom .cart i.default:before {
  content: '\e660'; }
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .caption .cart i.default.variable:before,
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .caption .cart.variable-type-button i.default:before, .portfolio.extended-products-grid:not(.hover-default) .portfolio-item .image .portfolio-icons.product-bottom .cart i.default.variable:before,
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .image .portfolio-icons.product-bottom .cart.variable-type-button i.default:before {
  content: "\e661"; }
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .caption .bottom-product-link i.default:before, .portfolio.extended-products-grid:not(.hover-default) .portfolio-item .image .portfolio-icons.product-bottom .bottom-product-link i.default:before {
  content: '\e628'; }
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .caption .yith-wcwl-add-button i.default:before, .portfolio.extended-products-grid:not(.hover-default) .portfolio-item .image .portfolio-icons.product-bottom .yith-wcwl-add-button i.default:before {
  content: '\e65e'; }
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .caption .yith-wcwl-wishlistexistsbrowse i.default:before,
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .caption .yith-wcwl-wishlistaddedbrowse i.default:before,
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .caption .yith-wcwl-add-button .delete_item i.default:before, .portfolio.extended-products-grid:not(.hover-default) .portfolio-item .image .portfolio-icons.product-bottom .yith-wcwl-wishlistexistsbrowse i.default:before,
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .image .portfolio-icons.product-bottom .yith-wcwl-wishlistaddedbrowse i.default:before,
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .image .portfolio-icons.product-bottom .yith-wcwl-add-button .delete_item i.default:before {
  content: '\e679'; }
.portfolio.extended-products-grid:not(.hover-default) .portfolio-item .caption a.share i.default:before, .portfolio.extended-products-grid:not(.hover-default) .portfolio-item .image .portfolio-icons.product-bottom a.share i.default:before {
  content: '\e65d';
  margin-left: -0.2em; }
.portfolio.extended-products-grid:not(.hover-default).caption-alignment-center .portfolio-item.product .image .overlay .links .caption {
  text-align: center; }
  .portfolio.extended-products-grid:not(.hover-default).caption-alignment-center .portfolio-item.product .image .overlay .links .caption > * {
    transform-origin: center; }
  .portfolio.extended-products-grid:not(.hover-default).caption-alignment-center .portfolio-item.product .image .overlay .links .caption .categories {
    margin-left: auto;
    margin-right: auto; }
  .portfolio.extended-products-grid:not(.hover-default).caption-alignment-center .portfolio-item.product .image .overlay .links .caption .product-info {
    flex-direction: column; }
    .portfolio.extended-products-grid:not(.hover-default).caption-alignment-center .portfolio-item.product .image .overlay .links .caption .product-info .product-price, .portfolio.extended-products-grid:not(.hover-default).caption-alignment-center .portfolio-item.product .image .overlay .links .caption .product-info .cart.type_button .button {
      margin-right: auto;
      margin-left: auto; }
.portfolio.extended-products-grid:not(.hover-default).caption-alignment-center.hover-circular .portfolio-item.product .image .overlay .links .caption .product-rating, .portfolio.extended-products-grid:not(.hover-default).caption-alignment-center.hover-gradient .portfolio-item.product .image .overlay .links .caption .product-rating {
  margin-left: -35px; }
.portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .image .overlay .links .portfolio-icons {
  left: 0;
  right: inherit; }
  .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .image .overlay .links .portfolio-icons .portfolio-icons-inner {
    justify-content: flex-start; }
.portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .image .overlay .links .caption {
  text-align: right; }
  .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .image .overlay .links .caption > * {
    transform-origin: right; }
  .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .image .overlay .links .caption .categories {
    margin-left: auto;
    margin-right: 0; }
  .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .image .overlay .links .caption .product-info {
    flex-direction: row-reverse; }
    .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .image .overlay .links .caption .product-info .product-price, .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .image .overlay .links .caption .product-info .cart.type_button .button {
      margin-right: 0;
      margin-left: auto; }
.portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .product-labels {
  right: 5px;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end; }
  .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .product-labels.style-2 {
    right: 5px; }
    .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .product-labels.style-2 .label {
      border-radius: 3px 3px 0 3px; }
      .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .product-labels.style-2 .label:after {
        left: initial;
        right: 0;
        transform: rotateY(180deg); }
  .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .product-labels.style-3 {
    right: 4px; }
  .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .product-labels.style-4 {
    right: 0; }
    .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right .portfolio-item.product .product-labels.style-4 .label:after {
      right: initial;
      left: -5px;
      border-left: none;
      border-right-width: 5px;
      border-right-style: solid; }
.portfolio.extended-products-grid:not(.hover-default).caption-alignment-right.hover-circular .portfolio-item.product .image .overlay .links .caption .product-rating, .portfolio.extended-products-grid:not(.hover-default).caption-alignment-right.hover-gradient .portfolio-item.product .image .overlay .links .caption .product-rating {
  right: 0; }
.portfolio.extended-products-grid.hover-default .portfolio-item.product .image .overlay .links .caption .categories, .portfolio.extended-products-grid.hover-zooming-blur .portfolio-item.product .image .overlay .links .caption .categories {
  margin-left: auto;
  margin-right: auto; }
.portfolio.extended-products-grid.title-on-page.hover-gradient .portfolio-item.has-rating .image .links .caption.center .product-info .product-rating, .portfolio.extended-products-grid.title-on-page.hover-circular .portfolio-item.has-rating .image .links .caption.center .product-info .product-rating {
  transform: translateX(-50%); }
.portfolio.extended-products-grid.title-on-page.hover-gradient .portfolio-item.has-rating .image .links .caption.right .product-info .product-rating, .portfolio.extended-products-grid.title-on-page.hover-circular .portfolio-item.has-rating .image .links .caption.right .product-info .product-rating {
  transform: translatex(-100%); }
.portfolio.extended-products-grid.title-on-page.hover-gradient .portfolio-item.has-rating:hover .image .links .caption .product-info, .portfolio.extended-products-grid.title-on-page.hover-gradient .portfolio-item.has-rating.hover-effect .image .links .caption .product-info, .portfolio.extended-products-grid.title-on-page.hover-circular .portfolio-item.has-rating:hover .image .links .caption .product-info, .portfolio.extended-products-grid.title-on-page.hover-circular .portfolio-item.has-rating.hover-effect .image .links .caption .product-info {
  padding-bottom: 20px; }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.caption-position-image.columns-desktop-2x .portfolio-item .image .product-labels.style-1 .label, .portfolio.extended-products-grid.caption-position-image.columns-desktop-3x .portfolio-item .image .product-labels.style-1 .label, .portfolio.extended-products-grid.caption-position-image.columns-desktop-4x .portfolio-item .image .product-labels.style-1 .label, .portfolio.extended-products-grid.caption-position-image.columns-desktop-5x .portfolio-item .image .product-labels.style-1 .label, .portfolio.extended-products-grid.caption-position-image.columns-desktop-6x .portfolio-item .image .product-labels.style-1 .label {
    width: 48px;
    height: 48px;
    font-size: 8px; }
    .portfolio.extended-products-grid.caption-position-image.columns-desktop-2x .portfolio-item .image .product-labels.style-1 .label.new-label, .portfolio.extended-products-grid.caption-position-image.columns-desktop-3x .portfolio-item .image .product-labels.style-1 .label.new-label, .portfolio.extended-products-grid.caption-position-image.columns-desktop-4x .portfolio-item .image .product-labels.style-1 .label.new-label, .portfolio.extended-products-grid.caption-position-image.columns-desktop-5x .portfolio-item .image .product-labels.style-1 .label.new-label, .portfolio.extended-products-grid.caption-position-image.columns-desktop-6x .portfolio-item .image .product-labels.style-1 .label.new-label {
      width: 38px;
      height: 38px; } }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.fullwidth-columns-desktop-4 .portfolio-set .portfolio-item,
  .portfolio.extended-products-grid.fullwidth-columns-desktop-4 .portfolio-item-size-container .portfolio-item {
    width: 25%; }
  .portfolio.extended-products-grid.fullwidth-columns-desktop-4 .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
    width: 50%; }
  .portfolio.extended-products-grid.fullwidth-columns-desktop-5 .portfolio-set .portfolio-item,
  .portfolio.extended-products-grid.fullwidth-columns-desktop-5 .portfolio-item-size-container .portfolio-item {
    width: 20%; }
  .portfolio.extended-products-grid.fullwidth-columns-desktop-5 .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
    width: 40%; }
  .portfolio.extended-products-grid.fullwidth-columns-desktop-6 .portfolio-set .portfolio-item,
  .portfolio.extended-products-grid.fullwidth-columns-desktop-6 .portfolio-item-size-container .portfolio-item {
    width: 16.665%; }
  .portfolio.extended-products-grid.fullwidth-columns-desktop-6 .portfolio-set .portfolio-item.double-item:not(.double-item-vertical) {
    width: 33.33%; } }
.portfolio.extended-products-grid.full-item-border .portfolio-item .wrap > .caption {
  border-bottom-width: 0; }
.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup {
  height: auto;
  bottom: calc(100% + 15px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 10px;
  z-index: 1; }
  @media (min-width: 768px) {
    .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup {
      padding: 15px; } }
  .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup.right {
    left: initial;
    right: -5px;
    -webkit-transform: none;
    transform: none; }
    @media (min-width: 768px) {
      .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup.right {
        right: -8px; } }
    .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup.right .sharing-styled-arrow {
      right: 45px;
      left: initial; }
      @media (min-width: 768px) {
        .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup.right .sharing-styled-arrow {
          right: 48px; } }
  .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup.left {
    left: -5px;
    -webkit-transform: none;
    transform: none; }
    @media (min-width: 768px) {
      .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup.left {
        left: -8px; } }
    .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup.left .sharing-styled-arrow {
      left: 30px; }
      @media (min-width: 768px) {
        .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup.left .sharing-styled-arrow {
          left: 32px; } }
  .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup .sharing-styled-arrow {
    left: 50%;
    margin-left: -65px; }
  .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup .socials {
    margin-top: 0; }
    .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup .socials a {
      margin: 0 3px; }
      @media (min-width: 768px) {
        .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .sharing-popup .socials a {
          margin: 0 5px; } }
.portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icons-top .sharing-popup {
  background: #FFFFFF;
  box-shadow: 0 10px 35px rgba(33, 34, 39, 0.13); }
  .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icons-top .sharing-popup a {
    color: #b6c6c9; }
  .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icons-top .sharing-popup .sharing-styled-arrow {
    fill: #FFFFFF; }
  .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icons-top .sharing-popup.right {
    right: -14px; }
    @media (min-width: 768px) {
      .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icons-top .sharing-popup.right {
        right: -17px; } }
  .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icons-top .sharing-popup.left {
    left: -14px; }
    @media (min-width: 768px) {
      .portfolio.extended-products-grid .portfolio-item .wrap .product-bottom.on-page-caption .icons-top .sharing-popup.left {
        left: -17px; } }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.columns-desktop-6x .portfolio-item.product .wrap > .caption .product-bottom .cart.type_button .button i, .portfolio.extended-products-grid.columns-desktop-6x .portfolio-item.product .wrap > .caption .product-bottom .cart.type_button .button .space {
    display: none; } }
@media (min-width: 992px) and (max-width: 1300px) {
  .portfolio.extended-products-grid.columns-desktop-6 .portfolio-item.product .wrap > .caption .product-bottom .cart.type_button .button i, .portfolio.extended-products-grid.columns-desktop-6 .portfolio-item.product .wrap > .caption .product-bottom .cart.type_button .button .space {
    display: none; } }

.portfolio.extended-products-grid.disable-isotope .portfolio-set {
  display: flex;
  flex-wrap: wrap; }
.portfolio.extended-products-grid.disable-isotope.caption-position-page .wrap {
  display: flex;
  flex-direction: column;
  height: 100%; }
  .portfolio.extended-products-grid.disable-isotope.caption-position-page .wrap .caption {
    flex: auto; }
.portfolio.extended-products-grid.disable-isotope.caption-position-page .not-found .found-wrap {
  flex-direction: row !important; }
.portfolio.extended-products-grid.disable-isotope .image {
  width: 100%;
  position: relative;
  overflow: visible; }
  .portfolio.extended-products-grid.disable-isotope .image .image-inner {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden; }
.portfolio.extended-products-grid.disable-isotope.aspect-ratio-portrait .image .image-inner {
  aspect-ratio: 0.8; }
.portfolio.extended-products-grid.full-image .portfolio-item .image .image-inner {
  aspect-ratio: initial; }
  .portfolio.extended-products-grid.full-image .portfolio-item .image .image-inner picture img {
    position: initial; }
.portfolio.extended-products-grid.portfolio.item-separator .portfolio-item:before, .portfolio.extended-products-grid.portfolio.item-separator .portfolio-item:after {
  opacity: 1;
  transform: translateX(-50%); }
.portfolio.extended-products-grid.portfolio.item-separator .portfolio-item:after {
  transform: translateX(50%); }
.portfolio.extended-products-grid.portfolio.item-separator .portfolio-item .item-separator-box:before, .portfolio.extended-products-grid.portfolio.item-separator .portfolio-item .item-separator-box:after {
  opacity: 1;
  transform: translateY(-50%); }
.portfolio.extended-products-grid.portfolio.item-separator .portfolio-item .item-separator-box:after {
  transform: translateY(50%); }
.portfolio.extended-products-grid.hover-default .portfolio-item.product .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.hover-zooming-blur .portfolio-item.product .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.hover-vertical-sliding .portfolio-item.product .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.hover-horizontal-sliding .portfolio-item.product .image .overlay .links .portfolio-icons {
  position: relative; }

.portfolio.extended-products-grid.fullwidth-columns .portfolio-filters-list.style-sidebar .portfolio-filters-outer {
  padding-right: 0; }

.thegem-popup-notification {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  background: linear-gradient(180deg, rgba(33, 34, 39, 0) 0%, rgba(33, 34, 39, 0.3) 100%);
  margin: 0 !important;
  z-index: 10000;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, visibility, transform;
  transition-property: opacity, visibility, transform, -webkit-transform;
  display: flex;
  justify-content: center; }
  .thegem-popup-notification.visible {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto; }
  @supports (-webkit-touch-callout: none) {
    .thegem-popup-notification {
      top: 0;
      bottom: initial;
      background: linear-gradient(0deg, rgba(33, 34, 39, 0) 0%, rgba(33, 34, 39, 0.3) 100%);
      -webkit-transform: translateY(-50px);
      transform: translateY(-50px); } }
  .thegem-popup-notification .notification-message {
    max-width: 95%;
    position: absolute;
    bottom: 30px;
    color: inherit;
    padding: 12px 18px; }
    @supports (-webkit-touch-callout: none) {
      .thegem-popup-notification .notification-message {
        top: 30px;
        bottom: initial; } }
    .thegem-popup-notification .notification-message:before {
      content: "\e646";
      font-family: 'thegem-icons';
      font-weight: normal;
      font-style: normal;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font-variant: normal;
      text-rendering: auto;
      line-height: 0.7;
      margin-right: 8px;
      font-size: 1.5em;
      vertical-align: middle; }
    .thegem-popup-notification .notification-message span.buttons {
      display: inline-block; }
      @media (max-width: 767px) {
        .thegem-popup-notification .notification-message span.buttons {
          width: 100%; }
          .thegem-popup-notification .notification-message span.buttons a.button:first-child {
            margin-left: 0; } }
    .thegem-popup-notification .notification-message a.button {
      width: fit-content;
      width: -webkit-fit-content;
      height: auto;
      font-size: 14px;
      line-height: 1;
      padding: 3px 15px 4px 15px;
      margin-left: 10px;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
      -webkit-tap-highlight-color: transparent;
      -webkit-user-select: none;
      -webkit-appearance: none;
      transition: all 0.3s; }

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .hide-tablet {
    display: none !important; } }
@media (min-width: 992px) {
  .hide-desktop {
    display: none !important; } }
.portfolio.extended-products-grid.portfolio-style-metro.caption-position-page .portfolio-item.product .caption .title {
  max-height: calc(1.3 * 1em); }

.portfolio.background-style-dark:not(.list-style) .portfolio-item:not(:hover) .wrap > .caption .title, .portfolio.background-style-dark:not(.list-style) .portfolio-item:not(:hover) .wrap > .caption .title:hover, .portfolio.background-style-dark:not(.list-style) .portfolio-item:not(:hover) .wrap > .caption .product-price .price, .portfolio.background-style-dark:not(.list-style) .portfolio-item:not(:hover) .wrap > .caption .categories, .portfolio.background-style-dark:not(.list-style) .portfolio-item:not(:hover) .wrap > .caption .product-variations,
.portfolio.background-style-dark.list-style .portfolio-item .wrap > .caption .title,
.portfolio.background-style-dark.list-style .portfolio-item .wrap > .caption .title:hover,
.portfolio.background-style-dark.list-style .portfolio-item .wrap > .caption .product-price .price,
.portfolio.background-style-dark.list-style .portfolio-item .wrap > .caption .categories,
.portfolio.background-style-dark.list-style .portfolio-item .wrap > .caption .product-variations,
.portfolio.background-style-gray:not(.list-style) .portfolio-item:hover .wrap > .caption .title,
.portfolio.background-style-gray:not(.list-style) .portfolio-item:hover .wrap > .caption .title:hover,
.portfolio.background-style-gray:not(.list-style) .portfolio-item:hover .wrap > .caption .product-price .price,
.portfolio.background-style-gray:not(.list-style) .portfolio-item:hover .wrap > .caption .categories,
.portfolio.background-style-gray:not(.list-style) .portfolio-item:hover .wrap > .caption .product-variations {
  color: #FFFFFF; }

.gem-button-icon-position-right .gem-inner-wrapper-btn {
  flex-direction: row-reverse; }

.portfolio.extended-products-grid .gem-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }
  .portfolio.extended-products-grid .gem-pagination a {
    box-sizing: content-box;
    line-height: 30px; }

.portfolio.extended-products-grid .gem-pagination .prev, .portfolio.extended-products-grid .gem-pagination .next,
.portfolio.extended-products-grid .gem-pagination-arrows .prev,
.portfolio.extended-products-grid .gem-pagination-arrows .next {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none; }
  .portfolio.extended-products-grid .gem-pagination .prev:before, .portfolio.extended-products-grid .gem-pagination .next:before,
  .portfolio.extended-products-grid .gem-pagination-arrows .prev:before,
  .portfolio.extended-products-grid .gem-pagination-arrows .next:before {
    content: none; }
  .portfolio.extended-products-grid .gem-pagination .prev i, .portfolio.extended-products-grid .gem-pagination .next i,
  .portfolio.extended-products-grid .gem-pagination-arrows .prev i,
  .portfolio.extended-products-grid .gem-pagination-arrows .next i {
    font-size: 24px; }
    .portfolio.extended-products-grid .gem-pagination .prev i.default, .portfolio.extended-products-grid .gem-pagination .next i.default,
    .portfolio.extended-products-grid .gem-pagination-arrows .prev i.default,
    .portfolio.extended-products-grid .gem-pagination-arrows .next i.default {
      font-family: 'thegem-icons';
      font-weight: normal;
      font-style: normal; }
  .portfolio.extended-products-grid .gem-pagination .prev.disabled, .portfolio.extended-products-grid .gem-pagination .next.disabled,
  .portfolio.extended-products-grid .gem-pagination-arrows .prev.disabled,
  .portfolio.extended-products-grid .gem-pagination-arrows .next.disabled {
    cursor: initial;
    opacity: 0.7; }
.portfolio.extended-products-grid .gem-pagination .prev i.default:before,
.portfolio.extended-products-grid .gem-pagination-arrows .prev i.default:before {
  content: '\e636'; }
.portfolio.extended-products-grid .gem-pagination .next i.default:before,
.portfolio.extended-products-grid .gem-pagination-arrows .next i.default:before {
  content: '\e634'; }

.portfolio.extended-products-grid .gem-pagination-arrows {
  display: flex;
  margin-top: 42px; }
  .portfolio.extended-products-grid .gem-pagination-arrows.alignment-left {
    justify-content: flex-start; }
  .portfolio.extended-products-grid .gem-pagination-arrows.alignment-right {
    justify-content: flex-end; }
  .portfolio.extended-products-grid .gem-pagination-arrows a {
    background: transparent;
    border: none;
    margin: 0;
    width: auto;
    height: auto; }
    .portfolio.extended-products-grid .gem-pagination-arrows a.next {
      margin-left: 9px; }
      .portfolio.extended-products-grid .gem-pagination-arrows a.next i.default {
        margin-left: -9px; }
  .portfolio.extended-products-grid .gem-pagination-arrows .prev i.default:before {
    content: '\e603'; }
  .portfolio.extended-products-grid .gem-pagination-arrows .next i.default:before {
    content: '\e601'; }

.portfolio.extended-products-grid {
  /* Button with separator */ }
  .portfolio.extended-products-grid .portfolio-load-more .gem-button {
    height: auto;
    margin: 0;
    position: relative;
    z-index: 1;
    white-space: normal;
    min-width: max-content;
    overflow: hidden; }
  .portfolio.extended-products-grid .portfolio-load-more .gem-button-separator {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
  .portfolio.extended-products-grid .portfolio-load-more .gem-button-separator-line {
    width: 100%;
    border-color: #b6c6c9;
    color: #b6c6c9; }
  .portfolio.extended-products-grid .portfolio-load-more .gem-button-separator-button {
    padding: 0 20px;
    flex: none; }
  .portfolio.extended-products-grid .portfolio-load-more .gem-button-separator-holder {
    flex-grow: 1; }
    .portfolio.extended-products-grid .portfolio-load-more .gem-button-separator-holder svg {
      display: block; }
    .portfolio.extended-products-grid .portfolio-load-more .gem-button-separator-holder:first-child .gem-button-separator-line {
      margin-left: auto;
      margin-right: 0; }
      .portfolio.extended-products-grid .portfolio-load-more .gem-button-separator-holder:first-child .gem-button-separator-line svg {
        transform: rotate(180deg); }
  .portfolio.extended-products-grid .portfolio-load-more .gem-button-container {
    display: flex;
    justify-content: center;
    width: 100%; }
    .portfolio.extended-products-grid .portfolio-load-more .gem-button-container .gem-button-separator-type-single .gem-button-separator-line {
      border-top: 2px solid;
      border-bottom: 0;
      height: 0; }
    .portfolio.extended-products-grid .portfolio-load-more .gem-button-container .gem-button-separator-type-square {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .portfolio.extended-products-grid .portfolio-load-more .gem-button-container .gem-button-separator-type-square .gem-button-separator-button {
        padding: 0; }
      .portfolio.extended-products-grid .portfolio-load-more .gem-button-container .gem-button-separator-type-square svg line {
        stroke: #b6c6c9; }
    .portfolio.extended-products-grid .portfolio-load-more .gem-button-container .gem-button-separator-type-soft-double .gem-button-separator-line {
      border-top: 1px solid;
      border-bottom: 1px solid;
      height: 7px; }
    .portfolio.extended-products-grid .portfolio-load-more .gem-button-container .gem-button-separator-type-strong-double .gem-button-separator-line {
      border-top: 4px solid;
      border-bottom: 4px solid;
      height: 17px; }
  .portfolio.extended-products-grid .portfolio-item-size-container .portfolio-item:before, .portfolio.extended-products-grid .portfolio-item-size-container .portfolio-item:after {
    content: none; }
  .portfolio.extended-products-grid.portfolio-preset-below-shadow-hover-01 .portfolio-item:hover .wrap, .portfolio.extended-products-grid.portfolio-preset-below-shadow-hover-01 .portfolio-item.hover-effect .wrap {
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2); }
  .portfolio.extended-products-grid.portfolio-preset-below-shadow-hover-01 .portfolio-item.product .product-labels.style-3 .label {
    border-radius: 3px; }
  .portfolio.extended-products-grid.portfolio-preset-below-shadow-hover-02 .portfolio-item:hover .wrap, .portfolio.extended-products-grid.portfolio-preset-below-shadow-hover-02 .portfolio-item.hover-effect .wrap {
    box-shadow: 0px 0px 30px 0px rgba(49, 50, 51, 0.18);
    border-color: #ededed !important; }
  .portfolio.extended-products-grid.portfolio-preset-below-shadow-hover-02 .portfolio-item.product .wrap > .caption {
    padding: 23px 20px 35px 20px; }
  @media (min-width: 992px) {
    .portfolio.extended-products-grid.portfolio-preset-below-shadow-hover-02 .portfolio-item.product.col-md-12 .wrap > .caption {
      padding: 34px 20px 52px 20px; } }
  .portfolio.extended-products-grid.portfolio-preset-below-shadow-hover-02 .product-labels.style-3 .label.onsale .text {
    font-size: 1.6em; }
  .portfolio.extended-products-grid.portfolio-preset-below-rectangle-button-01 .portfolio-item.product .product-labels.style-3 {
    margin: -4px 0px 0px -4px; }
    .portfolio.extended-products-grid.portfolio-preset-below-rectangle-button-01 .portfolio-item.product .product-labels.style-3 .label {
      border-radius: 0;
      margin: 0; }
  .portfolio.extended-products-grid.portfolio-preset-below-rectangle-button-01 .portfolio-item .wrap > .caption {
    padding: 20px 0px 20px 0px; }
  @media (min-width: 992px) {
    .portfolio.extended-products-grid.portfolio-preset-below-rectangle-button-01 .portfolio-item.product.col-md-12 .wrap > .caption {
      padding: 30px 0px 30px 0px; } }
  .portfolio.extended-products-grid.portfolio-preset-below-rectangle-button-02 .portfolio-item .wrap > .caption {
    padding: 0px 20px 20px 0px; }
    .portfolio.extended-products-grid.portfolio-preset-below-rectangle-button-02 .portfolio-item .wrap > .caption .cart.type_button .button {
      padding: 10px 16px 10px 16px !important; }
    .portfolio.extended-products-grid.portfolio-preset-below-rectangle-button-02 .portfolio-item .wrap > .caption .categories {
      margin-top: 13px; }
  @media (min-width: 992px) {
    .portfolio.extended-products-grid.portfolio-preset-below-rectangle-button-02 .portfolio-item.product.col-md-12 .wrap > .caption {
      padding: 0px 30px 30px 0px; } }
  .portfolio.extended-products-grid.portfolio-preset-below-separator-02 .portfolio-item .wrap > .caption {
    padding: 10px; }
    .portfolio.extended-products-grid.portfolio-preset-below-separator-02 .portfolio-item .wrap > .caption .product-price {
      margin-bottom: 2px; }
  @media (min-width: 992px) {
    .portfolio.extended-products-grid.portfolio-preset-below-separator-02 .portfolio-item.product.col-md-12 .wrap > .caption {
      padding: 15px; } }
  .portfolio.extended-products-grid.portfolio-preset-image-solid-background .portfolio-item.product .product-labels.style-3 {
    margin: -4px 0px 0px -4px; }
    .portfolio.extended-products-grid.portfolio-preset-image-solid-background .portfolio-item.product .product-labels.style-3 .label {
      border-radius: 0;
      margin: 0; }
  .portfolio.extended-products-grid.portfolio-preset-image-shadow-hover-01 .portfolio-item:hover .wrap, .portfolio.extended-products-grid.portfolio-preset-image-shadow-hover-01 .portfolio-item.hover-effect .wrap {
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.25); }
  .portfolio.extended-products-grid.portfolio-preset-image-shadow .portfolio-item .wrap .image {
    box-shadow: 0px 0px 40px 5px rgba(33, 34, 39, 0.2); }
  .portfolio.extended-products-grid.portfolio-preset-image-shadow .portfolio-item:hover .wrap .image, .portfolio.extended-products-grid.portfolio-preset-image-shadow .portfolio-item.hover-effect .wrap .image {
    box-shadow: 0px 10px 50px 10px rgba(33, 34, 39, 0.3); }
  .portfolio.extended-products-grid.portfolio-preset-image-shadow .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.portfolio-preset-image-shadow .portfolio-item .image .overlay .links .caption {
    padding: 20px !important; }
  .portfolio.extended-products-grid.portfolio-preset-image-shadow .product-labels.style-2 .label {
    margin: 14px -11px 0px 0px !important; }
  .portfolio.extended-products-grid.portfolio-preset-image-separator-01 .portfolio-item.product .product-labels.style-3 .label {
    border-radius: 3px; }
  .portfolio.extended-products-grid.portfolio-preset-image-separator-01 .portfolio-item.product .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.portfolio-preset-image-separator-01 .portfolio-item.product .image .overlay .links .caption {
    padding: 16px !important; }
  .portfolio.extended-products-grid.portfolio-preset-hover-rounded-corners .portfolio-item .overlay:before {
    background: #F0F3F2D4; }
  .portfolio.extended-products-grid.portfolio-preset-hover-separator .portfolio-item.product .product-labels.style-3 {
    margin: -4px 0px 0px -4px; }
    .portfolio.extended-products-grid.portfolio-preset-hover-separator .portfolio-item.product .product-labels.style-3 .label {
      border-radius: 0;
      margin: 0; }
  .portfolio.extended-products-grid.portfolio-preset-hover-centered-caption .portfolio-item .image .overlay .links .caption {
    padding: 20px !important; }
  .portfolio.extended-products-grid.portfolio-preset-hover-shadow-hover .portfolio-item:hover .wrap, .portfolio.extended-products-grid.portfolio-preset-hover-shadow-hover .portfolio-item.hover-effect .wrap {
    box-shadow: 0px 0px 20px 0px rgba(29, 42, 47, 0.21); }
  .portfolio.extended-products-grid.portfolio-preset-hover-gradient-hover .portfolio-item .overlay:before {
    background: #FFDE1596 !important;
    background-color: transparent;
    background-image: linear-gradient(225deg, #FFDE1596 0%, #E9135CBA 100%) !important; }
  .portfolio.extended-products-grid.portfolio-preset-hover-gradient-hover .portfolio-item .image .overlay .links .portfolio-icons, .portfolio.extended-products-grid.portfolio-preset-hover-gradient-hover .portfolio-item .image .overlay .links .caption {
    padding: 30px !important; }

.term-description:first-child {
  margin-bottom: 40px; }

.term-description:last-child {
  margin-top: 40px; }

.portfolio-filter-tabs {
  position: relative;
  z-index: 5; }
  .portfolio-filter-tabs.style-alternative {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px; }
    @media (min-width: 992px) {
      .portfolio-filter-tabs.style-alternative {
        margin-bottom: 50px; } }
    @media (max-width: 991px) {
      .portfolio-filter-tabs.style-alternative {
        flex-wrap: wrap;
        justify-content: space-between; } }
    @media (min-width: 992px) {
      .portfolio-filter-tabs.style-alternative.separator ul.portfolio-filter-tabs-list {
        margin-bottom: -11px; } }
    .portfolio-filter-tabs.style-alternative .portfolio-filter-tabs-title {
      margin: 0 30px 0 0; }
      @media (max-width: 991px) {
        .portfolio-filter-tabs.style-alternative .portfolio-filter-tabs-title {
          max-width: 75%; } }
      @media (min-width: 992px) {
        .portfolio-filter-tabs.style-alternative .portfolio-filter-tabs-title {
          margin-right: 45px; } }
    @media (max-width: 991px) {
      .portfolio-filter-tabs.style-alternative ul.portfolio-filter-tabs-list {
        order: 1;
        width: calc(100% + 30px);
        justify-content: center;
        padding-top: 30px; } }
    @media (min-width: 992px) {
      .portfolio-filter-tabs.style-alternative ul.portfolio-filter-tabs-list {
        margin-right: auto; } }
    @media (min-width: 992px) {
      .portfolio-filter-tabs.style-alternative ul.portfolio-filter-tabs-list li {
        padding-bottom: 6px; } }
    .portfolio-filter-tabs.style-alternative ul.portfolio-filter-tabs-list li.active {
      border-bottom: 2px solid currentColor; }
    .portfolio-filter-tabs.style-alternative.alignment-right ul.portfolio-filter-tabs-list {
      margin-left: auto;
      margin-right: 0; }
    .portfolio-filter-tabs.style-alternative.alignment-center ul.portfolio-filter-tabs-list {
      margin-left: auto;
      margin-right: auto; }
    @media (min-width: 992px) {
      .portfolio-filter-tabs.style-alternative .gem-pagination.gem-pagination-arrows {
        margin-left: 20px; } }
    .portfolio-filter-tabs.style-alternative .gem-pagination.gem-pagination-arrows a.next i.default {
      margin-right: -7px; }
    .portfolio-filter-tabs.style-alternative .gem-pagination.gem-pagination-arrows a i {
      transform: translateY(3px); }
  .portfolio-filter-tabs.style-default {
    margin-bottom: 30px; }
    @media (min-width: 992px) {
      .portfolio-filter-tabs.style-default {
        margin-bottom: 33px; } }
    .portfolio-filter-tabs.style-default .portfolio-filter-tabs-title {
      text-align: center;
      margin-bottom: 30px; }
      @media (min-width: 992px) {
        .portfolio-filter-tabs.style-default .portfolio-filter-tabs-title {
          margin-bottom: 45px; } }
    .portfolio-filter-tabs.style-default ul.portfolio-filter-tabs-list {
      justify-content: center; }
      .portfolio-filter-tabs.style-default ul.portfolio-filter-tabs-list li.active {
        border-bottom: 2px solid currentColor; }
    .portfolio-filter-tabs.style-default.alignment-right .portfolio-filter-tabs-title {
      text-align: right; }
    .portfolio-filter-tabs.style-default.alignment-right ul.portfolio-filter-tabs-list {
      justify-content: flex-end; }
    .portfolio-filter-tabs.style-default.alignment-left .portfolio-filter-tabs-title {
      text-align: left; }
    .portfolio-filter-tabs.style-default.alignment-left ul.portfolio-filter-tabs-list {
      justify-content: flex-start; }
  .portfolio-filter-tabs ul.portfolio-filter-tabs-list {
    list-style-type: none;
    padding: 0;
    margin: 0 -30px -10px 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap; }
    .portfolio-filter-tabs ul.portfolio-filter-tabs-list li {
      margin-bottom: 10px;
      margin-right: 30px; }
      .portfolio-filter-tabs ul.portfolio-filter-tabs-list li:not(.active) {
        cursor: pointer; }
  .portfolio-filter-tabs .gem-pagination.gem-pagination-arrows {
    width: auto;
    margin: 0; }

.portfolio.extended-products-grid.caption-position-image:not(.ready) .portfolio-icons,
.portfolio.extended-products-grid.loading-animation:not(.inited) {
  opacity: 0; }

.extended-carousel-grid .owl-item .portfolio-item {
  padding: 0; }

/* List Style */
.portfolio.extended-products-grid.list-style .portfolio-set {
  display: grid;
  grid-template-columns: minmax(0, 1fr); }

.portfolio.extended-products-grid.list-style .portfolio-set:before,
.portfolio.extended-products-grid.list-style .portfolio-set:after {
  content: none; }

@media (max-width: 767px) {
  .portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption {
    padding: 18px 20px 13px 20px; }

  .portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item:nth-child(1) .wrap:before {
    content: none; } }
@media (min-width: 768px) and (max-width: 991px) {
  .portfolio.extended-products-grid.list-style.columns-tablet-1x .portfolio-set {
    grid-template-columns: minmax(0, 1fr); }

  .portfolio.extended-products-grid.list-style.columns-tablet-1x .portfolio-set.sub-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .portfolio.extended-products-grid.list-style.columns-tablet-1x .portfolio-set .portfolio-item .wrap > .caption {
    padding: 18px 20px 13px 20px; }

  .portfolio.extended-products-grid.list-style.columns-tablet-1x .portfolio-set .portfolio-item:nth-child(1) .wrap:before {
    content: none; }

  .portfolio.extended-products-grid.list-style.columns-tablet-2x .portfolio-set {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .portfolio.extended-products-grid.list-style.columns-tablet-2x .portfolio-set .portfolio-item .wrap > .caption {
    padding: 18px 20px 13px 20px; }

  .portfolio.extended-products-grid.list-style.columns-tablet-2x .portfolio-set .portfolio-item:nth-child(-n+2) .wrap:before {
    content: none; } }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.list-style.columns-desktop-1x .portfolio-set {
    grid-template-columns: minmax(0, 1fr); }

  .portfolio.extended-products-grid.list-style.columns-desktop-1x .portfolio-set.sub-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .portfolio.extended-products-grid.list-style.columns-desktop-1x .portfolio-set .portfolio-item .wrap > .caption {
    padding: 25px 30px 20px 30px; }

  .portfolio.extended-products-grid.list-style.columns-desktop-1x .portfolio-set .portfolio-item:nth-child(1) .wrap:before {
    content: none; }

  .portfolio.extended-products-grid.list-style.columns-desktop-2x .portfolio-set {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .portfolio.extended-products-grid.list-style.columns-desktop-2x .portfolio-set .portfolio-item .wrap > .caption {
    padding: 20px 25px 15px 25px; }

  .portfolio.extended-products-grid.list-style.columns-desktop-2x .portfolio-set .portfolio-item:nth-child(-n+2) .wrap:before {
    content: none; }

  .portfolio.extended-products-grid.list-style.columns-desktop-3x .portfolio-set {
    grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .portfolio.extended-products-grid.list-style.columns-desktop-3x .portfolio-set .portfolio-item .wrap > .caption {
    padding: 15px 15px 10px 15px; }

  .portfolio.extended-products-grid.list-style.columns-desktop-3x .portfolio-set .portfolio-item:nth-child(-n+3) .wrap:before {
    content: none; }

  .portfolio.extended-products-grid.list-style.columns-desktop-4x .portfolio-set {
    grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .portfolio.extended-products-grid.list-style.columns-desktop-4x .portfolio-set .portfolio-item .wrap > .caption {
    padding: 15px 15px 10px 15px; }

  .portfolio.extended-products-grid.list-style.columns-desktop-4x .portfolio-set .portfolio-item:nth-child(-n+4) .wrap:before {
    content: none; } }
.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item {
  width: auto !important; }

.portfolio.extended-products-grid.list-style .portfolio-set:not(.sub-categories) .portfolio-item .wrap {
  display: block; }

@media (min-width: 768px) {
  .portfolio.extended-products-grid.list-style .portfolio-set:not(.sub-categories) .portfolio-item .wrap {
    height: 100%;
    display: flex;
    flex-direction: row; } }
.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .image {
  flex: auto;
  align-self: center; }

.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .image .links .caption .info {
  left: 0;
  top: 0; }

.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .image .links .caption .info a {
  text-decoration: none; }

.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption {
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center; }

@media (max-width: 767px) {
  .portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .image,
  .portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption {
    width: 100% !important; } }
@media (min-width: 768px) {
  .portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .image {
    flex: none !important;
    width: 40%;
    max-width: 100%; } }
.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption .post-author-date .post-author-date .author, .portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption .post-author-date .post-date, .portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption .post-author-date .post-author-date-separator, .portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption .post-author-date .author {
  margin-bottom: 12px; }

.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .product-rating.product-rating-empty {
  display: none; }

.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption .title {
  margin-bottom: 0; }

.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption .description {
  margin-top: 10px; }

.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption .description .subtitle {
  white-space: initial;
  color: inherit; }

.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption .description .subtitle span {
  margin: 0;
  color: inherit; }

.portfolio.extended-products-grid.list-style .portfolio-set .portfolio-item .wrap > .caption .product-price {
  margin-top: 10px; }

@media (min-width: 992px) {
  .portfolio.extended-products-grid.list-style.columns-desktop-1x .portfolio-set .portfolio-item .wrap > .caption .title {
    margin-bottom: 0; }

  .portfolio.extended-products-grid.list-style.columns-desktop-1x .portfolio-set .portfolio-item .wrap > .caption .description {
    margin-top: 10px; } }
.portfolio.extended-products-grid.list-style.with-divider .portfolio-set .portfolio-item .wrap:before {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: 1px solid var(--thegem-to-box-border-color, #DFE5E8); }

.portfolio.extended-products-grid.list-style.background-style-transparent .portfolio-set .portfolio-item .wrap > .caption {
  padding-bottom: 0; }

@media (min-width: 768px) {
  .portfolio.extended-products-grid.list-style.background-style-transparent .portfolio-set .portfolio-item .wrap > .caption {
    padding-top: 0; } }
.portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-right .portfolio-set .portfolio-item .wrap > .caption {
  padding-right: 0; }

.portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-left .portfolio-set .portfolio-item .wrap > .caption {
  padding-left: 0; }

.portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-left .portfolio-set .portfolio-item .wrap > .image .links .caption .info {
  left: initial;
  right: 0; }

@media (max-width: 767px) {
  .portfolio.extended-products-grid.list-style.background-style-transparent .portfolio-set .portfolio-item .wrap > .caption {
    padding-right: 0;
    padding-left: 0; } }
@media (min-width: 768px) and (max-width: 991px) {
  .portfolio.extended-products-grid.list-style.columns-tablet-2x .portfolio-set .portfolio-item .wrap {
    display: block; }

  .portfolio.extended-products-grid.list-style.columns-tablet-2x .portfolio-set .portfolio-item .wrap > .image,
  .portfolio.extended-products-grid.list-style.columns-tablet-2x .portfolio-set .portfolio-item .wrap > .caption {
    width: 100% !important; }

  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-tablet-1x .portfolio-set .portfolio-item:nth-child(odd) .wrap > .caption {
    padding-right: 0; }

  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-tablet-1x .portfolio-set .portfolio-item:nth-child(even) .wrap > .caption {
    padding-left: 0; }

  .portfolio.extended-products-grid.list-style.background-style-transparent.columns-tablet-2x .portfolio-set .portfolio-item .wrap > .caption {
    padding-right: 0;
    padding-left: 0;
    padding-top: 20px; } }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-1x .portfolio-set .portfolio-item:nth-child(odd) .wrap > .caption {
    padding-right: 0; }

  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-1x .portfolio-set .portfolio-item:nth-child(even) .wrap > .caption {
    padding-left: 0; }

  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-2x .portfolio-set .portfolio-item:nth-child(4n+1) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-2x .portfolio-set .portfolio-item:nth-child(4n+2) .wrap > .caption {
    padding-right: 0; }

  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-2x .portfolio-set .portfolio-item:nth-child(4n+3) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-2x .portfolio-set .portfolio-item:nth-child(4n+4) .wrap > .caption {
    padding-left: 0; }

  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-3x .portfolio-set .portfolio-item:nth-child(6n+1) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-3x .portfolio-set .portfolio-item:nth-child(6n+2) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-3x .portfolio-set .portfolio-item:nth-child(6n+3) .wrap > .caption {
    padding-right: 0; }

  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-3x .portfolio-set .portfolio-item:nth-child(6n+4) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-3x .portfolio-set .portfolio-item:nth-child(6n+5) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-3x .portfolio-set .portfolio-item:nth-child(6n+6) .wrap > .caption {
    padding-left: 0; }

  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-4x .portfolio-set .portfolio-item:nth-child(8n+1) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-4x .portfolio-set .portfolio-item:nth-child(8n+2) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-4x .portfolio-set .portfolio-item:nth-child(8n+3) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-4x .portfolio-set .portfolio-item:nth-child(8n+4) .wrap > .caption {
    padding-right: 0; }

  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-4x .portfolio-set .portfolio-item:nth-child(8n+5) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-4x .portfolio-set .portfolio-item:nth-child(8n+6) .wrap > .caption, .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-4x .portfolio-set .portfolio-item:nth-child(8n+7) .wrap > .caption, .portfolio.extended-products-grid.list-style.background-style-transparent.caption-position-list-zigzag.columns-desktop-4x .portfolio-set .portfolio-item:nth-child(8n+8) .wrap > .caption {
    padding-left: 0; } }
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-right .portfolio-item .wrap > .caption,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item .wrap > .caption {
  text-align: left; }

.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-right .portfolio-item .wrap > .caption .star-rating,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-right .portfolio-item .wrap > .caption .product-rating .empty-rating:before,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-right .portfolio-item .wrap > .caption .categories,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-right .portfolio-item .wrap > .caption .product-bottom,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-right .portfolio-item .wrap > .caption .product-bottom > *:first-child,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item .wrap > .caption .star-rating,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item .wrap > .caption .product-rating .empty-rating:before,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item .wrap > .caption .categories,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item .wrap > .caption .product-bottom,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item .wrap > .caption .product-bottom > *:first-child {
  margin-left: 0; }

.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-right .portfolio-item .wrap > .caption .reviews.show-count .product-rating,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item .wrap > .caption .reviews.show-count .product-rating {
  justify-content: flex-start; }

.portfolio.extended-products-grid.list-style.caption-position-list-left .portfolio-set .portfolio-item .wrap,
.portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-left .portfolio-item .wrap > .caption {
  flex-direction: row-reverse; }

.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-left .portfolio-item .wrap > .caption {
  text-align: right; }

.portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-left .portfolio-item .wrap > .caption .list-right {
  text-align: left; }

.portfolio.extended-products-grid.list-style.caption-layout-list-inline .portfolio-item .wrap > .caption .list-right .portfolio-icons {
  display: inline-flex; }

.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-left .portfolio-item .wrap > .caption .star-rating,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-left .portfolio-item .wrap > .caption .product-rating .empty-rating:before,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-left .portfolio-item .wrap > .caption .categories,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-left .portfolio-item .wrap > .caption .product-bottom,
.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-left .portfolio-item .wrap > .caption .product-bottom > *:first-child {
  margin-right: 0;
  margin-left: auto; }

.portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-left .portfolio-item .wrap > .caption .reviews.show-count .product-rating {
  justify-content: flex-end; }

.portfolio.extended-products-grid.list-style.caption-position-list-left .portfolio-item .wrap > .image .links .caption .info {
  left: initial;
  right: 0; }

@media (max-width: 767px) {
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item:nth-child(even) .wrap > .caption {
    text-align: right; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item:nth-child(even) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item:nth-child(even) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item:nth-child(even) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item:nth-child(even) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item:nth-child(even) .wrap > .caption .product-bottom > *:first-child {
    margin-right: 0;
    margin-left: auto; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag .portfolio-item:nth-child(even) .wrap > .caption .reviews.show-count .product-rating {
    justify-content: flex-end; }

  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag .portfolio-item:nth-child(even) .wrap > .image .links .caption .info {
    left: initial;
    right: 0; } }
@media (min-width: 768px) and (max-width: 991px) {
  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-tablet-1x .portfolio-item:nth-child(even) .wrap,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-tablet-1x .portfolio-item:nth-child(even) .wrap > .caption {
    flex-direction: row-reverse; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-tablet-1x .portfolio-item:nth-child(even) .wrap > .caption {
    text-align: right; }

  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-tablet-1x .portfolio-item:nth-child(even) .wrap > .caption .list-right {
    text-align: left; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-tablet-1x .portfolio-item:nth-child(even) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-tablet-1x .portfolio-item:nth-child(even) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-tablet-1x .portfolio-item:nth-child(even) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-tablet-1x .portfolio-item:nth-child(even) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-tablet-1x .portfolio-item:nth-child(even) .wrap > .caption .product-bottom > *:first-child {
    margin-right: 0;
    margin-left: auto; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-tablet-1x .portfolio-item:nth-child(even) .wrap > .caption .reviews.show-count .product-rating {
    justify-content: flex-end; }

  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-tablet-1x .portfolio-item:nth-child(even) .wrap > .image .links .caption .info {
    left: initial;
    right: 0; }

  .portfolio.extended-products-grid.columns-tablet-1x.list-style .portfolio-item .wrap > .caption .categories {
    white-space: initial; }

  .portfolio.extended-products-grid.columns-tablet-1x.list-style.caption-layout-list-inline .portfolio-set .portfolio-item .wrap > .caption {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px; }

  .portfolio.extended-products-grid.columns-tablet-1x.list-style.caption-layout-list-inline.caption-position-list-left .portfolio-set .portfolio-item .wrap > .caption {
    flex-direction: row-reverse; }

  .portfolio.extended-products-grid.columns-tablet-1x.list-style.caption-layout-list-inline .portfolio-set .portfolio-item .wrap > .caption .list-right {
    text-align: right;
    flex: none; }

  .portfolio.extended-products-grid.columns-tablet-1x.list-style.caption-layout-list-inline .portfolio-set .portfolio-item .wrap > .caption .list-right .actions > * {
    display: block; }

  .portfolio.extended-products-grid.columns-tablet-1x.list-style.caption-layout-list-inline.caption-position-list-left .portfolio-set .portfolio-item .wrap > .caption .list-right {
    text-align: left; } }
@media (min-width: 992px) {
  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-1x .portfolio-item:nth-child(even) .wrap,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-1x .portfolio-item:nth-child(even) .wrap > .caption {
    flex-direction: row-reverse; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-1x .portfolio-item:nth-child(even) .wrap > .caption {
    text-align: right; }

  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-1x .portfolio-item:nth-child(even) .wrap > .caption .list-right {
    text-align: left; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-1x .portfolio-item:nth-child(even) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-1x .portfolio-item:nth-child(even) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-1x .portfolio-item:nth-child(even) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-1x .portfolio-item:nth-child(even) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-1x .portfolio-item:nth-child(even) .wrap > .caption .product-bottom > *:first-child {
    margin-right: 0;
    margin-left: auto; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-1x .portfolio-item:nth-child(even) .wrap > .caption .reviews.show-count .product-rating {
    justify-content: flex-end; }

  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-1x .portfolio-item:nth-child(even) .wrap > .image .links .caption .info {
    left: initial;
    right: 0; }

  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+3) .wrap,
  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+4) .wrap,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+3) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+4) .wrap > .caption {
    flex-direction: row-reverse; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+3) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+4) .wrap > .caption {
    text-align: right; }

  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+3) .wrap > .caption .list-right,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+4) .wrap > .caption .list-right {
    text-align: left; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+3) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+3) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+3) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+3) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+3) .wrap > .caption .product-bottom > *:first-child,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+4) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+4) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+4) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+4) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+4) .wrap > .caption .product-bottom > *:first-child {
    margin-right: 0;
    margin-left: auto; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+3) .wrap > .caption .reviews.show-count .product-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+4) .wrap > .caption .reviews.show-count .product-rating {
    justify-content: flex-end; }

  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+3) .wrap > .image .links .caption .info,
  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-2x .portfolio-item:nth-child(4n+4) .wrap > .image .links .caption .info {
    left: initial;
    right: 0; }

  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+4) .wrap,
  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+5) .wrap,
  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+6) .wrap,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+4) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+5) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+6) .wrap > .caption {
    flex-direction: row-reverse; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+4) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+5) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+6) .wrap > .caption {
    text-align: right; }

  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+4) .wrap > .caption .list-right,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+5) .wrap > .caption .list-right,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+6) .wrap > .caption .list-right {
    text-align: left; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+4) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+4) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+4) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+4) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+4) .wrap > .caption .product-bottom > *:first-child,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+5) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+5) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+5) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+5) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+5) .wrap > .caption .product-bottom > *:first-child,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+6) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+6) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+6) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+6) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+6) .wrap > .caption .product-bottom > *:first-child {
    margin-right: 0;
    margin-left: auto; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+4) .wrap > .caption .reviews.show-count .product-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+5) .wrap > .caption .reviews.show-count .product-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+6) .wrap > .caption .reviews.show-count .product-rating {
    justify-content: flex-end; }

  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+4) .wrap > .image .links .caption .info,
  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+5) .wrap > .image .links .caption .info,
  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-3x .portfolio-item:nth-child(6n+6) .wrap > .image .links .caption .info {
    left: initial;
    right: 0; }

  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+5) .wrap,
  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+6) .wrap,
  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+7) .wrap,
  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+8) .wrap,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+5) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+6) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+7) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+8) .wrap > .caption {
    flex-direction: row-reverse; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+5) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+6) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+7) .wrap > .caption,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+8) .wrap > .caption {
    text-align: right; }

  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+5) .wrap > .caption .list-right,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+6) .wrap > .caption .list-right,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+7) .wrap > .caption .list-right,
  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+8) .wrap > .caption .list-right {
    text-align: left; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+5) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+5) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+5) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+5) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+5) .wrap > .caption .product-bottom > *:first-child,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+6) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+6) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+6) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+6) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+6) .wrap > .caption .product-bottom > *:first-child,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+7) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+7) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+7) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+7) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+7) .wrap > .caption .product-bottom > *:first-child,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+8) .wrap > .caption .star-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+8) .wrap > .caption .product-rating .empty-rating:before,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+8) .wrap > .caption .categories,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+8) .wrap > .caption .product-bottom,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+8) .wrap > .caption .product-bottom > *:first-child {
    margin-right: 0;
    margin-left: auto; }

  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+5) .wrap > .caption .reviews.show-count .product-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+6) .wrap > .caption .reviews.show-count .product-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+7) .wrap > .caption .reviews.show-count .product-rating,
  .portfolio.extended-products-grid.list-style.caption-alignment-list-default.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+8) .wrap > .caption .reviews.show-count .product-rating {
    justify-content: flex-end; }

  .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+5) .wrap > .image .links .caption .info, .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+6) .wrap > .image .links .caption .info, .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+7) .wrap > .image .links .caption .info, .portfolio.extended-products-grid.list-style.caption-position-list-zigzag.columns-desktop-4x .portfolio-item:nth-child(8n+8) .wrap > .image .links .caption .info {
    left: initial;
    right: 0; }

  .portfolio.extended-products-grid.list-style .portfolio-item .wrap > .caption .categories {
    white-space: initial; }

  .portfolio.extended-products-grid.list-style.caption-layout-list-inline .portfolio-set .portfolio-item .wrap > .caption {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px; }

  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-left .portfolio-set .portfolio-item .wrap > .caption {
    flex-direction: row-reverse; }

  .portfolio.extended-products-grid.list-style.caption-layout-list-inline .portfolio-set .portfolio-item .wrap > .caption .list-right {
    text-align: right;
    flex: none; }

  .portfolio.extended-products-grid.list-style.caption-layout-list-inline .portfolio-set .portfolio-item .wrap > .caption .list-right .actions > * {
    display: block; }

  .portfolio.extended-products-grid.list-style.caption-layout-list-inline.caption-position-list-left .portfolio-set .portfolio-item .wrap > .caption .list-right {
    text-align: left; } }
/* List Style End */
/* Swatches Style */
.portfolio.extended-products-grid .portfolio-item.product.product-type-variable .wrap .product-bottom .cart.simple-type-button,
.portfolio.extended-products-grid .portfolio-item.product.product-type-variable .image .overlay .links .portfolio-icons .portfolio-icons-inner .cart.simple-type-button {
  display: none; }
.portfolio.extended-products-grid .product-variations {
  color: var(--thegem-to-product-grid-title-color); }
  .portfolio.extended-products-grid .product-variations .variations {
    line-height: 1;
    margin-top: 17px; }
  .portfolio.extended-products-grid .product-variations .single_variation_wrap {
    display: none !important; }
  .portfolio.extended-products-grid .product-variations .blockUI {
    display: none !important; }
  .portfolio.extended-products-grid .product-variations.simple .gem-attribute-selector:not(.type-color):not(.type-image) li {
    pointer-events: none; }
.portfolio.extended-products-grid .gem-attribute-selector {
  padding: 0;
  margin-bottom: 7px; }
  .portfolio.extended-products-grid .gem-attribute-selector .attribute-name {
    margin-right: 0.7em; }
  .portfolio.extended-products-grid .gem-attribute-selector .gem-attribute-options > :last-child {
    margin-right: 0 !important; }
  .portfolio.extended-products-grid .gem-attribute-selector.type-color .gem-attribute-options li {
    position: relative;
    padding: 2px;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    margin-bottom: 5px;
    color: inherit;
    border: none; }
    .portfolio.extended-products-grid .gem-attribute-selector.type-color .gem-attribute-options li:before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      border-radius: 50%;
      border: 1px solid;
      border-color: inherit; }
    .portfolio.extended-products-grid .gem-attribute-selector.type-color .gem-attribute-options li:not(.selected):before {
      opacity: 0.3; }
    .portfolio.extended-products-grid .gem-attribute-selector.type-color .gem-attribute-options li .color {
      width: 14px;
      height: 14px;
      line-height: 14px; }
  .portfolio.extended-products-grid .gem-attribute-selector.type-color .gem-attribute-options span.attribute-name, .portfolio.extended-products-grid .gem-attribute-selector.type-color .gem-attribute-options a.more-variables {
    line-height: 18px; }
  .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options {
    display: flex;
    align-items: center; }
    .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options li {
      position: relative;
      padding: 2px;
      width: 30px;
      height: 30px;
      margin-right: 5px;
      margin-bottom: 5px;
      color: inherit;
      border: none; }
      .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options li:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        border-radius: 50%;
        border: 1px solid;
        border-color: inherit; }
      .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options li:not(.selected):before {
        opacity: 0.3; }
      .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options li .image-preview {
        display: inline-block;
        vertical-align: top;
        width: 26px;
        height: 26px;
        line-height: 26px;
        border-radius: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 50%; }
      .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options li .image-hover {
        visibility: hidden; }
        .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options li .image-hover img {
          max-width: 80px;
          height: auto; }
        .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options li .image-hover .text {
          position: relative;
          bottom: auto;
          left: auto;
          transform: none;
          opacity: 1;
          transition: all 0;
          padding: 5px 10px;
          display: block;
          text-align: center;
          background: transparent;
          margin-bottom: 0;
          font-size: inherit; }
          .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options li .image-hover .text:after {
            display: none; }
      .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options li:hover .image-hover {
        visibility: visible; }
      .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options li.disabled .image-hover {
        display: none; }
    .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options span.attribute-name, .portfolio.extended-products-grid .gem-attribute-selector.type-image .gem-attribute-options a.more-variables {
      line-height: 18px; }
  .portfolio.extended-products-grid .gem-attribute-selector.type-label .gem-attribute-options li {
    padding: 0 5px;
    line-height: 21px;
    border-radius: 3px;
    height: 21px;
    min-width: 22px;
    margin-right: 5px;
    margin-bottom: 5px;
    color: inherit;
    border: none; }
    .portfolio.extended-products-grid .gem-attribute-selector.type-label .gem-attribute-options li:before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      border-radius: 3px;
      border: 1px solid;
      border-color: inherit;
      opacity: 0; }
    .portfolio.extended-products-grid .gem-attribute-selector.type-label .gem-attribute-options li:not(.selected):before {
      opacity: 0.3; }
  .portfolio.extended-products-grid .gem-attribute-selector.type-label .gem-attribute-options span.attribute-name, .portfolio.extended-products-grid .gem-attribute-selector.type-label .gem-attribute-options a.more-variables {
    line-height: 21px; }
  .portfolio.extended-products-grid .gem-attribute-selector:not(.type-label):not(.type-color):not(.type-image) .gem-attribute-options {
    margin-top: -4px; }
    .portfolio.extended-products-grid .gem-attribute-selector:not(.type-label):not(.type-color):not(.type-image) .gem-attribute-options li {
      border: none;
      margin-right: 5px;
      margin-bottom: 5px;
      line-height: 1;
      color: inherit;
      text-decoration: underline;
      text-decoration-color: transparent;
      transition: all 0.3s; }
      .portfolio.extended-products-grid .gem-attribute-selector:not(.type-label):not(.type-color):not(.type-image) .gem-attribute-options li.selected, .portfolio.extended-products-grid .gem-attribute-selector:not(.type-label):not(.type-color):not(.type-image) .gem-attribute-options li:hover {
        text-decoration-color: inherit; }
    .portfolio.extended-products-grid .gem-attribute-selector:not(.type-label):not(.type-color):not(.type-image) .gem-attribute-options span.attribute-name, .portfolio.extended-products-grid .gem-attribute-selector:not(.type-label):not(.type-color):not(.type-image) .gem-attribute-options a.more-variables {
      margin-bottom: 0;
      vertical-align: baseline; }
  .portfolio.extended-products-grid .gem-attribute-selector span.attribute-name, .portfolio.extended-products-grid .gem-attribute-selector a.more-variables {
    display: inline-block;
    color: inherit;
    margin-bottom: 5px;
    vertical-align: top; }
.portfolio.extended-products-grid .portfolio-item.product .wrap > .image .variations-notification {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  background-color: var(--styled-bg-color);
  z-index: 99; }
  .portfolio.extended-products-grid .portfolio-item.product .wrap > .image .variations-notification:before {
    position: initial;
    width: initial;
    height: initial;
    background: none;
    margin: 0;
    font-size: 1.5em;
    line-height: 1.5;
    font-family: 'thegem-icons';
    font-style: normal;
    content: '\e621';
    font-weight: normal; }
  .portfolio.extended-products-grid .portfolio-item.product .wrap > .image .variations-notification .close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer; }
    .portfolio.extended-products-grid .portfolio-item.product .wrap > .image .variations-notification .close:before {
      font-family: 'thegem-icons';
      font-style: normal;
      font-weight: normal;
      font-size: 1.5em;
      content: '\e619'; }
.portfolio.extended-products-grid.caption-position-hover .product-variations .variations, .portfolio.extended-products-grid.caption-position-image .product-variations .variations {
  margin-top: 0;
  margin-bottom: 0; }
.portfolio.extended-products-grid.caption-position-hover .gem-attribute-selector, .portfolio.extended-products-grid.caption-position-image .gem-attribute-selector {
  margin-bottom: 4px; }
  .portfolio.extended-products-grid.caption-position-hover .gem-attribute-selector.type-label .gem-attribute-options li:not(.selected):before, .portfolio.extended-products-grid.caption-position-image .gem-attribute-selector.type-label .gem-attribute-options li:not(.selected):before {
    opacity: 1; }
.portfolio.extended-products-grid:is(.caption-container-preset-light, .caption-container-preset-solid, .caption-container-preset-transparent) .portfolio-item .image .overlay .links .caption .product-variations {
  color: var(--thegem-to-product-grid-title-on-image-color); }

/* Swatches Style End */



.gdpr-consent-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: auto;
	background-color: rgba(24,24,40,0.93);
	z-index: 9999;
	display: none;
}

.gdpr-consent-bar.bottom {
	bottom: 0;
	top: auto;
}

.gdpr-consent-bar.top {
	bottom: auto;
	top: 0;
}

.gdpr-consent-bar-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 44px;
	min-height: 50px;
}

.gdpr-consent-bar-text {
	font-family: 'Source Sans Pro';
	font-weight: 400;
	font-size: 14px;
	color: #ffffff;
	line-height: 22px;
	padding-right: 40px;
}

.gdpr-consent-bar-buttons {
	display: flex;
	align-items: center;
}

.btn-gdpr-agreement {
	height: 30px;
	border: 2px solid #ffffff;
	border-radius: 15px;
	color: #ffffff;
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 14px;
	line-height: 27px;
	text-transform: uppercase;
	background: none;
	padding: 0 18px;
	white-space: nowrap;
	-webkit-transition: all 250ms;
	transition: all 250ms;
}

.btn-gdpr-agreement:hover {
	background-color: #ffffff;
	color: #181828;
}

.btn-gdpr-preferences-open {
	font-family: 'Source Sans Pro';
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	color: #00bcd4;
	background: none;
	border: none;
	margin-right: 22px;
	padding: 0;
	white-space: nowrap;
	-webkit-transition: all 250ms;
	transition: all 250ms;
}

.btn-gdpr-preferences-open:hover {
	color: #ffffff;
}

.gdpr-privacy-preferences {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(57,61,80,0.8);
	z-index: 9999;
	display: none;
}

.gdpr-privacy-preferences-box {
	height: 90%;
	width: 90%;
	max-width: 930px;
	max-height: 680px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #ffffff;
	z-index: inherit;
}

.gdpr-privacy-preferences-box > form {
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}

.btn-gdpr-privacy-preferences-close {
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	color: #99a9b5;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: inherit;
	font-size: 0;
}

.btn-gdpr-privacy-preferences-close:before {
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 28px;
	content: '\e619';
	line-height: 1;
}

.gdpr-privacy-preferences-header {
	width: 100%;
	position: relative;
	flex: none;
	padding: 25px 35px 15px;
}

.gdpr-privacy-preferences-title {
	font-family: 'Montserrat UltraLight';
	font-size: 24px;
	color: #3c3950;
	line-height: 38px;
	text-transform: uppercase;
	position: relative;
	padding-left: 48px;
}

.gdpr-privacy-preferences-title:before {
	content: '\e669';
	font-family: 'thegem-icons';
	font-style: normal;
	color: #00bcd4;
	font-size: 32px;
	line-height: 1;
	position: absolute;
	left: -5px;
	top: 5px;
}

.gdpr-privacy-preferences-body {
	flex: 1 1 100%;
	padding: 0 45px 0 35px;
	overflow: hidden;
	overflow-y: auto;
}

.gdpr-privacy-preferences-text {
	font-family: 'Source Sans Pro';
	font-size: 14px;
	line-height: 23px;
	font-weight: 400;
	color: #5f727f;
}

.gdpr-privacy-preferences-consents {
	padding: 20px 0;
	position: relative;
}

.gdpr-privacy-preferences-consent-item {
	display: flex;
	font-family: 'Source Sans Pro';
	font-size: 14px;
	line-height: 23px;
	font-weight: 400;
	padding: 10px 0;
	align-items: center;
	min-height: 55px;
	border-bottom: 1px solid #dfe5e8;
}

.gdpr-privacy-preferences-consent-item:last-child {
	border-bottom: none;
}

.gdpr-privacy-consent-param {
	width: 100%;
	display: flex;
	align-items: center;
}

.gdpr-privacy-consent-title {
	flex: 0 0 170px;
	font-weight: 300;
	font-size: 19px;
	color: #5f727f;
}

.gdpr-privacy-consent-description {
	color: #99a9b5;
	width: 100%;
}

.gdpr-privacy-consent-value {
	flex: 0 0 100px;
	display: flex;
	justify-content: flex-end;
}

.gdpr-privacy-consent-value input {
	display: block;
}

.thegem-gdpr-field {
	display: flex;
	align-items: flex-start;
	padding: 10px 0;
}

.thegem-gdpr-field label {
	margin-bottom: 0;
	line-height: 26px;
}

.wpcf7-form .wpcf7-thegemgdpr .wpcf7-list-item .checkbox-sign,
.thegem-gdpr-field .checkbox-sign {
	flex: 0 0 auto;
	margin-right: 10px;
	width: 26px;
	height: 26px;
	border: 1px solid #dfe5e8;
}

.wpcf7-form .wpcf7-thegemgdpr .wpcf7-list-item .checkbox-sign:before,
.thegem-gdpr-field .checkbox-sign:before {
	font-size: 21px;
	margin-left: -10px;
}

.wpcf7-form .wpcf7-thegemgdpr .wpcf7-list-item {
	display: flex;
	align-items: flex-start;
}

.wpcf7-form .wpcf7-thegemgdpr .wpcf7-list-item .wpcf7-list-item-label {
	line-height: 26px;
}

.gdpr-privacy-consent-always-active {
	text-transform: uppercase;
	color: #5f727f;
}

.gdpr-privacy-checkbox {
	display: block;
	position: relative;
	padding: 0;
	margin: 0;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.gdpr-privacy-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.gdpr-privacy-checkbox .gdpr-privacy-checkbox-check {
	display: block;
	position: relative;
	width: 40px;
	height: 24px;
	background-color: #b6c6c9;
	border-radius: 12px;
}

.gdpr-privacy-checkbox .gdpr-privacy-checkbox-check:after {
	content: '';
	position: absolute;
	left: 4px;
	width: 16px;
	height: 16px;
	top: 50%;
	margin-top: -8px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 50%;
	box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
	background-color: #ffffff;
}

.gdpr-privacy-checkbox input:checked ~ .gdpr-privacy-checkbox-check {
	background-color: #00bcd4;
}

.gdpr-privacy-checkbox input:checked ~ .gdpr-privacy-checkbox-check:after {
	border-color: #00bcd4;
	left: 20px;
}

.gdpr-privacy-preferences-footer {
	width: 100%;
	flex: none;
	padding: 30px 45px 30px 40px;
	background-color: #f0f3f2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.gdpr-privacy-preferences-footer-links a {
	font-family: 'Source Sans Pro';
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	color: #00bcd4;
	margin-right: 20px;
}

.gdpr-privacy-preferences-footer-links a:hover {
	color: #494c64;
}

.btn-gdpr-privacy-save-preferences {
	height: 30px;
	white-space: nowrap;
	border-radius: 15px;
	border: 2px solid #00bcd4;
	color: #00bcd4;
	background-color: #f0f3f2;
	text-transform: uppercase;
	font-family: 'Montserrat';
	font-size: 14px;
	font-weight: 700;
	line-height: 27px;
	padding: 0 18px;
	-webkit-transition: all 250ms;
	transition: all 250ms;
}

.btn-gdpr-privacy-save-preferences:hover {
	background-color: #00bcd4;
	color: #f0f3f2;
}


.gem-gdpr-no-consent-wrap {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}

.gem-gdpr-no-consent-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.5);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.gem-gdpr-no-consent-notice-text {
	padding: 20px;
	text-align: center;
	color: #ffffff;
	font-family: 'Source Sans Pro';
	font-size: 14px;
	white-space: pre-line;
}

.gem-gdpr-no-consent-notice-text .btn-gdpr-preferences {
	font-weight: bold;
	color: #ffffff;
	text-decoration: underline;
}

.gem-gdpr-no-consent-notice-text [class^="gem-consent-icon-"] {
	font-style: normal;
	display: block;
	line-height: 1;
	margin-bottom: 5px;
	font-size: 40px;
}

.gem-gdpr-no-consent-notice-text .gem-consent-icon-youtube:before {
	content: '\e610';
	font-family: 'thegem-socials';
}

.gem-gdpr-no-consent-notice-text .gem-consent-icon-vimeo:before {
	content: '\e609';
	font-family: 'thegem-socials';
}

.gem-gdpr-no-consent-notice-text .gem-consent-icon-google-maps:before {
	content: '\e624';
	font-family: 'thegem-icons';
	font-style: normal;
}

.vc_video-bg-container .gem-gdpr-no-consent-wrap,
.page-title-block .gem-gdpr-no-consent-wrap,
.vc_map_responsive .gem-gdpr-no-consent-wrap,
.video-block .gem-gdpr-no-consent-wrap {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.page-title-block .gem-gdpr-no-consent-wrap ~ .container {
	position: relative;
	z-index: 1;
}

.page-title-block .gem-gdpr-no-consent-inner {
	align-items: flex-start;
}

.page-title-block .gem-gdpr-no-consent-notice-text {
	vertical-align: top;
}

.page-title-block .gem-gdpr-no-consent-notice-text [class^="gem-consent-icon-"] {
	display: inline-block;
	margin-bottom: 0;
	font-size: 20px;
	margin-right: 10px;
	top: 4px;
	position: relative;
}

.vc_video-bg-container .gem-gdpr-no-consent-wrap {
	z-index: 1;
}



@media (max-width: 768px) {
	.gdpr-consent-bar-box {
		flex-direction: column;
		padding: 20px;
	}

	.gdpr-consent-bar-text {
		padding-right: 0;
	}

	.gdpr-consent-bar-buttons {
		width: 100%;
		justify-content: space-between;
		margin-top: 8px;
	}
}

@media (max-width: 688px) {
	.gdpr-privacy-preferences-body {
		padding: 0 30px;
	}

	.gdpr-privacy-consent-param {
		flex-wrap: wrap;
	}

	.gdpr-privacy-consent-title {
		flex: none;
	}

	.gdpr-privacy-consent-description {
		font-size: 12px;
		line-height: 18px;
	}

	.gdpr-privacy-preferences-footer {
		padding: 20px 30px;
		flex-direction: column;
		justify-content: center;
	}

	.btn-gdpr-privacy-save-preferences,
	.gdpr-privacy-preferences-footer-links {
		width: 100%;
	}

	.gdpr-privacy-preferences-footer-links {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 10px;
	}

	.gdpr-privacy-preferences-footer-links a {
		margin-right: 0;
	}
}

/* Infotext General */
.gem-infotext{
	position: relative;
	width: fit-content;
}
.gem-infotext.alignment-center {
	margin-left: auto;
	margin-right: auto;
}
.gem-infotext.alignment-right {
	margin-left: auto;
}
.gem-infotext-wrap{
	position: relative;
	display: flex;
	color: inherit;
}
.gem-infotext a{
	cursor: pointer;
}
.gem-infotext-wrap:hover{
	color: inherit;
}

/* Infotext Positions Update */
.gem-infotext-wrap.position--top{
	flex-direction: column;
}
.gem-infotext-wrap.position--bottom{
	flex-direction: column-reverse;
}
.gem-infotext-wrap.position--left{
	justify-content: flex-start;
}
.gem-infotext-wrap.position--right{
	justify-content: flex-end;
	flex-direction: row-reverse;
}
.gem-infotext-wrap.position--top.horizonal--left,
.gem-infotext-wrap.position--bottom.horizonal--left{
	align-items: flex-start;
}
.gem-infotext-wrap.position--top.horizonal--center,
.gem-infotext-wrap.position--bottom.horizonal--center{
	align-items: center;
}
.gem-infotext-wrap.position--top.horizonal--right,
.gem-infotext-wrap.position--bottom.horizonal--right{
	align-items: flex-end;
}
.gem-infotext-wrap.position--left.vertical--top,
.gem-infotext-wrap.position--right.vertical--top{
	align-items: flex-start;
}
.gem-infotext-wrap.position--left.vertical--center,
.gem-infotext-wrap.position--right.vertical--center{
	align-items: center;
}
.gem-infotext-wrap.position--left.vertical--bottom,
.gem-infotext-wrap.position--right.vertical--bottom{
	align-items: flex-end;
}

/* Infotext Icon */
.gem-infotext-icon{
	position: relative;
}
.gem-infotext-icon .gem-icon-size-tiny {
	font-size: 16px;
}
.gem-infotext-icon .gem-icon-size-tiny.gem-simple-icon {
	width: 16px;
	height: 16px;
	line-height: 16px;
}
.gem-infotext-icon .gem-icon-size-tiny:not(.gem-simple-icon) .gem-icon-inner {
	width: 25px;
	height: 25px;
	line-height: 25px;
}
.gem-infotext-icon .gem-icon {
	display: block;
}
/*.gem-infotext-icon .gem-icon.gem-simple-icon {
	width: auto;
	height: auto;
	line-height: initial;
}*/
.gem-infotext-icon .gem-icon.gem-simple-icon .gem-icon-inner {
	margin: 0;
}
.gem-infotext-icon .gem-icon-inner,
.gem-infotext-icon .gem-icon-style-gradient .back-angle,
.gem-infotext-icon .gem-icon-shape-hexagon-top-inner-before {
	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}
.gem-infotext-icon .gem-icon-half-1,
.gem-infotext-icon .gem-icon-half-2 {
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}
.gem-infotext-icon .gem-icon {
	-webkit-transition: color .3s, border-color .3s;
	-moz-transition: color .3s, border-color .3s;
	-o-transition: color .3s, border-color .3s;
	transition: color .3s, border-color .3s;
	color: var(--thegem-to-menu-level1-color, #3C3950);
}

/* Infotext Texts */
.gem-infotext{
	position: relative;
}
.gem-infotext__title{
	position: relative;
}
.gem-infotext__subtitle{
	position: relative;
}
.gem-infotext__description{
	position: relative;
}

.gem-infotext__title .title-default,
.gem-infotext__subtitle .title-default,
.gem-infotext__description .title-default,
.gem-infotext__title .title-h1,
.gem-infotext__subtitle .title-h1,
.gem-infotext__description .title-h1,
.gem-infotext__title .title-h2,
.gem-infotext__subtitle .title-h2,
.gem-infotext__description .title-h2,
.gem-infotext__title .title-h3,
.gem-infotext__subtitle .title-h3,
.gem-infotext__description .title-h3,
.gem-infotext__title .title-h4,
.gem-infotext__subtitle .title-h4,
.gem-infotext__description .title-h4,
.gem-infotext__title .title-h5,
.gem-infotext__subtitle .title-h5,
.gem-infotext__description .title-h5,
.gem-infotext__title .title-h6,
.gem-infotext__subtitle .title-h6,
.gem-infotext__description .title-h6,
.gem-infotext__title .title-xlarge,
.gem-infotext__subtitle .title-xlarge,
.gem-infotext__description .title-xlarge,
.gem-infotext__title .styled-subtitle,
.gem-infotext__subtitle .styled-subtitle,
.gem-infotext__description .styled-subtitle,
.gem-infotext__title .text-body,
.gem-infotext__subtitle .text-body,
.gem-infotext__description .text-body,
.gem-infotext__title .text-body-tiny,
.gem-infotext__subtitle .text-body-tiny,
.gem-infotext__description .text-body-tiny{
	padding: 0;
	margin: 0;
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}
.gem-infotext__title .title-default,
.gem-infotext__subtitle .title-default,
.gem-infotext__description .title-default {
	font-family: var(--thegem-to-menu-font-family, 'Montserrat');
	font-style: var(--thegem-to-menu-font-style, normal);
	font-weight: var(--thegem-to-menu-font-weight, 700);
	font-size: var(--thegem-to-menu-font-size, 14px);
	line-height: var(--thegem-to-menu-line-height, 25px);
	letter-spacing: var(--thegem-to-menu-letter-spacing, 0);
	text-transform: var(--thegem-to-menu-text-transform, uppercase);
	color: var(--thegem-to-h6-color);
}
.gem-infotext__title .title-default.light,
.gem-infotext__subtitle .title-default.light,
.gem-infotext__description .title-default.light {
	font-family: var(--thegem-to-light-title-font-family);
	font-style: var(--thegem-to-light-title-font-style);
	font-weight: normal;
}
.gem-infotext__title .text-body,
.gem-infotext__subtitle .text-body,
.gem-infotext__description .text-body{
	font-family: var(--thegem-to-body-font-family);
	font-style: var(--thegem-to-body-font-style);
	font-weight: var(--thegem-to-body-font-weight);
	font-size: var(--thegem-to-body-font-size);
	line-height: var(--thegem-to-body-line-height);
	letter-spacing: var(--thegem-to-body-letter-spacing);
	text-transform: var(--thegem-to-body-text-transform);
}
.gem-infotext__title .text-body-tiny,
.gem-infotext__subtitle .text-body-tiny,
.gem-infotext__description .text-body-tiny{
	font-family: var(--thegem-to-body-tiny-font-family);
	font-style: var(--thegem-to-body-tiny-font-style);
	font-weight: var(--thegem-to-body-tiny-font-weight);
	font-size: var(--thegem-to-body-tiny-font-size);
	line-height: var(--thegem-to-body-tiny-line-height);
	letter-spacing: var(--thegem-to-body-tiny-letter-spacing);
	text-transform: var(--thegem-to-body-tiny-text-transform);
}

.gem-infotext a:hover .gem-infotext-icon .gem-icon-half-1,
.gem-infotext a:hover .gem-infotext-icon .gem-icon-half-2,
.gem-infotext a:hover .gem-infotext .title-customize,
.gem-infotext a:hover .gem-infotext .subtitle-customize,
.gem-infotext a:hover .gem-infotext .description-customize{
	color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}
.hover-fade .portfolio-item .image .image-inner.fallback-zooming img,
.hover-fade .gallery-item .overlay-wrap .image-wrap.fallback-zooming img {
	overflow: hidden;
	-webkit-transform: translate(0,0) scale(1);
	transform: translate(0,0) scale(1);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .image-inner.fallback-zooming img,
.hover-fade .gallery-item:is(:hover, .hover-effect) .overlay-wrap .image-wrap.fallback-zooming img {
	-webkit-transform: translate(0,0) scale(1.12);
	transform: translate(0,0) scale(1.12);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.hover-fade .portfolio-item .image .image-inner.fallback-sliding img,
.hover-fade .gallery-item .overlay-wrap .image-wrap.fallback-sliding img {
	overflow: hidden;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .image-inner.fallback-sliding img,
.hover-fade .gallery-item:is(:hover, .hover-effect) .overlay-wrap .image-wrap.fallback-zooming img {
	-webkit-transform: translateX(-5%);
	transform: translateX(-5%);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.news-grid.hover-fade .portfolio-item:is(:hover, .hover-effect) .image.format-video.has-post-thumbnail .image-inner img {
	-webkit-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1);
}

.hover-fade .portfolio-item .image .overlay,
.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay,
.hover-fade .gallery-item .overlay-wrap .overlay,
.hover-fade .gallery-item:is(:hover, .hover-effect) .overlay-wrap .overlay {
	display: block;
	-webkit-transition: background 0.5s 0.2s;
	transition: background 0.5s 0.2s;
}

.hover-fade .portfolio-item .image .overlay:before,
.hover-fade .gallery-item .overlay-wrap .overlay:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	z-index: -2;
	opacity: 0;
	-webkit-transition: opacity 0.5s 0.2s;
	transition: opacity 0.5s 0.2s;
	background: transparent;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay:before,
.hover-fade .gallery-item:is(:hover, .hover-effect) .overlay-wrap .overlay:before {
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.hover-fade .portfolio-item .image .overlay:after,
.hover-fade .gallery-item .overlay-wrap .overlay:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	opacity: 1;
	background: none;
}

.hover-fade.title-on-page.title-style-dark .portfolio-item .image .overlay:after {
	display: none;
}

.hover-fade .portfolio-item .image .overlay .links .portfolio-icons > .icon,
.hover-fade .portfolio-item .image .overlay .links .portfolio-icons-inner > .icon,
.hover-fade .gallery-item .overlay .overlay-content-inner a.icon,
.portfolio.products.hover-fade .portfolio-item .image .overlay .portfolio-icons.product-bottom a.added_to_cart {
	opacity: 0;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	will-change: transform;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: opacity 0.3s 0.2s, -webkit-transform 0s 0.5s, top 0.3s 0.2s;
	transition: opacity 0.3s 0.2s, transform 0s 0.5s, top 0.3s 0.2s;
}

.hover-fade .gallery-item .overlay .overlay-content-inner a.icon.link {
	margin-left: 10px;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon,
.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon,
.hover-fade .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon,
.portfolio.products.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .portfolio-icons.product-bottom a.added_to_cart {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: top 0s;
	transition: top 0s;
}

.portfolio.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .yith-wcwl-add-to-wishlist.added.icon:hover,
.portfolio.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .yith-wcwl-add-to-wishlist.added.icon:hover {
	-webkit-transform: none;
	transform: none;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon:nth-child(1),
.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon:nth-child(1),
.hover-fade .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon:nth-child(1) {
	-webkit-transition: opacity 0.5s 0s, background-color 0.3s 0s, color 0.3s 0s, -webkit-transform 0.4s 0s;
	transition: opacity 0.5s 0s, background-color 0.3s 0s, color 0.3s 0s, transform 0.4s 0s;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon:nth-child(2),
.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon:nth-child(2),
.hover-fade .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon:nth-child(2) {
	-webkit-transition: opacity 0.5s 0.05s, background-color 0.3s 0s, color 0.3s 0s, -webkit-transform 0.4s 0.05s;
	transition: opacity 0.5s 0.05s, background-color 0.3s 0s, color 0.3s 0s, transform 0.4s 0.05s;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon:nth-child(3),
.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon:nth-child(3),
.hover-fade .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon:nth-child(3),
.portfolio.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .yith-wcwl-add-to-wishlist a.icon,
.portfolio.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .yith-wcwl-add-to-wishlist a.icon {
	-webkit-transition: opacity 0.5s 0.1s, background-color 0.3s 0s, color 0.3s 0s, -webkit-transform 0.4s 0.1s;
	transition: opacity 0.5s 0.1s, background-color 0.3s 0s, color 0.3s 0s, transform 0.4s 0.1s;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon:nth-child(4),
.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon:nth-child(4),
.hover-fade .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon:nth-child(4) {
	-webkit-transition: opacity 0.5s 0.15s, background-color 0.3s 0s, color 0.3s 0s, -webkit-transform 0.4s 0.15s;
	transition: opacity 0.5s 0.15s, background-color 0.3s 0s, color 0.3s 0s, transform 0.4s 0.15s;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon:nth-child(5),
.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon:nth-child(5),
.hover-fade .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon:nth-child(5) {
	-webkit-transition: opacity 0.5s 0.2s, background-color 0.3s 0s, color 0.3s 0s, -webkit-transform 0.4s 0.2s;
	transition: opacity 0.5s 0.2s, background-color 0.3s 0s, color 0.3s 0s, transform 0.4s 0.2s;
}

.hover-fade .portfolio-item .image .links .caption .title,
.hover-fade .portfolio-item .image .links .caption .categories,
.products.hover-fade.title-on-hover .portfolio-item .image .links .caption .product-info {
	opacity: 0;
	top: 200px;
	vertical-align: middle;
	position: relative;
	-webkit-transition: -webkit-transform 0s 0.5s, opacity 0.3s 0.1s, top 0.3s 0.1s;
	transition: transform 0s 0.5s, opacity 0.3s 0.1s, top 0.3s 0.1s;
}

.hover-fade .gallery-item .overlay .overlay-content-inner .title {
	opacity: 0;
	top: 200px;
	display: block;
	vertical-align: middle;
	position: relative;
	margin-top: 35px;
	will-change: transform;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0s 0.5s, opacity 0.3s 0.1s, top 0.3s 0.1s;
	transition: transform 0s 0.5s, opacity 0.3s 0.1s, top 0.3s 0.1s;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .links .caption .title,
.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .links .caption .categories,
.products.hover-fade.title-on-hover .portfolio-item:is(:hover, .hover-effect) .image .links .caption .product-info {
	opacity: 1;
	top: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.3s 0.1s, opacity 0.3s 0.1s, top 0s;
	transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, top 0s;
}

.products.hover-fade.title-on-page .portfolio-item.has-rating .image .links .caption .product-info {
	position: relative;
	-webkit-transition: padding 0.3s;
	transition: padding 0.3s;
}

.hover-fade .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner .title {
	opacity: 1;
	top: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.3s 0.1s, opacity 0.3s 0.1s, top 0s;
	transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, top 0s;
}

.hover-fade .portfolio-item .image .links .caption .info {
	opacity: 0;
	top: 200px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	will-change: transform;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0s 0.5s, opacity 0.3s 0.1s, top 0.3s 0.1s;
	transition: transform 0s 0.5s, opacity 0.3s 0.1s, top 0.3s 0.1s;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .links .caption .info {
	opacity: 1;
	top: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.3s 0.1s, opacity 0.3s 0.1s, top 0s;
	transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, top 0s;
}

.hover-fade .portfolio-item .image .links .caption .description {
	opacity: 1;
	position: static;
}

.portfolio.hover-fade.fullwidth-columns-4 .fullwidth-block .portfolio-item .image .overlay .links .caption .subtitle {
	opacity: 0;
	top: 320px;
	position: absolute;
	will-change: transform;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0s 0.5s, opacity 0.3s 0.1s, top 0.3s 0.1s;
	transition: transform 0s 0.5s, opacity 0.3s 0.1s, top 0.3s 0.1s;
}

.portfolio.hover-fade.fullwidth-columns-4 .fullwidth-block .portfolio-item.double-item .image .overlay .links .caption .subtitle {
	top: 350px;
}

.portfolio.hover-fade.fullwidth-columns-4 .fullwidth-block .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .caption .subtitle {
	opacity: 1;
	top: 120px;
	display: block;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.3s 0.1s, opacity 0.3s 0.1s, top 0s;
	transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, top 0s;
}

.portfolio.hover-fade.fullwidth-columns-4 .fullwidth-block .portfolio-item.double-item:is(:hover, .hover-effect) .image .overlay .links .caption .subtitle {
	top: 150px;
}

.hover-fade .portfolio-item .image .overlay .links .portfolio-sharing-pane {
	opacity: 0;
	margin-top: 0;
	margin-bottom: 0;
	will-change: transform;
	-webkit-transform: translateY(-1000px);
	transform: translateY(-1000px);
	-webkit-transition: opacity 0.3s, margin 0.3s 0.3s, -webkit-transform 0s;
	transition: opacity 0.3s, margin 0.3s 0.3s, transform 0s;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane {
	visibility: hidden;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: opacity 0.5s, -webkit-transform 0s, margin 0.3s;
	transition: opacity 0.5s, transform 0s, margin 0.3s;
}

.hover-fade .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane.active {
	opacity: 1;
	visibility: visible;
	margin-top: 20px;
	margin-bottom: 0;
	-webkit-transition: opacity 0.5s, margin 0.3s;
	transition: opacity 0.5s, margin 0.3s;
}

.gem-gallery-grid.hover-fade.fullwidth-columns-4 .gallery-item .overlay .overlay-content-inner .subtitle {
	opacity: 0;
	display: inline-block;
	vertical-align: middle;
	top: 280px;
	max-width: 70%;
	overflow: hidden;
	position: absolute;
	will-change: transform;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0s 0.5s, opacity 0.3s 0.1s, top 0.3s 0.1s;
	transition: transform 0s 0.5s, opacity 0.3s 0.1s, top 0.3s 0.1s;
}

.gem-gallery-grid.hover-fade.fullwidth-columns-4 .gallery-item.double-item .overlay .overlay-content-inner .subtitle {
	top: 310px;
}

.gem-gallery-grid.hover-fade.fullwidth-columns-4 .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner .subtitle {
	opacity: 1;
	top: 80px;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.3s 0.1s, opacity 0.3s 0.1s, top 0s;
	transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, top 0s;
}

.gem-gallery-grid.hover-fade.fullwidth-columns-4 .gallery-item.double-item:is(:hover, .hover-effect) .overlay .overlay-content-inner .subtitle {
	top: 110px;
}
.items-animations-timer-element {
    font-size: 0;
    line-height: 1;
    height: 0;

    -webkit-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;

    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.items-animations-timer-element.start-timer {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}

/* Move Up */
.item-animation-move-up .item-animations-inited.before-start {
    -moz-transform: translateY(40px) !important;
    -ms-transform: translateY(40px) !important;
    -webkit-transform: translateY(40px) !important;
    -o-transform: translateY(40px) !important;
    transform: translateY(40px) !important;

    zoom: 1;
    -webkit-opacity: 0 !important;
    -moz-opacity: 0 !important;
    filter: alpha(opacity=0) !important;
    opacity: 0 !important;
}

.item-animation-move-up .item-animations-inited.before-start.start-animation {
    -o-transition: opacity 1s, transform 1s !important;
	-webkit-transition: opacity 1s, transform 1s !important;
	transition: opacity 1s, transform 1s !important;

    -moz-transform: translateY(0px) !important;
    -ms-transform: translateY(0px) !important;
    -webkit-transform: translateY(0px) !important;
    -o-transform: translateY(0px) !important;
    transform: translateY(0px) !important;

    zoom: 1;
    -webkit-opacity: 1 !important;
    -moz-opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    opacity: 1 !important;
}


/* Bounce */
.item-animation-bounce .item-animations-inited.before-start {
    -moz-transform: scale(0.001) !important;
    -ms-transform: scale(0.001) !important;
    -webkit-transform: scale(0.001) !important;
    -o-transform: scale(0.001) !important;
    transform: scale(0.001) !important;

    zoom: 1;
    -webkit-opacity: 0 !important;
    -moz-opacity: 0 !important;
    filter: alpha(opacity=0) !important;
    opacity: 0 !important;
}

.item-animation-bounce .item-animations-inited.before-start.start-animation {
    -o-transition: opacity 0.4s, transform 0.4s !important;
	-webkit-transition: opacity 0.4s, transform 0.4s !important;
	transition: opacity 0.4s, transform 0.4s !important;

    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
    -o-transform: scale(1) !important;
    transform: scale(1) !important;

    zoom: 1;
    -webkit-opacity: 1 !important;
    -moz-opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    opacity: 1 !important;
}

/* Fade In */
.item-animation-fade-in .item-animations-inited.before-start {
    zoom: 1;
    -webkit-opacity: 0 !important;
    -moz-opacity: 0 !important;
    filter: alpha(opacity=0) !important;
    opacity: 0 !important;
}

.item-animation-fade-in .item-animations-inited.before-start.start-animation {
    -o-transition: opacity 0.7s !important;
	-webkit-transition: opacity 0.7s !important;
	transition: opacity 0.7s !important;

    -webkit-opacity: 1 !important;
    -moz-opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    opacity: 1 !important;
}

/* Scale */
.item-animation-scale .item-animations-inited.before-start {
    -moz-transform: scale(0.001) !important;
    -ms-transform: scale(0.001) !important;
    -webkit-transform: scale(0.001) !important;
    -o-transform: scale(0.001) !important;
    transform: scale(0.001) !important;
}

.item-animation-scale .item-animations-inited.before-start.start-animation {
    -o-transition: transform 0.57s ease-in-out !important;
	-webkit-transition: transform 0.57s ease-in-out !important;
	transition: opacity transform 0.57s ease-in-out !important;

    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
    -o-transform: scale(1) !important;
    transform: scale(1) !important;
}

/* Flip */
.item-animation-flip .item-animations-inited.before-start {
    -moz-transform: rotate3d(1, 0, 0, -80deg) !important;
    -ms-transform: rotate3d(1, 0, 0, -80deg) !important;
    -webkit-transform: rotate3d(1, 0, 0, -80deg) !important;
    -o-transform: rotate3d(1, 0, 0, -80deg) !important;
    transform: rotate3d(1, 0, 0, -80deg) !important;

    zoom: 1;
    -webkit-opacity: 0 !important;
    -moz-opacity: 0 !important;
    filter: alpha(opacity=0) !important;
    opacity: 0 !important;
}

.item-animation-flip .item-animations-inited.before-start.start-animation {
    -o-transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out !important;
	-webkit-transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out !important;
	transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out !important;

    -moz-transform: rotate3d(0, 0, 0, 0deg) !important;
    -ms-transform: rotate3d(0, 0, 0, 0deg) !important;
    -webkit-transform: rotate3d(0, 0, 0, 0deg) !important;
    -o-transform: rotate3d(0, 0, 0, 0deg) !important;
    transform: rotate3d(0, 0, 0, 0deg) !important;

    -webkit-opacity: 1 !important;
    -moz-opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    opacity: 1 !important;
}

/* Fall Rerspective */
.item-animation-fall-perspective .item-animations-inited.before-start {
    -moz-transform: translateZ(400px) translateY(300px) rotateX(-65deg) !important;
    -ms-transform: translateZ(400px) translateY(300px) rotateX(-65deg) !important;
    -webkit-transform: translateZ(400px) translateY(300px) rotateX(-65deg) !important;
    -o-transform: translateZ(400px) translateY(300px) rotateX(-65deg) !important;
    transform: translateZ(400px) translateY(300px) rotateX(-65deg) !important;

    zoom: 1;
    -webkit-opacity: 0 !important;
    -moz-opacity: 0 !important;
    filter: alpha(opacity=0) !important;
    opacity: 0 !important;
}

.item-animation-fall-perspective .item-animations-inited.before-start.start-animation {
    -o-transition: opacity 0.75s ease-in-out, transform 0.75s ease-in-out !important;
	-webkit-transition: opacity 0.75s ease-in-out, transform 0.75s ease-in-out !important;
	transition: opacity 0.75s ease-in-out, transform 0.75s ease-in-out !important;

    -moz-transform: translateZ(0px) translateY(0px) rotateX(0deg) !important;
    -ms-transform: translateZ(0px) translateY(0px) rotateX(0deg) !important;
    -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg) !important;
    -o-transform: translateZ(0px) translateY(0px) rotateX(0deg) !important;
    transform: translateZ(0px) translateY(0px) rotateX(0deg) !important;

    -webkit-opacity: 1 !important;
    -moz-opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    opacity: 1 !important;
}

.thegem-menu-custom .menu-custom-header {
	margin-top: 0;
	margin-bottom: 11px;
}
.thegem-menu-custom .menu-custom-header.main-menu-item {
	color: var(--thegem-to-h6-color);
}
.thegem-menu-custom .menu-custom-header a, .thegem-menu-custom .menu-custom-header > span {
	display: flex;
	align-items: center;
}
.thegem-menu-custom .menu-custom-header:not(:hover) a {
	color: inherit;
}
.thegem-menu-custom .menu-custom-header .separator {
	display: flex;
	font-size: 0;
	line-height: 0;
	margin-top: 14px;
}
.thegem-menu-custom .menu-custom-header .separator span {
	width: 200px;
	display: block;
	background-color: var(--thegem-to-divider-color, #dfe5e8);
}
.thegem-menu-custom .menu-custom-header.light {
	font-family: var(--thegem-to-light-title-font-family);
	font-style: var(--thegem-to-light-title-font-style);
	font-weight: normal;
}
.thegem-menu-custom ul.nav-menu-custom,
.thegem-menu-custom ul.nav-menu-custom ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.thegem-menu-custom.thegem-menu-custom--vertical.thegem-menu-custom--flex-start ul.nav-menu-custom ul {
	padding-left: 30px;
}
.thegem-menu-custom.thegem-menu-custom--vertical.thegem-menu-custom--flex-end ul.nav-menu-custom ul {
	padding-right: 30px;
}
.thegem-menu-custom.thegem-menu-custom--vertical.thegem-menu-custom--center ul.nav-menu-custom ul {
	padding-top: 20px;
	padding-bottom: 20px;
}
.thegem-menu-custom ul.nav-menu-custom li {
	margin: 0;
}
.thegem-menu-custom ul.nav-menu-custom li.default-colors {
	color: #3c3950;
}
.thegem-menu-custom ul.nav-menu-custom li a,
.thegem-menu-custom ul.nav-menu-custom li > span {
	display: flex !important;
	align-items: center;
	padding: 0.5em 0.7em;
	margin-left: -0.7em;
	margin-right: -0.7em;
	transition: all 0.3s;
}
.thegem-menu-custom ul.nav-menu-custom li:not(:hover) a {
	color: inherit;
}
.thegem-menu-custom .icon {
	display: block;
	width: 16px;
	margin-right: 12px;
	text-align: center;
	flex: none;
}
.thegem-menu-custom .icon i {
	display: block;
	font-size: inherit;
}
.thegem-menu-custom .label {
	color: #ffffff;
	background-color: var(--thegem-to-styled-color1, #00BCD4);
	font-size: var(--thegem-to-h6-font-size-tiny, 7px);
	line-height: 1;
	padding: 0.3em 0.5em;
	margin: 0 0 0 10px;
	vertical-align: middle;
}
/* Custom Menu */
.thegem-menu-custom.thegem-menu-custom--horizontal ul.nav-menu-custom{
	display: flex;
	flex-wrap: wrap;
}
.thegem-menu-custom.thegem-menu-custom--horizontal ul.nav-menu-custom li{
	position: relative;
}
.thegem-menu-custom.thegem-menu-custom--horizontal.menu-separator ul.nav-menu-custom li:not(:last-child):before{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 1px;
	height: 100%;
	background-color: var(--thegem-to-box-border-color);
	z-index: 2;
}
.thegem-menu-custom.thegem-menu-custom--vertical.vertical-menu-separator ul.nav-menu-custom > li {
	position: relative;
}
.thegem-menu-custom.thegem-menu-custom--vertical.vertical-menu-separator ul.nav-menu-custom > li:not(:last-child):before{
	content: '';
	position: absolute;
	left: 50%;
	transform: translate(-50%, 50%);
	bottom: 0;
	height: 1px;
	width: 100%;
	background-color: var(--thegem-to-box-border-color);
	z-index: 2;
}
.thegem-menu-custom.thegem-menu-custom--horizontal ul.nav-menu-custom li a,
.thegem-menu-custom.thegem-menu-custom--horizontal ul.nav-menu-custom li > span {
	margin: 0;
}
.thegem-menu-custom.thegem-menu-custom--horizontal.thegem-menu-custom--left ul.nav-menu-custom li:first-child a,
.thegem-menu-custom.thegem-menu-custom--horizontal.thegem-menu-custom--left ul.nav-menu-custom li:first-child > span {
	margin-left: -0.7em;
}
.thegem-menu-custom.thegem-menu-custom--horizontal.thegem-menu-custom--right ul.nav-menu-custom li:last-child a,
.thegem-menu-custom.thegem-menu-custom--horizontal.thegem-menu-custom--right ul.nav-menu-custom li:last-child > span {
	margin-right: -0.7em;
}
.thegem-menu-custom.menu-indicator ul.nav-menu-custom li a i.indicator{
	position: relative;
	display: flex;
	align-items: center;
}
.thegem-menu-custom.menu-indicator ul.nav-menu-custom li a i.indicator:before{
	content: "\e601";
	font-family: "thegem-icons";
	font-weight: normal;
	font-style: normal;
	line-height: inherit;
	font-size: inherit;
}
.thegem-menu-custom .menu-custom-header .icon{
	width: auto;
}

/* Custom Menu Hover and Active Pointers */
.thegem-menu-custom ul.nav-menu-custom li > a{
	position: relative;
	z-index: 1;
}
.thegem-menu-custom ul.nav-menu-custom li > a .text{
	position: relative;
	display: inline-flex;
}
.thegem-menu-custom ul.nav-menu-custom li > a:after,
.thegem-menu-custom ul.nav-menu-custom li > a:before,
.thegem-menu-custom ul.nav-menu-custom li > a .text:before,
.thegem-menu-custom ul.nav-menu-custom li > a .text:after{
	display: block;
	position: absolute;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-webkit-transition-timing-function: cubic-bezier(.58,.3,.005,1);
	-o-transition-timing-function: cubic-bezier(.58,.3,.005,1);
	transition-timing-function: cubic-bezier(.58,.3,.005,1);
}
.thegem-menu-custom ul.nav-menu-custom li > a:before {
	z-index: -1;
}
.thegem-menu-custom ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after{
	opacity: 0;
}
.thegem-menu-custom ul.nav-menu-custom li:hover > a{
	background-color: transparent;
}

/* Custom Menu Style Hover Background */
.thegem-menu-custom.style-hover-background ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.menu-item-active > a:before,
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.menu-item-current > a:before,
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.collapsed > a:before,
.thegem-menu-custom.style-hover-background ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.menu-item-active > a:after,
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.menu-item-current > a:after,
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.collapsed > a:after {
	content: '';
	transition: 0.3s;
}
.thegem-menu-custom.style-hover-background ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a,
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.menu-item-active > a,
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.menu-item-current > a,
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.collapsed > a {
	color: var(--thegem-to-menu-level1-light-active-color);
}
.thegem-menu-custom.style-hover-background ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before{
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--thegem-to-menu-level1-color-hover);
	z-index: -1;
}
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.menu-item-active > a:before,
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.menu-item-current > a:before,
.thegem-menu-custom.style-active-background ul.nav-menu-custom li.collapsed > a:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--thegem-to-menu-level1-color-hover);
	z-index: -1;
}
.thegem-menu-custom.style-hover-background.style-hover-type-background-underline ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom li.menu-item-active > a:after,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom li.menu-item-current > a:after,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom li.collapsed > a:after {
	height: 2px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--thegem-to-menu-level2-border-color, #DFE5E8);
	z-index: 2;
}
.thegem-menu-custom.style-hover-background.style-hover-type-background-underline ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom li.menu-item-active > a,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom li.menu-item-current > a,
.thegem-menu-custom.style-active-background.style-active-type-background-underline ul.nav-menu-custom li.collapsed > a {
	color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}
.thegem-menu-custom.style-hover-background.style-hover-type-background-rounded ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom li.menu-item-active > a,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom li.menu-item-current > a,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom li.collapsed > a {
	color: var(--thegem-to-menu-level1-light-active-color);
}
.thegem-menu-custom.style-hover-background.style-hover-type-background-rounded ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom li.menu-item-active > a:before,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom li.menu-item-current > a:before,
.thegem-menu-custom.style-active-background.style-active-type-background-rounded ul.nav-menu-custom li.collapsed > a:before {
	background-color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
	border-radius: 20px;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-grow ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-grow ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	transform: scale(0.5);
}
.thegem-menu-custom.style-hover-background.style-hover-animation-grow ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-grow ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:after {
	transform: scale(1);
	opacity: 1;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-shrink ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-shrink ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	transform: scale(1.2);
	transition: 0.3s;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-shrink ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-shrink ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:after {
	transition: opacity 0.15s, transform 0.4s;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-left ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-left ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	left: 100%;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-right ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-right ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	right: 100%;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-up ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-up ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	top: 100%;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-down ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-sweep-down ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	bottom: 100%;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-none,
.thegem-menu-custom.style-hover-background.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a {
	transition-duration: 0s;
}
.thegem-menu-custom.style-hover-background.style-hover-animation-none:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-none:after,
.thegem-menu-custom.style-hover-background.style-hover-animation-none:hover,
.thegem-menu-custom.style-hover-background.style-hover-animation-none:focus,
.thegem-menu-custom.style-hover-background.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-background.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	transition-duration: 0s;
}

/* Custom Menu Style Hover Text Color */
.thegem-menu-custom.style-hover-text ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a {
	color: var(--thegem-to-menu-level1-color-hover);
}
.thegem-menu-custom.style-active-text ul.nav-menu-custom li.menu-item-active > a,
.thegem-menu-custom.style-active-text ul.nav-menu-custom li.menu-item-current > a,
.thegem-menu-custom.style-active-text ul.nav-menu-custom li.collapsed > a {
	color: var(--thegem-to-menu-level1-color-hover);
}

/* Style Hover Lined */
.thegem-menu-custom.style-hover-lined ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.menu-item-active > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.menu-item-current > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.collapsed > a .text:before {
	content: '';
	top: 0;
}
.thegem-menu-custom.style-hover-lined ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.menu-item-active > a .text:after,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.menu-item-current > a .text:after,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.collapsed > a .text:after {
	content: '';
	bottom: 0;
}
.thegem-menu-custom.style-hover-lined.style-hover-type-line-underline-1 ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-type-line-underline-2 ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-type-line-overline-1 ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after,
.thegem-menu-custom.style-hover-lined.style-hover-type-line-overline-2 ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-1 ul.nav-menu-custom li.menu-item-active > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-2 ul.nav-menu-custom li.menu-item-active > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-1 ul.nav-menu-custom li.menu-item-active > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-2 ul.nav-menu-custom li.menu-item-active > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-1 ul.nav-menu-custom li.menu-item-current > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-2 ul.nav-menu-custom li.menu-item-current > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-1 ul.nav-menu-custom li.menu-item-current > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-2 ul.nav-menu-custom li.menu-item-current > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-1 ul.nav-menu-custom li.collapsed > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-underline-2 ul.nav-menu-custom li.collapsed > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-1 ul.nav-menu-custom li.collapsed > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-overline-2 ul.nav-menu-custom li.collapsed > a .text:after {
	content: none;
}
.thegem-menu-custom.style-hover-lined ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a{
	color: var(--thegem-to-menu-level1-color-hover);
}
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.menu-item-active > a,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.menu-item-current > a,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.collapsed > a {
	color: var(--thegem-to-menu-level1-color-hover);
}
.thegem-menu-custom.style-hover-lined ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a .text:before,
.thegem-menu-custom.style-hover-lined ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a .text:after{
	height: 2px;
	width: 100%;
	left: 0;
	background-color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
	z-index: 2;
}
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.menu-item-active > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.menu-item-current > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.collapsed > a .text:before,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.menu-item-active > a .text:after,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.menu-item-current > a .text:after,
.thegem-menu-custom.style-active-lined ul.nav-menu-custom li.collapsed > a .text:after {
	height: 2px;
	width: 100%;
	left: 0;
	background-color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
	z-index: 2;
}
.thegem-menu-custom.style-hover-lined.style-hover-type-line-top-bottom ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom li.menu-item-active > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom li.menu-item-current > a .text:before,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom li.collapsed > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-type-line-top-bottom ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom li.menu-item-active > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom li.menu-item-current > a .text:after,
.thegem-menu-custom.style-active-lined.style-active-type-line-top-bottom ul.nav-menu-custom li.collapsed > a .text:after {
	background-color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-grow ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-animation-grow ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after {
	height: 0;
	width: 0;
	left: 50%;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-drop-out ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before {
	top: 10px;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-drop-out ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after {
	bottom: 10px;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-drop-in ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before {
	top: -10px;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-drop-in ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after {
	bottom: -10px;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-none,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text {
	transition-duration: 0s;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-none:before,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none:after,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none:hover,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none:focus,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:hover,
.thegem-menu-custom.style-hover-lined.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:focus {
	transition-duration: 0s;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-slide-right ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-animation-slide-right ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after {
	width: 10px;
	left: -20px;
}
.thegem-menu-custom.style-hover-lined.style-hover-animation-slide-left ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:before,
.thegem-menu-custom.style-hover-lined.style-hover-animation-slide-left ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a .text:after {
	width: 10px;
	left: calc(100% + 20px);
}

/* Style Hover Framed */
.thegem-menu-custom.style-hover-framed.style-hover-type-frame-rounded ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom li.menu-item-active > a,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom li.menu-item-current > a,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom li.collapsed > a,
.thegem-menu-custom.style-hover-framed.style-hover-type-frame-rounded ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom li.menu-item-active > a:before,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom li.menu-item-current > a:before,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom li.collapsed > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-type-frame-rounded ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom li.menu-item-active > a:after,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom li.menu-item-current > a:after,
.thegem-menu-custom.style-active-framed.style-active-type-frame-rounded ul.nav-menu-custom li.collapsed > a:after {
	border-radius: 20px;
}
.thegem-menu-custom.style-hover-framed ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom li.menu-item-active > a,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom li.menu-item-current > a {
	color: var(--thegem-to-menu-level1-color-hover, #00BCD4);
}
.thegem-menu-custom.style-hover-framed ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom li.menu-item-active > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom li.menu-item-current > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom li.collapsed > a:before,
.thegem-menu-custom.style-hover-framed ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom li.menu-item-active > a:after,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom li.menu-item-current > a:after,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom li.collapsed > a:after {
	background: transparent;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	border: 2px solid var(--thegem-to-menu-level1-color-hover, #00BCD4);
}
.thegem-menu-custom.style-hover-framed ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom li.menu-item-active > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom li.menu-item-current > a:before,
.thegem-menu-custom.style-active-framed ul.nav-menu-custom li.collapsed > a:before {
	content: '';
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-grow ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before {
	transform: scale(0.75);
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-shrink ul.nav-menu-custom li:not(:hover):not(:focus):not(.highlighted):not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before {
	transform: scale(1.25);
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-grow ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-shrink ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before {
	transition: opacity 0.2s, transform 0.4s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	width: 2px;
	height: 2px;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before {
	border-width: 0 0 2px 2px;
	transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	content: '';
	top: initial;
	bottom: 0;
	left: initial;
	right: 0;
	border-width: 2px 2px 0 0;
	transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:after {
	width: 100% !important;
	height: 100% !important;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before {
	transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-draw ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:after {
	transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	width: 2px;
	height: 2px;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before {
	border-width: 2px 0 0 2px;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after {
	content: '';
	top: initial;
	bottom: 0;
	left: initial;
	right: 0;
	border-width: 0 2px 2px 0;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-corners ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a:after {
	width: 100% !important;
	height: 100% !important;
	transition: opacity 0.002s, width 0.4s, height 0.4s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-none,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a {
	transition-duration: 0s;
}
.thegem-menu-custom.style-hover-framed.style-hover-animation-none:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none:after,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none:hover,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none:focus,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:before,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed) > a:after,
.thegem-menu-custom.style-hover-framed.style-hover-animation-none ul.nav-menu-custom li:not(.menu-item-active):not(.menu-item-current):not(.collapsed):hover > a {
	transition-duration: 0s;
}

/* Clickable */
.thegem-menu-custom.thegem-menu-custom--clickable ul.nav-menu-custom ul {
	display: none;
	list-style-type: none;
}
.thegem-menu-custom.thegem-menu-custom--clickable ul.nav-menu-custom a .text{
	position: relative;
	display: inline-flex;
	align-items: center;
}
.thegem-menu-custom.thegem-menu-custom--clickable ul.nav-menu-custom li.menu-item-has-children > a .indicator,
.thegem-menu-custom.thegem-menu-custom--clickable ul.nav-menu-custom li.menu-item-has-children > ul > li.show-parent > a .indicator {
	position: relative;
	display: flex;
	align-items: center;
}
.thegem-menu-custom.thegem-menu-custom--clickable:not(.hide-indicator) ul.nav-menu-custom li.menu-item-has-children > a .indicator:before,
.thegem-menu-custom.thegem-menu-custom--clickable:not(.hide-indicator) ul.nav-menu-custom li.menu-item-has-children > ul > li.show-parent > a .indicator:before {
	content: "\e602";
	font-family: "thegem-icons";
	font-weight: normal;
	font-style: normal;
	line-height: inherit;
	font-size: inherit;
	width: 1em;
}
.thegem-menu-custom.thegem-menu-custom--clickable:not(.hide-indicator) ul.nav-menu-custom li.menu-item-has-children > ul > li.show-parent > a .indicator:before {
	content: "\e601";
}
.thegem-menu-custom.thegem-menu-custom--clickable:not(.hide-indicator).submenu-inlicator-alignment-before ul.nav-menu-custom li > a .indicator,
.thegem-menu-custom.thegem-menu-custom--clickable:not(.hide-indicator).thegem-menu-custom--flex-end.submenu-inlicator-alignment-stretch ul li > a .indicator {
	order: -1;
}
.thegem-menu-custom.thegem-menu-custom--clickable:not(.hide-indicator).submenu-inlicator-alignment-stretch ul.nav-menu-custom li > a .text {
	width: 100%;
	justify-content: space-between;
}
@media (min-width: 768px) {
	.thegem-menu-custom.thegem-menu-custom--clickable:not(.hide-indicator) ul.nav-menu-custom li.menu-item-has-children > ul > li.show-parent {
		display: none;
	}
}

/* Horizontal Submenu */

.thegem-menu-custom.thegem-menu-custom--dropdown ul.nav-menu-custom ul {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	top: 100%;
	left: 0;
	transition: all 0.3s;
	width: 240px;
	border: 1px solid var(--thegem-to-menu-level2-border-color, #dfe5e8);
	border-top: 0 none;
}
.thegem-menu-custom.thegem-menu-custom--dropdown ul.nav-menu-custom li:hover > ul {
	opacity: 1;
	visibility: visible;
}
.thegem-menu-custom.thegem-menu-custom--dropdown ul.nav-menu-custom ul ul {
	top: -1px;
	left: 100%;
}
.thegem-menu-custom.thegem-menu-custom--dropdown.thegem-menu-custom--flex-start ul.nav-menu-custom > li:first-child > ul {
	margin-left: -0.7em;
}
.thegem-menu-custom.thegem-menu-custom--dropdown ul.nav-menu-custom ul li {
	border-top: 1px solid var(--thegem-to-menu-level2-border-color, #dfe5e8);
}
.thegem-menu-custom.thegem-menu-custom--dropdown ul.nav-menu-custom ul li:before {
	display: none;
}
.thegem-menu-custom.thegem-menu-custom--dropdown ul.nav-menu-custom ul a {
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding: 0.8em 1.5em;
	background: #fff;
}
.thegem-menu-custom.thegem-menu-custom--dropdown:not(.hide-indicator) ul.nav-menu-custom li.menu-item-has-children > a .indicator:before {
	content: "\e602";
	font-family: "thegem-icons";
	font-weight: normal;
	font-style: normal;
	line-height: inherit;
	font-size: inherit;
	width: 1em;
	vertical-align: top;
}
.thegem-menu-custom.thegem-menu-custom--dropdown:not(.hide-indicator) ul.nav-menu-custom ul li.menu-item-has-children > a .indicator:before {
	content: "\e601";
}
.thegem-menu-custom.thegem-menu-custom--dropdown ul.nav-menu-custom ul li > a .text {
	width: 100%;
	justify-content: space-between;
}


.thegem-menu-custom.list-inlicator-alignment-after ul.nav-menu-custom li .icon,
.thegem-menu-custom.thegem-menu-custom--flex-end.list-inlicator-alignment-stretch ul.nav-menu-custom li .icon {
	order: 1;
	margin-right: 0;
}
.thegem-menu-custom.list-inlicator-alignment-stretch ul.nav-menu-custom li > a,
.thegem-menu-custom.list-inlicator-alignment-stretch ul.nav-menu-custom li > span {
	width: 100%;
	justify-content: space-between !important;
}
.thegem-menu-custom.list-inlicator-alignment-stretch ul.nav-menu-custom li icon {
	margin-right: 0;
}
