body:not(.elementor-editor-active) .lazy-loading:not(.lazy-loading-not-hide) {
    visibility: hidden;
}

body #page .lazy-loading.lazy-loading-end-animation,
body #page .lazy-loading.lazy-loading-before-start-animation {
    visibility: visible;
}

.lazy-loading-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;
}

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

.lazy-loading-timer-element {
    font-size: 0;
    line-height: 1;
    height: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;
}

/* Clip */
body .lazy-loading.lazy-loading-before-start-animation .lazy-loading-item-clip {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    zoom: 1;
}

body .lazy-loading.lazy-loading-start-animation .lazy-loading-item-clip {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);

    -moz-transition: transform 0.4s cubic-bezier(.35,.8,.25,1.34);
    -ms-transition: transform 0.4s cubic-bezier(.35,.8,.25,1.34);
    -o-transition: transform 0.4s cubic-bezier(.35,.8,.25,1.34);
	-webkit-transition: transform 0.4s cubic-bezier(.35,.8,.25,1.34);
	transition: transform 0.4s cubic-bezier(.35,.8,.25,1.34);
}


/* Fading */
body .lazy-loading.lazy-loading-before-start-animation .lazy-loading-item-fading {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;
}

body .lazy-loading.lazy-loading-start-animation .lazy-loading-item-fading {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;

    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

/* Drop right */
body .lazy-loading.lazy-loading-before-start-animation .lazy-loading-item-drop-right {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;

    -moz-transform: translateX(7%);
    -ms-transform: translateX(7%);
    -webkit-transform: translateX(7%);
    -o-transform: translateX(7%);
    transform: translateX(7%);
}

body .lazy-loading.lazy-loading-start-animation .lazy-loading-item-drop-right {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;

    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);

    -moz-transition: transform 0.7s, opacity 0.7s;
    -ms-transition: transform 0.7s, opacity 0.7s;
    -o-transition: transform 0.7s, opacity 0.7s;
	-webkit-transition: transform 0.7s, opacity 0.7s;
	transition: transform 0.7s, opacity 0.7s;
}

/* Drop left */
body .lazy-loading.lazy-loading-before-start-animation .lazy-loading-item-drop-left {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;

    -moz-transform: translateX(-7%);
    -ms-transform: translateX(-7%);
    -webkit-transform: translateX(-7%);
    -o-transform: translateX(-7%);
    transform: translateX(-7%);
}

body .lazy-loading.lazy-loading-start-animation .lazy-loading-item-drop-left {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;

    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);

    -moz-transition: transform 0.7s, opacity 0.7s;
    -ms-transition: transform 0.7s, opacity 0.7s;
    -o-transition: transform 0.7s, opacity 0.7s;
	-webkit-transition: transform 0.7s, opacity 0.7s;
	transition: transform 0.7s, opacity 0.7s;
}

/* Drop bottom */
body .lazy-loading.lazy-loading-before-start-animation .lazy-loading-item-drop-bottom {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;

    -moz-transform: translateY(7%);
    -ms-transform: translateY(7%);
    -webkit-transform: translateY(7%);
    -o-transform: translateY(7%);
    transform: translateY(7%);
}

body .lazy-loading.lazy-loading-start-animation .lazy-loading-item-drop-bottom {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;

    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);

    -moz-transition: transform 0.7s, opacity 0.7s;
    -ms-transition: transform 0.7s, opacity 0.7s;
    -o-transition: transform 0.7s, opacity 0.7s;
	-webkit-transition: transform 0.7s, opacity 0.7s;
	transition: transform 0.7s, opacity 0.7s;
}

/* Drop top */
body .lazy-loading.lazy-loading-before-start-animation .lazy-loading-item-drop-top {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;

    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

body .lazy-loading.lazy-loading-start-animation .lazy-loading-item-drop-top {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;

    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);

    -moz-transition: transform 0.7s, opacity 0.7s;
    -ms-transition: transform 0.7s, opacity 0.7s;
    -o-transition: transform 0.7s, opacity 0.7s;
	-webkit-transition: transform 0.7s, opacity 0.7s;
	transition: transform 0.7s, opacity 0.7s;
}

/* Slide right */
body .lazy-loading.lazy-loading-before-start-animation .lazy-loading-item-slide-right {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;

    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}

body .lazy-loading.lazy-loading-start-animation .lazy-loading-item-slide-right {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;

    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);

    -moz-transition: transform 0.3s cubic-bezier(.33,.8,.14,1.2), opacity 0.1s;
    -ms-transition: transform 0.3s cubic-bezier(.33,.8,.14,1.2), opacity 0.1s;
    -o-transition: transform 0.3s cubic-bezier(.33,.8,.14,1.2), opacity 0.1s;
	-webkit-transition: transform 0.3s cubic-bezier(.33,.8,.14,1.2), opacity 0.1s;
	transition: transform 0.3s cubic-bezier(.33,.8,.14,1.2), opacity 0.1s;
}

/* Move up */
body .lazy-loading.lazy-loading-before-start-animation .lazy-loading-item-move-up {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;

    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
}

body .lazy-loading.lazy-loading-start-animation .lazy-loading-item-move-up {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;

    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);

    -moz-transition: transform 1s, opacity 1s;
    -ms-transition: transform 1s, opacity 1s;
    -o-transition: transform 1s, opacity 1s;
	-webkit-transition: transform 1s, opacity 1s;
	transition: transform 1s, opacity 1s;
}
.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(//esi2a.ma/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(//esi2a.ma/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(//esi2a.ma/wp-includes/js/mediaelement/mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}/* AUDIO & VIDEO PLAYER */

audio {
	height: 80px;
}
.mejs-container *:focus {
	outline: 0 none;
}
.mejs-poster {
	background-size: cover;
}
.mejs-overlay {
	width: 100%;
	height: 100%;
}
.mejs-container.mejs-audio {
	height: 80px !important;
}
.mejs-container .mejs-layers .mejs-poster {
	width: 100%;
	height: 100%;
}
.mejs-container .mejs-layers .mejs-poster img {
	display: none;
}
.mejs-container .mejs-controls,
.news-grid .format-audio .post-featured-content {
	background: #e3ebe8;
	height: 80px;
}
.mejs-container .mejs-controls div {
	font: inherit;
}
.mejs-container .mejs-controls .mejs-time {
	position: relative;
	padding: 0;
	width: 0;
	height: 0;
	color: #99a9b5;
	overflow: visible;
}
.mejs-container .mejs-controls .mejs-time .mejs-currenttime,
.mejs-container .mejs-controls .mejs-time .mejs-duration {
	position: absolute;
	top: 5px;
}
.mejs-container .mejs-controls .mejs-time .mejs-currenttime {
	margin-left: 5px;
}
.mejs-container .mejs-controls .mejs-time .mejs-duration {
	margin-left: -5px;
	transform: translateX(-100%);
}
.mejs-container .mejs-controls .mejs-button {
	width: 35px;
	height: 100%;
}
.mejs-controls .mejs-button button {
	margin: 25px 0 0 7px;
	text-align: center;
	height: 30px;
	width: 30px;
	line-height: 30px;
	outline: 0 none;
	background: none;
}
.mejs-controls .mejs-button button:focus {
	outline: 0 none;
}
.mejs-controls .mejs-button button:after {
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 30px;
}
.mejs-container .mejs-controls .mejs-button.mejs-playpause-button {
	width: 50px;
}
.mejs-controls .mejs-button.mejs-playpause-button button {
	height: 36px;
	width: 36px;
	line-height: 36px;
	margin: 22px 0 0 12px;
}
.mejs-controls .mejs-button.mejs-playpause-button.mejs-play button:after,
.mejs-controls .mejs-button.mejs-playpause-button.mejs-pause button:after {
	color: #00bcd4;
	font-size: 36px;
}
.mejs-controls .mejs-button.mejs-playpause-button.mejs-replay button:after,
.mejs-controls .mejs-button.mejs-playpause-button.mejs-play button:after {
	content: '\e655';
}
.mejs-controls .mejs-button.mejs-playpause-button.mejs-pause button:after {
	content: '\e656';
}
.mejs-controls div.mejs-time-rail {
	padding-top: 32px;
}
.mejs-controls .mejs-time-rail span, .mejs-controls .mejs-time-rail a {
	border-radius: 0;
	height: 8px;
}
.mejs-controls .mejs-time-rail span.mejs-time-float {
	height: 17px;
}
.mejs-controls .mejs-time-rail .mejs-time-total {
	background: #99a9b5;
}
.mejs-controls .mejs-time-rail .mejs-time-loaded {
	background: #ffd553;
}
.mejs-controls .mejs-time-rail .mejs-time-current {
	background: #3c3950;
}
.mejs-controls .mejs-time-rail .mejs-time-handle {
	display: none;
}
.mejs-controls .mejs-time-rail .mejs-time-handle .mejs-time-handle-content {
	display: none;
}
.mejs-controls .mejs-time-rail .mejs-time-float-current {
	font-size: 10px;
	line-height: 12px;
}
.mejs-controls .mejs-time-rail .mejs-time-float-corner {
	border-color: #3c3950 transparent transparent;
}
.mejs-controls .mejs-button.mejs-volume-button.mejs-mute button:after {
	content: '\e657';
	color: #99a9b5;
}
.mejs-controls .mejs-button.mejs-volume-button.mejs-unmute button:after {
	content: '\e658';
	color: #99a9b5;
}
.mejs-controls .mejs-button.mejs-fullscreen-button {
	width: 45px;
}
.mejs-controls .mejs-button.mejs-fullscreen-button button {
	margin-left: 5px;
}
.mejs-controls .mejs-button.mejs-fullscreen-button button:after {
	content: '\e659';
	color: #99a9b5;
}
.mejs-controls .mejs-button.mejs-fullscreen-button.mejs-unfullscreen button:after {
	content: '\e65a';
	color: #99a9b5;
}
.mejs-overlay-button {
	background: none;
	line-height: 100px;
	opacity: 0.8;
	width: 100px;
	height: 100px;
}
.mejs-overlay-button:after {
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 100px;
	content: '\e655';
	color: #ffffff;
}
.mejs-controls .mejs-volume-button .mejs-volume-slider {
	background: #f1f5f6;
	width: 36px;
	left: 5px;
	height: 110px;
	top: -80px;
	bottom: auto;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total {
	background: #99a9b5;
	width: 6px;
	left: 15px;
	top: 10px;
	height: 90px;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current {
	background: #3c3950;
	width: 6px;
	left: 15px
}
.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle {
	background: #3c3950;
	left: 50%;
	margin-left: -8px;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total .mejs-volume-current {
	width: 100%;
	left: 0;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total .mejs-volume-handle {
	margin-left: 0;
}

.mejs-controls a.mejs-horizontal-volume-slider {
	margin-top: 38px;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	border-radius: 0;
	height: 5px;
	background: #d7e0e3;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	border-radius: 0;
	height: 6px;
	background: #d7e0e3;
	top: 0px;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	border-radius: 0;
	height: 6px;
	background: #3c3950;
	top: 0px;
}
.mejs-container.mejs-audio .mejs-controls .mejs-button.mejs-volume-button {
	width: 50px;
}
.mejs-container.mejs-audio .mejs-controls .mejs-button.mejs-volume-button button {
	margin-right: 0;
}

.mejs-overlay-loading {
	background: transparent;
}

.small-item.format-video .mejs-overlay-button {
	width: 60px;
	height: 60px;
	line-height: 60px;
}

.small-item.format-video .mejs-overlay-button:after {
	font-size: 60px;
}

.small-item.format-video .mejs-container .mejs-controls .mejs-time {
	display: none;
}

.small-item.format-video .mejs-controls div.mejs-time-rail {
	padding-top: 10px;
}

.small-item.format-video .mejs-controls .mejs-time-rail span,
.small-item.format-video .mejs-controls .mejs-time-rail a {
	height: 5px;
}

.small-item.format-video .mejs-controls .mejs-time-rail .mejs-time-handle {
	height: 17px;
	margin-top: -10px;
}

.small-item.format-video .mejs-controls .mejs-button.mejs-playpause-button button {
	width: 27px;
	height: 27px;
	line-height: 27px;
	margin: 4px 0 0 0;
}

.small-item.format-video .mejs-controls .mejs-button.mejs-playpause-button.mejs-play button:after,
.small-item.format-video .mejs-controls .mejs-button.mejs-playpause-button.mejs-pause button:after {
	font-size: 27px;
}

.small-item.format-video .mejs-controls .mejs-button,
.small-item.format-video .mejs-controls .mejs-button.mejs-fullscreen-button {
	width: 30px;
}

.small-item.format-video .mejs-controls .mejs-button.mejs-fullscreen-button {
	width: 25px;
}

.small-item.format-video .mejs-controls .mejs-button button {
	width: 25px;
	height: 25px;
	line-height: 25px;
	margin: 5px 0 0 0;
}

.small-item.format-video .mejs-controls .mejs-button button:after {
	font-size: 25px;
}

.small-item.format-video .mejs-container .mejs-controls {
	height: 38px;
}

.small-item.format-video .mejs-controls .mejs-volume-button .mejs-volume-slider {
	width: 24px;
	height: 70px;
	left: 0;
	top: -70px;
}

.small-item.format-video .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total {
	width: 4px;
	height: 50px;
	left: 10px;
}

.small-item.format-video .mejs-volume-handle {
	height: 4px;
}
.item-post-container {
	position: relative;
}

.reverse-link-color a,
a.reverse-link-color {
	color: inherit;
}

body .blog article a.youtube,
body .blog article a.vimeo,
body .blog article a.self_video {
	display: block;
	position: relative;
}
.blog.blog-style-default article a.youtube,
.blog.blog-style-default article a.vimeo,
.blog.blog-style-default article a.self_video {
	display: inline-block;
	max-width: 100%;
}
body .blog article a.youtube:before,
body .blog article a.vimeo:before,
body .blog article a.self_video:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 84px;
	height: 84px;
	margin: -42px 0 0 -42px;
	z-index: 2;
	opacity: 1;
	transition: opacity 0.2s linear;
	-moz-transition: opacity 0.2s linear;
	-webkit-transition: opacity 0.2s linear;
}
body .blog article a.youtube:after,
body .blog article a.vimeo:after,
body .blog article a.self_video:after {
	content: '\e707';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	margin-top: -18px;
	font: 37px 'thegem-user-icons';
	text-align: center;
	padding-left: 3px;
	z-index: 3;
	opacity: 1;
	transition: opacity 0.2s linear;
	-moz-transition: opacity 0.2s linear;
	-webkit-transition: opacity 0.2s linear;
}
body .blog article a.default {
	position: relative;
	display: block;
	overflow: hidden;
}
body .blog article a.default: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: 5;
}
body .blog article a.default:hover:before {
	opacity: 1;
}
body .blog article a.default:after {
	content: '\e61f';
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-style: normal;
	font-size: 48px;
	height: 48px;
	line-height: 48px;
	width: 48px;
	text-align: center;
	position: absolute;
	top: -24px;
	left: 50%;
	transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	margin-left: -24px;
	margin-top: -24px;
	z-index: 5;
}
body .blog article a.default:hover:after {
	top: 50%;
}
body .blog article a.default img {
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
}

.blog-scroll-pagination {
	visibility: hidden;
	position: relative;
}

.blog-scroll-pagination.active {
	visibility: visible;
	height: 61px;
}

@media only screen and (max-width: 600px) {
	.blog.blog-style-masonry article {
		width: 100%;
	}
}

.blog.blog-lazy-scroll article.item-lazy-scroll-not-inited {
	-webkit-transition-duration: 0s !important;
	-moz-transition-duration: 0s !important;
	-o-transition-duration: 0s !important;
	transition-duration: 0s !important;
}


.blog.blog-lazy-scroll:not(.blog-style-masonry) article.item-lazy-scroll,
.blog.blog-style-masonry.blog-lazy-scroll article.item-lazy-scroll .item-lazy-scroll-wrap {
	visibility: hidden;
}

.blog.blog-lazy-scroll:not(.blog-style-2x):not(.blog-style-3x):not(.blog-style-4x):not(.blog-style-100) article.item-lazy-scroll-showed,
.blog.blog-style-2x.blog-lazy-scroll article.item-lazy-scroll-showed .item-lazy-scroll-wrap,
.blog.blog-style-3x.blog-lazy-scroll article.item-lazy-scroll-showed .item-lazy-scroll-wrap,
.blog.blog-style-4x.blog-lazy-scroll article.item-lazy-scroll-showed .item-lazy-scroll-wrap,
.blog.blog-style-100.blog-lazy-scroll article.item-lazy-scroll-showed .item-lazy-scroll-wrap {
	visibility: visible;

	-webkit-animation: fadeInBlogItem 1s ease;
	-moz-animation: fadeInBlogItem 1s ease;
	-o-animation: fadeInBlogItem 1s ease;
	animation: fadeInBlogItem 1s ease;

	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInBlogItem {
	0% {
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px);

		zoom: 1;
		-webkit-opacity: 0;
		-moz-opacity: 0;
		filter: alpha(opacity=0);
		opacity: 0;
	}

	100% {
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);

		zoom: 1;
		-webkit-opacity: 1;
		-moz-opacity: 1;
		filter: alpha(opacity=100);
		opacity: 1;
	}
}

@-moz-keyframes fadeInBlogItem {
	0% {
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px);

		zoom: 1;
		-webkit-opacity: 0;
		-moz-opacity: 0;
		filter: alpha(opacity=0);
		opacity: 0;
	}

	100% {
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);

		zoom: 1;
		-webkit-opacity: 1;
		-moz-opacity: 1;
		filter: alpha(opacity=100);
		opacity: 1;
	}
}

@-o-keyframes fadeInBlogItem {
	0% {
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px);

		zoom: 1;
		-webkit-opacity: 0;
		-moz-opacity: 0;
		filter: alpha(opacity=0);
		opacity: 0;
	}

	100% {
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);

		zoom: 1;
		-webkit-opacity: 1;
		-moz-opacity: 1;
		filter: alpha(opacity=100);
		opacity: 1;
	}
}

@keyframes fadeInBlogItem {
	0% {
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px);

		zoom: 1;
		-webkit-opacity: 0;
		-moz-opacity: 0;
		filter: alpha(opacity=0);
		opacity: 0;
	}

	100% {
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);

		zoom: 1;
		-webkit-opacity: 1;
		-moz-opacity: 1;
		filter: alpha(opacity=100);
		opacity: 1;
	}
}

.blog-style-default article {
	margin-bottom: 55px;
	padding-bottom: 55px;
}
.blog-style-default article .post-image,
.blog-post-image {
	text-align: center;
	margin-bottom: 10px;
}
.blog-style-default article .post-image img {
	display: inline-block;
}
.blog-style-default article.sticky {
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 115px;
	padding: 15px 15px 35px;
	position: relative;
	z-index: 2;
}
.blog-style-default article.sticky:after {
	content: '';
	position: absolute;
	width: 75px;
	height: 75px;
	z-index: -1;
	bottom: -75px;
	left: 0;
	background: inherit;
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	-o-transform-origin: 0 100%;
	transform-origin: 0 100%;
	-webkit-transform: skew(0, -45deg);
	-ms-transform: skew(0, -45deg);
	-o-transform: skew(0, -45deg);
	transform: skew(0, -45deg);
}
.blog-style-default article.sticky.no-image {
	padding-top: 70px;
}
.blog-style-default article.sticky .sticky-label {
	position: absolute;
	top: 0;
	left: 50px;
	font-family: 'thegem-icons';
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	z-index: 10;
}
.blog-style-default article.sticky .sticky-label:before,
.blog-style-default article.sticky .sticky-label:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 10px;
	z-index: -1;
	bottom: -10px;
	left: 0;
	background: inherit;
}
.blog-style-default article.sticky .sticky-label:before {
	transform-origin: 0 100%;
	transform: skew(0, -20deg);
}
.blog-style-default article.sticky .sticky-label:after {
	transform-origin: 100% 100%;
	transform: skew(0, 20deg);
}
.blog-style-default article .entry-title a {
	color: inherit;
}

.blog-style-default .post-meta-right {
	margin-left: 100px;
}

.blog-style-default .item-background-wrapper {
	padding-right: 45px;
	padding-left: 45px;
	margin-bottom: -10px;
}

@media ( max-width: 767px ){
	.blog-style-default .item-background-wrapper {
		padding-right: 30px;
		padding-left: 30px;
	}
}


@media (max-width: 755px) {
	.blog-style-default .post-meta-categories {
		display: block;
		clear: both;
	}
	.blog-style-default .post-meta-author + .sep {
		display: none;
	}
	.blog-style-default .post-meta-right {
		margin-left: 30px;
	}
}

@media (max-width: 499px) {
	.blog-style-default .item-background-wrapper {
		padding-right: 15px;
		padding-left: 15px;
	}
}

/* FUTURED IMAGES HOVER */
body .blog article .post-featured-content > a{
	display: block;
	position: relative;
	overflow: hidden;
}
body .blog article .post-featured-content > a:before,
body .blog .gem-simple-gallery .gem-gallery-item a:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
body .blog article .post-featured-content > a:hover:before,
body .blog .gem-simple-gallery .gem-gallery-item a:hover:before{
	opacity: 1;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
body .blog article .post-featured-content > a:after,
body .blog .gem-simple-gallery .gem-gallery-item a:after{
	content: '\e628';
	position: absolute;
	top: 150%;
	left: 50%;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 35px;
	line-height: 70px;
	margin-top: -35px;
	margin-left: -35px;
	opacity: 0;
	text-align: center;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: top 0.4s, opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: top 0.4s, opacity 0.4s, transform 0s 0.4s;
	z-index: 10;
}
body .blog article .post-featured-content > a:hover:after,
body .blog .gem-simple-gallery .gem-gallery-item a:hover:after{
	opacity: 1;
	top: 50%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: top 0s, opacity 0.4s, -webkit-transform 0.4s;
	transition: top 0s, opacity 0.4s, transform 0.4s;
}
body .blog article .post-featured-content a > img{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.2s linear;
	transition: transform 0.2s linear;
}
body .blog article .post-featured-content a:hover > img{
	-webkit-transition: -webkit-transform 0.2s linear;
	transition: transform 0.2s linear;
}

body.search .blog.blog-style-masonry article .description {
	border-top-width: 0 !important;
	padding: 11px 17px 0px 18px;
}
body.search .blog.blog-style-masonry article {
	margin-bottom: 45px;
}
body.search .blog-style-masonry + .gem-pagination {
	text-align: center;
}
body.search .blog.blog-style-3x {
	margin: 0 -15px;
}
body.search .blog-style-masonry + .gem-pagination {
	border-top: medium none;
	margin-top: 0px;
	padding-top: 0px;
	text-align: center;
}
.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;
}
/* General */

.reverse-link-color a,
a.reverse-link-color {
	color: inherit;
}

.bloglist .post-img,
.bloglist .summary,
.bloglist .post-time,
.bloglist .post-meta,
.bloglist .post-footer-sharing,
.bloglist .post-meta-categories,
.bloglist .post-meta-author,
.bloglist .sep,
.bloglist .caption-container .wrap-style,
.bloglist .caption-container,
.bloglist .post-title a {
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
}
.bloglist .post-meta-likes a {
	-o-transition: all 0.1s;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
	-moz-transition: all 0.1s;
	-ms-transition: all 0.1s;
}

.bloglist.blog {
	margin-bottom: 0;
	padding-bottom: 0;
}

.elementor-editor-active .bloglist.lazy-loading-not-hide article,
.elementor-editor-preview .bloglist.lazy-loading-not-hide article {
	visibility: visible !important;
}

.bloglist.blog-style-default .post-title a:hover {
    color: #00bcd4;
}
.bloglist.blog-style-styled_list1 .post-title,
.bloglist.blog-style-styled_list2 .post-title {
	min-height: 28px;
}

.bloglist .post-footer-sharing .gem-button {
	display: flex;
	align-content: baseline;
	justify-content: center;
	align-items: center;
}

.bloglist-pagination .gem-pagination .prev:before,
.bloglist-pagination .gem-pagination .next:before {
	content: none;
}

.bloglist article .post-img a:hover::before {
	margin: 0 auto;
}

.bloglist:not(.blog-style-classic-tiny) article .post-featured-content>a::before {
	background-color: inherit;
}

.bloglist .post-meta {
	margin-bottom: 55px;
}

.bloglist .post-read-more .gem-widget-button.gem-button-container .gem-button.gem-button-style-outline .gem-inner-wrapper-btn{
	padding: 6px 24px;
}
.bloglist .post-read-more .gem-widget-button.gem-button-container .gem-button.gem-button-style-flat .gem-inner-wrapper-btn{
	padding: 8px 24px;
}

/* Pagination */

.bloglist-pagination .gem-pagination .dots {
	position: relative;
	display: inline-block;
	margin: 0 8px 16px 8px;
	width: 30px;
	height: 30px;
	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;
}

.bloglist-pagination .gem-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bloglist-pagination .gem-pagination .gem-pagination-links.gem-pagination-position-center {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.bloglist-pagination .gem-pagination .gem-pagination-links.gem-pagination-position-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.bloglist-pagination .gem-pagination .gem-pagination-links.gem-pagination-position-right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.bloglist-pagination .gem-pagination .prev i, .bloglist-pagination .gem-pagination .next i {
	font-size: 24px;
}

.bloglist-pagination .gem-pagination .prev i.default, .bloglist-pagination .gem-pagination .next i.default {
	font-family: 'thegem-icons';
	font-weight: normal;
	font-style: normal;
}

.bloglist-pagination .gem-pagination .prev i.default:before {
	content: '\e636';
}

.bloglist-pagination .gem-pagination .next i.default:before {
	content: '\e634';
}

.blog-load-more .gem-button:hover {
	cursor: pointer;
}


/* Sharing */

.bloglist .post-footer-sharing i {
	font-size: 16px;
	transition: all 0.3s;
}
.bloglist .post-footer-sharing i.default {
	font-family: 'thegem-icons';
	font-size: 48px;
	font-style: normal;
	display: inline-block;
	line-height: 23px;
}
.bloglist .post-footer-sharing i.default::before {
	content: '\e65c';
}

/* Comments */

.bloglist .comments-link i {
	font-size: 14px;
	color: #99a9b5;
}

.bloglist .comments-link i.default::before {
	content: '\e61e';
	font-family: 'thegem-icons';
	font-weight: normal;
	display: inline-block;
	line-height: inherit;
	font-size: 14px;
	font-style: normal;
}

.bloglist .comments-link a::before {
	content: none;
}

.bloglist .comments-link .elementor-icon,
.bloglist .comments-link .elementor-icon i {
	line-height: 16px;
}

.bloglist .comments-link .elementor-icon {
	margin-right: 6px;
}

/* Likes */

.bloglist .zilla-likes::before {
    content: none;
}

.bloglist .post-likes i {
    font-size: 16px;
    font-style: normal;
    margin-right: 6px;
}
.bloglist .post-likes svg {
	width: 16px;
	height: 16px;
	margin-top: 5px;
	margin-right: 6px;
}

.bloglist .post-meta-likes a i.default::before {
    content: '\e641';
	display: inline-block;
	font-family: "thegem-icons";
	font-weight: normal;
	line-height: inherit;
	vertical-align: top;
}

.bloglist .post-meta-likes a i {
	font-style: normal;
	margin-right: 6px;
	font-size: 16px;
}


/* Sticky */

.bloglist .sticky-label i {
	font-size: 20px;
	color: #99a9b5;
}

.bloglist .sticky-label i.default::before {
	content: '\e61a';
	font-family: 'thegem-icons';
	font-weight: normal;
	margin-right: 6px;
	display: inline-block;
	line-height: inherit;
	font-style: normal;
}

/* Style Default*/

.bloglist.blog-style-default article.sticky .sticky-label {
	position: absolute;
	top: 0;
	left: 50px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	z-index: 10;
}

.bloglist.blog-style-default article.sticky .sticky-label .elementor-icon {
	font-size: 18px;
	font-weight: normal;
}


.bloglist.blog-style-default article .post-image {
	margin-bottom: 0;
}


/* COMPACT */

.bloglist.blog-style-compact article .gem-compact-item-content:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
}

.bloglist.blog-style-compact article a.default:after,
body .blog-style-compact-tiny-1 article a.default:after {
	content: '\e628';
	border-radius: 50%;
	font-size: 16px;
	top: 150%;
	margin-top: -24px;
	margin-left: -24px;
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: top 0.4s, opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: top 0.4s, opacity 0.4s, transform 0s 0.4s;
}

.bloglist.blog-style-compact article a.default:hover:after,
body .blog-style-compact-tiny-1 article a.default:hover:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: top 0s, opacity 0.4s, -webkit-transform 0.4s;
	transition: top 0s, opacity 0.4s, transform 0.4s;
}

.bloglist.blog-style-compact .item-post-container {
	display: flex;
}

.bloglist.blog-style-compact .gem-compact-item-left {
	width: 183px;
}

.bloglist.blog-style-compact .gem-compact-item-right {
	flex-grow: 2;
	display: flex;
	flex-flow: row wrap;
	margin-left: 30px;
	min-width: 20px;
}

.bloglist.blog-style-compact .image-disabled .gem-compact-item-right {
	flex-grow: 1;
	display: flex;
	flex-flow: row wrap;
	margin-left: 0 !important;
}

.bloglist.blog-style-compact article+article {
	margin-top: 40px;
}
.bloglist.blog-style-compact article {
	background-color: transparent;
}

.bloglist .gem-compact-item-image .gem-dummy {
	width: 183px;
	height: 148px;
	border-radius: 0;
	vertical-align: top;
}

.bloglist.blog-style-compact article .post-meta {
	margin-bottom: 0;
	width: 100%;
	align-self: flex-end;
}

.bloglist.blog-style-compact article .entry-meta {
	margin-bottom: 0;
}

.bloglist.blog-style-compact article .post-title h5 {
	margin-top: -7px;
}

.bloglist.blog-style-compact article .gem-compact-item-content {
	width: 100%;
	height: 100%;
	overflow: hidden;
	align-self: flex-start;
	position: relative;
}

.bloglist.blog-style-compact .gem-compact-item-image img {
	margin: 0 auto;
}

@media (max-width: 767px) {
	.bloglist.blog-style-compact .gem-compact-item-left {
		width: auto;
		margin-right: 0;
	}
	.bloglist.blog-style-compact .gem-compact-item-right {
		flex-grow: 2;
		display: flex;
		flex-flow: row wrap;
		padding-top: 30px;
		padding-left: 0;
	}
	.bloglist.blog-style-compact .item-post-container {
		flex-direction: column;
	}
	.bloglist.blog-style-compact .gem-compact-item-right {
		margin-left: 0;
	}
	.bloglist .gem-compact-item-image .gem-dummy {
		width: 100%;
	}
	.bloglist.blog-style-compact .item-post-container {
		flex-direction: column;
	}
}


/* COMPACT-2 */

.bloglist.blog-style-compact-2 .item-post-container {
	display: flex;
	align-items: center;
}

.bloglist.blog-style-compact-2 .gem-news-item-right {
	flex-grow: 2;
	display: flex;
	flex-flow: row wrap;
	padding-left: 12px;
}

.bloglist.blog-style-compact-2 .gem-news-item-right.image-disabled {
	flex-grow: 2;
	display: flex;
	padding-left: 0;
}

.bloglist.blog-style-compact-2 .gem-news-item-right-conteiner {
	width: 100%;
	overflow: hidden;
	align-self: flex-start;
	max-height: unset;
}

.bloglist.blog-style-compact-2 .gem-news-item-meta {
	width: 100%;
	align-self: flex-end;
}

.bloglist.blog-style-compact-2 .gem-news_title-excerpt p {
	margin: 0;
}

.bloglist.blog-style-compact-2 .img-circle {
	border-radius: 50%;
}

.bloglist.blog-style-compact-2 .post-meta-likes {
	margin-right: 5px;
}

.bloglist.blog-style-compact-2 article {
	margin-bottom: 23px;
}

.bloglist.blog-style-compact-2 article a.default:before,
.bloglist.blog-style-compact-2 article a.default:after {
	content: none;
}
.bloglist.blog article.post-item .post-img a.default:before {
	background-color: rgba(255, 255, 255, 0.8);
}


/* Styled List 1 2 */

body .blog-style-styled_list1 article a.default:after {
	content: '\e628';
	border-radius: 50%;
	font-size: 16px;
	top: 150%;
	margin-top: -24px;
	margin-left: -24px;
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: top 0.4s, opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: top 0.4s, opacity 0.4s, transform 0s 0.4s;
}

body .blog-style-styled_list1 article a.default:hover:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: top 0s, opacity 0.4s, -webkit-transform 0.4s;
	transition: top 0s, opacity 0.4s, transform 0.4s;
}

body .blog-style-styled_list2 article a.default:after {
	content: '\e628';
	border-radius: 50%;
	width: 70px;
	height: 70px;
	font-size: 35px;
	line-height: 70px;
	top: 150%;
	margin-top: -35px;
	margin-left: -35px;
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: top 0.4s, opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: top 0.4s, opacity 0.4s, transform 0s 0.4s;
}

body .blog-style-styled_list2 article a.default:hover:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: top 0s, opacity 0.4s, -webkit-transform 0.4s;
	transition: top 0s, opacity 0.4s, transform 0.4s;
}

.blog-style-styled_list1 .sharing-popup {
	bottom: 50px;
}

.blog-style-styled_list1 .sticky .sharing-popup {
	bottom: 85px;
}

.blog-style-styled_list2 .sticky .sharing-popup {
	bottom: 60px;
}

.blog-style-styled_list1 .sticky .sharing-popup,
.blog-style-styled_list2 .sticky .sharing-popup,
.blog-style-styled_timeline .sticky .sharing-popup {
	left: -15px;
}

.blog-style-styled_list1 article {
	width: 100%;
	margin: 55px auto;
	border-radius: 60px;
}

.blog-style-styled_list1 article:first-child {
	margin-top: 0;
}

.blog-style-styled_list1 .post-item {
	position: relative;
	border-radius: 60px;
	margin-left: 200px;
	box-shadow: none;
	min-height: 220px;
}

.blog-style-styled_list1 article.sticky .sticky-label {
	height: 50px;
	left: -125px;
	line-height: 50px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 50px;
	z-index: 10;
}

.blog-style-styled_list1 article.sticky .sticky-label .elementor-icon {
	font-size: 18px;
}

.blog-style-styled_list1 article.sticky .sticky-label:before,
.blog-style-styled_list1 article.sticky .sticky-label:after {
	bottom: -10px;
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.blog-style-styled_list1 article.sticky .sticky-label:before {
	transform: skew(0deg, -20deg);
	transform-origin: 0 100% 0;
}

.blog-style-styled_list1 article.sticky .sticky-label:after {
	transform: skew(0deg, 20deg);
	transform-origin: 100% 100% 0;
}

.blog-style-styled_list1 .wrap-style {
	width: 50px;
	height: 100px;
	position: absolute;
	left: -50px;
	top: 50%;
	margin-top: -50px;
	transform: rotate(360deg);
	transform-origin: 0 100%;
	-webkit-transform: rotate(360deg);
	-webkit-transform-origin: 0 100%;
}

.blog-style-styled_list1 .post-info-wrap {
	position: absolute;
	left: -200px;
	top: 50%;
	margin-top: -46px;
	width: 200px;
}

.blog-style-styled_list1 .post-info-wrap.image-disabled {
	position: absolute;
	left: -200px;
	top: 57%;
	margin-top: -46px;
	width: 200px;
}

.blog-style-styled_list1 .post-info {
	text-align: center;
}

.blog-style-styled_list1 .post-img {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	margin-left: 54px;
}

.blog-style-styled_list1 .post-img a {
	border-radius: 50%;
	width: 86px;
	height: 86px;
	z-index: 1;
}

.blog-style-styled_list1 .post-img a .dummy {
	font-family: "thegem-icons";
	font-size: 24px;
	text-align: left;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -12px;
	margin-left: -12px;
	border-radius: 50%;
}

.blog-style-styled_list1 .post-img a.default::after {
	margin-top: -25px;
}

.blog-style-styled_list1 .post-img a img {
	border-radius: 50%;
}

.blog-style-styled_list1 .post-date {
	font-weight: 16px;
	margin-top: 5px;
}

.blog-style-styled_list1 .post-time {
	margin-top: 2px;
	line-height: 15px;
}

.blog-style-styled_list1 .post-text-wrap {
	padding: 0 45px 35px;
}

.blog-style-styled_list1 .post-title {
	font-size: 28px;
}

.blog-style-styled_list1 .post-content {
	margin-top: -10px;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 25px;
}

.blog-style-styled_list1 .post-misc {
	position: relative;
}

.blog-style-styled_list1 .post-author {
	font-size: 14px;
	margin-top: 25px;
	width: 100%;
	padding-right: 220px;
}

.blog-style-styled_list1 .post-soc-info {
	margin-top: 5px;
}

.blog-style-styled_list1 .post-links {
	position: absolute;
	right: 0;
	top: 0;
}

.blog-style-styled_list1 .post-read-more {
	display: inline-block;
}

.blog-style-styled_list1 .post-links .post-footer-sharing .gem-button-container>a,
.blog-style-styled_list1 .post-links .post-read-more .gem-button-container>a {
	margin-top: 5px;
}

.blog-style-styled_list1 .post-read-more a {
	margin-right: 0;
}


/* BLOG STYLE 1 STICKY */

.blog-style-styled_list1 .sticky .post-item {
	border: none;
}

.blog-style-styled_list1 .sticky .post-text-wrap {
	padding-bottom: 45px;
}

.blog-style-styled_list1 .sticky .post-title a {
	font-size: 36px;
}

.blog-style-styled_list1 .sticky .post-author {
	margin-top: 30px;
}

.blog-style-styled_list1 .sticky .wrap-style {
	width: 50px;
	height: 100px;
	position: absolute;
	left: -50px;
	top: 50%;
	margin-top: -50px;
}


/* BLOG STYLE 1 RESPONSIVE */

@media ( max-width: 767px) {
	.blog-style-styled_list1 .post,
	.blog-style-styled_list1 .post-item {
		width: 100%;
		min-width: 300px;
		border-radius: 60px;
		padding-top: 135px;
	}
	.blog-style-styled_list1 .post-info-wrap {
		width: 100%;
		left: 0;
		top: -118px;
		position: absolute;
		margin-top: 0;
	}
	.blog-style-styled_list1 .post-info {
		width: 100%;
		left: 0;
		position: relative;
		text-align: left;
	}
	.blog-style-styled_list1 .post-img {
		position: absolute;
		right: 20px;
	}
	.blog-style-styled_list1 .post-date {
		padding-top: 10px;
		width: 200px;
		text-align: center;
	}
	.blog-style-styled_list1 .post-time {
		width: 200px;
		text-align: center;
		margin-top: 5px;
		font-size: 19px;
		font-weight: bold;
	}
	.blog-style-styled_list1 .post-text-wrap {
		padding: 0 45px 35px;
	}
	.blog-style-styled_list1 .post-author {
		padding-right: 0;
	}
	.blog-style-styled_list1 .wrap-style {
		width: 50px;
		height: 100px;
		position: absolute;
		left: 50px;
		top: -100px;
		transform: rotate(90deg);
		transform-origin: 0 100%;
		-webkit-transform: rotate(90deg);
		-webkit-transform-origin: 0 100%;
	}
	.blog-style-styled_list1 .post-item {
		position: relative;
		border-radius: 45px;
		margin-left: 0;
	}
	.blog-style-styled_list1 .post-links {
		position: static;
		margin-top: 10px;
	}
	.blog-style-styled_list1 .post-text-wrap {
		padding-bottom: 30px;
	}
	.blog-style-styled_list1 .post-links .post-footer-sharing .gem-button-container>a,
	.blog-style-styled_list1 .post-links .post-read-more a,
	.blog-style-styled_list1 .post-links .post-footer-sharing .gem-button-container>a,
	.blog-style-styled_list1 .post-links .post-read-more a {
		margin-bottom: 0;
	}
	.blog-style-styled_list1 .sticky .wrap-style {
		width: 50px;
		height: 100px;
		position: absolute;
		left: 50px;
		top: -100px;
		transform: rotate(90deg);
		transform-origin: 0 100%;
		-webkit-transform: rotate(90deg);
		-webkit-transform-origin: 0 100%
	}
	.blog-style-styled_list1 article.sticky .sticky-label {
		left: 100%;
		margin-left: -80px;
		width: 30px;
		height: 30px;
		font-size: 16px;
		line-height: 34px;
	}
	.blog-style-styled_list1 .sticky .post-author {
		margin-top: 25px;
	}
	.blog-style-styled_list1 .sticky .post-links {
		margin-top: 10px;
	}
	.blog-style-styled_list1 .sticky .post-text-wrap {
		padding-bottom: 30px;
	}
}


/* BLOG STYLE 2 */

.bloglist.blog-style-styled_list2 .sticky,
.bloglist.blog-style-styled_list2 article {
	background-color: unset;
}

.blog-style-styled_list2 article {
	width: 100%;
	margin: 55px auto;
	border-radius: 60px;
}

.bloglist.blog-style-styled_list2 article:first-child {
	margin-top: 0;
}

.blog-style-styled_list2 .post-item {
	position: relative;
	border-radius: 60px;
	margin-left: 200px;
	box-shadow: none;
	min-height: 220px;
}

.blog-style-styled_list2 article.sticky .sticky-label {
	height: 50px;
	left: 100%;
	line-height: 50px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 50px;
	z-index: 10;
	margin-left: -105px;
}

.blog-style-styled_list2 article.sticky .sticky-label .elementor-icon {
	font-size: 18px;
	font-weight: normal;
}

.blog-style-styled_list2 article.sticky .sticky-label:before,
.blog-style-styled_list2 article.sticky .sticky-label:after {
	bottom: -10px;
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.blog-style-styled_list2 article.sticky .sticky-label:before {
	transform: skew(0deg, -20deg);
	transform-origin: 0 100% 0;
}

.blog-style-styled_list2 article.sticky .sticky-label:after {
	transform: skew(0deg, 20deg);
	transform-origin: 100% 100% 0;
}

.blog-style-styled_list2 .wrap-style {
	width: 50px;
	height: 100px;
	position: absolute;
	left: -50px;
	top: 50%;
	margin-top: -50px;
	transform: rotate(360deg);
	transform-origin: 0 100%;
	-webkit-transform: rotate(360deg);
	-webkit-transform-origin: 0 100%;
}

.blog-style-styled_list2 .post-info-wrap {
	position: absolute;
	left: -200px;
	top: 50%;
	margin-top: -70px;
	padding-right: 60px;
	width: 200px;
}

.blog-style-styled_list2 .post-info-wrap.image-disabled {
	position: absolute;
	left: -200px;
	top: 60%;
	margin-top: -70px;
	padding-right: 60px;
	width: 200px;
}

.blog-style-styled_list2 .post-info {
	text-align: center;
}

.blog-style-styled_list2 .post-img {
	border-radius: 50%;
}

.blog-style-styled_list2 .post-img a {
	border-radius: 50%;
	z-index: 1;
}
.blog-style-styled_list2 .post-img a {
	border-radius: 50%;
	z-index: 1;
}
.blog-style-styled_list2 .no-image .post-img a {
	border-radius: 50%;
	width: 134px;
	height: 134px;
	z-index: 1;
}

.blog-style-styled_list2 .post-img a .dummy {
	font-family: "thegem-icons";
	font-size: 24px;
	text-align: left;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -12px;
	margin-left: -12px;
	border-radius: 50%;
}

.blog-style-styled_list2 .post-img a img {
	border-radius: 50%;
}
.blog-style-styled_list2 .no-image .post-img a img {
	width: 128px;
	height: 128px;
	border-radius: 50%;
}

.blog-style-styled_list2 .post-date {
	font-weight: 16px;
	margin-top: 5px;
}

.blog-style-styled_list2 .post-time {
	margin-top: 2px;
	font-size: 32px;
}

.blog-style-styled_list2 .post-text-wrap {
	padding: 0 45px 35px;
}

.blog-style-styled_list2 .post-title {
	font-size: 28px;
}

.blog-style-styled_list2 .post-content {
	margin-top: -10px;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 25px;
}

.blog-style-styled_list2 .post-misc {
	position: relative;
}

.blog-style-styled_list2 .post-author {
	font-size: 14px;
	margin-top: 25px;
	padding-right: 220px;
}

.blog-style-styled_list2 .post-soc-info {
	margin-top: 5px;
}

.blog-style-styled_list2 .post-links {
	position: absolute;
	right: 0;
	top: 0;
}

.blog-style-styled_list2 .post-read-more {
	display: inline-block;
}

.blog-style-styled_list2 .post-links .post-footer-sharing .gem-button-container>a,
.blog-style-styled_list2 .post-links .post-read-more a {
	margin-top: 5px;
}

.blog-style-styled_list2 .post-read-more a {
	margin-right: 0;
}


/* BLOG STYLE 2 STICKY */

.blog-style-styled_list2 .sticky .post-item {
	border: none;
}

.blog-style-styled_list2 .sticky .post-text-wrap {
	padding-bottom: 40px;
}

.blog-style-styled_list2 .sticky .post-title a {
	font-size: 36px;
}

.blog-style-styled_list2 .sticky .wrap-style {
	width: 50px;
	height: 100px;
	position: absolute;
	left: -50px;
	top: 50%;
	margin-top: -50px;
}

.blog-style-styled_list2 .post-links a {
	margin-bottom: 0;
}

.blog-style-styled_list2 .sticky .post-link-readmore {
	display: inline-block;
}


/* RESPONSIVE BLOG STYLE 2*/

@media ( max-width: 767px) {
	.blog-style-styled_list2 .post,
	.blog-style-styled_list2 .post-item {
		width: 100%;
		min-width: 300px;
		border-radius: 60px;
		padding-top: 135px;
	}
	.blog-style-styled_list2 .post-info-wrap {
		width: 100%;
		left: 0;
		top: -118px;
		position: absolute;
		margin-top: 0;
		padding-right: 0;
	}
	.blog-style-styled_list2 .post-info {
		width: 100%;
		left: 0;
		position: relative;
		text-align: left;
	}
	.blog-style-styled_list2 .post-img {
		position: absolute;
		right: 20px;
		width: 92px;
		height: 92px;
	}
	.blog-style-styled_list2 .post-img a,
	.blog-style-styled_list2 .post-img a img {
		width: 86px;
		height: 86px;
	}
	.blog-style-styled_list2 .post-date {
		width: 200px;
		text-align: center;
		margin-top: 0;
	}
	.blog-style-styled_list2 .post-time {
		width: 200px;
		text-align: center;
		font-weight: normal;
	}
	.blog-style-styled_list2 .post-text-wrap {
		padding: 0 45px 30px;
	}
	.blog-style-styled_list2 .wrap-style {
		width: 50px;
		height: 100px;
		position: absolute;
		left: 50px;
		top: -100px;
		transform: rotate(90deg);
		transform-origin: 0 100%;
		-webkit-transform: rotate(90deg);
		-webkit-transform-origin: 0 100%;
	}
	.blog-style-styled_list2 .post-item {
		position: relative;
		border-radius: 45px;
		margin-left: 0;
	}
	.blog-style-styled_list2 .post-author {
		margin-top: 30px;
		padding-right: 0;
	}
	.blog-style-styled_list2 .post-links {
		position: static;
		margin-top: 10px;
	}
	.blog-style-styled_list2 .sticky .wrap-style {
		width: 50px;
		height: 100px;
		position: absolute;
		left: 50px;
		top: -100px;
		stroke: none;
		transform: rotate(90deg);
		transform-origin: 0 100%;
		-webkit-transform: rotate(90deg);
		-webkit-transform-origin: 0 100%
	}
	.blog-style-styled_list2 article.sticky .sticky-label {
		left: 100%;
		margin-left: -83px;
		width: 30px;
		height: 30px;
		font-size: 16px;
		line-height: 34px;
	}
}

/* BLOG STYLE COMPACT TINY */

body .blog.blog-style-compact-tiny-1,
body .blog.blog-style-compact-tiny-2,
body .blog.blog-style-compact-tiny-3,
body .blog.blog-style-classic-tiny {
	padding-bottom: 0;
	margin-bottom: 0;
}

.blog-style-compact-tiny-1 article,
.blog-style-compact-tiny-2 article {
	display: flex;
	align-items: center;
}

.blog-style-compact-tiny-2 article {
	margin-bottom: 20px;
}

.blog-style-compact-tiny-1 article,
.blog-style-compact-tiny-3 article,
.blog-style-classic-tiny article {
	margin-bottom: 22px;
}

.blog-style-compact-tiny-2 article.with-separator {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--thegem-to-divider-color, #dfe5e8);
}

.blog-style-compact-tiny-1 article.with-separator,
.blog-style-classic-tiny article.with-separator {
	padding-bottom: 22px;
	border-bottom: 1px solid var(--thegem-to-divider-color, #dfe5e8);
}

.blog-style-compact-tiny-1 article:last-child,
.blog-style-compact-tiny-2 article:last-child,
.blog-style-compact-tiny-3 article:last-child,
.blog-style-classic-tiny article:last-child {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
	border-bottom: none !important;
}

.blog-style-compact-tiny-1 .gem-compact-tiny-left {
	flex: none;
	width: 183px;
	margin-right: 30px;
}

.blog-style-compact-tiny-1 .gem-compact-tiny-left .gem-dummy {
	padding-bottom: 81%;
	border-radius: initial;
	display: block;
}

.blog-style-compact-tiny-3 .gem-dummy {
	padding-bottom: 46.15%;
	border-radius: initial;
	display: block;
}

.blog-style-compact-tiny-2 .gem-compact-tiny-left {
	flex: none;
	margin-right: 12px;
}

.blog-style-compact-tiny-2 .gem-news-item-image {
	border-radius: 50%;
}

.blog-style-compact-tiny-2 .gem-news-item-image .gem-dummy {
	border-radius: 0;
}

.blog-style-compact-tiny-1 .gem-compact-tiny-item-image,
.blog-style-compact-tiny-2 .gem-news-item-image,
.blog-style-classic-tiny .gem-compact-tiny-item-image {
	position: relative;
	overflow: hidden;
}

.blog-style-classic-tiny .gem-compact-tiny-item-image .post-featured-content > a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.blog-style-classic-tiny .gem-compact-tiny-item-image .post-featured-content > a:hover:before {
	opacity: 1;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.blog-style-classic-tiny .gem-compact-tiny-item-image .post-featured-content > a:after {
	content: '\e628';
	position: absolute;
	top: 150%;
	left: 50%;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-family: 'thegem-icons';
	font-style: normal;
	font-size: 16px;
	line-height: 48px;
	margin-top: -24px;
	margin-left: -24px;
	opacity: 0;
	text-align: center;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: top 0.4s, opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: top 0.4s, opacity 0.4s, transform 0s 0.4s;
	z-index: 10;
}

.blog-style-classic-tiny .gem-compact-tiny-item-image .post-featured-content > a:hover:after {
	opacity: 1;
	top: 50%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: top 0s, opacity 0.4s, -webkit-transform 0.4s;
	transition: top 0s, opacity 0.4s, transform 0.4s;
}

.blog-style-compact-tiny-1 article.without-hover-icon a.default:after,
.blog-style-classic-tiny article.without-hover-icon .post-featured-content > a:after {
	content: none;
}

.blog-style-compact-tiny-1 article.without-hover-icon a.default:hover:before,
.blog-style-classic-tiny article.without-hover-icon .post-featured-content > a:hover:before {
	opacity: 0.25;
}

.blog-style-compact-tiny-1 .gem-compact-tiny-item-image .categories,
.blog-style-compact-tiny-3 .categories,
.blog-style-classic-tiny .gem-compact-tiny-item-image .categories {
	position: absolute;
	left: 0;
	top: 0;
	color: #ffffff;
	background: #000000;
	font-size: 75%;
	line-height: 1.5;
	padding: 0 8px;
	max-width: 100%;
	z-index: 5;
}

.blog-style-compact-tiny-1 .gem-compact-tiny-item-image .categories a,
.blog-style-compact-tiny-3 .categories a,
.blog-style-classic-tiny .gem-compact-tiny-item-image .categories a {
	color: inherit;
}

.blog-style-compact-tiny-1 .gem-compact-tiny-item-image .categories a:hover,
.blog-style-compact-tiny-3 .categories a:hover,
.blog-style-classic-tiny .gem-compact-tiny-item-image .categories a:hover {
	text-decoration: underline;
}

.blog-style-compact-tiny-1 .gem-compact-tiny-right,
.blog-style-compact-tiny-2 .gem-compact-tiny-right {
	flex: auto;
}

.blog-style-compact-tiny-1 .gem-news-item-title,
.blog-style-classic-tiny .gem-news-item-title {
	margin-bottom: 10px;
}

.blog-style-classic-tiny .gem-compact-tiny-item-image {
	margin-bottom: 16px;
}

.blog-style-compact-tiny-1 .post-meta,
.blog-style-classic-tiny .post-meta {
	margin-top: 10px;
}

.blog-style-compact-tiny-1 .post-meta,
.blog-style-compact-tiny-2 .post-meta,
.blog-style-compact-tiny-3 .post-meta,
.blog-style-classic-tiny .post-meta {
	margin-bottom: 0;
}

.blog-style-compact-tiny-1 .entry-meta,
.blog-style-compact-tiny-2 .entry-meta,
.blog-style-classic-tiny .entry-meta {
	display: flex;
	align-items: baseline;
	margin-bottom: 0;
}

.blog-style-compact-tiny-2 .entry-meta {
	align-items: flex-end;
}

.blog-style-compact-tiny-1 .gem-news-item-date,
.blog-style-compact-tiny-2 .gem-news-item-date,
.blog-style-classic-tiny .gem-news-item-date {
	margin-top: 0;
}

.blog-style-compact-tiny-1 .entry-meta .post-meta-right,
.blog-style-compact-tiny-2 .entry-meta .post-meta-right,
.blog-style-classic-tiny .entry-meta .post-meta-right {
	margin-left: auto;
}

.blog-style-compact-tiny-1 .comments-link a:before,
.blog-style-compact-tiny-2 .comments-link a:before,
.blog-style-classic-tiny .comments-link a:before {
	content: '\e63e';
	vertical-align: middle;
}

.blog-style-compact-tiny-3 .wrap {
	position: relative;
}

.blog-style-compact-tiny-3 .over-link {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}

.blog-style-compact-tiny-3 .post-image {
	overflow: hidden;
}

.blog-style-compact-tiny-3 .post-image img {
	height: 100%;
	object-fit: cover;
}

.blog-style-compact-tiny-3 .post-image img,
.blog-style-compact-tiny-2 .gem-news-item-image img {
	width: 100%;
	transition: all 0.3s;
}

.blog-style-compact-tiny-2 .gem-news-item-image a:hover img,
.blog-style-compact-tiny-3 article:hover img {
	transform: scale(1.1);
}

.blog-style-compact-tiny-3 .gem-compact-caption {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	padding: 22px;
	background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
}

.blog-style-compact-tiny-3 .post-featured-content > a:before,
.blog-style-compact-tiny-3 .post-featured-content > a:after {
	content: none;
}

.blog-style-compact-tiny-3 .gem-news-item-title {
	display: inline-block;
	margin: 0.3em 0;
}

.blog-style-compact-tiny-3 .gem-news-item-title a,
.blog-style-compact-tiny-3 .post-meta,
.blog-style-compact-tiny-3 .post-meta a {
	color: #ffffff;
}

.bloglist.pagination-normal {
	position: relative;
}

.bloglist .preloader-spin-new ~ * {
	opacity: 0.6;
}

.bloglist + .gem-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
}
.hover-default .portfolio-item .image .image-inner img,
.hover-default .gallery-item .overlay-wrap .image-wrap 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-default .portfolio-item:is(:hover, .hover-effect) .image .image-inner img,
.hover-default .gallery-item:is(:hover, .hover-effect) .overlay-wrap .image-wrap img {
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.hover-default .portfolio-item .image .overlay,
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay,
.hover-default .gallery-item .overlay-wrap .overlay,
.hover-default .gallery-item:is(:hover, .hover-effect) .overlay-wrap .overlay {
	display: block;
}

.hover-default .portfolio-item .image .overlay:before,
.hover-default .gallery-item .overlay-wrap .overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: opacity 0.5s, background-color 0.5s;
	transition: opacity 0.5s, background-color 0.5s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay:before,
.hover-default .gallery-item:is(:hover, .hover-effect) .overlay-wrap .overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.5s, background-color 0.5s;
	transition: opacity 0.5s, background-color 0.5s;
}

.portfolio.hover-default .portfolio-item .image .overlay .links .portfolio-icons > .icon,
.portfolio.hover-default .portfolio-item .image .overlay .links .portfolio-icons-inner > .icon,
.gem-gallery-grid.hover-default .gallery-item .overlay .overlay-content-inner a.icon,
.portfolio.products.hover-default .portfolio-item .image .overlay .portfolio-icons.product-bottom a.added_to_cart {
	display: inline-block;
	opacity: 0;
	-webkit-transform: translateY(-200px);
	transform: translateY(-200px);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

.gem-gallery-grid.hover-default .gallery-item .overlay .overlay-content-inner a.icon.link {
	margin-left: 10px;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon,
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon,
.gem-gallery-grid.hover-default .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon,
.portfolio.products.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .portfolio-icons.product-bottom a.added_to_cart {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links a.icon:before {
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links a.icon:hover:before {
	color: #393d50;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon:nth-child(1),
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon:nth-child(1),
.hover-default .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon:nth-child(1),
.portfolio.products.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .portfolio-icons.product-bottom a.added_to_cart {
	-webkit-transition: opacity 1s 0.12s, transform 0.5s 0.12s;
	transition: opacity 1s 0.12s, transform 0.5s 0.12s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon:nth-child(2),
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon:nth-child(2),
.hover-default .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon:nth-child(2) {
	-webkit-transition: opacity 1s 0.17s, transform 0.5s 0.17s;
	transition: opacity 1s 0.17s, transform 0.5s 0.17s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon:nth-child(3),
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon:nth-child(3),
.hover-default .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon:nth-child(3) {
	-webkit-transition: opacity 1s 0.19s, transform 0.5s 0.19s;
	transition: opacity 1s 0.19s, transform 0.5s 0.19s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon:nth-child(4),
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon:nth-child(4),
.hover-default .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon:nth-child(4) {
	-webkit-transition: opacity 1s 0.21s, transform 0.5s 0.21s;
	transition: opacity 1s 0.21s, transform 0.5s 0.21s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon:nth-child(5),
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons-inner > .icon:nth-child(5),
.hover-default .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner a.icon:nth-child(5) {
	-webkit-transition: opacity 1s 0.23s, transform 0.5s 0.23s;
	transition: opacity 1s 0.23s, transform 0.5s 0.23s;
}

.hover-default .portfolio-item .image .links .caption .title,
.hover-default .gallery-item .overlay .overlay-content-inner .title,
.hover-default.version-alternative .portfolio-item .image .links .caption .info {
	opacity: 0;
	position: relative;
	top: -200px;
	-webkit-transition: opacity 0.3s, top 0.3s;
	transition: opacity 0.3s, top 0.3s;
}

.hover-default .gallery-item .overlay .overlay-content-inner .title {
	margin-top: 30px;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .links .caption .title,
.hover-default .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner .title,
.hover-default.version-alternative .portfolio-item:is(:hover, .hover-effect) .image .links .caption .info {
	opacity: 1;
	top: 0;
	-webkit-transition: opacity 0.3s 0.2s, top 0.3s 0.2s;
	transition: opacity 0.3s 0.2s, top 0.3s 0.2s;
}

.hover-default .gallery-item .overlay .overlay-content-inner .subtitle {
	margin-top: 20px;
}

.hover-default .portfolio-item .image .links .caption .description,
.hover-default .portfolio-item .image .links .caption .details,
.hover-default .gallery-item .overlay .overlay-content-inner .subtitle,
.hover-default:not(.version-alternative) .portfolio-item .image .links .caption .info {
	opacity: 0;
	position: relative;
	top: -200px;
	-webkit-transition: opacity 0.4s, top 0.5s;
	transition: opacity 0.4s, top 0.5s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .links .caption .description,
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .links .caption .details,
.hover-default .gallery-item:is(:hover, .hover-effect) .overlay .overlay-content-inner .subtitle,
.hover-default:not(.version-alternative) .portfolio-item:is(:hover, .hover-effect) .image .links .caption .info {
	opacity: 1;
	top: 0;
	-webkit-transition: opacity 0.5s, top 0.4s;
	transition: opacity 0.5s, top 0.4s;
}

.hover-default .portfolio-item .image .overlay .links .portfolio-sharing-pane {
	opacity: 0;
	margin-top: 0;
	margin-bottom: 0;
	-webkit-transform: translateY(-1000px);
	transform: translateY(-1000px);
	-webkit-transition: opacity 0.3s, margin 0.3s 0.3s;
	transition: opacity 0.3s, margin 0.3s 0.3s, transform 0s;
}

.hover-default .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 0.3s;
	transition: opacity 0.5s, transform 0s, margin 0.3s 0.3s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane.active {
	opacity: 1;
	visibility: visible;
	margin-top: 20px;
	margin-bottom: 10px;
	-webkit-transition: opacity 0.5s, margin 0.3s;
	transition: opacity 0.5s, margin 0.3s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane .socials-item-icon {
	opacity: 0;
	-webkit-transform: translate(0, 30px);
	transform: translate(0, 30px);
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane.active .socials-item-icon {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.hover-default .portfolio-item .image .links .caption .product-info {
	opacity: 0;
	position: relative;
	top: -200px;
	-webkit-transition: opacity 0.4s, top 0.5s;
	transition: opacity 0.4s, top 0.5s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .links .caption .product-info {
	opacity: 1;
	top: 0;
	-webkit-transition: opacity 0.5s, top 0.4s;
	transition: opacity 0.5s, top 0.4s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane a.socials-item:nth-child(1) .socials-item-icon,
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane.active a.socials-item:nth-child(1) .socials-item-icon {
	-webkit-transition: color 0.3s, -webkit-transform 0.3s, opacity 0.3s;
	transition: color 0.3s, transform 0.3s, opacity 0.3s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane a.socials-item:nth-child(2) .socials-item-icon,
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane.active a.socials-item:nth-child(2) .socials-item-icon {
	-webkit-transition: color 0.3s, -webkit-transform 0.3s 0.05s, opacity 0.3s 0.05s;
	transition: color 0.3s, transform 0.3s 0.05s, opacity 0.3s 0.05s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane a.socials-item:nth-child(3) .socials-item-icon,
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane.active a.socials-item:nth-child(3) .socials-item-icon {
	-webkit-transition: color 0.3s, -webkit-transform 0.3s 0.1s, opacity 0.3s 0.1s;
	transition: color 0.3s, transform 0.3s 0.1s, opacity 0.3s 0.1s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane a.socials-item:nth-child(4) .socials-item-icon,
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane.active a.socials-item:nth-child(4) .socials-item-icon {
	-webkit-transition: color 0.3s, -webkit-transform 0.3s 0.15s, opacity 0.3s 0.15s;
	transition: color 0.3s, transform 0.3s 0.15s, opacity 0.3s 0.15s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane a.socials-item:nth-child(5) .socials-item-icon,
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane.active a.socials-item:nth-child(5) .socials-item-icon {
	-webkit-transition: color 0.3s, -webkit-transform 0.3s 0.2s, opacity 0.3s 0.2s;
	transition: color 0.3s, transform 0.3s 0.2s, opacity 0.3s 0.2s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane a.socials-item:nth-child(6) .socials-item-icon,
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane.active a.socials-item:nth-child(6) .socials-item-icon {
	-webkit-transition: color 0.3s, -webkit-transform 0.3s 0.25s, opacity 0.3s 0.25s;
	transition: color 0.3s, transform 0.3s 0.25s, opacity 0.3s 0.25s;
}

.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane a.socials-item:nth-child(7) .socials-item-icon,
.hover-default .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-sharing-pane.active a.socials-item:nth-child(7) .socials-item-icon {
	-webkit-transition: color 0.3s, -webkit-transform 0.3s 0.3s, opacity 0.3s 0.3s;
	transition: color 0.3s, transform 0.3s 0.3s, opacity 0.3s 0.3s;
}

/* Alternative Version */

.hover-default.version-alternative .portfolio-item .image .portfolio-likes {
	position: absolute;
	right: 8px;
	top: 3px;
	opacity: 0;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s 0.1s;
	z-index: 3;
}

.hover-default.version-alternative .portfolio-item:is(:hover, .hover-effect) .image .portfolio-likes {
	opacity: 1;
}

.hover-default.version-alternative.caption-position-hover .portfolio-item:not(:hover, .hover-effect) .image .set,
.hover-default.version-alternative.caption-position-image .portfolio-item:is(:hover, .hover-effect) .image .set {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.hover-default.version-alternative.caption-position-image .portfolio-item .image .overlay .links {
	justify-content: flex-end;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: auto;
	max-height: 100%;
	-webkit-transition: bottom 0.3s, transform 0.3s;
	transition: bottom 0.3s, transform 0.3s;
}

.hover-default.version-alternative.caption-position-image .portfolio-item.appearance-type-featured_image:is(:hover, .hover-effect) .image .overlay .links {
	bottom: 50%;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.hover-default.version-alternative .portfolio-item .image .overlay .links .caption {
	padding: 15px 15px 0;
}

.hover-default.version-alternative.caption-position-image .portfolio-item .image .links .caption .title,
.hover-default.version-alternative.caption-position-image .portfolio-item .image .links .caption .info {
	opacity: 1;
	top: 0;
	transition: all 0.3s;
}

.hover-default.version-alternative.caption-position-image .portfolio-item.appearance-type-featured_image:not(:hover, .hover-effect) .image .links .caption .title,
.hover-default.version-alternative.caption-position-image .portfolio-item:not(.appearance-type-featured_image) .image .links .caption .title {
	margin-bottom: 20px;
}

.hover-default.version-alternative.caption-position-image:is(.columns-4, .columns-5, .columns-6) .portfolio-item:not(.double-item) .image .links .caption .title,
.hover-default.version-alternative.caption-position-image .portfolio-item.small-item .image .links .caption .title {
	margin-bottom: 12px;
}

.hover-default.version-alternative.caption-position-image .portfolio-item .image .links .caption .description,
.hover-default.version-alternative.caption-position-image .portfolio-item .image .links .caption .details {
	opacity: 1;
	position: initial;
}

.hover-default.version-alternative.caption-position-image .portfolio-item.appearance-type-featured_image:is(:hover, .hover-effect) .image .links .caption .slide-content-hidden {
	margin-bottom: 0 !important;
}

.hover-default.version-alternative.caption-position-image .portfolio-item .image .overlay:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	opacity: 1;
	background: -moz-linear-gradient(top, rgba(30,87,153,0) 65%, rgba(0,0,0,0.5) 100%);
	background: -webkit-linear-gradient(top, rgba(30,87,153,0) 65%,rgba(0,0,0,0.5) 100%);
	background: linear-gradient(to bottom, rgba(30,87,153,0) 65%,rgba(0,0,0,0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001e5799', endColorstr='#80000000',GradientType=0 );
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.hover-default.version-alternative.caption-position-image .portfolio-item.appearance-type-featured_image:is(:hover, .hover-effect) .image .overlay:after {
	opacity: 0;
}

.hover-default.version-alternative.caption-position-image .portfolio-item:is(:hover, .hover-effect) .image .overlay .links .portfolio-icons > .icon {
	-webkit-transition-duration: 1s, 0.4s;
	transition-duration: 1s, 0.4s;
 }.gem-team.row {
	margin: -21px;
}
.gem-team .thegem-wrap {
	padding: 21px;
	margin: 0;
}
.team-person {
	padding: 50px 30px;
	position: relative;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.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-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 {
	margin-bottom: 40px;
	margin-left: -6px;
	margin-right: -6px;
}
.gem-team-style-4 .team-person-socials .socials-item {
	margin: 12px 6px 0;
}
.gem-team-style-4 .team-person-email {
	margin-bottom: 40px;
	margin-top: 5px;
}
.gem-team-style-4 .team-person-email a:before {
	font-size: 32px;
	margin-right: 0;
}

.gem-team-style-5.row {
	margin-left: 0;
	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);
	display: none;
}
.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;
	-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 {
	margin-left: -6px;
	margin-right: -6px;
}
.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;
}.styled-image-wrapper::after {
    content: "";
    display: block;
    clear: both;
  }
.styled-image-wrapper .gem-image a img {
  transition: all 0.5s;
}
.gem-wrapbox, .gem-image-centered-box {
    margin-bottom: 0;
}

.gem-image a {
  display: block;
}
.gem-image a:after{
	content: none;
}
.gem-image a:before {
  top: 0;
  background-color: unset;
}
.gem-image a i{
    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;
	color: #ffffff;
}
.gem-image a:hover i {
    top: 50%;
    opacity: 1;
    transition: opacity 0.5s, top 0.3s;
    -webkit-transition: opacity 0.5s, top 0.3s;
}
.gem-wrapbox-style-13 .gem-wrapbox-inner {
  overflow: hidden;
  border-radius: 50%;
  z-index: 1;
}
.gem-wrapbox-style-13 .gem-wrapbox-inner:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  border: none;
}.gem-textbox,
.gem-textbox-wrapper,
.gem-textbox .gem-textbox-content,
.gem-textbox .gem-texbox-icon-image-wrapper .elementor-icon,
.gem-textbox .gem-texbox-icon-image-wrapper .elementor-icon i,
.gem-textbox .gem-image,
.gem-textbox .gem-image img,
.gem-textbox .gem-image span,
.gem-textbox .gem-image span:before,
.gem-textbox .gem-textbox-title,
.gem-textbox .gem-textbox-description,
.gem-textbox .gem-button-container,
.gem-textbox .gem-textbox-top,
.gem-textbox .gem-textbox-top svg,
.gem-textbox .gem-textbox-bottom,
.gem-textbox .gem-textbox-bottom svg {
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.gem-textbox-content {
	padding: 30px;
}

.gem-textbox-top,
.gem-textbox-bottom {
	font-size: 0;
	line-height: 0;
	text-align: center;
}

.gem-styled-textbox-link,
.gem-styled-textbox-icon-image-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.gem-texbox-icon-image-wrapper {
	position: relative;
}

.gem-textbox .gem-textbox-icon-horizontal-right.gem-textbox-icon-image-wrapping-inline .gem-texbox-icon-image-wrapper {
	padding-left: 10px;
}

.gem-textbox .gem-textbox-icon-horizontal-left.gem-textbox-icon-image-wrapping-inline .gem-texbox-icon-image-wrapper {
	padding-right: 10px;
}

.gem-textbox h4,
.gem-textbox .title-h4 {
	margin-top: 0;
}

.gem-textbox-content .gem-image span {
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	max-width: 100%;
	position: relative;
}

.gem-textbox-content .gem-image span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
	z-index: 1;
}

.gem-textbox:hover .gem-textbox-content .gem-image a::before,
.gem-textbox:hover .gem-textbox-content .gem-image span::before {
	opacity: 1;
}

.gem-textbox .gem-textbox-icon-horizontal-right .gem-icon-with-text-icon {
	padding-right: 0px;
	padding-left: 10px;
}

/* Icon Bottom */

.gem-textbox-content.icon-bottom {
	display: flex;
	flex-direction: column;
}

.gem-textbox .icon-bottom .gem-texbox-text-wrapper {
	order: 1;
}

.gem-textbox .icon-bottom .gem-texbox-icon-image-wrapper {
	order: 2;
	margin-top: 30px;
}


/* Icon Bottom + Button Bottom */

.gem-textbox-content.icon-bottom,
.gem-textbox-content.button-top {
	display: flex;
	flex-direction: column;
}

.gem-textbox .icon-bottom.button-bottom .gem-texbox-text-wrapper {
	order: 1;
}

.gem-textbox .icon-bottom.button-bottom .gem-texbox-icon-image-wrapper {
	order: 2;
}


/* Icon Top + Button Top */

.gem-textbox-content.icon-top.button-top .gem-texbox-text-wrapper {
	display: flex;
	flex-direction: column;
}

.gem-textbox-content.icon-top.button-top .gem-button-container {
	order: 1;
}

.gem-textbox-content.icon-top.button-top .gem-textbox-title {
	order: 2;
}

.gem-textbox-content.icon-top.button-top .gem-textbox-description {
	order: 3;
}


/* Icon Bottom + Button Top */

.gem-textbox-content.icon-bottom.button-top .gem-texbox-text-wrapper {
	display: flex;
	flex-direction: column;
}

.gem-textbox-content.icon-bottom.button-top .gem-button-container {
	order: 1;
}

.gem-textbox-content.icon-bottom.button-top .gem-textbox-title {
	order: 2;
}

.gem-textbox-content.icon-bottom.button-top .gem-textbox-description {
	order: 3;
}

.gem-textbox-content.icon-bottom.button-top .gem-texbox-text-wrapper {
	order: 1;
}

.gem-textbox-content.icon-bottom.button-top .gem-texbox-icon-image-wrapper {
	order: 2;
	margin-top: 30px;
}

.gem-textbox-icon-horizontal-center .gem-texbox-icon-image-wrapper {
	text-align: center !important;
}

.gem-textbox-icon-horizontal-left .gem-texbox-icon-image-wrapper {
	text-align: left !important;
}

.gem-textbox-icon-horizontal-right .gem-texbox-icon-image-wrapper {
	text-align: right !important;
}

.gem-textbox-icon-horizontal-right.gem-textbox-icon-image-wrapping-wrap .gem-texbox-icon-image-wrapper {
	float: right;
}

.gem-textbox-icon-horizontal-left.gem-textbox-icon-image-wrapping-wrap .gem-texbox-icon-image-wrapper {
	float: left;
}

.gem-textbox-icon-image-wrapping-inline {
	display: flex;
	flex-direction: column;
}

.gem-textbox-icon-image-wrapping-inline .gem-texbox-text-wrapper {
	flex-grow: 1;
}

.gem-textbox-icon-image-wrapping-inline.gem-textbox-icon-horizontal-right {
	flex-direction: row-reverse;
}
.icon-bottom.gem-textbox-icon-image-wrapping-inline.gem-textbox-icon-horizontal-right {
	flex-direction: row;
	align-items: flex-end;
}

.gem-textbox-icon-image-wrapping-inline.gem-textbox-icon-horizontal-left {
	flex-direction: row;
}
.icon-bottom.gem-textbox-icon-image-wrapping-inline.gem-textbox-icon-horizontal-left {
	flex-direction: row-reverse;
	align-items: flex-end;
}