@charset "UTF-8";
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}


/*
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
body { /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
	-webkit-backface-visibility: hidden;
}
.iva_anim{
  opacity: 0;
}
.iva_anim.animated{
    opacity: 1;
}
.animated {
	-webkit-animation-duration: 1.5s;
	   -moz-animation-duration: 1.5s;
	     -o-animation-duration: 1.5s;
	        animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	   -moz-animation-fill-mode: both;
	     -o-animation-fill-mode: both;
	        animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@-moz-keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@-o-keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.animated.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.animated.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	-moz-animation-name: fadeInLeft;
	-o-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.animated.fadeInRight {
	-webkit-animation-name: fadeInRight;
	-moz-animation-name: fadeInRight;
	-o-animation-name: fadeInRight;
	animation-name: fadeInRight;
}
@-webkit-keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}

	100% {
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes slideInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}

	100% {
		-moz-transform: translateX(0);
	}
}

@-o-keyframes slideInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}

	100% {
		-o-transform: translateX(0);
	}
}

@keyframes slideInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}

	100% {
		transform: translateX(0);
	}
}

.animated.slideInLeft {
	-webkit-animation-name: slideInLeft;
	-moz-animation-name: slideInLeft;
	-o-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}

	100% {
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes slideInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}

	100% {
		-moz-transform: translateX(0);
	}
}

@-o-keyframes slideInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}

	100% {
		-o-transform: translateX(0);
	}
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}

	100% {
		transform: translateX(0);
	}
}

.animated.slideInRight {
	-webkit-animation-name: slideInRight;
	-moz-animation-name: slideInRight;
	-o-animation-name: slideInRight;
	animation-name: slideInRight;
}
/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/fontawesome/fonts/fontawesome-webfont.eot?v=4.6.3);src:url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/fontawesome/fonts/fontawesome-webfont.eot?#iefix&v=4.6.3) format('embedded-opentype'),url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/fontawesome/fonts/fontawesome-webfont.woff2?v=4.6.3) format('woff2'),url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/fontawesome/fonts/fontawesome-webfont.woff?v=4.6.3) format('woff'),url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/fontawesome/fonts/fontawesome-webfont.ttf?v=4.6.3) format('truetype'),url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/fontawesome/fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular) format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
@font-face {
	font-family: 'Pe-icon-7-stroke';
	src:url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eot?d7yf1v);
	src:url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v) format('embedded-opentype'),
		url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.woff?d7yf1v) format('woff'),
		url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.ttf?d7yf1v) format('truetype'),
		url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke) format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="pe-7s-"], [class*=" pe-7s-"] {
	display: inline-block;
	font-family: 'Pe-icon-7-stroke';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pe-7s-album:before {
	content: "\e6aa";
}
.pe-7s-arc:before {
	content: "\e6ab";
}
.pe-7s-back-2:before {
	content: "\e6ac";
}
.pe-7s-bandaid:before {
	content: "\e6ad";
}
.pe-7s-car:before {
	content: "\e6ae";
}
.pe-7s-diamond:before {
	content: "\e6af";
}
.pe-7s-door-lock:before {
	content: "\e6b0";
}
.pe-7s-eyedropper:before {
	content: "\e6b1";
}
.pe-7s-female:before {
	content: "\e6b2";
}
.pe-7s-gym:before {
	content: "\e6b3";
}
.pe-7s-hammer:before {
	content: "\e6b4";
}
.pe-7s-headphones:before {
	content: "\e6b5";
}
.pe-7s-helm:before {
	content: "\e6b6";
}
.pe-7s-hourglass:before {
	content: "\e6b7";
}
.pe-7s-leaf:before {
	content: "\e6b8";
}
.pe-7s-magic-wand:before {
	content: "\e6b9";
}
.pe-7s-male:before {
	content: "\e6ba";
}
.pe-7s-map-2:before {
	content: "\e6bb";
}
.pe-7s-next-2:before {
	content: "\e6bc";
}
.pe-7s-paint-bucket:before {
	content: "\e6bd";
}
.pe-7s-pendrive:before {
	content: "\e6be";
}
.pe-7s-photo:before {
	content: "\e6bf";
}
.pe-7s-piggy:before {
	content: "\e6c0";
}
.pe-7s-plugin:before {
	content: "\e6c1";
}
.pe-7s-refresh-2:before {
	content: "\e6c2";
}
.pe-7s-rocket:before {
	content: "\e6c3";
}
.pe-7s-settings:before {
	content: "\e6c4";
}
.pe-7s-shield:before {
	content: "\e6c5";
}
.pe-7s-smile:before {
	content: "\e6c6";
}
.pe-7s-usb:before {
	content: "\e6c7";
}
.pe-7s-vector:before {
	content: "\e6c8";
}
.pe-7s-wine:before {
	content: "\e6c9";
}
.pe-7s-cloud-upload:before {
	content: "\e68a";
}
.pe-7s-cash:before {
	content: "\e68c";
}
.pe-7s-close:before {
	content: "\e680";
}
.pe-7s-bluetooth:before {
	content: "\e68d";
}
.pe-7s-cloud-download:before {
	content: "\e68b";
}
.pe-7s-way:before {
	content: "\e68e";
}
.pe-7s-close-circle:before {
	content: "\e681";
}
.pe-7s-id:before {
	content: "\e68f";
}
.pe-7s-angle-up:before {
	content: "\e682";
}
.pe-7s-wristwatch:before {
	content: "\e690";
}
.pe-7s-angle-up-circle:before {
	content: "\e683";
}
.pe-7s-world:before {
	content: "\e691";
}
.pe-7s-angle-right:before {
	content: "\e684";
}
.pe-7s-volume:before {
	content: "\e692";
}
.pe-7s-angle-right-circle:before {
	content: "\e685";
}
.pe-7s-users:before {
	content: "\e693";
}
.pe-7s-angle-left:before {
	content: "\e686";
}
.pe-7s-user-female:before {
	content: "\e694";
}
.pe-7s-angle-left-circle:before {
	content: "\e687";
}
.pe-7s-up-arrow:before {
	content: "\e695";
}
.pe-7s-angle-down:before {
	content: "\e688";
}
.pe-7s-switch:before {
	content: "\e696";
}
.pe-7s-angle-down-circle:before {
	content: "\e689";
}
.pe-7s-scissors:before {
	content: "\e697";
}
.pe-7s-wallet:before {
	content: "\e600";
}
.pe-7s-safe:before {
	content: "\e698";
}
.pe-7s-volume2:before {
	content: "\e601";
}
.pe-7s-volume1:before {
	content: "\e602";
}
.pe-7s-voicemail:before {
	content: "\e603";
}
.pe-7s-video:before {
	content: "\e604";
}
.pe-7s-user:before {
	content: "\e605";
}
.pe-7s-upload:before {
	content: "\e606";
}
.pe-7s-unlock:before {
	content: "\e607";
}
.pe-7s-umbrella:before {
	content: "\e608";
}
.pe-7s-trash:before {
	content: "\e609";
}
.pe-7s-tools:before {
	content: "\e60a";
}
.pe-7s-timer:before {
	content: "\e60b";
}
.pe-7s-ticket:before {
	content: "\e60c";
}
.pe-7s-target:before {
	content: "\e60d";
}
.pe-7s-sun:before {
	content: "\e60e";
}
.pe-7s-study:before {
	content: "\e60f";
}
.pe-7s-stopwatch:before {
	content: "\e610";
}
.pe-7s-star:before {
	content: "\e611";
}
.pe-7s-speaker:before {
	content: "\e612";
}
.pe-7s-signal:before {
	content: "\e613";
}
.pe-7s-shuffle:before {
	content: "\e614";
}
.pe-7s-shopbag:before {
	content: "\e615";
}
.pe-7s-share:before {
	content: "\e616";
}
.pe-7s-server:before {
	content: "\e617";
}
.pe-7s-search:before {
	content: "\e618";
}
.pe-7s-film:before {
	content: "\e6a5";
}
.pe-7s-science:before {
	content: "\e619";
}
.pe-7s-disk:before {
	content: "\e6a6";
}
.pe-7s-ribbon:before {
	content: "\e61a";
}
.pe-7s-repeat:before {
	content: "\e61b";
}
.pe-7s-refresh:before {
	content: "\e61c";
}
.pe-7s-add-user:before {
	content: "\e6a9";
}
.pe-7s-refresh-cloud:before {
	content: "\e61d";
}
.pe-7s-paperclip:before {
	content: "\e69c";
}
.pe-7s-radio:before {
	content: "\e61e";
}
.pe-7s-note2:before {
	content: "\e69d";
}
.pe-7s-print:before {
	content: "\e61f";
}
.pe-7s-network:before {
	content: "\e69e";
}
.pe-7s-prev:before {
	content: "\e620";
}
.pe-7s-mute:before {
	content: "\e69f";
}
.pe-7s-power:before {
	content: "\e621";
}
.pe-7s-medal:before {
	content: "\e6a0";
}
.pe-7s-portfolio:before {
	content: "\e622";
}
.pe-7s-like2:before {
	content: "\e6a1";
}
.pe-7s-plus:before {
	content: "\e623";
}
.pe-7s-left-arrow:before {
	content: "\e6a2";
}
.pe-7s-play:before {
	content: "\e624";
}
.pe-7s-key:before {
	content: "\e6a3";
}
.pe-7s-plane:before {
	content: "\e625";
}
.pe-7s-joy:before {
	content: "\e6a4";
}
.pe-7s-photo-gallery:before {
	content: "\e626";
}
.pe-7s-pin:before {
	content: "\e69b";
}
.pe-7s-phone:before {
	content: "\e627";
}
.pe-7s-plug:before {
	content: "\e69a";
}
.pe-7s-pen:before {
	content: "\e628";
}
.pe-7s-right-arrow:before {
	content: "\e699";
}
.pe-7s-paper-plane:before {
	content: "\e629";
}
.pe-7s-delete-user:before {
	content: "\e6a7";
}
.pe-7s-paint:before {
	content: "\e62a";
}
.pe-7s-bottom-arrow:before {
	content: "\e6a8";
}
.pe-7s-notebook:before {
	content: "\e62b";
}
.pe-7s-note:before {
	content: "\e62c";
}
.pe-7s-next:before {
	content: "\e62d";
}
.pe-7s-news-paper:before {
	content: "\e62e";
}
.pe-7s-musiclist:before {
	content: "\e62f";
}
.pe-7s-music:before {
	content: "\e630";
}
.pe-7s-mouse:before {
	content: "\e631";
}
.pe-7s-more:before {
	content: "\e632";
}
.pe-7s-moon:before {
	content: "\e633";
}
.pe-7s-monitor:before {
	content: "\e634";
}
.pe-7s-micro:before {
	content: "\e635";
}
.pe-7s-menu:before {
	content: "\e636";
}
.pe-7s-map:before {
	content: "\e637";
}
.pe-7s-map-marker:before {
	content: "\e638";
}
.pe-7s-mail:before {
	content: "\e639";
}
.pe-7s-mail-open:before {
	content: "\e63a";
}
.pe-7s-mail-open-file:before {
	content: "\e63b";
}
.pe-7s-magnet:before {
	content: "\e63c";
}
.pe-7s-loop:before {
	content: "\e63d";
}
.pe-7s-look:before {
	content: "\e63e";
}
.pe-7s-lock:before {
	content: "\e63f";
}
.pe-7s-lintern:before {
	content: "\e640";
}
.pe-7s-link:before {
	content: "\e641";
}
.pe-7s-like:before {
	content: "\e642";
}
.pe-7s-light:before {
	content: "\e643";
}
.pe-7s-less:before {
	content: "\e644";
}
.pe-7s-keypad:before {
	content: "\e645";
}
.pe-7s-junk:before {
	content: "\e646";
}
.pe-7s-info:before {
	content: "\e647";
}
.pe-7s-home:before {
	content: "\e648";
}
.pe-7s-help2:before {
	content: "\e649";
}
.pe-7s-help1:before {
	content: "\e64a";
}
.pe-7s-graph3:before {
	content: "\e64b";
}
.pe-7s-graph2:before {
	content: "\e64c";
}
.pe-7s-graph1:before {
	content: "\e64d";
}
.pe-7s-graph:before {
	content: "\e64e";
}
.pe-7s-global:before {
	content: "\e64f";
}
.pe-7s-gleam:before {
	content: "\e650";
}
.pe-7s-glasses:before {
	content: "\e651";
}
.pe-7s-gift:before {
	content: "\e652";
}
.pe-7s-folder:before {
	content: "\e653";
}
.pe-7s-flag:before {
	content: "\e654";
}
.pe-7s-filter:before {
	content: "\e655";
}
.pe-7s-file:before {
	content: "\e656";
}
.pe-7s-expand1:before {
	content: "\e657";
}
.pe-7s-exapnd2:before {
	content: "\e658";
}
.pe-7s-edit:before {
	content: "\e659";
}
.pe-7s-drop:before {
	content: "\e65a";
}
.pe-7s-drawer:before {
	content: "\e65b";
}
.pe-7s-download:before {
	content: "\e65c";
}
.pe-7s-display2:before {
	content: "\e65d";
}
.pe-7s-display1:before {
	content: "\e65e";
}
.pe-7s-diskette:before {
	content: "\e65f";
}
.pe-7s-date:before {
	content: "\e660";
}
.pe-7s-cup:before {
	content: "\e661";
}
.pe-7s-culture:before {
	content: "\e662";
}
.pe-7s-crop:before {
	content: "\e663";
}
.pe-7s-credit:before {
	content: "\e664";
}
.pe-7s-copy-file:before {
	content: "\e665";
}
.pe-7s-config:before {
	content: "\e666";
}
.pe-7s-compass:before {
	content: "\e667";
}
.pe-7s-comment:before {
	content: "\e668";
}
.pe-7s-coffee:before {
	content: "\e669";
}
.pe-7s-cloud:before {
	content: "\e66a";
}
.pe-7s-clock:before {
	content: "\e66b";
}
.pe-7s-check:before {
	content: "\e66c";
}
.pe-7s-chat:before {
	content: "\e66d";
}
.pe-7s-cart:before {
	content: "\e66e";
}
.pe-7s-camera:before {
	content: "\e66f";
}
.pe-7s-call:before {
	content: "\e670";
}
.pe-7s-calculator:before {
	content: "\e671";
}
.pe-7s-browser:before {
	content: "\e672";
}
.pe-7s-box2:before {
	content: "\e673";
}
.pe-7s-box1:before {
	content: "\e674";
}
.pe-7s-bookmarks:before {
	content: "\e675";
}
.pe-7s-bicycle:before {
	content: "\e676";
}
.pe-7s-bell:before {
	content: "\e677";
}
.pe-7s-battery:before {
	content: "\e678";
}
.pe-7s-ball:before {
	content: "\e679";
}
.pe-7s-back:before {
	content: "\e67a";
}
.pe-7s-attention:before {
	content: "\e67b";
}
.pe-7s-anchor:before {
	content: "\e67c";
}
.pe-7s-albums:before {
	content: "\e67d";
}
.pe-7s-alarm:before {
	content: "\e67e";
}
.pe-7s-airplay:before {
	content: "\e67f";
}


/* HELPER CLASS 
 * -------------------------- */

/* FA based classes */

/*! Modified from font-awesome helper CSS classes - PIXEDEN
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (CSS: MIT License)
 */

/* makes the font 33% larger relative to the icon container */
.pe-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.pe-2x {
  font-size: 2em;
}
.pe-3x {
  font-size: 3em;
}
.pe-4x {
  font-size: 4em;
}
.pe-5x {
  font-size: 5em;
}
.pe-fw {
  width: 1.2857142857142858em;
  text-align: center;
}
.pe-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none;
}
.pe-ul > li {
  position: relative;
}
.pe-li {
  position: absolute;
  left: -2.142857142857143em;
  width: 2.142857142857143em;
  top: 0.14285714285714285em;
  text-align: center;
}
.pe-li.pe-lg {
  left: -1.8571428571428572em;
}
.pe-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.pe.pull-left {
  margin-right: .3em;
}
.pe.pull-right {
  margin-left: .3em;
}
.pe-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.pe-rotate-90 {
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.pe-rotate-180 {
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pe-rotate-270 {
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.pe-flip-horizontal {
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.pe-flip-vertical {
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.pe-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.pe-stack-1x,
.pe-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.pe-stack-1x {
  line-height: inherit;
}
.pe-stack-2x {
  font-size: 2em;
}
.pe-inverse {
  color: #ffffff;
}

/* Custom classes / mods - PIXEDEN */
.pe-va {
  vertical-align: middle;
}

.pe-border {
  border: solid 0.08em #eaeaea;
}

[class^="pe-7s-"], [class*=" pe-7s-"] {
  display: inline-block;
}/*
Theme Name: Aivah Shortcodes
*/
/* ================================================================= */
/*
[Table of contents]
01. Google Map
02. Process - Steps
03. Tooltip
04. Accordion
05. Alert Message Boxes
06. CountDown
07. Blockquotes and Pullquotes
08. Fancybox
09. Button
10. Dividers
11. Dropcap
12. Services Icon
13. List Styles FontAwesome
14. Blog Post Carousel
15. Pricing Table
16. Input CSS
17. Contact Info
18. Highlight
19. Fancy Table
20. Progress Bar
21. Tabs
23. Fancy Heading
24. Flickr Photos
25. Milestone Count
26. Section Row
27. Logo Showcase
28. Staff Sociables ToolTip
29. Services Images
30. Mini - Gallery & Galleria
31. Feature Box - Shortcode
32. Gallery - Shortcode
33. Staff - Shortcode
34. Testimonials
35. Partial Section
36. Services box
37. Price lists
38. Navtabs Section
39. Expandable
*/

/* ================================================================= */
/* 01. Google Map                                                    */
/* ================================================================= */

.atpmap img {
    width: auto !important;
    max-width: none;
}
.atpmap {
    color: #444444;
}
.atpmap-shadow {
    position: relative;
    border: 1px solid #eeeeee;
    padding: 5px;
}

/* ================================================================= */
/* 03. Tooltip                                                       */
/* ================================================================= */

.ivatip_top {
    bottom: 100%;
    min-width: 100px;
}

/* Tooltip arrow */
.ivatip_top:after {
    border-top: 5px solid #222;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
}
.iva-tooltip:hover .ivatip_top {
    margin-bottom: 0;
}
.iva-tooltip {
    position: relative;
    display: block;
}
.iva-tooltip .ivatip {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: 99999;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.iva-tooltip:hover .ivatip {
    opacity: 1;
    visibility: visible;
}

/* Tooltip Base */
.ivatip {
    background-color: #222;
    color: #ffffff;
    font-size: 11px;
    padding: 5px 10px;
    position: absolute;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    z-index: 4;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.ivatip:after {
    content: " ";
    font-size: 0;
    line-height: 0;
    position: absolute;
    width: 0;
    z-index: 1;
}

/* Right Position Style  */
.ivatip_right {
    left: 100%;
    top: 0;
    min-width: 100px;
}

/* Tooltip arrow */
.ivatip_right:after {
    border-top: 5px solid transparent;
    border-right: 5px solid #222;
    border-bottom: 5px solid transparent;
    left: -5px;
    /* Offset value to pull to the left */
    margin-top: -5px;
    top: 50%;
}
.iva-tooltip:hover .ivatip_right {
    margin-left: 10px;
}

/* Bottom Position Style */
.ivatip_bottom {
    top: 100%;
    left: 0;
    min-width: 100px;
}

/* Tooltip arrow */
.ivatip_bottom:after {
    border-bottom: 5px solid #222;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: -5px;
    left: 50%;
    margin-left: -5px;
}

/* When hovered, move tooltip at the bottom */
.iva-tooltip:hover .ivatip_bottom {
    margin-top: 0;
}

/* ---------------------- */
/* Left position style
/* ---------------------- */
.ivatip_left {
    right: 100%;
    top: 0;
    min-width: 100px;
}
.ivatip_left:after {
    border-top: 5px solid transparent;
    border-left: 5px solid #222;
    border-bottom: 5px solid transparent;
    margin-top: -5px;
    right: -5px;
    top: 50%;
}

/* ================================================================= */
/* 04. Image                                                         */
/* ================================================================= */

.at-image { position: relative; line-height: 4px;}
.at-image .at-image-inner { overflow: hidden; position: relative; width: auto; }
.at-image.align-left {text-align: left;}
.at-image.align-right { text-align: right;}
.at-image.align-center { margin-right:auto; margin-left:auto; text-align:center;}
.at-image.rounded-frame { border-radius:4px; }
.at-image.rounded-frame img, .at-image.rounded-frame .at-image-overlay { border-radius:4px; }
.at-image.line-frame .at-image-inner { border:1px solid rgba(0, 0, 0, 0.1); }
.at-image.border-frame .at-image-inner { border: 6px solid rgba(0, 0, 0, 0.06); }
.at-image.border-shadow-frame .at-image-inner { border: 6px solid #ffffff; -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25); box-shadow: 0 0 5px rgba(0, 0, 0, 0.25); }
.at-image.shadow-frame .at-image-inner {-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);}
.lightbox-enable {
	position: relative;
	z-index: 1;
}
.at-image-overlay {
	background-color: #990b6e;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all .15s ease-in-out;
	z-index: 2;
}
.at-image-lightbox {
    cursor: pointer;
    height: 100px;
    left: 50%;
	top: 50%;
    margin: -25px 0 0 -50px;
    opacity: 0;
    position: absolute;
    text-align: center;
    width: 100px;
	z-index: 3;
}
.at-image-inner:hover .at-image-lightbox { color:#ffffff; }
.at-image-inner:hover .at-image-overlay { opacity: 0.7; }
.at-image-inner:hover .at-image-lightbox { opacity: 1; }
.at-image.inside-image .at-image-caption {
	background-color: rgba(0, 0, 0, 0.5);
	bottom: 0;
	color: #ffffff;
	left: 0;
	margin: 12px;
	padding: 12px 18px;
	border-radius: 5px;
	position: absolute;
}

.at-image.inside-image .at-image-caption .at-image-caption-title { display: block; font-size: 14px; font-weight: bold; line-height: 20px;}
.at-image.inside-image .at-image-caption .at-image-caption-txt { display: block; font-size: 12px; line-height: 18px; margin-top: 5px;}
.at-image.out-image .at-image-caption {margin: 15px 0;}
.at-image.out-image .at-image-caption .at-image-caption-title { display: block; font-size: 14px;font-weight: bold; line-height: 20px;}
.at-image.out-image .at-image-caption .at-image-caption-txt {display: block; font-size: 12px; font-style: italic; margin-top: 5px; line-height: 18px;}
/* ================================================================= */
/* 04. Accordion                                                     */
/* ================================================================= */

.ac_wrap {
    width: 100%;
    margin-bottom: 40px;
}
.ac_wrap.faq {text-align: center;}
.ac_wrap .ac_title,
.toggle-title {
    position: relative;
	color: #666;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 15px;
    padding: 18px 45px 18px 30px;
	background-color: rgba(0, 0, 0, 0.05);
	-webkit-transition: all 0.2s linear 0s;
	-moz-transition: all 0.2s linear 0s;
	transition: all 0.2s linear 0s;
}
.ac_title .arrow,
.toggle-title .arrow {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    float: right;
    height: 100%;
    font-weight: normal;
    font-size: 22px;
	margin-top: -8px;
    width: 44px;
    text-align: center;
}
.ac_title .arrow::after,
.toggle-title .arrow::after {
    content: '+';
}
.ac_title.active .arrow::after,
.toggle-title.active .arrow::after {
    content: '-';
}
.ac_title.active .arrow,
.toggle-title.active .arrow {
    font-size: 40px;
}
.ac_title i,
.toggle-title i {
    margin-right: 15px;
	font-size: 12px
}
.ac_wrap .ac_content,
.ac_wrap .toggle_content {
    background-color: #ffffff;
    border: 1px solid #E1E1E1;
    margin-bottom: 15px;
	margin-top:	-15px;
    padding: 30px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) ;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toggle-title.arrow.active {
	background-color: #990b6e;
	color: #ffffff;
}

.ac_wrap .ac_title.active {background-color: #990b6e; color: #fff;}
.ac_wrap .ac_title.active .arrow {color: #fff;}

/* When hovered, move tooltip a bit to the right */
.iva-tooltip:hover .ivatip_left {
    margin-right: 10px;
}

/* ================================================================= */
/* 0.5 Alert Message Boxes                                           */
/* ================================================================= */

.at_message_box {
    background-color: #f6f6f6;
    border-color: #e1e1e1;
    margin: 20px 0;
    position: relative;
    text-align: center
}
.at_message_box_content {
	display: table;
    font-size: 18px;
	letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}
.at_message_box_title {display: table;}
.at_message_box.at-box-normal {
    padding: 18px;
}
.at_message_box.at-box-large {
    padding: 30px;
}
.at_message_box.at-box-solid {
    border: 1px solid #009bce;
}
.at_message_box.at-box-dashed {
    border: 1px dashed;
}
.at_message_box.success,
.at_message_box.success a {
    color: #ffffff;
    background-color: #26A65B;
}
.at_message_box.info,
.at_message_box.info a {
	color: #ffffff;
    border-color: #4183D7;
    background-color: #4183D7;
}
.at_message_box.error,
.at_message_box.error a {
    color: #FFFFFF;
    background-color: #F22613;
}
.at_message_box.alert,
.at_message_box.alert a {
    color: #FFFFFF;
    background-color: #F4D03F;
}
.at_message_box.lightgray,
.at_message_box.lightgray a {
    color: #FFFFFF;
    background-color: #ABB7B7;
}
.at_message_box.dark,
.at_message_box.dark a {
    color: #ffffff;
    border-color: #444444;
    background-color: #333333;
    text-shadow: 0 1px 0 #000000;
}
.at_message_box .at_a_box_title {
    background: rgba(0, 0, 0, 0.05);
    font-size: 11px;
    left: 0;
    top: 0;
    padding: 3px 20px;
    position: absolute;
    text-shadow: none;
}
.error span.close,
.info span.close,
.alert span.close,
.success span.close,
.lightgray span.close,
.custom span.close {
    color: #ffffff;
    cursor: pointer;
    font-size: 11px;
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    height: 18px;
    width: 18px;
    line-height: 18px;
    background-color: rgba(0, 0, 0, 0.05)
}
.dark span.close {
    color: #ffffff;
    cursor: pointer;
    font-size: 11px;
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    height: 18px;
    width: 18px;
    line-height: 18px;
    background-color: rgba(255, 255, 255, 0.2)
}

/* Visual Composer */
.messagebox_text span.close {
    color: #414141;
    cursor: pointer;
    font-size: 15px;
    display: block;
    position: absolute;
    top: 7px;
    right: 27px;
    height: 18px;
    width: 20px;
    line-height: 18px;
    background-color: rgba(0, 0, 0, 0.05)
}

/* ================================================================= */
/* 06. CountDown                                                     */
/* ================================================================= */

.is-countdown {
    position: relative;
    margin: 0 auto;
}
.is-countdown:after,
.is-countdown:before {
    clear: both;
    display: block;
    content: "";
}
.countdown-rtl {
    direction: rtl;
}
.countdown-holding span {
    color: #888;
}
.hasCountdown {
    margin: 5px 0;
}
.countdown-row {
    clear: both;
    display: table;
    margin: 0 auto;
    text-align: center;
}

.countdown-section {
    display: inline-block;
    float: left;
    margin: 0 5px;
	padding: 10px;
    background-color: rgba(0,0,0,0.05);
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	margin-bottom: 1px;
}
.countdown-amount {
    display: block;
	font-size: 40px;
	font-weight: 600;
	line-height: 42px;
}
.countdown-period { font-size: 14px; line-height: 18px; }
.countdown-descr {
    display: block;
    width: 100%;
}


.frontpage-counter .countdown-section { padding: 25px; background-color: rgba(0,0,0,0.6);  }
.frontpage-counter .countdown-amount { font-size: 50px; line-height: 52px;}

/* ================================================================= */
/* 07. Blockquotes and Pullquotes                                    */
/* ================================================================= */

span.inset-left {
    display: block;
    float: left;
    width: 35%;
    padding: 15px;
    border-left: 1px solid #dddddd;
    font: italic normal 14px/25px Georgia, Serif, Sans-serif;
    letter-spacing: 0;
}
span.inset-right {
    display: block;
    float: right;
    width: 35%;
    padding: 15px;
    border-right: 1px solid #dddddd;
    font: italic normal 14px/25px Georgia, Serif, Sans-serif;
    letter-spacing: 0;
}
/* ----------------------- */

blockquote {
    position: relative;
    margin: 0 auto;
    padding: 15px 15px 15px 10px;
	margin-bottom: 30px;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    font-style: normal;
    line-height: normal;
}
blockquote.alignleft {
    width: 30%;
    padding: 15px 15px 15px 50px !important;
}
blockquote.alignright {
    width: 30%;
    padding: 15px 15px 15px 50px !important;
    text-align: center;
}
blockquote.aligncenter {
    clear: both;
    display: block;
}

/* ================================================================= */
/* 08. Fancybox                                                      */
/* ================================================================= */

.fancybox .boxcontent {
    padding: 25px;
}
.fancybox {
    background-color: #f3f3f3;
    position: relative;
    margin: 0 0 20px 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.fancybox .fancytitle {
    margin-bottom: 0px;
    padding: 15px 25px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    background-color: #323A45;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

/*==== CallOut Box ===*/
.at-callOutBox {
	position: relative;
	display: block;
}

.at-callOut-action {
	display: table;
    position: relative;
    overflow: visible;
    margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
    zoom: 1;
    /* zoom and *display = ie7 hack for display:inline-block */
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}

.at-callOut_inner {
    display: table;
	width: 88%;
    margin: 0 auto;
	max-width: 1100px;
}
.at-callOut_text {
    display: table-cell;
    vertical-align: middle;
	padding-right: 20px;
	box-sizing: border-box;
}
.at-callOut_btn {
    display: table-cell;
    vertical-align: middle;
}

.at-callout-action-icon-holder {
	display: inline-block;
	float: left;
	margin-right: 15px;
}

.at-callout-action-subtext {
	opacity: 0.6;
    font-size: 18px;
    line-height: 100%;
    margin-top: 5px;
    font-weight: 300;
}

.at-callOutBox h1,
.at-callOutBox p,
.at-callOutBox .btn {
	line-height: 100%;
    margin-bottom: 0;
}

.at-callOutBox::after,
.at-callOutBox::before {
	clear: both;
	display: block;
	content: '';
}

/*==== Corner Ribbon ===*/

.ribbon { position: absolute; top: 0; right: 0; }
/* reset certain elements (in case of conflicting CSS for classes, links, etc.) */
.ribbon .text,
.ribbon .banner,
.ribbon a {
	margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

.ribbon a { color: #ffffff; text-decoration: none; }
.no-css-transforms .ribbon { font-size: 1em; position: relative; width: 100%; }

.ribbon .banner {
	-webkit-transform: rotate(45deg);
	-moz-transform:    rotate(45deg);
	-ms-transform:     rotate(45deg);
	-o-transform:      rotate(45deg);
	transform:         rotate(45deg);
	color: #ffffff;
	-webkit-font-smoothing: antialiased;
	display: block;
	float: right;
	position: relative;
	right: -14px;
	top: 22px;
	width: 100px;
}

.ribbon-small .banner { right: -8px; top: 15px; width: 65px; }
.ribbon-large .banner { right: -20px; top: 32px; width: 150px; }

.ribbon .banner::after,
.ribbon .banner::before {
	content: '';
	display: block;
	height: 12px;
	position: absolute;
	width: 30px;
}

.ribbon-small .banner::after,
.ribbon-small .banner::before {
	height: 6px;
	width: 20px;
}

.ribbon-large .banner::after,
.ribbon-large .banner::before {
	height: 18px;
	width: 45px;
}

.ribbon .banner::before {
	-webkit-transform: skewY(-45deg) translate(50%,15px);
	-moz-transform:    skewY(-45deg) translate(50%,15px);
	-ms-transform:     skewY(-45deg) translate(50%,15px);
	-o-transform:      skewY(-45deg) translate(50%,15px);
	-webkit-transform-origin: 100% center;
	-moz-transform-origin:    100% center;
	-ms-transform-origin:     100% center;
	-o-transform-origin:      100% center;
	left: -45px;
}

.ribbon-small .banner::before { top: -5px; left: -30px; }
.ribbon-large .banner::before { top: 9px; left: -68px; }

.ribbon .banner::after {
	-webkit-transform: translate(100%,-100%) skewY(45deg) translateX(-58%);
	-moz-transform:    translate(100%,-100%) skewY(45deg) translateX(-58%);
	-ms-transform:     translate(100%,-100%) skewY(45deg) translateX(-58%);
	-o-transform:      translate(100%,-100%) skewY(45deg) translateX(-58%);
	-webkit-transform-origin: 0 center;
	-moz-transform-origin:    0 center;
	-ms-transform-origin:     0 center;
	-o-transform-origin:      0 center;
	right: -17px;
}

.ribbon-small .banner::after { top: 18px; right: -12px; }
.ribbon-large .banner::after { top: 45px; right: -26px; }

.no-css-transforms .ribbon .banner { position: static; width: 100%; float: none; font-size: 10px; }
.ribbon .text {
	position: relative;
	z-index: 2;
	padding: 6px 0;
	font-size: 12px;
	font-weight: bold;
	min-height: 18px;
	line-height: 18px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.20);
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: center;
}

/* small text */
.ribbon-small .text {
	padding: 3px 0;
	font-size: 8px;
	min-height: 14px;
	line-height: 14px;
}

/* large text */
.ribbon-large .text {
	padding: 9px 0;
	font-size: 18px;
	min-height: 28px;
	line-height: 28px;
}

.ribbon .text::before,
.ribbon .text::after {
	content: '';
	display: block;
	height: 30px;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

/* small text */
.ribbon.ribbon-small .text::before,
.ribbon.ribbon-small .text::after {
	height: 20px;
}

/* large text */
.ribbon.ribbon-large .text::before,
.ribbon.ribbon-large .text::after {
	height: 46px;
}

.ribbon .text::before {
	-webkit-transform: translateX(-15%) skewX(-45deg);
	-moz-transform:    translateX(-15%) skewX(-45deg);
	-ms-transform:     translateX(-15%) skewX(-45deg);
	-o-transform:      translateX(-15%) skewX(-45deg);
}

.ribbon .text::after {
	-webkit-transform: translateX(15%) skewX(45deg);
	-moz-transform:    translateX(15%) skewX(45deg);
	-ms-transform:     translateX(15%) skewX(45deg);
	-o-transform:      translateX(15%) skewX(45deg);
}

.no-css-transforms .ribbon .text { height: 25px; padding: 3px; }

/*--- RIBBON COLORS ---*/

/* default */
.ribbon .banner::after,
.ribbon .banner::before {
	background-color: #51a351;
}
.ribbon .text::before,
.ribbon .text::after,
.no-css-transforms .ribbon .text {
	background-color: #62c462;
}

/* green */
.ribbon-green .banner::after,
.ribbon-green .banner::before {
	background-color: #51a351;
}
.ribbon-green .text::before,
.ribbon-green .text::after,
.no-css-transforms .ribbon-green .text {
	background-color: #62c462;
}

/* blue */
.ribbon-blue .banner::after,
.ribbon-blue .banner::before {
	background-color: #0044cc;
}
.ribbon-blue .text::before,
.ribbon-blue .text::after,
.no-css-transforms .ribbon-blue .text {
	background-color: #0088cc;
}

/* mms blue */
.ribbon-blue-mms .banner::after,
.ribbon-blue-mms .banner::before {
	background-color: #2d5b98;
}
.ribbon-blue-mms .text::before,
.ribbon-blue-mms .text::after,
.no-css-transforms .ribbon-blue-mms .text {
	background-color: #367ab3;
}

/* light blue */
.ribbon-blue-light .banner::after,
.ribbon-blue-light .banner::before {
	background-color: #2f96b4;
}
.ribbon-blue-light .text::before,
.ribbon-blue-light .text::after,
.no-css-transforms .ribbon-blue-light .text {
	background-color: #5bc0de;
}

/* yellow */
.ribbon-yellow .banner::after,
.ribbon-yellow .banner::before {
	background-color: #f2ba00;
}
.ribbon-yellow .text::before,
.ribbon-yellow .text::after,
.no-css-transforms .ribbon-yellow .text {
	background-color: #ffd95e;
	color:#000000;
}

/* orange */
.ribbon-orange .banner::after,
.ribbon-orange .banner::before {
	background-color: #f89406;
}
.ribbon-orange .text::before,
.ribbon-orange .text::after,
.no-css-transforms .ribbon-orange .text {
	background-color: #fbb450;
}

/* red */
.ribbon-red .banner::after,
.ribbon-red .banner::before {
	background-color: #bd362f;
}
.ribbon-red .text::before,
.ribbon-red .text::after,
.no-css-transforms .ribbon-red .text {
	background-color: #ee5f5b;
}

/* purple */
.ribbon-purple .banner::after,
.ribbon-purple .banner::before {
	background-color: #611bbd;
}
.ribbon-purple .text::before,
.ribbon-purple .text::after,
.no-css-transforms .ribbon-purple .text {
	background-color: #af4ce8;
}

/* pink */
.ribbon-pink .banner::after,
.ribbon-pink .banner::before {
	background-color: #f000c0;
}
.ribbon-pink .text::before,
.ribbon-pink .text::after,
.no-css-transforms .ribbon-pink .text {
	background-color: #ff5edf;
}

/* black */
.ribbon-black .banner::after,
.ribbon-black .banner::before {
	background-color: #222222;
}
.ribbon-black .text::before,
.ribbon-black .text::after,
.no-css-transforms .ribbon-black .text {
	background-color: #444444;
}
/* brown */
.ribbon-brown .banner::after,
.ribbon-brown .banner::before {
	background-color: #6E2525;
}
.ribbon-brown .text::before,
.ribbon-brown .text::after,
.no-css-transforms .ribbon-brown .text {
	background-color: #B65252;
}
/* grey */
.ribbon-grey .banner::after,
.ribbon-grey .banner::before {
	background-color: #656565;
}
.ribbon-grey .text::before,
.ribbon-grey .text::after,
.no-css-transforms .ribbon-black .text {
	background-color: #BABABA;
}

/* White */

.ribbon-white .banner::after,
.ribbon-white .banner::before {
	background-color: #EFEFEF;
}
.ribbon-white .text::before,
.ribbon-white .text::after,
.no-css-transforms .ribbon-white .text {
	background-color: #ffffff;
}
/* ================================================================= */
/* 09. Button                                                        */
/* ================================================================= */

.btn {
	position: relative;
    display: inline-block;
	overflow: hidden;
    border: 0;
    color: #444444;
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
	margin-bottom: 1px;
    cursor: pointer;
	vertical-align: bottom;
	border: 3px solid transparent;
	-webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -ms-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
}
.btn-icon {
	position: relative;;
	display: inline-block;
}
.righticon .btn-icon {
	float: right;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -8px;
}

.lefticon .btn-icon {
	float: left;
	position: absolute;
	top: 50%;
	left: 10px;
	margin-top: -8px;
}

.btn-text {
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
	padding: 10px 15px 10px 15px;
}

.btn-sub-text {
	display: table;
	opacity: 0.8;
	font-size: 11px;
	font-weight: normal;
	letter-spacing: 0;
}
.btn .btn-details {
	display: table;
	position: relative;
	margin: 0 auto;
	line-height: 16px;
}
.btn.full   { text-align: center; width: 100%; }
.btn.border { border-width: 2px; border-style: solid; }

.btn.xsmall  { font-size: 11px; font-weight: normal;}
.btn.small   { font-size: 12px; font-weight: normal;}
.btn.medium  { font-size: 14px; font-weight: bolder;}
.btn.large   { font-size: 16px; letter-spacing: 0; font-weight: bolder;}
.btn.xlarge  { font-size: 18px; letter-spacing: 0; font-weight: bolder;}
.btn.icon-right {}
.btn.sub-text
.btn.without-text {}
.btn.square { border-radius: 0; }
.btn.rounded { border-radius: 3px; }
.btn.fullrounded { border-radius: 5em; }
.btn.skewed {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	transform: skew(-8deg);
}
.btn.skewed > .btn-details {
	-webkit-transform: skew(8deg);
	-moz-transform: skew(8deg);
	-o-transform: skew(8deg);
	transform: skew(8deg);
}
.xsmall .btn-text { padding: 4px 10px; }
.small .btn-text { padding: 8px 12px; }
.medium .btn-text { padding: 12px 14px; }
.large .btn-text { padding: 16px 18px; }
.xlarge .btn-text { padding: 24px 30px; }

.righticon .btn-text { 	padding-right: 35px; }
.lefticon .btn-text { 	padding-left: 35px; }
.medium.righticon .btn-text { padding-right: 50px; }
.medium.lefticon .btn-text { padding-left: 50px; }
.large.righticon .btn-text { padding-right: 55px; }
.large.lefticon .btn-text { padding-left: 40px; }
.xlarge.righticon .btn-text { padding-right: 55px; }
.xlarge.lefticon .btn-text { padding-left: 55px; }

a.btn.center {
    display: table;
    margin: 0 auto;
}
a.btn.left {
    text-align: left;
	float: left;
	margin-right: 15px;
	margin-bottom: 20px;
}
a.btn.right {
    text-align: right;
	float: right;
	margin-left: 15px;
	margin-bottom: 20px;
}

/* ================================================================= */
/* 10. Dividers                                                      */
/* ================================================================= */

.divider {
    display: block;
    clear: both;
    margin: 30px 0;
    border-bottom-width: 1px;
    border-color: #e4e4e4;
}
.divider.thin {
    border-bottom-style: solid;
}
.divider.fat {
    border-bottom-style: solid;
    border-bottom-width: 2px;
}
.divider.dotted {
    border-bottom-style: dotted;
}
.divider.dashed {
    border-bottom-style: dashed;
}
.divider_space {
    display: block;
    clear: both;
    margin: 30px 0;
}
.demo_space {
    display: block;
    margin: 0;
    width: 100%;
}
.divider img {
    max-width: 100%;
}
.customdivider {
    width: auto;
    display: block;
    clear: both;
    height: 100%;
    padding: 10px 0;
    text-align: center;
}
.customdivider img {
    width: auto;
    max-width: 100%;
    height: auto;
}
.divider_top {
    position: relative;
    background: url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/images/opacs/dark10.png) center center repeat-x;
    height: 2px;
    padding: 40px 0;
    clear: both;
}
.divider_top a {
    font-size: 10px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 24px;
}
.divider_top a span {
    font-size: 11px;
    line-height: 10px;
    text-transform: uppercase;
    color: #fff;
    background-color: #000;
    padding: 3px 6px;
}
.divider_line {
    position: relative;
    display: block;
    clear: both;
    padding: 25px 0;
    background: url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/images/opacs/dark10.png) center center repeat-x;
    height: 1px;
    text-align: center;
}

/* HR Space */

.at-hr {
	clear: both;
	display: block;
	width: 100%;
	height: 20px;
	line-height: 20px;
	margin: 30px 0;
	float: none;
	position: relative;
}

.at-hr .at-hr-inner {
	width: 32%;
	left: 50%;
	margin-left: -16%;
	background: #fff;
	position: absolute;
	height: 1px
	top: 50%;
	margin-top: -1px;
	border-top: 1px solid #e1e1e1;
}
.at-hr .at-hr-inner span, .at-hr .at-hr-inner i {
	height: 9px;
	width: 9px;
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -5px;
	margin-top: -5px;
	background-color: #fff;
}
.at-hr .at-hr-inner span {
	border-radius: 20px;
	height: 9px;
	width: 9px;
	border: 2px solid #e1e1e1;
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -5px;
	margin-top: -5px;
	background-color: #fff;
}
.at-hr .at-hr-inner i {
	width: 25px;
	height: 15px;
	font-size: 20px;
	margin-top: -10px;
}
.at-hr.at-hr-alignleft .at-hr-inner {left: 0; margin-left: 0;}
.at-hr.at-hr-alignleft .at-hr-inner span {left: 5px;}
.at-hr.at-hr-alignleft .at-hr-inner i {left: 5px;}

.at-hr.at-hr-alignright .at-hr-inner {left: auto; right: 0; margin-left: 0;}
.at-hr.at-hr-alignright .at-hr-inner span {left: auto;right: 0;}
.at-hr.at-hr-alignright .at-hr-inner i {left: auto; right: 0;}
/* ================================================================= */
/* 11. Dropcap                                                       */
/* ================================================================= */

.dropcap {
	color: #990b6e;
    font-size: 24px;
    line-height: 48px;
    margin: 5px 15px 0 0;
	font-weight: 300;
	width: 48px;
	height: 48px;
	text-align: center;
}
.dropcap.dc-square {
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.dropcap.dc-square, .dropcap.dc-circle {
	background-color: #990b6e;
    float: left;
    text-align: center;
    color: #ffffff;
}
.dropcap.dc-circle {
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}
.dropcap.dc-text {
    float: left;
	left: 8px;
	font-weight: bold;
}
.dropcap.dropcap3 {
	font-size: 52px;
	line-height: 100%;
	width: auto;
}

/* ================================================================= */
/* 12. Services Icon                                                 */
/* ================================================================= */

.service-icon img {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    transition: all 400ms ease;
}
.service-icon img a {
    display: block;
}
.service-icon:hover img {
    margin: 0 3px 0 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    transition: all 400ms ease;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/* Services Icon Style 1
======================================================================== */
.services-icon {
    position: relative;
    float: left;
    text-align: center;
    margin-right: 10px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.services-content h3 {
    font-size: 16px;
	line-height: 18px;
	font-weight: 600;
	margin-bottom: 5px !important;
}
.services-content {
	font-weight: 300;
    overflow: hidden;
}
.atp-services.left .services-icon {
    float: left;
    margin-right: 20px;
    margin-left: 0;
}
.atp-services.right .services-icon {
    float: right;
    margin-right: 0;
    margin-left: 20px;
}
.atp-services.center .services-icon {
    float: none;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
}
.serviceIcn_style1 {
    position: relative;
}
.services_icon1 {
    position: relative;
    color: #999999;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.sIcn_heading {
    overflow: hidden;
    position: absolute;
}
.sIcn_heading h3 {
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
    text-align: left;
    margin: 0 0 0 50px;
}
.sIcn_content {
    text-align: left;
    margin-left: 50px;
}
.sIcn_content h3 {
    font-size: 18px;
	line-height: 110%;
    margin-bottom: 8px;
}
.sIcn_heading2 h3 {
    font-size: 17px;
	line-height: 34px;
	margin-bottom: 12px;
}
.atp-services {
    margin-bottom: 30px;
	overflow: hidden;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.atp-services.left .services-content {
    text-align: left;
}
.atp-services.right .services-content {
    text-align: right;
}
.atp-services.center .services-content {
    text-align: center;
}
.serviceIcn_style1 .services-icon {
    font-size: 14px;
}

/* Services Icon Style 2a and Style 2b
======================================================================== */
.serviceIcn_style2a,
.serviceIcn_style2b {
    position: relative;
}
.services_icon2a,
.services_icon2b {
    display: inline-block;
    font-size: 35px;
    line-height: 90px;
    cursor: pointer;
    margin: 15px 30px;
    width: 90px;
    height: 90px;
    text-align: center;
    position: relative;
    color: #999999;
    z-index: 1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.services_icon2a:after,
.services_icon2b:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.services_icon2a .fa:hover,
.services_icon2b .fa:hover {
    color: #FFFFFF;
}
.services_icon2a i,
.services_icon2b i { font-size: 100%; }

/* Icon Color*/
.services_icon2a.gray    { color: #83969e; }
.services_icon2a.brown   { color: #8A715F; }
.services_icon2a.cyan    { color: #01ACF1; }
.services_icon2a.orange  { color: #DE6919; }
.services_icon2a.red     { color: #E33D25; }
.services_icon2a.magenta { color: #CF1A53; }
.services_icon2a.yellow  { color: #FFBF00; }
.services_icon2a.blue    { color: #3B5898; }
.services_icon2a.pink    { color: #EA4C89; }
.services_icon2a.green   { color: #8BC449; }
.services_icon2a.black   { color: #111111; }
.services_icon2a.white   { color: #666666; }

/* Icon Hover Color*/
.serviceIcn_style2a:hover .gray   { background: #83969e; color: #FFFFFF; }
.serviceIcn_style2a:hover .brown  { background: #8A715F; color: #FFFFFF; }
.serviceIcn_style2a:hover .cyan   { background: #01ACF1; color: #FFFFFF; }
.serviceIcn_style2a:hover .orange { background: #DE6919; color: #FFFFFF; }
.serviceIcn_style2a:hover .red    { background: #E33D25; color: #FFFFFF; }
.serviceIcn_style2a:hover .magenta { background: #CF1A53; color: #FFFFFF; }
.serviceIcn_style2a:hover .yellow { background: #FFBF00; color: #FFFFFF; }
.serviceIcn_style2a:hover .blue   { background: #3B5898; color: #FFFFFF; }
.serviceIcn_style2a:hover .pink   { background: #EA4C89; color: #FFFFFF; }
.serviceIcn_style2a:hover .green  { background: #8BC449; color: #FFFFFF; }
.serviceIcn_style2a:hover .black  { background: #111111; color: #FFFFFF; }
.serviceIcn_style2a:hover .white  { background: #666666; color: #ffffff; }

.services_icon2a.gray:after,
.services_icon2a.brown:after,
.services_icon2a.cyan:after,
.services_icon2a.orange:after,
.services_icon2a.red:after,
.services_icon2a.magenta:after,
.services_icon2a.yellow:after,
.services_icon2a.blue:after,
.services_icon2a.pink:after,
.services_icon2a.green:after,
.services_icon2a.black:after,
.services_icon2a.white:after {
	top: -6px;
	left: -6px;
	padding: 6px;
	-webkit-transform: scale(.8);
	-moz-transform: scale(.8);
	-ms-transform: scale(.8);
	transform: scale(.8);
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	-moz-transition: -moz-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	opacity: 0;
}

.services_icon2a.gray:after {
    -webkit-box-shadow: 0 0 0 1px #83969e;
    -moz-box-shadow: 0 0 0 1px #83969e;
    box-shadow: 0 0 0 1px #83969e;
}
.services_icon2a.brown:after {
    -webkit-box-shadow: 0 0 0 1px #8A715F;
    -moz-box-shadow: 0 0 0 1px #8A715F;
    box-shadow: 0 0 0 1px #8A715F;
}
.services_icon2a.cyan:after {
    -webkit-box-shadow: 0 0 0 1px #01ACF1;
    -moz-box-shadow: 0 0 0 1px #01ACF1;
    box-shadow: 0 0 0 1px #01ACF1;
}
.services_icon2a.orange:after {
    -webkit-box-shadow: 0 0 0 1px #DE6919;
    -moz-box-shadow: 0 0 0 1px #DE6919;
    box-shadow: 0 0 0 1px #DE6919;
}
.services_icon2a.red:after {
    -webkit-box-shadow: 0 0 0 1px #E33D25;
    -moz-box-shadow: 0 0 0 1px #E33D25;
    box-shadow: 0 0 0 1px #E33D25;
}
.services_icon2a.magenta:after {
    -webkit-box-shadow: 0 0 0 1px #CF1A53;
    -moz-box-shadow: 0 0 0 1px #CF1A53;
    box-shadow: 0 0 0 1px #CF1A53;
}
.services_icon2a.yellow:after {
    -webkit-box-shadow: 0 0 0 1px #FFBF00;
    -moz-box-shadow: 0 0 0 1px #FFFF00;
    box-shadow: 0 0 0 1px #FFBF00;
}
.services_icon2a.blue:after {
    -webkit-box-shadow: 0 0 0 1px #3B5898;
    -moz-box-shadow: 0 0 0 1px #3B5898;
    box-shadow: 0 0 0 1px #3B5898;
}
.services_icon2a.pink:after {
    -webkit-box-shadow: 0 0 0 1px #EA4C89;
    -moz-box-shadow: 0 0 0 1px #EA4C89;
    box-shadow: 0 0 0 1px #EA4C89;
}
.services_icon2a.green:after {
    -webkit-box-shadow: 0 0 0 1px #8BC449;
    -moz-box-shadow: 0 0 0 1px #8BC449;
    box-shadow: 0 0 0 1px #8BC449;
}
.services_icon2a.black:after {
    -webkit-box-shadow: 0 0 0 1px #111111;
    -moz-box-shadow: 0 0 0 1px #111111;
    box-shadow: 0 0 0 1px #111111;
}
.services_icon2a.white:after {
    -webkit-box-shadow: 0 0 0 1px #FFFFFF;
    -moz-box-shadow: 0 0 0 1px #FFFFFF;
    box-shadow: 0 0 0 1px #FFFFFF;
}

/* Icon Style 3 */
.services_icon2b.gray    { background: #83969e; color: #ffffff; }
.services_icon2b.brown   { background: #8A715F; color: #ffffff; }
.services_icon2b.cyan    { background: #01ACF1; color: #ffffff; }
.services_icon2b.orange  { background: #DE6919; color: #ffffff; }
.services_icon2b.red     { background: #E33D25; color: #ffffff; }
.services_icon2b.magenta { background: #CF1A53; color: #ffffff; }
.services_icon2b.yellow  { background: #FFBF00; color: #ffffff; }
.services_icon2b.blue    { background: #3B5898; color: #ffffff; }
.services_icon2b.pink    { background: #EA4C89; color: #ffffff; }
.services_icon2b.green   { background: #8BC449; color: #ffffff; }
.services_icon2b.black   { background: #111111; color: #ffffff; }
.services_icon2b.white   { background: #ffffff; color: #111111; }

.serviceIcn_style2b:hover .gray    { background:rgba(0,0,0,0.1); color: #83969e; }
.serviceIcn_style2b:hover .brown   { background:rgba(0,0,0,0.1); color: #8A715F; }
.serviceIcn_style2b:hover .cyan    { background:rgba(0,0,0,0.1); color: #01ACF1; }
.serviceIcn_style2b:hover .orange  { background:rgba(0,0,0,0.1); color: #DE6919; }
.serviceIcn_style2b:hover .red     { background:rgba(0,0,0,0.1); color: #E33D25; }
.serviceIcn_style2b:hover .magenta { background:rgba(0,0,0,0.1); color: #CF1A53; }
.serviceIcn_style2b:hover .yellow  { background:rgba(0,0,0,0.1); color: #FFBF00; }
.serviceIcn_style2b:hover .blue    { background:rgba(0,0,0,0.1); color: #3B5898; }
.serviceIcn_style2b:hover .pink    { background:rgba(0,0,0,0.1); color: #EA4C89; }
.serviceIcn_style2b:hover .green   { background:rgba(0,0,0,0.1); color: #8BC449; }
.serviceIcn_style2b:hover .black   { background:rgba(0,0,0,0.1); color: #111111; }
.serviceIcn_style2b:hover .white   { background:rgba(0,0,0,0.1); color: #ffffff; }

/* end  hover color */
/* Icon Hover Effect */
.services_icon2a,
.services_icon2b {
    background: #f9f9f9;
    margin: 15px auto;
    display: block;
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
}
.services_icon2a .fa,
.services_icon2b .fa {
    z-index: 2;
}

/* Hover Icon Property */
.services_icon2a:after {
    top: -6px;
    left: -6px;
    padding: 6px;
    -webkit-box-shadow: 0 0 0 1px #444444;
    -moz-box-shadow: 0 0 0 1px #444444;
    box-shadow: 0 0 0 1px #444444;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0;
}
.services_icon2b:after {
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0;
}
.services_icon2a:hover,
.services_icon2b:hover {
    background: #444444;
    color: #FFFFFF;
}
.serviceIcn_style2a:hover .services_icon2a:after,
.serviceIcn_style2b:hover .services_icon2b:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    color: #FFFFFF;
}
.sIcn_heading2a h3,
.sIcn_heading2b h3 {
	font-size: 17px;
	line-height: 34px;
    text-align: center;
    margin: 15px 0 12px 0;
}
.sIcn_content2a,
.sIcn_content2b { text-align: center; }

/* Icon Box Style 3 and Icon box 4
======================================================================== */
.Icnbox_style {
    position: relative;
    z-index: 10;
    border: 1px solid #e0e0e0;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.Icnbox_style.top {
    margin-top: 35px;
    padding: 60px 30px 40px 30px;
}
.Icnbox_style.left {
    margin-left: 30px;
    padding: 30px 30px 30px 60px;
    text-align: left;
}
.services_icon3 {
    top: -34px;
    left: 50%;
    margin-left: -32px;
}
.services_icon4 {
    top: 50%;
    left: -31px;
    margin-top: -31px;
}
.services_icon3,
.services_icon4 {
    background-color: #dddddd;
    position: absolute;
    z-index: 20;
    display: block;
    width: 65px !important;
    height: 65px !important;
    color: #ffffff;
    text-align: center;
    font-size: 25px !important;
    line-height: 65px !important;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}
.sIcn_heading3 > h3 {
    margin: 15px 0 20px 0;
    font-size: 20px;
}
.sIcn_content3 {
    text-align: center;
}
.sIcn_content4 {
    text-align: left;
}

/* ================================================================= */
/* 13. List Styles FontAwesome                                       */
/* ================================================================= */

.iva-checklist {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 5px;
}
.iva-li-item-content {
    display: block;
	font-weight: 400;
	margin: 0 0 5px 0;
}
.iva-li-item-content .fa{
	font-size: 15px;
}
.icon-wrapper {
    font-size: 14px;
    margin-right: 12px;
}
.list_circle {
    font-size: 10px !important;
    width: 20px !important;
    height: 20px;
    line-height: 20px !important;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}
.iva-liststyle2 {
    line-height: 26px;
}
.iva-liststyle2.fa-ul > li {
    position: relative;
    padding-left: 5px;
}

/*=== List Styles ==== */
.pricing li {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.doubles {
    clear: both;
    padding-left: 20px;
    margin-left: 0px !important;
    overflow: hidden;
}
.doubles li {
    float: left;
    width: 42%;
}

/* ================================================================= */
/* 14. List Icon Item 					                             */
/* ================================================================= */

.at-icon-list-item {margin-bottom: 22px;}
.at-icon-list-item i {
	background-color: #990b6e;
	border-radius: 2em;
	color: #ffffff;
	float: left;
	font-size: 18px;
	height: 27px;
	width: 27px;
	line-height: 27px;
	margin-right: 0.3em;
	text-align: center;
}
.at-icon-list-item i.transparent {
	background-color: transparent;
	border-radius: 2em;
	color: #a1a1a1;
}
.at-icon-list-item p {
	color: #333333;
	font-size: 15px;
	line-height: 27px;
	font-weight: 400;
	margin: 0 0 10px;
	padding: 0 0 0 40px;
	position: relative;
}
/* ================================================================= */
/* 14. Porfolio & Blog Post Carousel                                 */
/* ================================================================= */

/* ================================================================= */
/* 15. Pricing Table                                                 */
/* ================================================================= */

.pricetable {
	display: block;
	position: relative;
	padding: 0;
	margin: 0 auto;
}
.pricing-inner {
	position: relative;
	display: block;
	margin: 20px 0;
}
.pricing-inner:after {
	clear:both;
	content:"";
	display:block;
}

.pricetable .column{
	float: left;
	position: relative;
	z-index: 3;
	margin-right: 1%;
	width: 24.2%;
}
.pricetable.col3 .column{ width:32.6%; }
.pricetable .column:last-child { margin-right:0; }
.pricetable .column-block {
    border: 1px solid #dddddd;
    border-width: 1px 0px 1px 1px;
}
.pricetable .column-block:last-child{
    border: 1px solid #dddddd;
    border-width: 1px 1px 1px 1px;
}
.pricetable .price-head {
	position: relative;
	text-align: center;
	padding: 25px 0;
	text-align: center;
}
.price-head .price-title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
}
.pricetable .price-font {
	font-size: 46px;
	line-height: 100%;
	vertical-align: middle;
	margin-bottom: 0;
}
.pricetable .price-font span{ font-size:11px; line-height:14px;}
.pricetable sup{
	letter-spacing: 0px;
	font-size:small;
}
.pricetable .price-content  {
	text-align: center;
	line-height: 24px;
	padding: 20px 40px;
}
.pricetable .price-content ul {
	margin: 0 0 20px 0;
	padding:0;
}
.pricetable .price-content ul li {
	list-style: none;
	padding: 5px;
	line-height: 35px;
}
.pricetable .price-content > p { margin-bottom: 0; }
.pricetable .featured {
	position: relative;
	margin-top: -10px;
	padding-bottom: 20px;
	z-index: 4;
	box-sizing: border-box;
	-webkit-box-shadow : 0 0 3px rgba(0, 0, 0, 0.15);
   	-moz-box-shadow: 	 0 0 3px rgba(0, 0, 0, 0.15);
	box-shadow: 		 0 0 3px rgba(0, 0, 0, 0.15);
}
.pricetable .featured .price-head {
	padding-top: 25px;
}


/* ================================================================= */
/* 16. Input CSS                                                     */
/* ================================================================= */

.input_small { width: 25% !important; }
.input_medium { width: 50% !important; }
.input_large { width: 95% !important; }

/* ================================================================= */
/* 18. Highlight                                                     */
/* ================================================================= */

.highlight1 {
    padding: 1px 6px;
    color: #ffffff;
    background-color: #5E5E5E;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.highlight2 {
    border-bottom: 2px dashed;
    padding: 1px
}
.highlight.yellow {
    background-color: #F7CA18;
    color: #000000;
}

/* ================================================================= */
/* 19. Fancy Table                                                   */
/* ================================================================= */

table.fancy_table {
    border: 1px solid #eee;
}
table.fancy_table th {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 14px;
    color: #222222;
}
table.fancy_table td {
    padding: 12px;
    background: #fff;
    border: 1px solid #eee;
}
table.fancy_table tbody tr:hover td {
    background-color: #F3F3F3;
}
table.fancy_table tfoot {
    background-color: #F3F3F3;
}
table.fancy_table {
    width: 99%;
    margin: 0 auto;
    margin-bottom: 10px;
    border-collapse: collapse;
    border-spacing: 0;
}
.fancy_table.alignleft {
    float: left;
    margin: 3px 15px 20px 3px;
}
.fancy_table.alignright {
    float: right;
    margin: 3px 3px 20px 15px;
}
.fancy_table.aligncenter {
    display: table;
    clear: both;
    margin: 0 auto;
    padding: 2px;
    margin-bottom: 20px;
    text-align: center;
}
.fancy_table p {
    margin-bottom: 0px;
}

/* ================================================================= */
/* 20. Progress Bar                                                  */
/* ================================================================= */
.at-progress-horizontal-bar { margin: 0 0 27px; overflow: hidden; position: relative; width: 100; }
.at-progress-horizontal-bar .at-progress-bar-holder { background-color: #e1e1e1; height: 12px; overflow: hidden; position: relative; }
.at-progress-horizontal-bar .at-prgress-bar-color {
	background-color: #990b6e;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 12px;
	left: 0;
	max-width: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.at-progress-horizontal-bar .at-progress-title-holder { margin: 0 0 8px; position: relative; }
.at-progress-horizontal-bar .at-progress-title { display: inline-block;}
.at-progress-horizontal-bar .at-progress-number { font-size: 18px; font-weight: 500; position: absolute; right: 0; top: 0;}
.at-progress-horizontal-bar .at-prgress-bar-color.striped {
	background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
	background-size: 20px 20px;
}
.at-progress-horizontal-bar .at-prgress-bar-color.striped {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/*=== Progress Circle ==== */
.CircleBarWrap {
    display: table;
    text-align: center;
    margin: 0 auto;
}
.CircleBarWrap .label {} .easyPieChart {
    position: relative;
    text-align: center;
    margin: 0 auto;
}
.easyPieChart canvas {
    position: absolute;
    top: 0;
    left: 0;
}
.chart {
	display: inline-block;
	margin-bottom: 20px;
	margin-right: 15px;
}
.CircleBar {
    text-align: center;
    color: #333;
    font-size: 1.2em;
    margin-bottom: 0.3em;
}
.chart .label {
    text-align: center;
    color: #333;
    font-size: 1em;
    margin: 0.8em 0;
}

/* ================================================================= */
/*  21. Fun Fact                                                     */
/* ================================================================= */

.at-funfact-wrap .at-funfact { padding: 0;}

.at-funfact {
  display:inline-block;
  position:relative;
  padding: 20px 0;
  text-align: center;
}

.at-funfact-wrap .at-funfact .funfact-number {
  display: block;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
  font-size: 30px;
}
.at-funfact-wrap .at-funfact .funfact-number-title {
	margin: 0;
	opacity: 0.55;
  	font-weight: 600;
}
.at-funfact-icon {
    display: inline-block;
    margin-right: 20px;
    position: relative;
}

/* ================================================================= */
/*  21. Tabs                                                         */
/* ================================================================= */

.systabspane {
    clear: both;
    margin: 10px 0 30px;
    padding: 0;
    position: relative;
}
.systabspane .panes {
    clear: both;
}
.systabspane.centertabs ul.iva-tabs {
    display: table;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}
.systabspane.righttabs ul.iva-tabs {
    margin: 0 0 0 auto;
    float: right;
}
.iva-tabs {
	border-bottom: 2px solid #ddd;
    display: table;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}
.iva-tabs li {
    float: left;
    line-height: 24px;
    list-style-type: none;
    padding: 16px 22px;
    cursor: pointer;
}

.iva-tabs a span {
    display: block;
}
.iva-tabs a {
    color: #000000;
	font-weight: bold;
    display: block;
    position: relative;
    text-decoration: none;
}
.tab_content {
    display: none;
    overflow: hidden;
    padding: 20px;
}
.iva-tabs li.current {
	border-bottom: 2px solid #990b6e;
    color: #000000;
    margin: 0;
    position: relative;
    margin-bottom: -2px;
	font-weight: bold;
}
.iva-tabs li.current a {
    cursor: pointer;
    color: #000;
}

/*=== Vertical Tabs ==== */
.vertabs .panes {
    clear: none;
}
.vertabs .iva-tabs {
    clear: none;
    float: left;
    width: 160px;
    height: auto;
    margin: 0 !important;
    padding: 0;
    border-bottom: none;
}
.vertabs .iva-tabs li {
    clear: left;
    display: block;
    float: none;
    margin: 0;
    padding: 0;
	line-height: 30px
    line-height: normal;
    list-style-type: none;
}
.vertabs .iva-tabs li:last-child {
}
.vertabs .iva-tabs a {
    display: block;
    clear: left;
    float: none;
    position: relative;
    height: auto;
    padding: 10px 15px;
    text-decoration: none;
}
.vertabs .tab_content {
    padding: 20px;
}
.vertabs .iva-tabs li.current {
    position: relative;
	margin-right: -2px;
	border-right: 2px solid #990b6e;
	border-bottom: 0px;
}
.vertabs .iva-tabs li.current a {
    color: #444;
    cursor: pointer;
}
.vertabs .tab_content {
    border-left: 2px solid #dddddd;
}

/* ================================================================= */
/*  23. Fancy Heading                                                */
/* ================================================================= */

.at-fancy-heading-v1 h1 {
	margin-bottom:0;
}
.at-fancy-heading-v1-sep {
	background-color: #E60028;
	content:"";
	display:block;
	margin:15px auto 20px;
	height:3px;
	width: 35px;
}
.at-fancy-subtitle-v1 {
    color: #777;
    font-weight: bold;
}
.at-fancy-title-v1 {line-height:110%;margin-bottom:0; font-weight: 600; letter-spacing: -0.5px}
.textcenter {text-align:center;}
.textleft {text-align:left;}
.textright {text-align:right;}
.textleft .at-fancy-heading-v1-sep {margin: 15px auto 20px 0;}
.textright .at-fancy-heading-v1-sep {margin: 15px 0 20px auto;}
.at-fancy-heading-v2 { text-align:center;}
.at-fancy-heading-v2 .at-fancy-subtitle-v2 {
	display: block;
	font-size: 14px;
	letter-spacing: 1px;
	margin-bottom: 8px;
	text-transform: uppercase;
	color: #a6a6a6;
}
.at-fancy-heading-v2 .at-fancy-title-v2 {
	color: #990b6e;
	line-height:110%;
	margin: 0;
}
.at-fancy-heading-v2 .large { font-size:42px; }
.at-fancy-heading-v2 .xlarge { font-size:60px; }
.at-fancy-heading-v2 {
	background-image: url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/images/fancy_heading_hr.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	padding-bottom: 25px;
	margin-bottom: 30px;
}
.at-fancy-title-v3 {
	background: rgba(0, 0, 0, 0) url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/images/fancy-title-pattern.png) repeat-x scroll left center;
	font-size: 14px;
	font-wieght: 700;
	color: #404040;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.at-fancy-title-v3 span {background-color: #ffffff;}
.at-fancy-heading-v3.textright span { padding: 0 0 0 7px; }
.at-fancy-heading-v3.textleft span { padding: 0 7px 0 0; }
.at-fancy-heading-v3.textcenter span { padding: 0 7px; }

.at-fancy-heading-v4 {text-align: center;margin-bottom: 20px; }
.at-fancy-title-v4 i {color: #990b6e; font-size: 40px;}
.at-fancy-title-v4 {margin-bottom: 10px; }
.at-fancy-subtitle-v4 { color: #a1a1a1; }

.at-fancy-heading-v5 .at-fancy-subtitle-v5 {
	letter-spacing: 0;
	margin-bottom: 0;
}
.at-fancy-heading-v5 .at-fancy-title-v5 {
	font-weight: 900;
	letter-spacing: -1px;
	margin: 0;
}
.at-fancy-heading-v5-sep {
	border-bottom: 1px solid #d1d1d1;
	width: 50%;
	margin: 25px auto;
}
.at-fancy-heading-v5-sep.textleft {margin: 25px 0;}
.at-fancy-heading-v5-sep.textright {margin: 25px 0 25px auto;}
.at-fancy-line-v6 {
	display: inline-block;
	vertical-align: baseline;
}
.at-fancy-heading-v6 { margin:10px 0 20px 0;}
.at-fancy-title-v6 {
	font-size: 28px;
	line-height: 34px;
	font-weight: normal ;
	text-transform: uppercase;
	letter-spacing: -1px;
	margin: 0 auto;
}
.at-fancy-line-v6.double-top-bottom {
	border-top: 3px double #d1d1d1;;
	border-bottom: 3px double #d1d1d1;
	border-left: 0;
	border-right: 0;
	padding: 15px 0;
}
.at-fancy-line-v6.double-left-right {
	border-left: 3px double #d1d1d1;;
	border-right: 3px double #d1d1d1;
	border-top: 0;
	border-top: 0;
	padding: 0 35px;
}

.at-fancy-line-v6.solid-left-right {
	border-left: 4px solid #d1d1d1;;
	border-right: 4px solid #d1d1d1;
	border-top: 0;
	border-top: 0;
	padding: 0 35px;
}
.at-fancy-line-v6.solid-top-bottom {
	border-top: 4px solid #d1d1d1;;
	border-bottom: 4px solid #d1d1d1;
	border-left: 0;
	border-right: 0;
	padding: 15px 0;
}


/* ================================================================= */
/*  24. Flickr Photos                                                */
/* ================================================================= */

.flickr-wg .flickr_badge_image {
    float: left;
	width: 72px;
	height: 72px;
    display: block;
    margin: 0 8px 8px 0 !important;
    padding: 3px !important;
    border: 1px solid #444444;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.flickr-wg .flickr_badge_image img {
    min-width: 50px;
	max-width: 100%;
	max-height: 100%;
    min-height: 50px;
}

/* ================================================================= */
/*  26. Section Row                                                  */
/* ================================================================= */

.section_row {
    position: relative;
    border-style: solid;
    border-color: #dddddd;
    padding: 30px 0;
}
.section_inner {
    width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.iva-page-section {
    position: relative;
    height: auto;
    margin-bottom: 0 !important;
}
.iva-page-section:before,
.iva-page-section:after {
    clear: both;
    display: block;
    content: '';
}
.iva-section-patterns,
.iva-video-color-mask {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    position: absolute !important;
    top: 0;
    left: 0;
    padding-bottom: 0px !important;
    z-index: 0;
}
.iva-video-color-mask {
    opacity: 0.6;
}
.iva-video-preload {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
}
.iva-section-video {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: -999;
    width: 100%;
    height: 100%;
}
.iva-page-section .iva-section-video {
    z-index: 0;
    opacity: 1.0;
}
.iva-section-video video {
    left: 0;
    min-height: 100%;
    min-width: 100%;
    max-width: 100%;
    position: absolute;
    top: 0;
}
.section_video .section_inner {
    padding: 0;
}
.wp-video {
    width: 100% !important;
}
.full-inner-class {
    text-align: justify;
    left: 25%;
    width: 1000px;
}
.full-width-class {
    width: 100%;
    box-sizing: content-box!important;
    -moz-box-sizing: content-box!important;
    -webkit-box-sizing: content-box!important;
}
.page_fullcontent {
    position: relative;
    z-index: 2;
}
.page_inner {
    position: relative;
    z-index: 2;
}
.page_fullcontent div:nth-child(1) {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.page_content {
    width: 1140px;
    clear: both;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.full-content-class {
    width: 100%;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    box-sizing: content-box!important;
    -moz-box-sizing: content-box!important;
    -webkit-box-sizing: content-box!important;
}
.inner_content_select {
    position: relative;
    width: 1140px;
    margin: 0 auto;
}
.inner_content {
    position: relative;
    width: 1140px;
    margin: 0 auto;
}
.ivanewgrid ul {
    margin: 0;
}
.ivanewgrid .isotope-inner {
    margin: 0 10px 0 0;
}

/*only for webkit  browsers*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .iva-page-section {
        background-attachment: scroll !important;
    }
}

/* ================================================================= */
/*  27. Logo Showcase                                                */
/* ================================================================= */

.clientcarousel {
    margin: 0 auto;
}
.clientthumb {
    display: table;
    margin: 0 auto;
}
.clientthumb figure img {
    display: block;
    cursor: default;
}
.clientthumb:hover a {
    color: #000000;
}
.cl-title {
    background-color: #ffffff;
	text-transform: uppercase;
    text-align: center;
    font-size: 13px;
    padding: 0 20px;
	border-radius: 50px;
	width: auto;
	margin-top: -10px;
}
.cl-title a {
    text-decoration: none;
	color: #444444;
}
.cl-title a:hover {
    text-decoration: none;
	color: #666666;
}


/* ================================================================= */
/* 29. Services Images                                               */
/* ================================================================= */

.iva-services {
    position: relative;
    margin: 0 -1px 25px 0;
}
.iva-pests {
    position: relative;
    margin: 0 1px 1px 0 !important;
}
.service-img,
.pest-img {
    position: relative;
}
.service-img img,
.pest-img img {
    margin: 0 auto;
    display: table;
}
.cs-title {
    position: relative;
    text-align: center;
    background-color: #FCFCFC;
    padding: 10px 15px;
    border-bottom: 3px solid #F7CA18;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.cs-title h2 {
    color: #444444;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
    position: relative;
    z-index: 2;
}
.cs-title p:hover {
	color: #FFFFFF;
	z-index: 2;
}

.cs-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 0;
    background-color: #F7CA18;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    z-index: 1;
}
.iva-services:hover .cs-title::after{
    height: 100%;
}
.iva-services:hover h2 a,
.iva-services p:hover{
    color: #ffffff;
}
.ppl_carousel .post-title {
    font-size: 16px;
}
.ppl_carousel .post-thumb {
    overflow: hidden;
    margin-bottom: 10px;
}
.ppl_carousel .post-thumb img {
    max-width: 100%;
    height: auto;
}

/* ================================================================= */
/* 30. Mini - Gallery & Galleria                                     */
/* ================================================================= */

.galleria {
    clear: both;
    position: relative;
    margin-bottom: 20px;
}
ul.sys_mini_gallery {
    display: inline-block;
    margin: 0 0 25px;
    padding: 0;
}
ul.sys_mini_gallery {
    position: relative;
    clear: both;
    width: 100%;
    opacity: 1;
}
ul.sys_mini_gallery li {
    display: inline-block;
    float: left;
    padding: 5px;
    margin: 0 10px 15px 0;
    background: #ffffff;
}
ul.sys_mini_gallery li:hover {
    transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
}
ul.sys_mini_gallery li a {
    display: block;
}
ul.sys_mini_gallery li img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    /* Firefox 10+, Firefox on Android */
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    /* IE 6-9 */
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
ul.sys_mini_gallery li:hover img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
    -webkit-filter: none;
    filter: none;
}
.sys_mini_gallery img {
    display: block;
}

/* ================================================================= */
/* 31. Feature Box - Shortcode                                       */
/* ================================================================= */

.feature-box {
    position: relative;
    overflow: hidden;
    color: #e8e8e8;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.feature-box:hover {
    background-color: #f5f5f5;
    cursor: pointer;
}
.fb-area {
    position: relative;
    display: inline;
    display: inline-block;
    float: left;
    width: 30%;
    margin: 0 5% 0 0;
    text-align: center;
}
.fb-area:last-child {
    margin-right: 0;
}
.fb-area h1,
.fb-area h2,
.fb-area h3,
.fb-area h4 {
    display: table;
    margin: 10px auto;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.feature-box .mid {
    position: relative;
    padding: 15px 0 !important;
    z-index: 2;
}
.fb-icon img {
    position: relative;
    display: table;
    margin: 0 auto;
}
.feature-box * {
    margin-bottom: 0;
}
.feature-box a {
    color: #ffffff;
}
.feature-box a:hover {
    color: #ee5b3e;
}

/* ================================================================= */
/* 32. Gallery - Shortcode                                           */
/* ================================================================= */

.gallery-columns-1.gallery-size-medium,
.gallery-columns-1.gallery-size-thumbnail,
.gallery-columns-2.gallery-size-thumbnail,
.gallery-columns-3.gallery-size-thumbnail {
    display: block;
}
.gallery {
    margin-bottom: 20px;
}
.gallery-item {
    float: left;
    margin: 0 4px 4px 0;
    overflow: hidden;
    position: relative;
}
.gallery-columns-1 .gallery-item {
    max-width: 100%;
}
.gallery-columns-2 .gallery-item {
    max-width: 48%;
    max-width: -webkit-calc(50% - 4px);
    max-width: calc(50% - 4px);
}
.gallery-columns-3 .gallery-item {
    max-width: 32%;
    max-width: -webkit-calc(33.3% - 4px);
    max-width: calc(33.3% - 4px);
}
.gallery-columns-4 .gallery-item {
    max-width: 23%;
    max-width: -webkit-calc(25% - 4px);
    max-width: calc(25% - 4px);
}
.gallery-columns-5 .gallery-item {
    max-width: 19%;
    max-width: -webkit-calc(20% - 4px);
    max-width: calc(20% - 4px);
}
.gallery-columns-6 .gallery-item {
    max-width: 15%;
    max-width: -webkit-calc(16.7% - 4px);
    max-width: calc(16.7% - 4px);
}
.gallery-columns-7 .gallery-item {
    max-width: 13%;
    max-width: -webkit-calc(14.28% - 4px);
    max-width: calc(14.28% - 4px);
}
.gallery-columns-8 .gallery-item {
    max-width: 11%;
    max-width: -webkit-calc(12.5% - 4px);
    max-width: calc(12.5% - 4px);
}
.gallery-columns-9 .gallery-item {
    max-width: 9%;
    max-width: -webkit-calc(11.1% - 4px);
    max-width: calc(11.1% - 4px);
}
.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
    margin-right: 0;
}
.gallery-caption {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    max-height: 50%;
    padding: 6px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    width: 100%;
}
.gallery-caption:before {
    content: "";
    height: 100%;
    min-height: 49px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
}
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none;
}

/* ================================================================= */
/* 33. Staff - Shortcode                                             */
/* ================================================================= */
.at-person-v6 {margin-bottom:50px;}
.at-person-v6-img {
  position:relative;
  margin-bottom: 45px;
}
.at-person-v6-img img{ max-width:100%;vertical-align:middle; border:0;}

.at-person-v6 .at-person-v6-social {
  position:absolute;
  left:0;
  bottom:0;
  margin-bottom:0;
}
.at-person-v6-social {display:block; width:100%;}
.at-person-v6-social a {
  font-size:18px;
  text-decoration:none;
  line-height:32px;
  display:inline-block;
  margin-right:15px;
  color: #a1a1a1;
  transition: all 0.3s;
}
.at-person-v6 .at-person-v6-social a:last-child {
  margin-right:0;
  border-bottom:none;
}
.at-person-v6 .at-person-v6-social a {
  position:relative;
  display:block;
  width:70px;
  height:70px;
  line-height:70px;
  text-align:center;
  background: #fff;
  border-bottom:1px solid #e0e0e0;
}
.at-person-v6 .at-person-v6-social a:before {
  content: "|";
  position: absolute;
  z-index: 2;
  top: -2px;
  right: -5px;
  opacity: 0;
  color: #eac004;
}
.at-person-v6 .at-person-v6-social a:after {
  content: "\f105";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 0;
  height: 69px;
  font-size: 25px;
  line-height: 70px;
  opacity: 0;
  background-color: #0b486b;
  color: #eac004;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.about-me .social-media a:last-child:after {height:70px;}
.at-person-v6 h4{
  font-size: 18px;
  line-height:26px;
  text-transform: uppercase;
  font-weight:900;
  margin:0;
}

.at-person-v6 h6 {
  font-size:14px;
  line-height:21px;
  margin:0;
  font-weight: 600;
  text-transform: uppercase;
  color: #0b486b;
}
.at-person-v6 .at-person-v6-social a {
    color: #0b486b;
}
.at-person-v6 .at-person-v6-social a:hover {
  background-color: #0b486b;
  color: #eac004 !important;
}

.at-person-v6 .at-person-v6-social a:hover:before {
  opacity:1;
}

.at-person-v6 .at-person-v6-social a:hover:after{
  right: -70px;
  width: 70px;
  opacity: 1;
}

/*Staff shortcode */

.bio .sociables {
    bottom: 0;
    position: absolute;
    text-align: center;
    margin: 0;
    padding: 30px 0;
    width: 100%;
}
.bio {
    position: relative;
    margin-bottom: 20px;
}
.bio hgroup {
    text-align: center;
    margin: 10px 0 0 0;
}
.bio hgroup h3 {
    margin-bottom: 10px;
    font-weight: bold;
}
.bio::before,
.bio::after {
    position: absolute;
    content: '';
}
.bio::before {
    width: 99%;
    left: .5%;
    bottom: -4px;
}
.bio::after {
    width: 98%;
    left: 1%;
    bottom: -7px;
}
.bio .details {
    background-color: #FFFFFF;
    padding: 20px;
    border-bottom: 1px solid #dddddd;
}
.bio .details p {
    padding: 0 20px;
}
.bio_thumb {
    position: relative;
    overflow: hidden;
}
.bio img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.bio h4 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #222222;
}
.bio span.staff-role {
    margin-bottom: 10px;
    display: block;
    color: #b2b2b2;
}
.bio .iva_socials li {
    float: none;
    background: none !important;
    display: inline-block;
    position: relative;
    line-height: 30px;
    width: 30px;
    height: 30px;
}
.bio .iva_socials li a {
    display: inline-block;
    width: 30px;
    padding: 0 !important;
    height: 30px;
    color: #ffffff;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

.bio .sociables:before {
	background-color: #000000;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	opacity: 0.75;
}


/* ================================================================= */
/*  34. Testimonials                                                 */
/* ================================================================= */
.testimonial-box {
    position: relative;
}
.testimonials-list .testimonial-box {
    margin-bottom: 50px;
}
.tc-content { position: relative; }
.tc-content p {
    position: relative;
    font-size: 14px;
	line-height: 22px;
	margin-bottom: 0;
	text-align: left;
	padding: 20px;
	border: 2px solid #f6f6f6;
}
.tc-details { margin-top: 20px; display: block; text-align: left; }

/*
.tc-content p::before {
    color: #ccc;
    content: "\201C";
    font-family: "Times New Roman";
    font-size: 100px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -60px;
}
.tc-content p::after {
    color: #ccc;
    content: "\201D";
    font-family: "Times New Roman";
    font-size: 100px;
	line-height: 100px;
    font-weight: bold;
    position: absolute;
    right: o;
    bottom: -60px;
}
*/

.tc-client-image {
	border-radius: 100%;
	position: relative;
	display: inline-block;
	margin: 0 auto;
	overflow: hidden;
	vertical-align: top;
	height: 60px !important;
	width: 60px !important;
}

.tc-client-meta {
	display: block;
	line-height: normal;
}

.client-name {
	color: #990b6e;
	display: inline-block;
	font-size: 12px;
	line-height: 22px;
	font-style: italic;
}
.client-name strong {
	color: #444444;
	display: block;
	font-size: 16px;
	font-style: normal;
	line-height: 11px;
	margin:  15px 0 5px;
}
.client-name a{
	text-transform: none;
	color: #222222 !important;
	display: inline-block;
	line-height: 120%;
	margin-left: 5px;
}

.client-name a:hover { opacity: 0.7; }

/*=== Testimonials Lists ==== */

.testimonial_list {
    position: relative;
}
.testimonial_list {
    min-width: 100px;
    position: relative;
    clear: both;
    list-style: none;
    padding: 0;
    margin: 0;
}
.testimonial_list li {
    top: 0;
    left: 0;
    display: none;
    background: none;
    padding: 0;
    list-style: none;
}
.testimonial_list li:first-child {
    display: block;
}
.testimonial_list .client-meta {
    margin-left: 65px
}
#testimonialid input,
#testimonialid textarea {
    width: 70%;
}
#testimonialid button {
    border: 0;
}

/* Testimonials Grid
======================================================================== */
.testimonial-grid-wrap {
    margin: 0 auto;
    clear: both;
    width: 100%;
}
.iva-testimonial {
    display: table-cell;
    float: none;
    border: 1px dashed #dddddd;
    border-width: 0 1px 1px 0;
    padding: 20px;
}
.iva-last-testimonial {
    border-right: none;
}
.iva_one_half {
    width: 50%;
}
.iva_one_third {
    width: 33.33%;
}
.testimonial-row {
    display: table-row;
}
.testimonial-row:last-child .iva-testimonial {
    border-bottom: none;
}

/* Carousel */
.testimonial-carousel {
    position: relative;
    margin: 0 auto;
    min-height: 100px;
    margin: 0 20px;
}

/* Testimonial Submission */
#testimonialid input,
#testimonialid textarea {
    width: 200px;
    border: 1px solid #DDDDDD;
}
#testimonialid button {
    border: 0;
}

/* ================================================================= */
/*  35. Partial Section                                              */
/* ================================================================= */

.partial_section_wrap {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    width: 100%;
    display: table;
    min-height: 100%;
}
.partial_section_image {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
    background-size: cover;
}
.partial_section_content {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
}
.ps_content {
    padding: 60px;
}

/* ================================================================= */
/*  36. Services box		                                         */
/* ================================================================= */

.services-box {
    position: relative;
    float: left;
    margin: 0;
    background-color: #5a5a5a;
    color: #FFFFFF;
}
.services-title {
    position: relative;
    margin-bottom: 20px;
}
.services-title h3 {
    font-size: 26px;
    font-weight: bold;
    margin: 0;
}
.services-inner {
    padding: 30px;
}
.btn-wrap {
    margin: 20px 0 0 0;
    display: block;
    text-decoration: none;
}

/* ================================================================= */
/*  37. Portfolio - Non Sortable		                             */
/* ================================================================= */

.portfoliotype .postimg {
    margin-bottom: 40px;
}
.portfolio_items {
    clear: both;
    position: relative;
    padding: 0;
    width: auto;
}
.portfolio_items .item {
    overflow: hidden;
    margin-bottom: 30px;
}
.portfolio_grid {
    position: relative;
    display: block;
    margin: 0;
}
.portfoliogrid {
    display: block;
    position: relative;
}
.port_img,
.sort_img {
    position: relative;
}
.port_desc {
    padding: 10px 0 0 0;
}
.port_desc h4 {
    font-size: 16px;
    margin-bottom: 0px;
}
.port_desc h5 {
    margin-bottom: 5px;
}
.port_desc p.date {
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.port_box {
    display: block;
    position: relative;
    float: left;
    margin: 0 0 10px 0;
}
.port_desc date {
    margin-bottom: 20px;
}
.port_desc p.extras {
    margin-bottom: 0;
    font-style: italic;
    letter-spacing: 0.8px;
}
.port_desc.col1 {
    padding: 0 2px 2px 2px;
    margin: 0;
}
.visitsite {
    margin-left: 10px;
}
.portfolio_single .postimg {
    margin-bottom: 20px;
}
.post_slider {
    display: block;
    position: relative;
    z-index: 2;
}
.post_slider img {
    display: block;
    margin-bottom: 30px;
}

/* -------------------------------------------------- */
.portfoliopage .details {
    list-style: none;
    margin-left: 0;
}
.portfoliopage .details li {
    overflow: hidden;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E7E6E6;
}
.portfoliopage .details h5 {
    float: left;
    margin: 0 !important;
    width: 120px;
}
.portfoliopage .details li span {
    float: left;
}
.layout-half .postimg {
    width: 65%;
    float: left;
    display: inline;
    margin-right: 5%;
}
.layout-half .portfoliopage {
    width: 30%;
    float: right;
}
.layout-half .two_third,
.layout-half .one_third {
    width: 100%;
    margin-right: 0;
    float: none;
}

/* Single Post Navigation -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
.singlepostlists {
    overflow: hidden;
    margin: 0 0 20px;
    padding: 20px 0;
}
.singlepostlists ul {
    margin: 0;
    padding: 0;
}
.singlepostlists li {
    background-position: 0 8px;
    display: inline-block;
    margin: 0 0 5px 0;
    padding: 0;
}

/* Sortable Portfolio -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
.sortable {
    width: 100%;
}
.sort_img,
.postimg {
    display: block;
    position: relative;
    padding: 0;
}
.image-grid .item {
    position: relative;
    overflow: hidden;
}
.sort_column1 .item {
    width: 100%;
    height: 300px;
    margin: 0 0 40px 0;
}
.sort_column1 .item .sort_img {
    position: relative;
    float: left;
    width: 620px;
    height: auto;
    margin-right: 30px;
    overflow: visible;
}
.sort_column2 .item {
    position: relative;
    width: 48%;
    margin: 0 1% 1% 0;
    height: auto;
    overflow: visible;
}
.sort_column3 .item {
    width: 31.2%;
    height: auto;
    margin: 0 1% 1% 0;
    overflow: visible;
}
.sort_column4 .item {
    width: 25%;
    height: auto;
    margin: 0;
    overflow: visible;
}

/* Portfolio Grid*/
.grid {
    margin: 0 auto;
    list-style: none;
}
.grid figure {
    margin: 0;
    position: relative;
    max-height: 300px;
}
.grid figure img {
    max-width: 100%;
    min-height: 100%;
	display: block;
    position: relative;
}
.grid figure figcaption {
    padding: 2em;
    color: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}
.grid figure figcaption,
.grid figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*---------------*/
/***** Zoe   *****/
/*---------------*/
figure.iva-effect-zoe figcaption {
    top: 0;
    bottom: -1px;
    padding: 20px;
    height: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #666666;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
figure.iva-effect-zoe h3 {
    font-size: 15px;
    margin: 0 auto;
    position: relative;
    top: 55%;
}
figure.iva-effect-zoe p {
    margin: 0 auto;
    display: table;
    position: relative;
    top: 30%;
}
figure.iva-effect-zoe p.icon-links a {
    color: #ffffff;
    font-size: 14px;
    width: 20px;
    margin: 0 auto;
}
figure.iva-effect-zoe:hover p.icon-links a:hover,
figure.iva-effect-zoe:hover p.icon-links a:focus {
    color: #ffffff;
}
figure.iva-effect-zoe h3,
figure.iva-effect-zoe p.icon-links a {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
figure.iva-effect-zoe p.icon-links a span::before {
    float: left;
    padding: 8px 10px;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
figure.iva-effect-zoe p.icon-links a i::before {
    display: inline-block;
    padding: 8px 10px;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
p.icon-links .iva-love-count {
    padding-left: 10px;
}
.icon-eye::before {
    content: '\e000';
}
.icon-paper-clip::before {
    content: '\e001';
}
.icon-heart::before {
    content: '\e024';
}
figure.iva-effect-zoe h3 {
    display: inline-block;
}
figure.iva-effect-zoe:hover p.description {
    opacity: 1;
}
figure.iva-effect-zoe:hover figcaption,
figure.iva-effect-zoe:hover h3,
figure.iva-effect-zoe:hover p.icon-links a {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.iva-effect-zoe:hover h3 {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}
figure.iva-effect-zoe:hover p.icon-links a:nth-child(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
figure.iva-effect-zoe:hover p.icon-links a:nth-child(2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}
figure.iva-effect-zoe:hover p.icon-links a:first-child {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* NavTab Section */
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
.iva_tabsContainer {
	position: relative;
}

/* Tabbed Nav */
.iva_tabsWrap {
	position: relative;
	background-color: rgba(0,0,0,1);
	color:#ffffff;
}

.fixed-tabsNav {
	position: fixed !important;
	width:100%;
	top: 0px;
	left:0;
	margin: 0 auto;
	padding: 0;
	z-index: 3001;
	background-color: #ffffff; /* IE Fall Back*/
	background-color: rgba(0,0,0,1); /* Latest Browsers */
}

body.stickyHeader .fixed-tabsNav { top: 80px; }

.iva_tabNav {
	margin:0;
	padding:0;
	list-style: none;
	clear:both;
	width: 90%;
	max-width: 1080px;
	margin:0 auto;
}

.iva_tabNav li {
	display: inline-block;
	float: left;
	padding: 15px 15px;
	font-size: 18px;
	}
.iva_tabNav li a { color:#eeeeee; }
.iva_tabNav li a:hover { color:#ffffff; }
.iva_tabNav:before,
.iva_tabNav:after {
	clear: both;
	content: '';
	display: block;
	}

/* Tabbed Section */
.tab_sectionWrap { position:relative; }
.tab_sectionInner {
	width: 90%;
	max-width: 1080px;
	margin:0 auto;
	position:relative;
	z-index:3;
}

.tab_navContent {
	padding: 40px 0;
}

.tabsection_bg {
	position: absolute;
	top: 0;
	background-size: cover;
	background-attachment: fixed;
	background-size: 100% 100%;
	z-index: 1;
	width: 100%;
	height: 100%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/*only for webkit  browsers*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
.tabsection_bg {
    background-attachment: scroll !important;
	}
}

.tabsection_overlay {
	position: absolute;
	top: 0;
	background-image: url(//cartlabsolutions.com/wp-content/plugins/labora-core/labora-shortcodes/css/images/opacs/dark20.png);
	background-repeat: repeat;
	background-position: top left;
	z-index: 2;
	width: 100%;
	height: 100%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.iva_tabsec_wrap  {
    clear: both;
    margin: 0;
    padding: 0;
    position: relative;
	-webkit-box-shadow: 0 1px 1px 0 rgba(180, 180, 180, 0.1);
	-moz-box-shadow:    0 1px 1px 0 rgba(180, 180, 180, 0.1);
    box-shadow:         0 1px 1px 0 rgba(180, 180, 180, 0.1);
}

.iva_tabsec_wrap .iva_tab_content    {
	clear:both;
	}
.iva_tabsec_wrap.center ul.tabs  {
	background-color: #F1F2F3;
    display: table;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
	}
.iva_tabsec_wrap.right ul.tabs   {
	margin:0 0 0 auto;
	float: right;
	}

.iva_tabsec_wrap .tabs {
    display: table;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
	}

.iva_tabsec_wrap .tabs li {
	float: left;
	line-height: 40px;
	list-style-type: none;
	padding: 0 30px;
	cursor: pointer;
	background-color: #f5f5f5;
	border-width: 1px 1px 0 0;
	border-color: #dddddd;
	border-style: solid;
}
.iva_tabsec_wrap .tabs li:first-child{
	border-width: 1px 1px 0 1px;
	border-color: #dddddd;
	border-style: solid;
}

.iva_tabsec_wrap .tabs a span {
	display:block;
}

.iva_tabsec_wrap .tabs a {
	color: #000000;
	display: block;
	position: relative;
	text-decoration: none;
}

.iva_tabsec_wrap .tab_content {
	background-color: #ffffff;
	display: none;
	overflow: hidden;
	padding: 15px;
	border: 1px solid #dddddd;
}

.iva_tabsec_wrap .tabs li.current {
	color: #000000;
	margin: 0;
	position: relative;
	background: rgba(255,255,255,1);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(47%, rgba(246,246,246,1)), color-stop(100%, rgba(237,237,237,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
	filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 )";
}

.iva_tabsec_wrap .tabs li.current a {
	cursor: pointer;
	color:#000;
}
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* Price lists */
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

.iva-pricelist-items {
	list-style: outside none none;
	margin-left: 0;
}
.iva-pl-item{
	margin-bottom: 30px;
    position: relative;
}
.iva-pl-item-content {

}
.iva-pl-item-title {
	position: relative;
	z-index: 5;
}
.iva-pl-item-highlight {
	background-color: #ffffff;
    font-weight: bold;
    margin-left: 5px;
}
.iva-pl-item-desc {
	margin-bottom: 0;
    position: relative;
    text-align: left;
}
.iva-pl-item-desc-content {
    position: relative;
    z-index: 5;
}
.iva-pl-item-price {
	font-size: 1.1875em;
    font-weight: bold;
    line-height: 1.27316;
    max-width: 96px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.iva-pl-wrap {
	overflow: hidden;
	padding: 10px;
}

.iva-pl-content {
	float: left;
	text-align: left;
	 width: 80%;
}

.iva-pl-title {
    position: relative;
    font-weight: 500;
    margin: 0 0 10px 0;
    line-height: 100%;
}

.iva-pl-price {
	float: right;
}

.iva-pl-price h5 {
	margin: 0;
    font-size: 22px;
    font-weight: 600;
    text-align: right;
}

.iva-pl-highlight {
    position: relative;
    font-size: 10px;
    padding: 4px 8px;
    margin-left: 5px;
    color: #444444;
    border-radius: 3px;
    font-weight: 600;
}
.hoverimg img:hover {
	 background-color: rgb(0, 172, 133);
    display: block;
    position: relative;
}

/************ F A N C Y   B O X ***********/

.iva-fancy-box {
    overflow:hidden;
    position:relative;
    padding:13%;
}

.iva-fancy-box:after {
    display: block;
    position: absolute;
    content: ' ';
    width: 100%;
    height: 6px;
    left: 0;
    bottom: 0;
    background: #fff;
    z-index: 5;
    transform: scaleX(0) translateZ(0);
    -webkit-transform: scaleX(0) translateZ(0);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transition: 0.45s cubic-bezier(0.24, 1, 0.30, 1);
    transition: 0.45s cubic-bezier(0.24, 1, 0.30, 1);
}
.iva-fancy-box:hover:after {
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
}
.iva-fancy-box:hover .iva-fancy-box-bg {
    transform: scale(1.13);
    -webkit-transform: scale(1.13);
}

.iva-fancy-box .iva-fancy-box-bg {
    position:absolute;
    backface-visibility: hidden;
    background-position:center center;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: cover;
    transition:all .6s cubic-bezier(0.24, 1, 0.30, 1);
    -webkit-transition: all .6s cubic-bezier(0.24, 1, 0.30, 1);
}

.iva-fancy-box:hover .iva-fancy-box-bg:after {
    background-color: rgba(51,51,51,0.2);
}

.iva-fancy-box  .iva-fancy-box-bg:after {
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
  content: ' ';
    background-color:rgba(51,51,51,0.5);
    transition:all .6s cubic-bezier(0.24, 1, 0.30, 1);
    -webkit-transition: all .6s cubic-bezier(0.24, 1, 0.30, 1);
}
.iva-fancy-box .iva-fancy-box-inner {
    position:relative;
    text-align:left;
    color: #fff;
    padding-bottom:15%;
}

.iva-fancy-box-inner h3 {
	color: #fff;
    font-size: 32px;
    line-height:32px;
    font-weight: 700;
}

.iva-fancy-box .iva-fancy-box-link {
    font-size:12px;
    line-height:14px;
    font-weight:300;
    letter-spacing:1px;
    text-transform:uppercase;
    position:relative;
    color: #fff;
    text-align:left;
}
.iva-fancy-box .iva-fancy-box-link .iva-fb-arrow {
    line-height: 26px !important;
    font-size: 14px !important;
    font-family: FontAwesome !important;
    opacity: 1;
    position: relative;
    display: inline-block;
    margin-left: 16px;
    top: 2px;
    transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
    -webkit-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
    overflow: visible;
    height: 24px;
    width: 24px;
    border-radius: 100px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.4);
}

.iva-fancy-box:hover .iva-fancy-box-link .iva-fb-arrow {
    border-color:transparent;
}
.iva-fancy-box .iva-fancy-box-link .iva-fb-arrow:before {
    content: "\f105";
    color: #fff;
    top: -1px;
    right: -1px;
    display: block;
    transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
    -webkit-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
    position: relative;
}
.iva-fancy-box .iva-fancy-box-link .iva-fb-arrow:after {
	display: block;
	content: " ";
	position: absolute;
	width: 26px;
	height: 1px;
	background-color: #fff;
	opacity: 0;
	left: -6px;
	cursor: pointer;
	transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
	-webkit-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
	pointer-events: none;
	top: 12px;
	transform: translateX(-27px);
	-webkit-transform: translateX(-27px);
}

.iva-fancy-box:hover .iva-fancy-box-link .iva-fb-arrow:before {
	transform: translateX(9px);
	-webkit-transform: translateX(9px);
}

.iva-fancy-box:hover .iva-fancy-box-link .iva-fb-arrow:after {
	opacity: 1;
	transform: translateX(2px);
	-webkit-transform: translateX(2px);
}

.iva-fancy-box:after { background-color: #1e83ec !important; }

.iva-fancy-box .iva-fb-box-link {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: block;
}

/*-=-=-=-=-=-=-=-=-=-*/
/* Twenty Twenty */
/*-=-=-=-=-=-=-=-=-= */
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
	content: " ";
	display: block;
	background: white;
	position: absolute;
	z-index: 30;
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
	width: 8px;
	height: 9999px;
	left: 50%;
	margin-left: -4px;
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.twentytwenty-before-label, .twentytwenty-after-label {
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	transition-property: opacity;
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
	color: white;
	font-size: 13px;
	letter-spacing: 0.1em;
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
	position: absolute;
	background: rgba(255, 255, 255, 0.2);
	line-height: 38px;
	padding: 0 20px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
	top: 50%;
	margin-top: -19px;
}

.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
	left: 50%;
	margin-left: -45px;
	text-align: center;
	width: 90px;
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
	width: 0;
	height: 0;
	border: 5px inset transparent;
	position: absolute;
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow {
	top: 50%;
	margin-top: -5px;
}

.twentytwenty-up-arrow, .twentytwenty-down-arrow {
	left: 50%;
	margin-left: -6px;
}

.twentytwenty-wrapper {
	overflow: hidden;
}
.twentytwenty-container {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	z-index: 0;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
}
.twentytwenty-container img {
    max-width: 100%;
    position: absolute;
    top: 0;
    display: block;
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
  opacity: 0; }
.twentytwenty-container * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


.twentytwenty-before {
	z-index: 20;
}

.twentytwenty-after {
	z-index: 10;
}

.twentytwenty-handle {
	height: 44px;
	width: 44px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -22px;
	margin-top: -22px;
	-webkit-border-radius: 1000px;
	-moz-border-radius: 1000px;
	border-radius: 1000px;
	z-index: 40;
	cursor: move;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
	bottom: 50%;
	margin-bottom: 20px;
}
.twentytwenty-horizontal .twentytwenty-handle:after {
	top: 50%;
	margin-top: 20px;
}

.twentytwenty-vertical .twentytwenty-handle:before {
	left: 50%;
	margin-left: 22px;
	-webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.twentytwenty-vertical .twentytwenty-handle:after {
	right: 50%;
	margin-right: 22px;
	-webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow {
	border-right: 6px solid rgba(255,255,255,1);
	left: 50%;
	margin-left: -16px;
}

.twentytwenty-right-arrow {
	border-left: 6px solid rgba(255,255,255,1);
	right: 50%;
	margin-right: -16px;
}

.twentytwenty-up-arrow {
	border-bottom: 6px solid white;
	top: 50%;
	margin-top: -17px;
}

.twentytwenty-down-arrow {
	border-top: 6px solid white;
	bottom: 50%;
	margin-bottom: -17px;
}

.twentytwenty-handle, .twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
	background-color:gray;
}

/*-=-=-=-=-=-=-=-=-=-*/
/* Table Sorting */
/*-=-=-=-=-=-=-=-=-= */

.at-vacant-table-wrap {
    margin: 0 0 45px;
    position:relative;
}
.at-vacant-table-wrap .at-vacant-table {
    border-collapse:collapse;
    border-spacing: 0;
    width:100%;
}
.at-vacant-table-wrap .at-vacant-table thead th {
    border-bottom:1px solid #e4e4e4;
    border-top: 5px solid #cccccc;
    color:#002e5b;
    text-align:left;
    cursor:pointer;
    font-family: Poppins;
    font-size:13px;
    font-weight: 700;
    padding: 21px 0 21px 43px;
    position:relative;
    text-transform: lowercase;
}
.at-vacant-table-wrap .at-vacant-table thead th:first-child {
	padding-left:0;
}
.at-vacant-table-wrap .at-vacant-table tbody td:first-child {
	padding-left:0;
}
.at-vacant-table-wrap .at-vacant-table thead th::after {
    color:#002e5b;
    content:"ï„‡";
    font:11px/1 FontAwesome;
    margin: 2px 0 0 20px;
    position:absolute;
    text-rendering: auto;
    tranformation translate (0px, 0px)
}
.at-vacant-table-wrap .at-vacant-table thead th.headerSortUp::after {
	content:"ï„†";
}
.at-vacant-table-wrap .at-vacant-table thead th.headerSortUp {
	border-top-color: #fde428;
}

.at-vacant-table-wrap .at-vacant-table thead th.headerSortDown::after {
	content:"ï„†";
}
.at-vacant-table-wrap .at-vacant-table thead th.headerSortDown {
	border-top-color: #fde428;
}
.at-vacant-table-wrap .at-vacant-table tbody td {
    border-bottom: 1px solid #e4e4e4;
    font-size:13px;
    line-height:18px;
    padding:13px 0 13px 43px;
}
.at-vacant-table-wrap .at-vacant-table tbody td a {
    color: #002e5b;
    text-decoration:none;
    transition: all 0.3s ease 0s;
}
.at-vacant-table-wrap .at-vacant-table td a:hover{
	color:#6c98e1;
}

/*-=-=-=-=-=-=-=-=-=-*/
/* Service Box            */
/*-=-=-=-=-=-=-=-=-= */

.at-info-box-v1 {
    margin: 0 0 30px;
    position:relative;
    overflow:hidden;
}

.at-info-box-v1-image {
    margin:0;
    position:relative;
}

.at-info-box-v1-image img {
    height: auto;
    max-width:100%;
    vertical-align:middle;
}

.at-info-box-v1 .at-info-box-v1-text {
    background: #062E57;
    opacity:0.8;
    bottom:0;
    left:0;
    padding: 17px 30px 0;
    position:absolute;
    right:0;
    top:205px;
    transition: all 0.3s ease 0s;
}

.at-info-box-v1-text .at-info-box-v1-title {
    margin-bottom:15px;
}

.at-info-box-v1-text i {
    color:#fde428;
    font-size:40px;
    display: table-cell;
    padding: 0 12px 0 0;
    vertical-align: middle;
}

.at-info-box-v1-text h6 {
    color: #fff;
    display:table-cell;
    font-weight:700;
    margin:0;
    padding-top:0;
    vertical-align: middle;
    font-size:16px;
    letter-spacing:-0.02em;
    line-height: 26px;
}

.at-info-box-v1-text p {
    color: #fff;padding-left: 55px
}

.at-info-box-v1:hover .at-info-box-v1-text {
    padding-top:38px;
    top:0;
}

.at-info-box-v1 .at-info-box-v1-text .read-more {
    color: #fde428;
    font-size:13px;
    font-weight:700;
    padding-left:55px;
    text-transform: lowercase;
    text-decoration:none;
    transition: color 0.2s linear 0s;
}

.at-info-box-v1 .at-info-box-v1-text .read-more span {
    line-height: 13px;
    vertical-align:middle;
}

.at-info-box-v1 .at-info-box-v1-text .read-more i {
    color:#fde428;
    font-size:12px;
    margin:1px 0 0 5px;
    vertical-align:middle;
}

/*-=-=-=-=-=-=-=-=-=-*/
/* Image Icon Box */
/*-=-=-=-=-=-=-=-=-= */
.at-icon-box-v1 a:before {
    position: absolute;
    display: inline-block;
    content: "";
    background: #ffffff;
    width: 40px;
    height: 2px;
    left: -50px;
    bottom: 0;
    margin-bottom: 20px;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.at-icon-box-v1 a:after {
    position: absolute;
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #ffffff;
    bottom: 0;
    left: -20px;
    margin-bottom: 16px;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.at-icon-box-v1 a {
    float: left;
    height: 100%;
    padding: 50px 30px;
    width: 100%;
}

.at-icon-box-v1 a * {
        z-index: 1;
    position:relative;
    transition:all 0.3s ease-in-out 0.1s;
    text-decoration:none;
}

.at-icon-box-v1 a i {
    font-size:50px;
    margin-bottom:30px;
    color:#999;
}
.at-icon-box-v1 a h3 {
    color: #212121;
    font-size: 2.5rem;
    line-height: 2.9rem;
    margin-bottom: 15px;
    margin-top: 0;
    text-decoration: none;
}
.at-icon-box-v1 a p {
    color:#777;
    font-size:1.2rem;
    line-height:1.5rem;
    margin: 0 0 50px;
}
.at-icon-box-v1 a .at-icon__bgimg {
    background-position: center top;
    background-size: cover;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.at-icon-box-v1 a .at-icon__bgimg:before  {
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.at-icon-box-v1 a .at-icon__border {
    background-color: #45ca58;
    bottom: 0;
    height: 8px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.at-icon-box-v1 a:hover:before {
    left: 30px;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out 0.3s;
    -moz-transition: all 0.3s ease-in-out 0.3s;
    transition: all 0.3s ease-in-out 0.3s;
}
.at-icon-box-v1 a:hover:after {
    left: 67px;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out 0.3s;
    -moz-transition: all 0.3s ease-in-out 0.3s;
    transition: all 0.3s ease-in-out 0.3s;
}
.at-icon-box-v1 a:hover h3 { color: #ffffff;}
.at-icon-box-v1 a:hover p { color: #f5f5f5;}
.at-icon-box-v1 a:hover .at-icon__bgimg {opacity:1; background-color: #333;}
.at-icon-box-v1 a:hover .at-icon__border {height:40px;}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* Logo Carousel */
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

.clientcarousel { margin: 0 auto;}
.clientthumb {
    border: 1px solid rgba(0,0,0,0.04);
    margin: 0 15px;
}

.clientthumb figure img {display:block; cursor: move; }

.cl-title a { text-decoration: none; }
.cl-title a:hover { text-decoration: none; }
.logo-carousel .logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
a.pp_close { z-index: 1;}
/* ================================================================= */
/* 39 Expandable                                                    */
/* ================================================================= */
.at-expand-more-holder {
	position: relative;
}
.at-expand-action-holder {
    display: block;
    position: relative;
    text-align: center;
}

.at-expand-action-holder.left { text-align: left; }
.at-expand-action-holder.right { text-align: right; }
.at-expand-action-holder.center { text-align: center; }
.at-expand-action-text {
    cursor: pointer;
    display: block;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 22px;
    margin: 0;
    padding: 40px 15px;
    position: relative;
}
.at-expand-more-holder .at-expand-content-outer {
    display: none;
    overflow: hidden;
    padding: 70px 20px 0;
    position: relative;
}
/**/
/* ================================================================= */
/* 40 Staff Bottom Shotrcode                                              */
/* ================================================================= */
.at-staff-warp {
    background: #e60028 none repeat scroll 0 0;
    color: #fff;
    margin-bottom: 30px;
    padding: 45px 50px 38px;
    position: relative;
}

.at-staff-warp:before {
    background: #e60028 none repeat scroll 0 0;
	opacity: 0.7;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.at-staff-warp .at-staff-inner {
    position: relative;
}
.at-staff-inner h2 {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: -0.5px;
}
.at-staff-warp .at-staff-details {
    border-collapse: collapse;
    border-spacing: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
}
.at-staff-warp .at-staff-details .at-sdetails {
    display: table-cell;
    font-weight: 500;
    line-height: 26px;
    padding: 0 20px;
    vertical-align: top;
}
.at-staff-warp .at-staff-details .at-sdetails:first-child { padding-left: 0;}
.at-staff-warp .at-staff-details .at-sdetails i {
    color: #cedde2;
}
.at-staff-warp .at-staff-details .at-sdetails .phone {
    margin: 0 0 15px;
}
.at-staff-warp .at-staff-details .at-sdetails .phone i {
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
    width: 25px;
}
.at-staff-warp .at-staff-details .at-sdetails .email i {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
    width: 25px;
}
.at-staff-warp .at-staff-details .at-sdetails .email a {color: #fff;}

.at-staff-warp .at-staff-details .at-sdetails .address i {
    float: left;
    font-size: 20px;
    margin-top: 3px;
    width: 25px;
}
.at-staff-warp .at-staff-details .at-sdetails .address span {
    display: block;
    overflow: hidden;
}
.at-staff-warp .at-staff-details .at-sdetails .social p {
    line-height: 22px;
    margin-bottom: 9px;
}
/**/
/* ================================================================= */
/* 39 Blog SC Style 1                                                */
/* ================================================================= */

.at-blog-cols {
    display: flex;
    flex-wrap: wrap;
}

.at-blog-sc-v1 {
	position: relative;
	overflow: hidden;
}
.at-blog-sc-v1 .at-post-content {
	padding: 25px 0;
}
.at-blog-sc-v1  .at-post-content h2 { font-size: 1.4rem; }
.at-blog-sc-owl-v1 .at-post-content h2 { font-size: 1rem; }
.at-blog-sc-owl-v1 .at-post-content { padding: 20px 0; }
.at-blog-sc-owl-v1 { padding: 0 15px; }

.at-post-thumb { overflow: hidden; }
.at-post-thumb img {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.at-post-thumb:hover img {
	-webkit-transform: scale(1.10);
	transform: scale(1.10);
}
.at-post-content .at-entry-title a:hover { text-decoration: none; }

.at-post-meta {
	padding: 8px 0;
	border: 1px solid #eeeeee;
	border-width: 1px 0 0 0;
}
.at-post-meta > span {
	color: #777777;
	display: inline-block;
	font-size: 12px;
}
.at-post-meta > span a { color:#777777; }
.at-post-meta > span a:hover { color:#22222b; text-decoration: none; }
.at-post-meta span:after {
	content: "\2022";
	margin: 0 5px;
	font-size: 12px;
	opacity: 0.5;
}
.at-post-meta span:last-child:after { content: ""; }
.at-post-meta span.iva-love-count::after { margin: 0; }
.at-post-meta span.iva-pm-featured:after { content: "";  }

/* Blog SC List style */
.at-blog-list-v1 .at-entry-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}
.at-blog-list-v1 .at-entry-title a:hover {
	color: #242424;
}
.at-blog-list-v1 .at-post-thumb {
	width: 15%;
	position: relative;
	display: inline-block;
	float: left;
	margin: 0 3% 0 0;
}

.at-blog-list-v1 .at-post-content {
	overflow: hidden;
	line-height: normal;
}

.at-blog-list-v1 article.post {
	margin-bottom: 15px !important;
	padding-bottom: 0 !important;
}

.at-blog-list-v1 .at-blog-list-meta > span { font-size: 13px; padding: 2px 8px; }
.at-blog-list-v1 .at-blog-list-meta > span:first-child { padding-left: 0; }
.at-blog-list-v1 .at-blog-list-meta > span a { color: #444444; }

/* Blog SC grid Style */

.at-blog-list-v2 { position: relative; }

.at-blog-list-v2 .at-blog-list-meta > span { font-size: 12px; padding: 2px 8px; }
.at-blog-list-v2 .at-blog-list-meta > span:first-child { padding-left: 0; }
.at-blog-list-v2 .at-blog-list-meta > span a { color: #444444; }
.at-blog-list-v2 .at-entry-title { font-size: 10px}

/* Blog SC owl carousel */
.at-blog-sc-owl-v1 .at-post-content h2 { font-size: 1rem; }
.at-blog-sc-owl-v1 .at-post-content { padding: 30px 0 20px 0; }
.at-blog-sc-owl-v1 { padding: 0 15px; }

/* Gallery Template & Single Page
=========================================================== */

.gallery-list { position:relative;}
.gallery-desc {
    background-color: #ffffff;
    padding: 10px;
    overflow: hidden;
    border:1px solid #dddddd;
    border-width: 0 1px 1px 1px;
    -webkit-border-radius: 0px 0px 4px 4px;
       -moz-border-radius: 0px 0px 4px 4px;
            border-radius: 0px 0px 4px 4px;
}
.gallery-desc > span { display: block; font-size: 11px; }
.gallery-list .entry-title { margin-bottom:0px; font-size:14px;  }

.gallery-list:hover .gallery-desc { background-color:#990b6e; }
.gallery-list:hover .gallery-desc * { color:#ffffff; }
.gallery-list:hover .gallery-desc span { color:rgb(255,255,255) }
.gallery-list:hover .gallery-desc span { color:rgba(255,255,255,0.8) }

.gallery-details span {
    float: left;
    margin: 0 2px 2px 0;
    font-weight: normal;
    padding: 5px 10px;
    width: 46%;
}
.gallery-meta{ text-transform: uppercase;}
.gallery-postimg { position:relative; float: left; margin: 6px;}
.widget .gallery-postimg { margin: 2px;}
.gallery-wrap:before,
.gallery-wrap:after {
    clear:both;
    content:"";
    display:table;
}

/* @since v3.1.0 */
.gallery-list .entry-title > a { color:#444444;  }
.gallery-list .entry-title > a:hover { color:#ffffff;  }

.gallery-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 3px;
    font-size: 11px;
    color: #ffffff;
    background-color: rgba(0,0,0,0.3);
    text-align: center;
}
/*-=-=-=-=-=-=-=-=-=-*/
/* History Timeline Addon  */
/*-=-=-=-=-=-=-=-=-= */
.at-history { position: relative; }
.at-history > ul { list-style: none; margin: 0; padding: 0; }
.at-history > ul > li { margin: 0; }
.at-history > ul > li .at-cmpny-year {
	display: table-cell;
	font-size: 42px;
	font-weight: 900;
	line-height: 30px;
	letter-spacing: -1px;
	opacity: 0.25;
}
.at-cmpny-text h4 { font-weight: 600; line-height: normal; }
.at-history > ul > li .at-cmpny-sep { display: table-cell; position: relative;  width: 80px; }
.at-history > ul > li .at-cmpny-sep::before {
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    top: 0;
    width: 1px;
	border-left: 1px dashed #dadada;
}
.at-history > ul > li .at-cmpny-sep::after {
    content: "";
    height: 16px;
    left: 50%;
    position: absolute;
    top: 0;
    width: 16px;
	margin-left: -7px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
	border: 4px solid #dadada;
}
.at-history > ul > li .at-cmpny-text { display: table-cell; padding: 0 0 50px; }
.at-history > ul > li:last-child { margin: 0; }
.at-history > ul > li:last-child .at-cmpny-sep::before {display:none;}


/*labora_works*/
.labora_work_list {
	position: relative;
}
.cols_2 .labora_works .item {
    width: 50%;
}
.cols_3 .labora_works .item {
    width: 33.333%;
}
.cols_4 .labora_works .item {
    width: 25%;
}
.labora_works .item {
    margin: 0 0 30px;
    padding: 0 15px;
}
.labora_works_filter {
    list-style: none;
    padding: 14px 20px;
    margin: 0 0 40px;
    background: #fde428;
}
.labora_works_filter:after {
	content: "";
	display: table;
	clear: both;
}
.labora_works_filter li {
	float: left;
	line-height: 1;
	font-size: 14px;
}
 .labora_works_filter li.active a {
	background: #002e5b;
	color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
}
.labora_works_filter li a {
    color: #002e5b;
    display: block;
    padding: 9px 15px;
}
.labora_works_filter li a:focus {
   text-decoration: none;
}
.image a img {
    display: block;
    height: auto;
    max-width: 100%;
}
.image img {
    border: 0 none;
	vertical-align: middle;
}
.labora_works .item .info {
	padding: 24px 22px 22px;
	border: 3px solid #f2f2f2;
	border-top: none;
}
.labora_works .item .info .title {
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 24px;
}

/* Gmap Addresses */
.at_gmap_container {
    position: relative;
}


/*********************************/
/*  Chart Addon  				 */
/*********************************/
.labora-chart {
    position: relative;
}
.labora-chart canvas {
    height: auto;
    max-width: 100%;
}
.labora-chart .labora-chart-legend {
    list-style: outside none none;
    margin: 10px 0 0;
    padding: 0;
    position: relative;
}
.labora-chart .labora-chart-legend::after {
    clear: both;
    content: "";
    display: table;
}
.labora-chart .labora-chart-legend li {
    color: #777777;
    float: left;
    font-size: 13px;
    margin: 0 24px 12px 0;
    padding: 0;
}
.labora-chart .labora-chart-legend li::before {
    display: none;
}
.labora-chart .labora-chart-legend li span {
    border-radius: 3px;
    display: inline-block;
    height: 18px;
    margin: 0 5px 0 0;
    vertical-align: top;
    width: 18px;
}
.labora-chart.labora-legend-position-right canvas {
    display: inline-block;
    vertical-align: middle;
}
.labora-chart.labora-legend-position-right .labora-chart-legend {
    display: inline-block;
    padding: 0 0 0 30px;
    vertical-align: middle;
}
.labora-chart.labora-legend-position-right .labora-chart-legend li {
    float: none;
    margin: 0 0 10px;
}

/*********************************/
/*  Vacancy Table Sorting Addon   */
/*********************************/

.at-vacancy-table-wrap { margin: 0 0 45px; position:relative; }
.at-vacancy-table-wrap .at-vacancy-table {
    border-collapse:collapse;
    border-spacing: 0;
    width:100%;
	border: medium none;
}
.at-vacancy-table-wrap .at-vacancy-table thead th {
    border-bottom: 3px solid rgba(0,0,0,0.1);
    color:#3B3B3B;
    text-align:left;
    cursor:pointer;
    font-size:14px;
    font-weight: 600;
    padding: 20px 0 15px 45px;
	border-width: 0 0 3px 0;
    position:relative;
	box-shadow: none;
}

.at-vacancy-table-wrap .at-vacancy-table thead th:first-child { padding-left:0; }
.at-vacancy-table-wrap .at-vacancy-table tbody td:first-child { padding-left:0; }
.at-vacancy-table-wrap .at-vacancy-table thead th.headerSortDown { border-bottom-color: #990b6e; }
.at-vacancy-table-wrap .at-vacancy-table tbody td {
    border-bottom: 1px solid rgba(0,0,0,0.07);
	border-width: 0 0 1px 0;
    font-size:14px;
    line-height:18px;
    padding:15px 0 15px 45px;
	vertical-align: middle;
}
.at-vacancy-table-wrap .at-vacancy-table tbody td a {
    color: #990b6e;
    text-decoration:none;
    transition: all 0.3s ease 0s;
	font-weight: 400;
}
.at-vacancy-table-wrap .at-vacancy-table tbody td span {
	color: #990b6e;
	display: block;
	font-weight: 600;
}
.at-vacancy-table-wrap .at-vacancy-table tbody td.date {
    text-align: right;
}

/*********************************/
/*  Vacancy Information Addon     */
/*********************************/
.vacancy_info {
    color: #444444;
    position: relative;
    width: 100%;
}
.vacancy_info .info { font-size: 13px; line-height: 28px; padding: 10px 0;}
.vacancy_info .info .icon { float: left; width: 30px; }
.vacancy_info .info .text { overflow: hidden; }
.vacancy_info .info .text strong { display: block; font-weight: 700; line-height: 22px; }

/*********************************/
/*  Google Address Carousel      */
/*********************************/

.at_gmap_address-wrap {
	position:relative;
	padding: 40px 0;
}

.at_gmap_address-wrap .item {
	padding:0 15px;
	display: flex;
	justify-content: center;
}

.at_gmap_address p {
	margin-bottom: 5px;
	display: table;
}
.gmap-address-title {
	margin-bottom: 5px;
}
.at_gmap_address .gmap-icon {
	display: table-cell;
	vertical-align: top;
	padding: 0 10px 0 0;
}

.at_gmap_address .details {
	display: table-cell;
	vertical-align: top;
}
/*********************************/
/*  Partner VC Addon   			 */
/*********************************/

.at-partner { position: relative; }

.at-partner.style1 .at-partner-image {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	float: left;
	margin: 0 35px 0 0;
	max-width: 28%;
}
.at-partner.style2 .at-partner-image {
	border: 3px solid #f6f6f6;
	margin: 0 0 25px;
}
.at-partner.style1 .at-partner-image img,
.at-partner.style2 .at-partner-image img {
	display: block;
	height: auto;;
	max-width: 100%;
}
.at-partner.style1 .at-partner-content { overflow: hidden; }
.at-partner.style1 .at-partner-content h4,
.at-partner.style2 .at-partner-content h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 5px;
	padding: 0;
	line-height: normal;
	transition: all 0.3s ease 0s;
}
.at-partner.style1 .at-partner-content .sub-title,
.at-partner.style2 .at-partner-content .sub-title { line-height: 18px ; margin: 0 0 18px; opacity: 0.8; font-weight: 600; letter-spacing: -0.6px;}
.at-partner.style1 .at-partner-content .desc,
.at-partner.style2 .at-partner-content .desc { font-size: 14px; line-height: 24px; margin: 0; }
.at-partner.style1 .at-partner-content .desc p,
.at-partner.style2 .at-partner-content .desc p { margin: 0 0 12px;}
.at-partner.style1 .at-partner-content .read_more,
.at-partner.style2 .at-partner-content .read_more {
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease 0s;
}
.at-partner.style1 .at-partner-content .read_more::after,
.at-partner.style2 .at-partner-content .read_more::after  {
    content: "\f105";
    font-family: "FontAwesome";
    margin-left: 10px;
}

/*********************************/
/*  Staff Addon   				 */
/*********************************/

.at-person { position: relative; }

/* Staff List Style */

.at-person.list { border-bottom: 1px solid #eeeeee; margin: 0 0 30px; padding: 0 0 30px; display: table; }
.at-person.list:last-child { border-bottom: none; padding: 0; margin: 0;}
.at-person.list .at-person-image {
	float: left;
	margin: 0 30px 0 0;
	max-width: 28%;
	position: relative;
}
.at-person.list .at-person-image img {
	display: block;
	height: auto;
	max-width: 100%;
}
.at-person.list .at-person-content { overflow: hidden; }
.at-person.list .at-person-content h4 { font-weight: 600; margin: 0 0 1px; line-height: 1.7; font-size: 18px; }
.at-person.list .at-person-content h6 { font-weight: 600; margin: 0 0 15px; color: #777777; }
.at-person.list .at-person-content p { font-size: 13px; line-height: 22px; margin: 0 0 25px; }

/* Staff Grid Style */
.at-person.grid ul { margin: 0 -15px; list-style: none; padding: 0; }
.at-person.grid.col_2 ul li { display: inline-block; font-size: 13px; margin: 0 0 45px; padding: 0 15px; vertical-align: top; width: 50%; }
.at-person.grid.col_3 ul li { display: inline-block; font-size: 13px; margin: 0 0 45px; padding: 0 15px; vertical-align: top; width: 33%; }
.at-person.grid.col_4 ul li { display: inline-block; font-size: 13px; margin: 0 0 45px; padding: 0 15px; vertical-align: top; width: 25%; }
.at-person.grid ul li .at-person-image { float: none; margin: 0 0 14px; }
.at-person.grid ul li .at-person-image { float: none; margin: 0 0 14px; }
.at-person.grid ul li .at-person-image img {
	display: block;
	height: auto;
	max-width: 100%;
	border: 2px solid transparent;
	border-radius: 2px;
	transition: all 300ms linear;
}

.at-person.grid ul li:hover .at-person-image img {
	border-color: #990b6e;
}
.at-person.grid ul li .at-person-content { overflow: hidden; }
.at-person.grid ul li .at-person-content h4 { font-weight: 600; margin: 0 0 1px; line-height: 1.7; font-size: 18px; }
.at-person.grid ul li .at-person-content h6 { font-weight: 400; margin: 0 0 15px; opacity: 0.8; }
.at-person.grid ul li .at-person-content p { font-size: 13px; line-height: 22px; margin: 0 0 25px; }

@media only screen and (max-width: 768px ) {
	.at-person.grid.col_2 ul li,
	.at-person.grid.col_3 ul li,
	.at-person.grid.col_4 ul li { width: 50%; }
}

@media only screen and (max-width: 425px ) {
	.at-person.grid.col_2 ul li,
	.at-person.grid.col_3 ul li,
	.at-person.grid.col_4 ul li { width: 100%; }
}



/* Staff Carousel Style */
.at-person.carousel .at-person-image img { display: block; height: auto; }
.at-person.carousel .at-person-content h4 { font-weight: 600; margin: 15px 0 1px; line-height: 1.7; font-size: 18px; }
.at-person.carousel .at-person-content h6 { font-weight: 600; margin: 0 0 15px; color: #777777; }
.at-person.carousel.col_2 { display: inline-block; font-size: 13px; margin: 0 0 45px; padding: 0 15px; vertical-align: top; width: 50%; }
.at-person.carousel.col_3 { display: inline-block; font-size: 13px; margin: 0 0 45px; padding: 0 15px; vertical-align: top; width: 33%; }

/*********************************/
/*  Cases Addon   				 */
/*********************************/

.at-cases-wrapper.col_2 .at-cases-item { width: 50%; }
.at-cases-wrapper.col_3 .at-cases-item { width: 33%; }
.at-cases-wrapper.col_4 .at-cases-item { width: 25%; }
.at-cases-filter {
	padding: 0;
	text-align: center;
	margin-bottom: 30px;
}

.at-cases-filter li { list-style: none; display: inline-block; }
.at-cases-filter li a { margin: 0 8px; color: #999; padding-bottom: 5px; border: 1px solid transparent; text-decoration: none !important; cursor: pointer; }
.at-cases-filter li a:hover { color: #222; }
.at-cases-filter li a.selected { color: #222; padding-bottom: 2px; border-bottom: 1px solid #e3e3e3; }

.at-cases-item .at-cases { position: relative; }
.at-cases { margin: 15px; }
.at-cases-main .at-cases-item { width: 33%; }

.at-cases-details {
	position: relative;
	float: left;
	overflow: hidden;
	width: 100%;
	color: #fff;
	text-align: left;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.at-cases-details * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}
.at-cases-details img {
  max-width: 100%;
  position: relative;
  height: auto;
  opacity: 1;
}
.at-cases-details .at-cases-content {
  position: absolute;
  line-height: normal;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 10px;
  z-index: 1;
  opacity: 0;
}
.at-cases-details span {
  margin: 0;
}
.at-cases-details .title {
	font-size: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  letter-spacing: -1px;
  font-weight: 400;
  margin-bottom: 5px;
}
.at-cases-details .categories {
	display: block;
	font-size: 14px;
	opacity: 0.6;
}
.at-cases-details:after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: #990b6e;
  position: absolute;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  opacity: 0;
}
.at-cases-details a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.at-cases-details:hover img,
.at-cases-details.hover img {
  opacity: 0.5;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.at-cases-details:hover .at-cases-content,
.at-cases-details.hover .at-cases-content {
  opacity: 0.9;
}
.at-cases-details:hover:after,
.at-cases-details.hover:after {
  opacity: 0.6;
}

/*********************************/
/*  Testimonail Addon 			 */
/*********************************/

.at-testimonial-warp {position: relative; }

.at-testimonial-item.style1,
.at-testimonial-item.style2 {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
.at-testimonial-item.style1 *,
.at-testimonial-item.style2 *,
.at-testimonial-item.style3 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.at-testimonial-item.style1 img,
.at-testimonial-item.style2 img {
  max-width: 100%;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  margin-right: 5px;
  display: block;
  z-index: 1;
  position: absolute;
}
.at-testimonial-item.style2 img { margin: 0 0 15px 0; display: inline-block; position: relative; }
.at-testimonial-item.style1 .at-testimonial-blockquote,
.at-testimonial-item.style2 .at-testimonial-blockquote {
  margin: 0;
  display: block;
  position: relative;
  background-color: #f2f2f2;
  padding: 30px 50px 65px 50px;
  font-weight: 400;
  margin: 0 0 -40px;
  line-height: 1.6em;
}
.at-testimonial-item.style1 .at-testimonial-blockquote:before,
.at-testimonial-item.style1 .at-testimonial-blockquote:after,
.at-testimonial-item.style2 .at-testimonial-blockquote:before,
.at-testimonial-item.style2 .at-testimonial-blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
.at-testimonial-item.style1 .at-testimonial-blockquote:before,
.at-testimonial-item.style2 .at-testimonial-blockquote:before {
  top: 35px;
  left: 20px;
}
.at-testimonial-item.style1 .at-testimonial-blockquote:after,
.at-testimonial-item.style2 .at-testimonial-blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 35px;
}
.at-testimonial-item.style1 .at-testimonial-author {
  margin: 0;
  height: 90px;
  display: block;
  text-align: left;
  padding: 0 35px;
  position: relative;
}
.at-testimonial-item.style2 .at-testimonial-author { margin: 0; text-align: center; }
.at-testimonial-item.style1 .at-testimonial-author h5,
.at-testimonial-item.style1 .at-testimonial-author span {
  left: 23%;
  position: absolute;
  opacity: 0.8;
  padding: 6px 4px;
}
.at-testimonial-item.style1 .at-testimonial-author h5 {
  bottom: 50%;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  color: #222222;
}
.at-testimonial-item.style2 .at-testimonial-author h5 { margin: 0; font-weight: 600; }
.at-testimonial-item.style1 .at-testimonial-author span {
  font-size: 0.8em;
  top: 50%;
  line-height: 1;
  padding: 1px 5px;
  font-style: italic;
}
.at-testimonial-item.style2 .at-testimonial-author span { display: block; font-style: italic; font-size: 0.8em; line-height: normal;}

/*  Testimonail Style 3 VC Addon*/

.at-testimonial-item.style3 {
	display: inline-block;
	font-size: 14px;
	margin: 0 0 45px;
	padding: 0 20px;
	vertical-align: top;
	position: relative;
}
.at-testimonial-item.style3 .at-testimonial-image {
	float: left;
	margin: 0 30px 0 0;
	max-width: 44%;
}
.at-testimonial-item.style3 .at-testimonial-image img {
	display: block;
	height: auto;
	max-width: 100%;
}
.at-testimonial-item.style3 .at-testimonial-blockquote { overflow: hidden; }
.at-testimonial-item.style3 .at-testimonial-blockquote h5 {
	cursor: #222;
	line-height: 22px;
	margin-bottom: 5px;
	padding-top: 0;
	font-weight: 600;
	font-size: 20px;
}
.at-testimonial-item.style3 .at-testimonial-blockquote .at-testimonial-cmpy,
.at-testimonial-item.style3 .at-testimonial-blockquote .at-testimonial-site {
	font-weight: 600;
	line-height: 18px;
	display: block;
	color: #888;
	font-family: Montserrat;
}
.at-testimonial-item.style3 .at-testimonial-blockquote .at-testimonial-site { margin-bottom: 22px; }
.at-testimonial-item.style3 .at-testimonial-blockquote p { line-height: 22px; margin: 0; }
/*********************************/
/*  Staff Info VC Addon 		 */
/*********************************/

.at-staff-wapper { position: relative; }
.at-staff-wapper .at-staff-info {
	display: table;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed
}
.at-staff-wapper .at-staff-info .info {
	display: table-cell;
	font-size: 14px;
	vertical-align: top;font-weight: 600;
	line-height: 24px;
	padding: 0 15px;
}
.at-staff-wapper .at-staff-info .info:first-child { padding-left: 0; }
.at-staff-wapper .at-staff-info .info .phone,
.at-staff-wapper .at-staff-info .info .email,
.at-staff-wapper .at-staff-info .info .edu { margin: 0 0 10px; }
.at-staff-wapper .at-staff-info .info i { color: #990b6e; }
.at-staff-wapper .at-staff-info .info .phone .fa-phone {
	font-size: 20px;
	display: inline-block;
	vertical-align: middle;
	width: 25px;
}
.at-staff-wapper .at-staff-info .info .phone span { display: inline-block; vertical-align: middle; }
.at-staff-wapper .at-staff-info .info .edu .fa-university {
	font-size: 16px;
	display: inline-block;
	vertical-align: middle;
	width: 25px;
}
.at-staff-wapper .at-staff-info .info .edu span { display: inline-block; vertical-align: middle; }
.at-staff-wapper .at-staff-info .info .email .fa-envelope {
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
	width: 25px;
}
.at-staff-wapper .at-staff-info .info .email span { display: inline-block; vertical-align: middle; }
.at-staff-wapper .at-staff-info .info .address .fa-map-marker {
	font-size: 14px;
	float: left;
	margin-top: 3px;
	width: 25px;
}
.at-staff-wapper .at-staff-info .info .address span {
	display: block;;
	line-height: 22px;
	overflow: hidden;
}
.at-staff-wapper .at-staff-info .info .social p { margin-bottom: 8px; }
.at-staff-wapper .at-staff-info .info .iva_socials li { background: transparent; }
.at-staff-wapper .at-staff-info .info .iva_socials li i { font-size: 18px; }

/*********************************/
/*  Services VC Addon 			 */
/*********************************/

.at-service-container {
	position:relative;
	margin: 0 -15px;
}
.at-service-container.col_3 .at-item.style1,
.at-service-container.col_3 .at-item.style2,
.at-service-container.col_3 .at-item.style3,
.at-service-container.col_4 .at-item.style1,
.at-service-container.col_4 .at-item.style2,
.at-service-container.col_4 .at-item.style3,
.at-service-container.col_2 .at-item.style1,
.at-service-container.col_2 .at-item.style2,
.at-service-container.col_2 .at-item.style3,
.at-service-container.col_1 .at-item.style1,
.at-service-container.col_1 .at-item.style2,
.at-service-container.col_1 .at-item.style3 {
	width: 33%;
	display: inline-block;
	font-size: 14px;
	margin: 0 0 45px;
	line-height: 24px;
	padding: 0 15px;
	vertical-align: top;
}

.at-service-container.col_4 .at-item.style1,
.at-service-container.col_4 .at-item.style2,
.at-service-container.col_4 .at-item.style3 {
	width: 25%;
}
.at-service-container.col_2 .at-item.style1,
.at-service-container.col_2 .at-item.style2,
.at-service-container.col_2 .at-item.style3 {
	width: 49%;
}
.at-service-container.col_1 .at-item.style1,
.at-service-container.col_1 .at-item.style2,
.at-service-container.col_1 .at-item.style3 {
	width: 100%;
}

.at-service-container .at-item.style1 .at-image,
.at-service-container .at-item.style3 .at-image {
	margin: 0 0 30px;
}
.at-service-container .at-item.style2 .at-image {
	margin: 0;
}
.at-service-container .at-item.style1 .at-image a,
.at-service-container .at-item.style3 .at-image a {
	display: block;;
	position: relative;
}
.at-service-container .at-item.style1 .at-image img,
.at-service-container .at-item.style2 .at-image img,
.at-service-container .at-item.style3 .at-image img {
	display: block;
	height: auto;;
	max-width: 100%;
}
.at-service-container .at-item.style2 .at-image img {
	border-radius: 0;
}
.at-service-container .at-item.style1 .at-content h4,
.at-service-container .at-item.style2 .at-content h4,
.at-service-container .at-item.style3 .at-content h4 {
	font-size: 16px;
	letter-spacing: -0.045em;
	font-weight: 400;
	line-height: 22px;
	margin: 0 0 10px;
	padding: 0;
}
.at-service-container .at-item.style2 .at-content {
	padding: 24px 28px 22px;
	-moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #f2f2f2 #f2f2f2;
    border-image: none;
    border-style: none solid solid;
    border-width: medium 3px 3px;
}
.at-service-container .at-item.style1 .at-content h4 a {
	text-decoration: none;
}
.at-service-container .at-item.style2 .at-content .at-category {
	font-size: 13px;
	margin: 0 0 8px;
	color: #666
}
.at-service-container .at-item.style2 .at-content .at-category span {
	display: inline-block;
	line-height: 1;
	vertical-align: middle;
}
.at-service-container .at-item.style2 .at-content .at-category i {
	color: #990b6e;
	display: inline-block;
	font-size: 11px;
	line-height: 1;
	margin: 2px 0 0 5px;
	vertical-align: middle;
}
.at-service-container .at-item.style3 .at-image .at-category {
	background-color: #990b6e;
    border-radius: 10px;
    bottom: 20px;
    font-size: 10px;
    left: 20px;
    letter-spacing: 0.05em;
    line-height: 16px;
    padding: 0 11px;
    position: absolute;
    text-transform: uppercase;
}
.at-service-container .at-item.style3 .at-content p { margin: 0 0 10px;}
.at-service-container .at-item.style3 .at-image .at-category span { color: #fff; font-size: 12px; line-height: normal; }
.at-service-container .at-item.style1 .read_more,
.at-service-container .at-item.style3 .read_more {
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease 0s;
}
.at-service-container .at-item.style1 .read_more::after,
.at-service-container .at-item.style3 .read_more::after {
    content: "\f105";
    font-family: "FontAwesome";
    margin-left: 10px;
}

/* Google Map Location Highlight */
.active-locs.hover {
    background-color: #e4ebef;
}