/*--

DESCRIPTION:  clicktex Official Website
VERSION: 3.1

[TABLE OF CONTENTS]

0.0 ANIMATIONS
1.0 BUTTONS
2.0 ALERTS
3.0 FORM ELEMENTS
4.0 MENU
5.0 CUSTOM FONTS
6.0 NAVIGATION
7.0 COMMON HEADINGS
8.0 HEADER
9.0 RED LINE

10.0 SECTIONS
10.1 SECTION: COUNTERS
10.2 SECTION: COMMON
10.3 SECTION: GET STARTED
10.4 SECTION: TESTIMONIALS
10.5 SECTION: CONTACT
10.6 SECTION: INNER PAGE

11.0 FOOTER
12.0 MODAL
13.0 DEFAULT PAGE STYLING
14.0 GENERAL RESET

--*/
.burger.navbar-toggle{
    display: none;
}
.animated-delay-5s {
    -webkit-animation-delay: 5s;
    -moz-animation-delay: 5s;
    -o-animation-delay: 5s;
    animation-delay: 5s;
}

.animated-delay-8s {
    -webkit-animation-delay: 8s;
    -moz-animation-delay: 8s;
    -o-animation-delay: 8s;
    animation-delay: 8s;
}

.animated-delay-15s {
    -webkit-animation-delay: 15s;
    -moz-animation-delay: 15s;
    -o-animation-delay: 15s;
    animation-delay: 15s;
}

/* ----------------------------------------------------------------- Buttons --------------------------------------------------------- */

.btn {
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
    transition: all 0.5s ease;
	text-transform: uppercase;
	border-radius: 5px;
}

.btn span {
	display: block;
}

.btn:focus {
	outline: none;
}

.btn.active, .btn:active {
	box-shadow: none;
}

.btn-fill {
	background: #24aa65;
	border: 2px solid #24aa65;
}

.btn-fill:hover, .btn-fill:focus {
	background: transparent;
	color: #24aa65;
}

.btn-black-fill {
	background: #000;
	border: 2px solid #000;
}

.btn-black-fill:hover, .btn-black-fill:focus {
	background: transparent;
	color: #000;
}

.btn-bordered {
	background: transparent;
	border: 2px solid #ffffff;
}

.btn-bordered:hover, .btn-bordered:focus {
	background: #ffffff;
	color: #24aa65;
}

.btn-black-bordered {
	color: #444444;
	background: transparent;
	border: 2px solid #444444;
}

.btn-black-bordered:hover, .btn-black-bordered:focus {
	background: #444444;
	color: #ffffff;
}

.btn-green-bordered {
	color: #2bbf71;
	background: transparent;
	border: 2px solid #2bbf71;
}

.btn-green-bordered:hover, .btn-green-bordered:focus {
	outline: unset;
	background: #2bbf71;
	color: #ffffff;
}

.btn-xs {
	font-size: 12px;
	padding: 6px 24px;
}

.btn-sm {
	padding: 6px 10px;
}

.btn-md {
	padding: 10px 30px;
}

@media (max-width: 350px) {
	.btn-md {
		padding: 10px 10px;
	}
}

.btn-lg {
	padding: 15px 25px;
	font-size: 16px;
}

.btn-xl {
	padding: 15px 25px;
	font-size: 22px;
	border-radius: 7px;
}

@media (max-width: 350px) {
	.btn-xl {
		padding: 10px 15px;
		font-size: 17px;
	}
}

.btn-rounded {
	border-radius: 50px;
}

.btn-success {
	background: #00caa4;
	border: 2px solid #00caa4;
}

.btn-success:hover, .btn-success:focus {
	background: transparent;
	color: #00caa4;
	border-color: #00caa4;
}

.btn-info {
	background: #59b2c9;
	border: 2px solid #59b2c9;
}

.btn-info:hover, .btn-info:focus {
	background: transparent;
	color: #59b2c9;
	border-color: #59b2c9;
}

.btn-warning {
	background: #ffd361;
	border: 2px solid #ffd361;
}

.btn-warning:hover, .btn-warning:focus {
	background: transparent;
	color: #ffd361;
	border-color: #ffd361;
}

.btn-danger {
	background: #ff5a5a;
	border: 2px solid #ff5a5a;
}

.btn-danger:hover, .btn-danger:focus {
	background: transparent;
	color: #ff5a5a;
	border-color: #ff5a5a;
}

.wow {
	visibility: hidden;
}



/* ----------------------------------------------------------------- ALERT BOX RESET --------------------------------------------------------- */

.alert {
	padding: 10px 15px 10px 40px;
	border-radius: 3px;
	position: relative;
	text-align: left;
	letter-spacing: 1px;
}

.alert:before {
	font-family: FontAwesome;
	font-size: 15px;
	position: absolute;
	left: 15px;
}

.alert.alert-info {
	color: #ffffff;
	background-color: #59b2c9;
	border-color: #59b2c9;
}

.alert.alert-info:before {
	content: "\f05a";
	color: rgba(76, 76, 76, 0.6);
}

.alert.alert-warning {
	color: #6b6b6b;
	background-color: #ffd361;
	border-color: #ffd361;
}

.alert.alert-warning:before {
	content: "\f071";
	color: rgba(76, 76, 76, 0.6);
}

.alert.alert-danger {
	color: #ffffff;
	background-color: #ff5a5a;
	border-color: #ff5a5a;
}

.alert.alert-danger:before {
	content: "\f05e";
	color: rgba(76, 76, 76, 0.6);
}

.alert.alert-success {
	color: #f7f7f7;
	background-color: #00caa4;
	border-color: #00caa4;
}

.alert.alert-success:before {
	content: "\f058";
	color: rgba(76, 76, 76, 0.6);
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------- START: Form Elements --------------------------------------------------------- */

.contact-form {
	opacity: 1;
}

.contact-form-success {
	position: absolute;
	display: none;
	width: 90%;
	height: 100%;
	opacity: 0;
	top: 0;
	color: #fff;
	text-align: center;
	padding-top: 100px;
}

.contact-form-success p a {
	display: inline;
	color: #fff;
}

.contact-form-success h1 {
	margin-bottom: 30px;
}

.link-form-success {
	display: none;
}

.input {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 16px;
	/*max-width: 400px;*/
	/*width: calc(100% - 32px);*/
	width: 100%;
	vertical-align: top;
}

.input__field {
	position: relative;
	display: block;
	float: right;
	padding: 18px;
	width: 60%;
	border: none;
	border-radius: 0;
	background: #f0f0f0;
	color: #aaa;
	font-family: "Open Sans", sans-serif;
	-webkit-appearance: none;
	/* for box shadows to show on iOS */
}

.input__field:focus {
	outline: none;
}

.input__label {
	display: inline-block;
	float: right;
	/*padding: 0 16px;*/
	width: 100%;
	color: #6a7989;
	font-weight: bold;
	font-size: 100.25%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.input__label-content {
	position: relative;
	display: block;
	padding: 0 0 25px 0;
	width: 100%;
	font-size: 14px;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.graphic {
	position: absolute;
	top: 0;
	left: 0;
	fill: none;
}

.icon {
	color: #ddd;
	font-size: 150%;
}

.input-error svg{
	stroke: #d9534f;
}

label.input-error, .input-error label,
label.input-error a, .input-error label a{
	color: #f18885;
}



/* Madoka */

.input--madoka {
	margin: 20px 0 25px 0;
}

.input__field--madoka {
	width: 100%;
	background: transparent;
	color: #fff;
}

.input__label--madoka {
	position: absolute;
	width: 100%;
	height: 100%;
	color: #fff;
	text-align: left;
	cursor: text;
}

.input__label-content--madoka {
	-webkit-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.graphic--madoka {
	-webkit-transform: scale3d(1, -1, 1);
	transform: scale3d(1, -1, 1);
    transition: stroke-dashoffset 0.3s;
	pointer-events: none;
	stroke: #fff;
	stroke-width: 4px;
	stroke-dasharray: 962;
	stroke-dashoffset: 558;
}

.input__field--madoka:focus + .input__label--madoka,
.input--filled .input__label--madoka {
	cursor: default;
	pointer-events: none;
}

.input__field--madoka:focus + .input__label--madoka .graphic--madoka,
.input--filled .graphic--madoka {
	stroke-dashoffset: 0;
}

.input__field--madoka:focus + .input__label--madoka .input__label-content--madoka,
.input--filled .input__label-content--madoka {
	-webkit-transform: scale3d(0.81, 0.81, 1) translate3d(0, 64px, 0);
	transform: scale3d(0.81, 0.81, 1) translate3d(0, 64px, 0);
}

.input__field--madoka:focus + .input__label--madoka .input__label-content--madoka.text-area,
.input--filled .input__label-content--madoka.text-area {
	-webkit-transform: scale3d(0.81, 0.81, 1) translate3d(0, 90px, 0);
	transform: scale3d(0.81, 0.81, 1) translate3d(0, 90px, 0);
	stroke-width: 2px;
}


/* ----------------------------------------------------------------- END: Form Elements --------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------------- */



/* ---------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------- START: Menu ------------------------------------------------------------ */

#view-code {
	color: #4183d7;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	position: absolute;
	top: 640px;
	left: 50%;
	margin-left: -35px;
}

div.screen {
	display: none;
	width: 320px;
	height: 100vh;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	float: right;
	margin-left: 0;
}

.list {
	margin-top: 36px;
	text-align: left;
}

div.burger {
	position: absolute;
	top: 0;
	cursor: pointer;
	left: 0;
	height: 100%;
	margin: 0 !important;
	width: 70px;
}

div.burger-inner {
	left: 20px;
	position: absolute;
	top: 22px;
}

div.x, div.y, div.z {
	position: absolute;
	margin: auto;
	top: 0px;
	bottom: 0px;
	background: #fff;
	border-radius: 2px;
    transition: all 200ms ease-out;
}

div.x, div.y, div.z {
	height: 3px;
	width: 26px;
}

div.y {
	top: 18px;
}

div.z {
	top: 37px;
}

div.collapse {
	top: 20px;
    transition: all 70ms ease-out;
}

div.rotate30 {
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
    transition: all 50ms ease-out;
}

div.rotate150 {
	-webkit-transform: rotate(150deg);
	transform: rotate(150deg);
    transition: all 50ms ease-out;
}

div.rotate45 {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
    transition: all 100ms ease-out;
}

div.rotate135 {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
    transition: all 100ms ease-out;
}

div.navbar {
	height: 73px;
	background: #385e97;
}

div.menu-bg {
	width: 320px;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background: #40435b;
	opacity: 0;
    transition: all 300ms cubic-bezier(0, 0.995, 0.99, 1);
}

div.menu-bg.animate {
	opacity: 0.9;
    transition: all 400ms cubic-bezier(0, 0.995, 0.99, 1);
}

div.menu {
	height: 100vh;
	width: 100%;
}

.menu-splitL, .menu-splitR {
	left: 0px;
	width: 320px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	top: 60px;
}

.collapse {
	display: block;
}

.menu-splitR {
	left: 160px;
	padding: 0;
}

div.menu ul li {
	list-style: none;
	width: 320px;
	text-align: center;
	font-size: 19px;
    transition: all 150ms cubic-bezier(0, 0.995, 0.99, 1);
}

div.menu ul li a {
	color: #fff;
	font-size: 17px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 2px;
	padding: 15px 0;
}

section > div {
	transition: -webkit-transform 1s;
	transition: transform 1s;
	transition: transform 1s, -webkit-transform 1s;
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
}

div.menu li.animate {
	font-size: 19px;
	opacity: 1;
    transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
}

.menu-splitL li:nth-of-type(1) {
	margin-left: 44px;
	transition-delay: 0.12s;
}

.menu-splitL li.animate:nth-of-type(1) {
	margin-left: 0;
	transition-delay: 0.0s;
}

.menu-splitL li:nth-of-type(2) {
	margin-left: 62px;
	transition-delay: 0.09s;
}

.menu-splitL li.animate:nth-of-type(2) {
	margin-left: 0;
	transition-delay: 0.05s;
}

.menu-splitL li:nth-of-type(3) {
	margin-left: 57px;
	transition-delay: 0.046s;
}

.menu-splitL li.animate:nth-of-type(3) {
	margin-left: 0;
	transition-delay: 0.1s;
}

.menu-splitL li:nth-of-type(4) {
	margin-left: 80px;
	transition-delay: 0.03s;
}

.menu-splitL li.animate:nth-of-type(4) {
	margin-left: 0;
	transition-delay: 0.15s;
}

.menu-splitL li:nth-of-type(5) {
	margin-left: 59px;
	transition-delay: 0.0s;
}

.menu-splitL li.animate:nth-of-type(5) {
	margin-left: 0;
	transition-delay: 0.2s;
}

.menu-splitL li:nth-of-type(6) {
	margin-left: 59px;
	transition-delay: 0.0s;
}

.menu-splitL li.animate:nth-of-type(6) {
	margin-left: 0;
	transition-delay: 0.2s;
}

.menu-splitL li:nth-of-type(7) {
	margin-left: 59px;
	transition-delay: 0.0s;
}

.menu-splitL li.animate:nth-of-type(7) {
	margin-left: 0;
	transition-delay: 0.2s;
}

.menu-splitR li:nth-of-type(1) {
	margin-left: -201px;
	transition-delay: 0.12s;
}

.menu-splitR li.animate:nth-of-type(1) {
	margin-left: -160px;
	transition-delay: 0.0s;
}

.menu-splitR li:nth-of-type(2) {
	margin-left: -220px;
	transition-delay: 0.069s;
}

.menu-splitR li.animate:nth-of-type(2) {
	margin-left: -160px;
	transition-delay: 0.05s;
}

.menu-splitR li:nth-of-type(3) {
	margin-left: -214px;
	transition-delay: 0.06s;
}

.menu-splitR li.animate:nth-of-type(3) {
	margin-left: -160px;
	transition-delay: 0.1s;
}

.menu-splitR li:nth-of-type(4) {
	margin-left: -240px;
	transition-delay: 0.03s;
}

.menu-splitR li.animate:nth-of-type(4) {
	margin-left: -160px;
	transition-delay: 0.15s;
}

.menu-splitR li:nth-of-type(5) {
	margin-left: -217px;
	transition-delay: 0.0s;
}

.menu-splitR li.animate:nth-of-type(5) {
	margin-left: -160px;
	transition-delay: 0.2s;
}

.menu-splitR li:nth-of-type(6) {
	margin-left: -217px;
	transition-delay: 0.0s;
}

.menu-splitR li.animate:nth-of-type(6) {
	margin-left: -160px;
	transition-delay: 0.2s;
}

.menu-splitR li:nth-of-type(7) {
	margin-left: -217px;
	transition-delay: 0.0s;
}

.menu-splitR li.animate:nth-of-type(7) {
	margin-left: -160px;
	transition-delay: 0.2s;
}

/* --------------------------------------------------------------------- END: Menu ------------------------------------------------------------ */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */



/* -------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------- START: Custom Fonts ------------------------------------------------------- */

@font-face {
	font-family: 'icomoon';
	src: url("../fonts/icomoon.eot?vr5gp4");
	src: url("../fonts/icomoon.eot?vr5gp4#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?vr5gp4") format("truetype"), url("../fonts/icomoon.woff?vr5gp4") format("woff"), url("../fonts/icomoon.svg?vr5gp4#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	font-size: 14px;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1.33;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-form-button:before {
	content: "\e900";
}

.icon-scroller:before {
	content: "\e901";
}

.icon-backup:before {
	content: "\e902";
}

.icon-c-panel:before {
	content: "\e903";
}

.icon-facebook:before {
	content: "\e904";
}

.icon-git-support:before {
	content: "\e905";
}

.icon-google-plus:before {
	content: "\e906";
}

.icon-gurantee:before {
	content: "\e907";
}

.icon-latest-tech:before {
	content: "\e909";
}

.icon-pinterest:before {
	content: "\e90a";
}

.icon-scripts:before {
	content: "\e90b";
}

.icon-setup:before {
	content: "\e90c";
}

.icon-support:before {
	content: "\e90d";
}

.icon-twitter:before {
	content: "\e90e";
}

.icon-uptime:before {
	content: "\e90f";
}

/* ----------------------------------------------------------------- END: Custom Fonts -------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */



/* -------------------------------------------------------------------- Navigation ------------------------------------------------------------ */

.navigation-style {
	background-color: transparent;
	border-radius: 0;
	border: 0;
	margin-bottom: 0;
	min-height: unset;
}

.navigation-style .header-logo {
	width: 155px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.navigation-style .header-logo {
		margin: 0;
	}
}

.navigation-style .container > .navbar-header.navbar-container {
	width: auto;
}

@media (min-width: 768px) {
	.navigation-style .container > .navbar-header.navbar-container {
		width: 28%;
	}
}

.navigation-style .navigation-top {
	padding-left: 26px;
}

@media (min-width: 992px) {
	.navigation-style .navigation-top {
		padding-left: 71px;
	}
}

@media (min-width: 1050px) {
	.navigation-style .navigation-top {
		padding-left: 65px;
	}
}

@media (min-width: 1200px) {
	.navigation-style .navigation-top {
		padding-left: 141px;
	}
}

.navigation-style .navigation-top li {
	padding-right: 0;
}

@media (min-width: 992px) {
	.navigation-style .navigation-top li {
		padding-right: 15px;
	}
}

.nav-mobile {
	display: none;
}

@media (min-width: 768px) {
	.nav-mobile .navbar-right {
		margin-right: 0;
	}
}

@media (min-width: 768px) {
	.nav-mobile {
		display: block;
	}
}

.screen {
	display: block;
}

@media (min-width: 768px) {
	.screen {
		display: none;
	}
}

.nav > li > a {
	padding: 9px 8px;
}

nav .logo {
	margin-top: 4px;
}

@media (max-width: 767px) {
	nav .logo {
		padding-left: 10px; /* TM compensation */
		/* margin-left: 72px; */
		/* margin-right: 53px; */
	}
}

@media (min-width: 992px) {
	.nav > li > a {
		padding: 10px 15px;
	}
}

.container-style {
	padding-top: 15px;
    transition: padding .3s ease-in-out;
}

@media (min-width: 768px) {
	.container-style {
		padding-top: 20px;
	}
}

/*
.container-style:after {
	content: '';
	height: 1px;
	width: 100%;
	background: rgba(255, 255, 255, 0);
	background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff, rgba(255, 255, 255, 0));
	margin-top: 13px;
	transition: background .5s ease-in-out, padding .5s ease-in-out;
}
*/

.navbar {
   transition: background .5s ease-in-out;
}

.top-nav-collapse {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 2px, rgba(0, 0, 0, 0.1) 0px 1px 0px;
	background: #000;
}

.top-nav-collapse hr {
	display: none;
}

.top-nav-collapse .container-style {
	padding-top: 15px;
	padding-bottom: 15px;
}

.navbar-default .navbar-nav > li > a {
	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
}

.navbar-default .navbar-nav.navbar-right .btn-margin-left {
	margin-left: 22px;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a .active {
	outline: 0;
	color: #ffffff;
	text-shadow: 0 0 1px white;
}

@media (min-width: 1200px) {
	.navbar-default .navbar-nav > li > a {
		font-size: 15px;
	}
}

.navbar-default .navbar-nav.navbar-right > li > a {
	font-weight: 600;
}

.navbar-default .navbar-nav > .active > a {
	color: #ffffff;
	background-color: transparent;
	font-weight: 600;
}

.navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
	color: #ffffff;
	background-color: transparent;
}

.navbar-default.top-nav-collapse .navbar-nav > .active > a {
	color: #24aa65;
}

@media (min-width: 768px) {
	.navbar-nav > li > a {
		padding-top: 8px;
		padding-bottom: 8px;
	}
}

.navbar-default .navbar-toggle {
	padding: 0;
	border: 0;
	margin-bottom: 0;
	margin-top: 6px;
}

.hr-line {
	border: none;
	height: 1px;
	background: rgba(255, 255, 255, 0);
	background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff, rgba(255, 255, 255, 0));
	box-shadow: 0 1px 13px 0 rgba(0, 0, 0, 0.1);
	margin-top: 20px;
}

/* -------------------------------------------------------------------- COMMON HEADINGS ------------------------------------------------------------ */

h1.heading {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
	text-transform: uppercase;
	padding-right: 20px;
	padding-left: 20px;
}

h1.heading.left {
	text-align: left;
}

@media (min-width: 768px) {
	h1.heading {
		font-size: 35px;
		margin-bottom: 15px;
		padding-right: 40px;
		padding-left: 40px;
	}
}

h2.heading {
	font-size: 25px;
	font-weight: 600;
	color: #444444;
	text-align: center;
	margin-top: 0;
	margin-bottom: 15px;
	text-transform: uppercase;
}

h2.heading.left {
	text-align: left;
}

@media (min-width: 768px) {
	h2.heading {
		font-size: 35px;
	}
}

p.sub-heading {
	text-align: center;
	margin-bottom: 21px;
	margin-top: -5px;
	font-size: 18px;
	line-height: 1.2;
}

.separator {
	margin-bottom: 50px;
}

.separator .style-line {
	display: none;
	width: 147px;
	margin: 4px auto;
	margin-bottom: -17px;
	border: none;
	height: 1px;
	background: rgba(48, 199, 121, 0.23);
	background: linear-gradient(to right, rgba(48, 199, 121, 0.23), #30c779, rgba(68, 68, 68, 0));
	
}

.separator .icon-bg {
	color: #24aa65;
	background: url(/public/images/micro-logo.svg) no-repeat;
	width: 20px;
	height: 20px;
	display: block;
	margin: -8px auto 6px;
}



/* -------------------------------------------------------------------- HEADER ------------------------------------------------------------ */

.header-background {
	background: #24aa65;
	background-image: url("../images/bg-line.png");
	background-image: url("../images/bg-line.png"), -webkit-linear-gradient(93deg, #19b062 0%, #28ac68 45.923%, #31cb7c 100%);
	position: relative;
	padding: 0 0 32px;
}

.header-background.nature {
	background: #24aa65;
	background-image: url("../images/bg-line.png");
	background-image: url("../images/bg-line.png"), -webkit-linear-gradient(93deg, #19b034 0%, #28ac68 45.923%, #31a1cb 100%);
}

.header-background.evening {
	background: #5c82b7;
	background-image: url("../images/bg-line.png");
	background-image: url("../images/bg-line.png"), -webkit-linear-gradient(93deg, #773fb1 0%, #c88099 45.923%, #50a1bf 100%);
}

.header-background.aqua {
	background: #4ca3af;
	background-image: url("../images/bg-line.png");
}

.header-background .header {
	padding-top: 85px;
	padding-bottom: 10px;
}

@media (min-width: 768px) {
	.header-background .header {
		padding-top: 100px;
		padding-bottom: 30px;
	}
}

.header-background .header-smartphone-padding {
	padding-top: 20px;
}

@media (min-width: 768px) {
	.header-background .header-smartphone-padding {
		padding-top: 35px;
	}
}

.header-background .header .social {
	margin-top: 18px;
	height: 31px;
	text-align: center;
}

.header-background .header p.slogan {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	padding-right: 40px;
	padding-left: 40px;
	line-height: 1.1;
}

.header-background .header p.heading {
	font-size: 17px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	padding-right: 40px;
	padding-left: 40px;
	line-height: 1.1;
}

.header-background .container-padding {
	padding-top: 30px;
	padding-bottom: 47px;
}

@media (min-width: 768px) {
	.header-background .container-padding {
		padding-bottom: 60px;
	}
}

.header-background .smartbar-features-sm {
	margin: 30px 0 -30px;
}

@media (min-width: 768px) {
	.header-background .smartbar-features-sm {
		margin: 60px 0 -30px;
	}
}

.header-background .smartbar-features > div > h2, .header-background .smartbar-features-sm > div > h2, .header-background .smartbar-settings > div > div > h2 {
	font-size: 21px;
	font-weight: 600;
}

.header-background .smartbar-features, .header-background .smartbar-settings {
	margin-top: 50px;
}

.header-background .smartbar-features > div, .header-background .smartbar-features-sm > div, .header-background .smartbar-settings > div > div {
	margin-bottom: 30px;
	color: #fff;
}

/* Smartbar features */

.header-background .smartbar-features {
	opacity: 0;
}

.header-background .smartbar-features > div {
	text-align: right;
}

.header-background .smartbar-features-sm > div {
	text-align: center;
}

.header-background .smartbar-features > div > h2, .header-background .smartbar-features-sm > div > h2 {
	margin-bottom: 7px;
}

.header-background .smartbar-features > div > p, .header-background .smartbar-features-sm > div > p  {
	color: #fff;
	line-height: 1.2;
	font-weight: 500;
}

.header-background p, .header-background h2, .header-background h1, .header-background label {
	text-shadow: rgba(0, 0, 0, 0.23) 0px 2px 2px, rgba(0, 0, 0, 0.1) 0px 1px 0px;
}

/* Smartphone */

.header-background .smartbar-preview {
	text-align: center;
}

.header-background .smartbar-preview > .phone {
	width: 282px;
	height: 561px;
	position: relative;
	background-size: cover;
	margin: 0 auto;
}

.header-background .smartbar-preview > .phone > img {
	position: absolute;
	width: 282px;
	height: 561px;
	left: 0;
	z-index: 10;
	pointer-events: none;
}

.header-background .smartbar-preview > .phone > .window {
    width: 248px;
    height: 533px;
    position: absolute;
    top: 14px;
    left: 17px;
	background-size: cover;
	overflow: hidden;
	z-index: 2;
}

@media (min-width: 768px) and (max-width:991px) {
	.header-background .smartbar-preview > .phone {
		margin-left: 80px !important;
	}
}

.demo-warning {
	opacity: 0;
	top: -20px;
	position: absolute;
	background: #000;
	line-height: 1.1;
	padding: 20px 15px 10px;
	color: #fff;
	font-weight: 600;
	z-index: 21;
}

.demo-safari {
	opacity: 1;
	top: 0;
	left: 0;
	position: absolute;
	z-index: 19;
}

.demo-url {
	opacity: 1;
	top: 37px;
	position: absolute;
	line-height: 1.1;
	color: #fff;
	font-size: 11px;
    text-align: center;
    width: 100%;
	z-index: 20;
}

.demo-time {
	opacity: 1;
	top: 10px;
	left: 21px;
	position: absolute;
	line-height: 1.1;
	color: #fff;
	font-weight: 600;
	font-size: 10px;
	z-index: 20;
}

.demo-background {
	position: absolute;
	opacity: 1.0;
	left: 0;
	width: 100%;
	height: 100%;
}

.demo-text, .demo-loader {
	position: absolute;
    top: 50%;
    height: 80%;
    width: 100%;
    margin-top: -75%;
	padding: 32px;
	text-align: center;
	font-size: 26px;
	overflow: hidden;
	z-index: 1;
	color: #fff;
	font-weight: 400;
}

.demo-text {
	opacity: 0;
}

.demo-text p {
	line-height: 1.2;
	text-transform: uppercase;
	margin-top: 44px;
}

.demo-loader .cssload-container {
	margin-top: 150px;
}

/* Arrow bounce */

.downArrow {
	display: block;
	margin-top: 30px;
	padding-left: 74px; /* FIXME to center */
}

.downArrow > .triangle {
	display: block;
	border-right: 3px solid; 
    border-bottom: 3px solid;
    height: 35px;
    width: 35px;
    transform: rotate(45deg);
}

.bounce {
	-moz-animation: bounce 3s 7;
	-webkit-animation: bounce 3s 7;
	animation: bounce 3s 7;
}

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

/* Smartbar settings */

.header-background .smartbar-settings {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
}

.header-background .smartbar-settings-mobile {
	margin-top: 0; /* FIXME for mobile via API */
	z-index: 1;
	position: relative;
	background-image: url("../images/get-started-tr.png");
	background-color: #373737;
	background-size: 200px;
	width: 85%;
	padding: 30px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
}

@media (min-width: 768px) {
	.header-background .smartbar-settings-mobile {
		padding: 45px;
		margin-top: 30px;
	}
}

.header-background .smartbar-settings-mobile > div > div {
	margin-bottom: 0;
}

.header-background .smartbar-settings-mobile > div > div > h2 {
	font-weight: 400 !important;
	font-size: 18px;
	margin-top: 0;
}

.header-background .smartbar-settings-mobile .style-settings > div > a {
	color: #fff;
	font-size: 16px;
}

.header-background .smartbar-settings-mobile > div > div > h2 {
	margin-bottom: 25px !important;
}

.header-background .smartbar-settings > div > div > h2 {
	margin-bottom: 15px;
}

.header-background .style-settings > .more-settings > a {
	color: #000;
	border-bottom: 1px dashed;
	display: inline-block;
}

.header-background .style-settings > .more-settings > a:hover {
	text-decoration: none;
}

.header-background .style-settings .sp-preview {
	z-index: 1;
}

.header-background .smartbar-settings .color-setter {
	margin-bottom: 10px;
}

.header-background .smartbar-settings-mobile .color-setter {
	margin-bottom: 20px;
}

.header-background .smartbar-settings .color-setter > label {
	display: table-cell;
	vertical-align: middle;
	padding-left: 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}

@media (max-width: 350px) {
	.header-background .smartbar-settings-mobile .style-settings > div > a, 
	.header-background .smartbar-settings .color-setter > label {
		font-size: 14px;
	}
}

.header-background .smartbar-settings-mobile .color-setter > label {
	padding-left: 15px;
}

.header-background .smartbar-settings .configuration-selector .dropdown-menu {
	height: 192px !important;
	max-height: 192px !important;
}

.header-background .smartbar-settings .configuration-selector .dropdown-menu ul {
	max-height: 182px !important;
}

.header-background .smartbar-settings .configuration-selector {
	padding-bottom: 25px;
}

.header-background .smartbar-settings .configuration-selector > label {
	font-size: 16px;
	font-weight: 400;
}

.header-background .smartbar-settings .input-group-addon {
	margin: 0;
	padding: 0;
	border: 2px solid #b3b3b3;
	border-radius: 50px;
}

.header-background .smartbar-settings .colorInputUi-wrap .colorInputUi-trigger {
	position: static;
	border-radius: 0;
	width: 45px;
    height: 30px;
	border-radius: 50px;
	border: 3px solid #eee;
	border-left-width: 3px;
}

.header-background .smartbar-settings .colorInputUi-wrap .colorInputUi-trigger span {
    border-radius: 50px;
}

.header-background .smartbar-settings .colorInputUi-trigger:before {
	width: 0;
}

.header-background .smartbar-settings .configuration-selector button {
	color: #333;
}

.header-background .smartbar-settings .loader {
	position: relative;
}

.header-background .smartbar-settings .connect {
	margin: 30px 0 0 0;
	border-bottom: none;
}

@media (min-width: 768px) and (max-width:991px) {
	.header-background .smartbar-settings .loader {
		margin: 25px;
	}
}

@media (max-width: 767px) {
	.header-background .smartbar-settings .connect, 
	.header-background .style-settings h2, 
	.header-background .configuration-selector {
		text-align: center;
	}
}

.header-background .smartbar-settings .loader-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	text-align: center;
	opacity: 1;
	display: none;
	padding-top: 100px;
}

/* Spectrum styles */

.style-settings .sp-replacer {
	padding: 0;
	border: 2px solid #ebebeb;
	border-radius: 50px;
	width: 45px;
	height: 26px;
	overflow: hidden;
}

.style-settings .sp-preview {
	margin: 0;
	width: 100%;
	border: none;
	height: 100%;
	border-radius: 50px;
	overflow: hidden;
}

.style-settings .sp-preview .sp-preview-inner {
	border-radius: 50px;
}

.style-settings .sp-dd {
	display: none;
}

.sp-picker-container {
	border: none !important;
}

.sp-picker-container a {
	display: inline-block;
}

.sp-container {
	border: none !important;
	border-radius: 11px !important;
	padding: 6px !important;
	-webkit-box-shadow: 1px 5px 73px 4px rgba(0,0,0,0.44) !important;
	-moz-box-shadow: 1px 5px 73px 4px rgba(0,0,0,0.44) !important;
	box-shadow: 1px 5px 73px 4px rgba(0,0,0,0.44) !important;
}

.sp-cancel {
	display: none !important;
}

.sp-container .sp-dragger {
	height: 10px;
	width: 10px;
	background: none;
	border-width: 4px;
	border-radius: 50%;
	box-shadow: 0 0 0px 3px #000;
}

.sp-color, .sp-hue, .sp-alpha-inner {
	border: none !important;
}

.sp-color {
	right: 25% !important;
}

@media (max-device-width: 480px) {
	.sp-color {
		right: 45% !important;
	}
}

.sp-slider {
	left: -5px !important;
	right: -5px !important;
	height: 5px !important;
	border: 3px solid #000 !important;
}

.sp-alpha {
	display: none !important;
}

.sp-container button {
	font-weight: 500 !important;
	font-size: 17px !important;
	padding: 8px 33px !important;
	background: #000 !important;
	color: #fff !important;
	font-family: "Open Sans", sans-serif !important;
	border-radius: 6px !important;
}

/* ----------------------------------------------------------------- Red line --------------------------------------------------------- */

.red-line-container {
	max-width: 602px;
	text-align: center;
	margin:  10px auto;
	padding: 0 20px;
	color: #ffffff;
	text-transform: uppercase;
	perspective: 1000px;
}

.red-line-container .red-line {
	margin: 0 auto;
}

.red-line-container .content {
	display: table-cell;
	border: none !important;
	background-color: #f84642;
	padding: 8px !important;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1;
}

@media (min-width: 768px) {
	.red-line-container {
		max-width: 723px;
		margin-bottom: 20px;
	}
	.red-line-container .content {
		font-size: 20px;
	}
}

.red-line-container .back .content {
	background-color: #fc751b;
}

.red-line-container .red-line .arrow {
	display: table-cell;
	width: 15px;
	border: none !important;
}

.red-line-container .red-line .left {
	background-color: #f84642;
	background: linear-gradient(to top right, transparent 49%, #f84642 50%), linear-gradient(to bottom right, transparent 49%, #f84642 50%);
}

.red-line-container .red-line .right {
	background-color: #f84642;
	background: linear-gradient(to top left, transparent 49%, #f84642 50%), linear-gradient(to bottom left, transparent 49%, #f84642 50%);
}

.red-line-container .red-line.back .left {
	background-color: #fc751b;
	background: linear-gradient(to top right, transparent 49%, #fc751b 50%), linear-gradient(to bottom right, transparent 49%, #fc751b 50%);
}

.red-line-container .red-line.back .right {
	background-color: #fc751b;
	background: linear-gradient(to top left, transparent 49%, #fc751b 50%), linear-gradient(to bottom left, transparent 49%, #fc751b 50%);
}

.red-line-container:hover .front {
    transform: rotateY(180deg);
}

.red-line-container:hover .back {
	transform: rotateY(0deg);
}

.red-line-container .flipper {
    position: relative;
    min-height: 38px;
	margin-right: 10px;
	margin-left: 10px;
}

.red-line-container .front {
    z-index: 2;
    transform: rotateY(0deg);
    position: relative;
}

.red-line-container .front, .red-line-container .back {
	backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	transition: 0.6s;
	transform-style: preserve-3d;
}

.red-line-container .row-container {
    display: table;
    margin: 0 auto;
}

.red-line-container .back {
	z-index: 1;
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.red-line-container a {
	display: inline;
	color: #fff;
	text-decoration: underline;
}

.red-line-container .dashed {
	border-bottom: 1px dashed;
}

/* ------------------------------------------------------------------- Counters Section ----------------------------------------------------------- */

.counters-section {
	padding: 40px 0;
}

@media (min-width: 544px) {
	.counters-section {
		padding: 50px 0;
	}
}

@media (min-width: 768px) {
	.counters-section {
		padding: 70px 0;
	}
}

.counters-section .row > div {
	text-align: center;
}

.counters-section .heading > h3 {
	color: #2697E2;
	font-size: 25px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 7px;
}

@media (min-width: 768px) {
	.counters-section .heading > h3 {
		font-size: 36px;
		margin-bottom: 10px;
	}
}

@media (min-width: 1050px) {
	.counters-section .heading > h3 {
		font-size: 48px;
		margin-bottom: 10px;
	}
}

.counters-section .row > div:nth-child(2n) h3 { color: #1DCD6D; }

.counters-section .content {
	padding: 0 0 25px 0;
}

@media (min-width: 768px) {
	.counters-section .content {
		padding: 5px 0 40px 0;
	}
}

.counters-section .content p {
	color: #7f7e7e;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 5px;
}

@media (min-width: 768px) {
	.counters-section .content p {
		font-size: 14px;
	}
}

@media (min-width: 1050px) {
	.counters-section .content p {
		font-size: 16px;
	}
}

.counters-section .blog-link {
	padding-left: 0;
	padding-right: 0;
}

.counters-section .blog-link > a {
	margin: 5px;
}

/* -------------------------------------------------------------------- Common Section ------------------------------------------------------------ */

.common-section {
	padding: 40px 0 15px 0;
}

@media (min-width: 544px) {
	.common-section {
		padding: 50px 0 15px 0;
	}
}

@media (min-width: 768px) {
	.common-section {
		padding: 70px 0 30px 0;
	}
}

.gray {
	background-color: #f4f4f4;
}

.common-section .circle-features {
	font-size: 18px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid #24aa65;
	color: #24aa65;
	float: left;
	text-align: center;
	margin-right: 10px;
	line-height: 1.6;
}

.common-section .heading h3 {
	color: #6e6e6e;
	font-size: 18px;
	line-height: 2;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 7px;
}

@media (min-width: 768px) {
	.common-section .heading h3 {
		font-size: 15px;
		line-height: 2;
		margin-bottom: 10px;
	}
}

@media (min-width: 1050px) {
	.common-section .heading h3 {
		font-size: 24px;
		line-height: 1.4;
		margin-bottom: 10px;
	}
}

.common-section .content {
	width: 90%;
	padding: 0 0 25px 0;
}

@media (min-width: 768px) {
	.common-section .content {
		padding: 5px 0 40px 0;
	}
}

.common-section .content p {
	color: #7f7e7e;
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 5px;
}

.common-section .content p.installs {
	color: #2697E2;
	font-weight: 500;
	font-size: 13px;
	font-style: italic;
}

@media (min-width: 768px) {
	.common-section .content p {
		font-size: 14px;
	}
}

@media (min-width: 1050px) {
	.common-section .content p {
		font-size: 16px;
	}
}

.common-section .circle-features {
	border: 0 none;
}

.circle-features:before {
	position: absolute;
	content: "";
	width: 34px;
	height: 34px;
	top: 0;
	left: 15px;
	background-repeat: no-repeat;
}

.circle-features.feature-icon-call:before { background-image: url(/public/images/buttons/clicktex_call.svg) }
.circle-features.feature-icon-map:before { background-image: url(/public/images/buttons/clicktex_map.svg) }
.circle-features.feature-icon-callback:before { background-image: url(/public/images/buttons/clicktex_callback.svg) }
.circle-features.feature-icon-offer:before { background-image: url(/public/images/buttons/clicktex_offer.svg) }
.circle-features.feature-icon-edit:before { background-image: url(/public/images/buttons/clicktex_edit.svg) }
.circle-features.feature-icon-testdrive:before { background-image: url(/public/images/buttons/clicktex_testdrive.svg) }
.circle-features.feature-icon-chat:before { background-image: url(/public/images/buttons/clicktex_chat.svg) }
.circle-features.feature-icon-link:before { background-image: url(/public/images/buttons/clicktex_link.svg) }
.circle-features.feature-icon-viber:before { background-image: url(/public/images/buttons/clicktex_viber.svg) }
.circle-features.feature-icon-skype:before { background-image: url(/public/images/buttons/clicktex_skype.svg) }
.circle-features.feature-icon-instagram:before { background-image: url(/public/images/buttons/clicktex_instagram.svg) }
.circle-features.feature-icon-telegram:before { background-image: url(/public/images/buttons/clicktex_telegram.svg) }
.circle-features.feature-icon-vk:before { background-image: url(/public/images/buttons/clicktex_vk.svg) }
.circle-features.feature-icon-facebook:before { background-image: url(/public/images/buttons/clicktex_facebook.svg) }
.circle-features.feature-icon-submenu:before { background-image: url(/public/images/buttons/clicktex_submenu.svg) }
.circle-features.feature-icon-whatsapp:before { background-image: url(/public/images/buttons/clicktex_whatsapp.svg) }
.circle-features.feature-icon-linkedin:before { background-image: url(/public/images/buttons/clicktex_linkedin.svg) }

.circle-features.feature-icon-conversion:before { background-image: url(/public/images/benefits/conversion2.svg) }
.circle-features.feature-icon-goal:before { background-image: url(/public/images/benefits/goal.svg) }
.circle-features.feature-icon-warranty:before { background-image: url(/public/images/benefits/warranty.svg) }

.circle-features.feature-icon-smartphone:before { background-image: url(/public/images/benefits/smartphone.svg) }
.circle-features.feature-icon-profit:before { background-image: url(/public/images/benefits/profit.svg) }
.circle-features.feature-icon-compatibility:before { background-image: url(/public/images/benefits/compatibility.svg) }

.circle-features.feature-icon-yandex-analytics:before { background-image: url(/public/images/benefits/yandex-analytics.svg) }
.circle-features.feature-icon-ga:before { background-image: url(/public/images/benefits/google-analytics.svg) }
.circle-features.feature-icon-ads-manager:before { background-image: url(/public/images/benefits/facebook-ads-manager.svg) }

.circle-features.feature-icon-geo:before { background-image: url(/public/images/benefits/geo.svg) }
.circle-features.feature-icon-forms:before { background-image: url(/public/images/benefits/forms.svg) }
.circle-features.feature-icon-constructor:before { background-image: url(/public/images/benefits/constructor.svg) }
.circle-features.feature-icon-calltracking:before { background-image: url(/public/images/benefits/calltracking.svg) }
.circle-features.feature-icon-schedule:before { background-image: url(/public/images/benefits/schedule.svg) }
.circle-features.feature-icon-url:before { background-image: url(/public/images/benefits/url.svg) }
.circle-features.feature-icon-remarketing:before { background-image: url(/public/images/benefits/remarketing.svg) }
.circle-features.feature-icon-plus:before { background-image: url(/public/images/benefits/plus.svg) }



/* -------------------------------------------------------------------- Section Get started ------------------------------------------------------------ */

.get-started {
	z-index: 1;
	position: relative;
	background-image: url("../images/get-started-tr.png");
	background-color: #373737;
	background-size: 200px;
	width: 85%;
	padding: 30px 0;
	margin: 0 auto;
	margin-top: 15px;
	border-radius: 10px;
}

.get-started.blue {
	background-color: #2d3e5e;
}

.get-started.purple {
	background-color: #3d2d5e;
}

.get-started.brown {
	background-color: #57422c;
}

@media (min-width: 351px) {
	.get-started {
		margin-top: 30px;
	}
}

@media (min-width: 768px) {
	.get-started {
		padding: 45px 0;
		margin-top: 60px;
	}
}

.get-started .padding-lr, .get-started .padding-lr-button {
	padding-left: 40px;
	padding-right: 40px;
}

@media (max-width: 400px) {
	.get-started .padding-lr {
		padding-left: 20px;
		padding-right: 20px;
	}
	.get-started .padding-lr-button {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.get-started .row {
	margin-left: 0;
	margin-right: 0;
}

.get-started .get-started-title {
	margin-top: 20px !important;
	color: #ffffff;
	font-size: 25px;
	font-weight: 600;
		text-align: center;
		margin-top: 0;
		margin-bottom: 15px;
		text-transform: uppercase;
}

@media (min-width: 768px) {
	.get-started .get-started-title {
		text-align: left;
		font-size: 35px;
		margin-top: -1px !important;
	}
}

.get-started .sub-heading {
	font-size: 16px;
	color: #ffffff;
	line-height: 1.2;
	font-style: italic;
	text-align: center;
	font-weight: 300;
	margin-bottom: 0;
}

@media (min-width: 544px) {
	.get-started .sub-heading {
		font-size: 17px;
	}
}

@media (min-width: 768px) {
	.get-started .sub-heading {
		text-align: left;
	}
}

@media (min-width: 992px) {
	.get-started .sub-heading {
		font-size: 18px;
	}
}



/* ------------------------------------------------------------------- Main Feature Section ------------------------------------------------------------ */

.main-feature {
	overflow: hidden;
	margin-top: 0;
	margin-bottom: 50px;
}

.main-feature .padding-lr-button {
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 351px) {
	.main-feature {
		margin-bottom: 60px;
	}
	.main-feature .padding-lr-button {
		padding-left: 40px;
		padding-right: 40px;
	}
}

.demo-ctx-button-placeholder {
	height: 92px;
}

.demo-ctx-button {
	background: #212121;
    padding: 20px;
    opacity: 0.9;
	border-radius: 10px;
	cursor: pointer;
}

.demo-ctx-button .icon-wrapper {
	margin: 0 auto;
	width: 90px;
	height: 90px;
	padding: 18px;
    position: absolute;
	left: 50%;
	margin-left: -45px;
	opacity: 0;
}

.demo-ctx-button .caption {
    font-family: Arial,sans-serif;
	color: #fff;
    font-size: 27px;
}

.main-feature .link {
    margin-top: 20px;
    text-align: center;
}

.demo-target-shaddow {
    z-index: -1;
    filter: blur(0.1em);
    -webkit-filter: blur(0.1em);
	-moz-filter: blur(0.1em);
    opacity: 0;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    height: 40px;
    width: 40px;
    left: 50%;
	margin-left: -20px;
    top: 45px;
}

@media (min-width: 768px) {
	.main-feature {
		margin-bottom: 80px;
	}
	.main-feature .padding-lr-button {
		padding-right: 0;
	}
	.main-feature .demo-ctx-button .icon-wrapper {
		margin-left: -25px;
	}
	.main-feature .link {
		text-align: left;
	}
	.main-feature .demo-target-shaddow {
		margin-left: 0;
	}
}

@keyframes target-rotate {
    0% { 
		transform: rotate(0deg) scale(1.0);
		-webkit-transform: rotate(0deg) scale(1.0);
		-ms-transform: rotate(0deg) scale(1.0);
		opacity: 0;
	}
    4% { 
		transform: rotate(180deg) scale(0.2);
		-webkit-transform: rotate(180deg) scale(0.2);
		-ms-transform: rotate(180deg) scale(0.2);
		opacity: 0;
	}
    6% { 
		transform: rotate(360deg) scale(1.0);
		-webkit-transform: rotate(360deg) scale(1.0);
		-ms-transform: rotate(360deg) scale(1.0);
		opacity: 1;
	}
    35% { 
		transform: rotate(360deg) scale(1.0);
		-webkit-transform: rotate(360deg) scale(1.0);
		-ms-transform: rotate(360deg) scale(1.0);
		opacity: 1;
	}
    39% { 
		transform: rotate(540deg) scale(0.2);
		-webkit-transform: rotate(540deg) scale(0.2);
		-ms-transform: rotate(540deg) scale(0.2);
		opacity: 0;
	}
	100% { 
		transform: rotate(720deg) scale(1.0); 
		-webkit-transform: rotate(720deg) scale(1.0); 
		-ms-transform: rotate(720deg) scale(1.0);
		opacity: 0;
	}
}

.target-rotate {
    animation-name: target-rotate;
    animation-duration: 12.0s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.target-1-rotate {
    animation-delay: 4.0s;
    background-color: rgb(0, 200, 2);
	background-image: linear-gradient(to top, rgba(16, 14, 31, 0.22) 0px, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50% !important;
}

.target-2-rotate {
    animation-delay: 8.0s;
    background-color: #fff;
    border-radius: 20px !important;
}

.target-3-rotate {
    animation-delay: 12.0s;
    border-radius: 50% !important;
}

@keyframes demo-target-shaddow {
    from, to { 
		opacity: 0; 
		transform: scale(1.0); 
		-webkit-transform: scale(1.0); 
		-ms-transform: scale(1.0); 
	}
	9% { 
		opacity: 0; 
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
	}
	15% { 
		opacity: 0.3; 
	}
	33% { 
		opacity: 0; 
	}
	39% { 
		transform: scale(25.0);
		-webkit-transform: scale(25.0);
		-ms-transform: scale(25.0);
	}
	42% { 
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
	}
}

.demo-target-shaddow {
    animation-name: ctx-213-target-shaddow;
    animation-duration: 4.0s;
    animation-delay: 4.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
	  
/* -------------------------------------------------------------------- Testimonials section ------------------------------------------------------------ */

.testimonials-section {
	background-color: #f4f4f4;
}

.testimonials-section .container-padding {
	padding: 0 0 50px 0;
}

.testimonials-section .carousel-indicators {
	position: static;
	margin-left: 0;
	width: 100%;
}

.testimonials-section .carousel-indicators li {
	background-color: #444444;
	border-radius: 0;
	-webkit-transform: skew(-10deg);
	transform: skew(-10deg);
	border: none;
}

.testimonials-section .carousel-indicators .active {
	background-color: #24aa65;
}

.testimonials-section .carousel {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.testimonials-section .carousel-inner {
	overflow: unset;
}

.testimonials-section .carousel-inner > .item.active, .testimonials-section .carousel-inner > .item.next.left, .testimonials-section .carousel-inner > .item.prev.right {
	margin: 0 auto;
	overflow: unset;
	top: 2px;
	z-index: 0;
}

.testimonials-section .carousel-inner > .item > a > img, .testimonials-section .carousel-inner > .item > img {
	line-height: 1;
	margin: 0 auto;
	margin-top: -63px;
}

.testimonials-section .carousel-inner > .item.active,
.testimonials-section .carousel-inner > .item {
	min-height: 147px;
	padding: 0 15px 0 30px;
	border: 0 none;
}

@media (max-width: 600px) {
	.testimonials-section .carousel-inner > .item.active,
	.testimonials-section .carousel-inner > .item {
		min-height: 147px;
	}
}
@media (max-width: 500px) {
	.testimonials-section .carousel-inner > .item.active,
	.testimonials-section .carousel-inner > .item {
		min-height: 300px;
	}
}
@media (max-width: 420px) {
	.testimonials-section .carousel-inner > .item.active,
	.testimonials-section .carousel-inner > .item {
		min-height: 350px;
	}
}
@media (max-width: 350px) {
	.testimonials-section .carousel-inner > .item.active,
	.testimonials-section .carousel-inner > .item {
		min-height: 400px;
	}
}

.testimonials-section .carousel .carousel-inner .photo img {
	border-radius: 50%;
	max-width: 110px;
}

.testimonials-section .carousel .carousel-inner .person {
	padding-right: 40px;
}

.testimonials-section .carousel .carousel-inner .person p.name {
	font-size: 20px;
	line-height: 22px;
	font-weight: 600 !important;
	margin-top: 3px;
}

.testimonials-section .carousel .carousel-inner .person p {
	font-size: 17px;
	line-height: 19px;
	font-weight: 400;
}

.testimonials-section .carousel .carousel-inner .comment {
	padding: 15px 15px 15px 42px;
}

.testimonials-section .carousel .carousel-inner .comment q {
	font-size: 23px;
	line-height: 29px;
	font-weight: 400;
}

.testimonials-section .carousel .carousel-inner .comment q:before {
	content: "";
	position: absolute;
	width: 30px;
	height: 27px;
	left: 0;
	top: 10px;
	background-repeat: no-repeat;
}

.testimonials-section .carousel .carousel-inner .item:nth-child(3n) .comment q:before {
	background-image: url(/public/images/q_red.svg);
}

.testimonials-section .carousel .carousel-inner .item:nth-child(3n+1) .comment q:before {
	background-image: url(/public/images/q_green.svg);
}

.testimonials-section .carousel .carousel-inner .item:nth-child(3n+2) .comment q:before {
	background-image: url(/public/images/q_blue.svg);
}

/* -------------------------------------------------------------------- Clients section ------------------------------------------------------------ */

.clients-section {
	padding: 30px 0;
}

.clients-section .client-logo>a>img{
	max-height: 80px;
}

/* -------------------------------------------------------------------- Contact section ------------------------------------------------------------ */

.private-box {
	color: #fff;
	font-weight: 300;
}

.private-box a {
	display: inline;
	color: #fff;
	text-decoration: underline;
}

.private-box input {
	position: relative;
	top: 1px;
	margin-right: 8px;
}

.contact-section {
	background-color: #373737;
	padding: 40px 0 50px 0;
}

@media (min-width: 544px) {
	.contact-section {
		padding: 50px 0 60px 0;
	}
}

@media (min-width: 768px) {
	.contact-section {
		padding: 70px 0 70px 0;
	}
}

.contact-section .icon-bg {
	color: #24aa65;
	background: url(/public/images/micro-logo-white.svg) no-repeat;
}

.contact-section .icon-heading:before {
	color: #ffffff;
}

.contact-section h2.heading {
	font-weight: 500;
	color: #ffffff;
}

.contact-section p.sub-heading {
	font-weight: 300;
	color: #ffffff;
}

.contact-section .reset-mobile {
	text-align: center;
	margin-bottom: 40px;
}

.contact-section .reset-mobile label {
	text-align: left;
}

@media (min-width: 768px) {
	.contact-section .reset-mobile {
		text-align: unset;
	}
}

.contact-section .style-line {
	background: rgba(48, 199, 121, 0);
	background: linear-gradient(to right, rgba(48, 199, 121, 0), #ffffff, rgba(68, 68, 68, 0));
}

.contact-section .send-form-button {
	text-align: center;
	margin-top: 30px;	
}



/* ------------------------------------------------------------- TEXT DOCUMENT PAGE ------------------------------------------------------- */

.text-document-page {
	padding-left: 15px;
	padding-right: 15px;
}
	
header.text-document-page {
	padding-top: 104px;
}

@media (max-width: 400px) {
	header.text-document-page {
		padding-left: 5px;
		padding-right: 5px;
	}
}

@media (min-width: 768px) {
	header.text-document-page {
		padding-top: 134px;
	}
}

header.header-smartphone-padding {
	padding-top: 30px;
}

@media (min-width: 768px) {
	header.header-smartphone-padding {
		padding-top: 50px;
	}
}

section.text-document-page {
	padding-bottom: 60px;
}

.text-document-page .btn {
    display: inline-block;
	margin-bottom: 30px;
}

.text-document-page .separator {
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.text-document-page .separator {
		margin-bottom: 50px;
	}
}

.text-document-page a {
	display: inline;
}

.text-document-page h1.heading {
	color: #000;
	margin-bottom: 30px;
}

@media (max-width: 400px) {
	.text-document-page h1.heading {
		padding-right: 0;
		padding-left: 0;
	}
}

.text-document-page p.sub-heading {
	margin-top: -15px;
	margin-bottom: 25px;
	font-weight: 700;
}

.text-document-page h2 {
	font-size: 18px;
	line-height: 1.5;
	margin-top: 40px;
}

@media (min-width: 768px) {
	.text-document-page h2 {
		font-size: 20px;
	}
}

@media (min-width: 1050px) {
	.text-document-page h2 {
		font-size: 22px;
	}
}

.text-document-page p {
	font-size: 13px;
	line-height: 1.5;
	margin-top: 16px;
	margin-bottom: 16px;
}

@media (min-width: 768px) {
	.text-document-page p {
		font-size: 14px;
	}
}

@media (min-width: 1050px) {
	.text-document-page p {
		font-size: 16px;
	}
}

.text-document-page img {
	margin: 15px 0;
	border: 5px solid #eee;
	width: 100%;
}

.text-document-page .examples > img {
	margin: 15px 0;
	border: 0 solid #eee;
	width: 100%;
	max-width: 320px;
}

@media (min-width: 768px) {
	.text-document-page img {
		margin: 30px;
		border: 15px solid #eee;
		width: initial;
	}
}

.text-document-page .sub-menu {
	background-color: #eee;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
}

.text-document-page .sub-menu a {
	margin-right: 15px;
	margin-left: 15px;
	font-weight: 600;
}

/* -------------------------------------------------------------------- FOOTER ------------------------------------------------------------ */

.footer {
	background-color: #262525;
	padding: 30px 15px 60px;
}

.footer .padding-top {
	padding-top: 35px;
}

.footer .img-logo {
	width: 136px;
}

.footer .post {
	width: 55px;
	float: left;
}

.footer .heading {
	padding: 0;
	list-style: none;
}

.footer .heading li a {
	color: #ffffff;
}

.footer .heading li {
	font-size: 14px;
	padding: 4px 0 8px 0;
	color: #838383;
	font-weight: 400;
}

.footer .heading li a.footer-phone {
	font-size: 17px;
	font-weight: bold;
	margin-bottom: 0;
	padding-bottom: 0;
}

.footer .heading li .heading-style {
	float: left;
	margin-left: 10px;
	color: #ffffff;
	font-size: 13px;
	line-height: 1;
	font-weight: 300;
}

.footer .heading li p.about-text {
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	padding: 12px 0 8px 0;
	width: 70%;
	color: #838383;
}

.footer .heading li:first-child {
	color: #24aa65;
	padding-bottom: 12px;
	font-size: 18px;
	font-weight: 600;
}

.footer .heading li .social-icons a {
	height: 40px;
	width: 40px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	margin-right: 6px;
	padding: 10px 6px;
    transition: all 0.5s ease;
}

.footer .heading li .social-icons a i {
	font-size: 18px;
}

.footer .heading li .social-icons a:hover, .footer .heading li .social-icons a:focus {
	text-decoration: none;
	border: 2px solid #24aa65;
	color: #24aa65;
}

.footer .clear {
	clear: both;
}

@media (min-width: 992px) {
	.footer .clear {
		clear: none;
	}
}

.footer-bottom {
	background-color: #000;
	padding: 15px;
	text-align: center;
}

.footer-bottom p {
	margin-bottom: 0;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #24aa65;
}

.back-top {
	visibility: hidden;
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.71);
	line-height: 1.8;
	border: 1px solid #2d2d2d;
    transition: all 0.5s ease;
}

.back-top:hover, .back-top:focus {
	opacity: 0.8;
	color: #acacac;
	text-decoration: none;
}

@media (min-width: 544px) {
	.back-top {
		font-size: 20px;
		width: 40px;
		height: 40px;
		line-height: 1.9;
	}
}



/* -------------------------------------------------------------------- Modal ------------------------------------------------------------ */

.modal-header {
	border: 0;
}

.modal-no-header-text .modal-header {
	padding-bottom: 0;
}

.modal-body {
	padding: 0 30px;
}

.modal-footer {
	border: 0;
	padding: 5px;
}

.model-form-heading {
	font-weight: 500;
	font-size: 21px;
	color: #444444;
}

.modal-body .modal-center-text-xs {
	text-align: center;
	max-width: 400px;
}

.modal-no-header-text .modal-body h2 {
	margin-top: 0;
	font-weight: 600;
}

@media (min-width: 768px) {
	.modal-body .modal-center-text-xs {
		text-align: left;
	}
	.modal-no-header-text .modal-body h2 {
		font-size: 36px;
	}
}

.modal-body .buttons-container {
	margin: 14px -8px;
}

.modal-body a, .modal-body button {
	margin: 8px;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------- START: General Reset -------------------------------------------------------- */

html, body {
	font-family: "Open Sans", sans-serif;
	overflow-x: hidden;
}

body {
	height: initial;
	padding-right: 0 !important;
	overflow: visible !important;
}

:focus, a:focus {
	outline: none;
	text-decoration: none;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
	outline: none;
	outline-offset: 0;
}

a {
	display: block;
}

.form-container {
	position: relative;
	color: #ffffff;
}

.form-container input {
	font-size: 16px;
	font-weight: 300;
	width: 100%;
	border: 0;
	border-bottom: 2px solid #ffffff;
	background-color: transparent;
	line-height: 3;
	outline: 0;
	padding-left: 5px;
}

.form-container input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #ffffff;
}

.form-container input::-moz-placeholder {
	/* Firefox 19+ */
	color: #ffffff;
}

.form-container input:-ms-input-placeholder {
	/* IE 10+ */
	color: #ffffff;
}

.form-container input:-moz-placeholder {
	/* Firefox 18- */
	color: #ffffff;
}

.form-container input:focus {
	outline: 0;
}

.form-container .subscriber-error {
	border-bottom-color: #ff5a5a;
}

.form-container .subscriber-error::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #ff5a5a;
	text-transform: uppercase;
}

.form-container .subscriber-error::-moz-placeholder {
	/* Firefox 19+ */
	color: #ff5a5a;
	text-transform: uppercase;
}

.form-container .subscriber-error:-ms-input-placeholder {
	/* IE 10+ */
	color: #ff5a5a;
	text-transform: uppercase;
}

.form-container .subscriber-error:-moz-placeholder {
	/* Firefox 18- */
	color: #ff5a5a;
	text-transform: uppercase;
}

.form-container button {
	position: absolute;
	top: 0;
	right: 0;
	outline: 0;
	border: 0;
	background: transparent;
}

.form-container button span {
	color: #ffffff;
	font-size: 30px;
    transition: all 0.5s ease;
}

.form-container button:hover span {
	color: #2c6083;
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
	background-color: transparent;
}

q:before,q:after {
	content: '';
	content: none;
}

blockquote,q {
	quotes: none;
}

/* ----------------------------------------------------------------- END: General Reset --------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------------- */

#demo-frame {
	width: 100%;
	height: 100%;
	z-index: 2;
	position: absolute;
	left: 0;
	border: none;
}

.mac-book {
		margin: 0 auto;
		position: relative;
		width: 640px;
		height: 430px;
}

.mac-display {
		width: 402px;
		height: 252px;
		margin: 0 auto;
		position: relative;
		top: 23px;
		overflow: hidden;
}

.container .box .content img {
		display: block;
		margin: 0 auto;
}

.mac-book img.mac-device {
		width: 100%;
		height: auto;
		position: absolute;
		top: 0;
}

.mac-display .mac-parallax {
		width: 100%;
		height: 820px;
		position: relative;
		top: 0;
		left: 0;
		background-position: 0 0;
		background-repeat: no-repeat;
		background-attachment: scroll;
		background-size: 100% auto;
		background-image: url(/public/images/stats.png);
}

@media (max-width: 767px) {

	.mac-book {
		width: 500px;
		height: 325px;
	}

	.mac-display {
		width: 315px;
		height: 200px;
		top: 17px;
	}
}

@media (max-width: 600px) {
	
	.mac-book {
		width: 399px;
		height: 270px;
	}

	.mac-display {
		width: 250px;
		height: 158px;
		top: 14px;
	}
}

@media (max-width: 470px) {
	
	.mac-book {
		width: 300px;
		height: 210px;
	}

	.mac-display {
		width: 189px;
		height: 120px;
		top: 10px;
	}
}

@media (max-width: 350px) {
	
	.mac-book {
		width: 250px;
		height: 190px;
	}

	.mac-display {
		width: 158px;
		height: 98px;
		top: 10px;
	}
}

/* MODAL */

.modal {
	text-align: center;
	padding: 0!important;
}

.modal:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -4px;
}

.modal-dialog {
	display: inline-block;
	text-align: left;
	vertical-align: middle;
}

.modal img {
	width: 100%;
}

/* SWITCHERY FIX FOR MOBILE*/

.switchery-elem.switchery-fix {
	opacity: 0;
	width: 45px;
	position: absolute;
	left: 0;
	height: 24px;
	z-index: 123;
	display: block !important;
}

/* ----------------------------------------------------------------- LOADER --------------------------------------------------------- */

.cssload-container {
	width: 100%;
	height: 49px;
	text-align: center;
}

.cssload-speeding-wheel {
	width: 49px;
	height: 49px;
	margin: 0 auto;
	border: 3px solid rgb(255,255,255);
	border-radius: 50%;
	border-left-color: transparent;
	border-right-color: transparent;
	animation: cssload-spin 575ms infinite linear;
		-o-animation: cssload-spin 575ms infinite linear;
		-ms-animation: cssload-spin 575ms infinite linear;
		-webkit-animation: cssload-spin 575ms infinite linear;
		-moz-animation: cssload-spin 575ms infinite linear;
}



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

@-o-keyframes cssload-spin {
	100%{ -o-transform: rotate(360deg); transform: rotate(360deg); }
}

@-ms-keyframes cssload-spin {
	100%{ -ms-transform: rotate(360deg); transform: rotate(360deg); }
}

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

@-moz-keyframes cssload-spin {
	100%{ -moz-transform: rotate(360deg); transform: rotate(360deg); }
}

/* clicktex BAR BUTTON ANIMATIONS */

@keyframes ctx-213-shake {
    from, to { 
		transform: translate3d(0, 0, 0); 
		-webkit-transform: translate3d(0, 0, 0); 
		-ms-transform: translate3d(0, 0, 0); 
	}
    0.65%, 1.95%, 3.25%, 4.55%, 5.85% { 
		transform: translate3d(-0.3em, 0, 0); 
		-webkit-transform: translate3d(-0.3em, 0, 0); 
		-ms-transform: translate3d(-0.3em, 0, 0); 
	}
    1.3%, 2.6%, 3.9%, 5.2% { 
		transform: translate3d(0.3em, 0, 0); 
		-webkit-transform: translate3d(0.3em, 0, 0); 
		-ms-transform: translate3d(0.3em, 0, 0); 
	}
    6.5% { 
		transform: translate3d(0, 0, 0); 
		-webkit-transform: translate3d(0, 0, 0); 
		-ms-transform: translate3d(0, 0, 0); 
	}
}

@keyframes ctx-213-rotate {
    0% { 
		transform: rotate(0deg) scale(1.0);
		-webkit-transform: rotate(0deg) scale(1.0);
		-ms-transform: rotate(0deg) scale(1.0);
	}
    4% { 
		transform: rotate(180deg) scale(0.2);
		-webkit-transform: rotate(180deg) scale(0.2);
		-ms-transform: rotate(180deg) scale(0.2);
	}
    6% { 
		transform: rotate(360deg) scale(1.0);
		-webkit-transform: rotate(360deg) scale(1.0);
		-ms-transform: rotate(360deg) scale(1.0);
	}
	100% { 
		transform: rotate(360deg) scale(1.0); 
		-webkit-transform: rotate(360deg) scale(1.0); 
		-ms-transform: rotate(360deg) scale(1.0); 
	}
}

.ctx-213-target {
    animation-name: ctx-213-rotate;
    animation-duration: 12.0s;
    animation-delay: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes ctx-213-target-shaddow {
    from, to { 
		opacity: 0; 
		transform: scale(1.0); 
		-webkit-transform: scale(1.0); 
		-ms-transform: scale(1.0); 
	}
	3% { 
		opacity: 0; 
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
	}
	5% { 
		opacity: 0.3; 
	}
	11% { 
		opacity: 0; 
	}
	13% { 
		transform: scale(25.0);
		-webkit-transform: scale(25.0);
		-ms-transform: scale(25.0);
	}
	14% { 
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
	}
}

.ctx-213-target-shaddow {
    animation-name: ctx-213-target-shaddow;
    animation-duration: 12.0s;
    animation-delay: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}