/* ANIMATIONS */

html {
	font-display: swap;
}

.animate {
	animation-duration: 1.5s;
}
.animate.slow {
	animation-duration: 2.5s;
}

@-webkit-keyframes slide-down {
	0% { opacity: 0; -webkit-transform: translateY(-100%); }
	100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes slide-down {
	0% { opacity: 0; -moz-transform: translateY(-100%); }
	100% { opacity: 1; -moz-transform: translateY(0); }
}
@-o-keyframes slide-down {
	0% { opacity: 0; -o-transform: translateY(-100%); }
	100% { opacity: 1; -o-transform: translateY(0); }
}
@keyframes slide-down {
	0% { opacity: 0; transform: translateY(-100%); }
	100% { opacity: 1; transform: translateY(0); }
}


@-webkit-keyframes slide-up {
	0% { opacity: 0; -webkit-transform: translateY(20px); }
	100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes slide-up {
	0% { opacity: 0; -moz-transform: translateY(20px); }
	100% { opacity: 1; -moz-transform: translateY(0); }
}
@-o-keyframes slide-up {
	0% { opacity: 0; -o-transform: translateY(20px); }
	100% { opacity: 1; -o-transform: translateY(0); }
}
@keyframes slide-up {
	0% { opacity: 0; transform: translateY(20px); }
	100% { opacity: 1; transform: translateY(0); }
}

/* GLOBAL */

body {
	margin: 0;
	padding: 0;
	background-color: #FFF;
	font-family: 'Ubuntu', sans-serif;
	font-size: 15px;
  line-height: 1.33;
	color: #1b212f;
}

h1 {
	font-size: 42px;
	font-weight: 100;
}

h2 {
	font-size: 30px;
	font-weight: 100;
}

h3 {
	font-size: 25px;
	font-weight: 100;
}

h4 {
	font-size: 20px;
	font-weight: 400;
}

h5 {
	font-size: 18px;
	font-weight: 100;
	opacity: 0.8;
}

a {
	color: #31b6fe;
	text-decoration: underline;
	text-decoration-color: transparent;
	-webkit-transition: all .2s;
	transition: all .2s;
}

a:hover {
	text-decoration-color: currentColor;
}

a.no-style {
	color: inherit;
	text-decoration: inherit;
}

.wrapper {
	position: relative;
	max-width: 1300px;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
	margin: auto;
}

.wrapper.padding {
	padding-top: 20px;
	padding-bottom: 20px;
}

.vertical-center {
	vertical-align: middle;
	height: 100%;
}

.vertical-center:not(.no-before):before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 100%;
	margin-right: -10px;
}

.vertical-center > * {
	display: inline-block;
	vertical-align: middle;
}

.btn {
	display: inline-block;
	margin: 5px;
	padding: 12px;
	min-width: 80px;
	background: #FFF;
	border-radius: 4px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	line-height: normal;
	color: #000;
}

.btn:hover {
  -webkit-box-shadow: inset 0 2px 5px 0 rgba(0,0,0,0.25);
  -moz-box-shadow: inset 0 2px 5px 0 rgba(0,0,0,0.25);
  box-shadow: inset 0 2px 5px 0 rgba(0,0,0,0.25);
}

.btn-primary {
	background: #FFA800;
	color: #FFF;
}

.btn-primary:hover {
  background: #ffb82f;
}

.btn-big {
	padding: 20px 15px;
	font-size: 18px;
}

.wrapper img {
	max-width: 100%
}

.icon-circle,
.fa.icon-circle {
	display: inline-block;
	width: 72px;
	height: 72px;
	margin-right: 20px;
	padding: 10px;
	vertical-align: middle;
	box-sizing: border-box;
	border-radius: 50%;
	background: #dfdfdf;
	line-height: 52px;
	font-size: 52px;
	color: #fff;
	text-align: center;
}
.icon-circle img {
	max-height: 100%;
}

[class*=col-] {
	box-sizing: border-box;
}

.col-16 {
	width: 16.666666%;
}

.col-20 {
	width: 20%;
}

.col-25 {
  width: 25%;
}

.col-33 {
	width: 33%;
}

.col-40 {
	width: 40%;
}

.col-50 {
	width: 50%;
}

.col-66 {
	width: 66%;
}

.col-80 {
  width: 75%;
}

.col-80 {
  width: 80%;
}

.col-100 {
	width: 100%;
}

.col-spaced {
	margin-left: -20px;
	margin-right: -20px;
}
.col-spaced [class*=col-] {
	padding: 20px;
}

.pull-left {
	float: left;
}
.pull-right {
	float: right;
}
.pull-center {
	display: table;
	margin: auto;
}

.clear {
	clear: both;
}

.m-0 {
	margin: 0;
}

.mt-sm {
	margin-top: 12px;
}

.mt-s {
	margin-top: 25px;
}

.mt-m {
	margin-top: 50px;
}

.mt-l {
	margin-top: 100px;
}

.mt-xl {
	margin-top: 200px;
}

.mb-sm {
	margin-bottom: 12px;
}

.mb-s {
	margin-bottom: 25px;
}

.mb-m {
	margin-bottom: 50px;
}

.mb-l {
	margin-bottom: 100px;
}

.mb-xl {
	margin-bottom: 200px;
}

.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.text-lead {
	font-size: 20px;
	font-weight: 100;
}
.text-semi-lead {
	font-size: 17px;
}
.text-super-lead {
	font-size: 30px;
}

.text-accent {
	-webkit-filter: contrast(2.5);
	-moz-filter: contrast(2.5);
	filter: contrast(2.5);
}

.text-color-accent {
	color: #2cb4fe;
}

.text-faded {
	opacity: 0.7;
}

.inline-block {
	display: inline-block;
}

.no-margin {
	margin: 0;
}

.hide-desktop {
	display: none;
}

.heading-section {
	margin-top: 65px;
	padding: 60px 0;
	background: #2cb4fe top center no-repeat;
	background-size: cover;
	color: #fff;
}
.no-webp .heading-section,
.no-js .heading-section {
	background-image: url("/public/images/lines-bg-3.png");
}
.webp .heading-section {
	background-image: url("/public/images/lines-bg-3.webp");
}

.heading-section-subpage {
	background: #2cb4fe top center no-repeat;
	background-attachment: fixed;
}
.no-webp .heading-section-subpage,
.no-js .heading-section-subpage {
	background-image: url("/public/images/lines-bg-4.png");
}
.webp .heading-section-subpage {
	background-image: url("/public/images/lines-bg-4.webp");
}

.color-section-1 {
	background: #F6F6F6;
	color: #5e5e5e;
}

.color-section-2 {
	background: #E6828A;
	color: #fff;
}

.color-section-2 .wrapper {
	background: transparent top center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.no-webp .color-section-2 .wrapper,
.no-js .color-section-2 .wrapper {
	background-image: url("/public/images/lines-bg-2.png");
}
.webp .color-section-2 .wrapper {
	background-image: url("/public/images/lines-bg-2.webp");
}

.color-section-3 {
	background: #FAFAFA;
}

section.padding {
	padding-top: 20px;
	padding-bottom: 20px;
}


.tabs {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 0;
	clear: both;
}

.tabs li {
	display: table-cell;
	position: relative;
	border: 1px solid;
	border-right-width: 0px;
}

.tabs li:last-child {
	border-right-width: 1px;
}

.tabs li a {
	display: block;
	padding: 20px 5px;
	box-sizing: border-box;
	text-decoration: none;
}

.tabs li.tab-focused:before {
	content: "";
	display: block;
	position: absolute;
	background: #fff;
	border: 0px solid #dfdfdf;
	border-width: 0 1px 1px 0;
	width: 20px;
	height: 20px;
	bottom: -12px;
	left: 0;
	right: 0;
	margin: auto;
	transform: rotate(45deg);
}

.tabs-ready .tab {
	display: none;
}

.tab.tab-focused {
	display: block;
}


/* HEADER */

header {
	background: #3C3C3C;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	font-size: 16px;
	text-align: center;
	z-index: 4;
}

header nav {
	display: inline-block;
	height: 65px;
}

header .brand {
	display: block;
	position: absolute;
	height: 100%;
	left: 20px;
	text-align: left;
}

header .brand img {
	height: 45px;
	margin: 10px 0;
}

header nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

header nav > ul {
	float: left;
}

header nav > ul > li {
	display: block;
	float: left;
	padding: 0;
	margin: 0;
	border-left: 1px solid rgba(255,255,255,0.07);
}

header nav > ul > li > a {
	display: block;
	position: relative;
	padding: 0 20px;
	line-height: 65px;
	text-decoration: none;
	color: #FFF;
}
header nav > ul > li > a:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0px;
	background: #ff9900;
	-webkit-transition: height .2s;
	transition: height .2s;
}

header nav > ul > li > a:hover:before,
header nav > ul > li > a.active:before {
	height: 3px;
}

header nav > ul > li > a.btn:hover:before,
header nav > ul > li > a.btn.active:before {
	height: 0;
}

header nav ul ul {
	display: none;
	position: absolute;
	padding: 10px 0;
	background: #3C3C3C;
	text-align: left;
}

header nav ul ul a {
	display: block;
	position: relative;
	padding: 5px 30px;
	text-decoration: none;
	color: #FFF;
}

header nav ul ul a.active {
	font-weight: 700;
}

header nav ul li:hover ul {
	display: block;
	-webkit-animation: slide-up .2s ease-out;
	-moz-animation: slide-up .2s ease-out;
	-o-animation: slide-up .2s ease-out;
	animation: slide-up .2s ease-out;
}

header .lang-switch {
	display: block;
	height: 100%;
	position: relative;
}

header .lang-switch li {
	display: none;
	float: none;
	background: #3C3C3C;
}

header .lang-switch li:first-child {
	display: block;
}

header .lang-switch > i {
	display: block;
	position: absolute;
	height: 20px;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	line-height: 14px;
	color: #fff;
	-webkit-transition: transform .2s;
	transition: transform .2s;
}

header .lang-switch:hover i {
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

header .lang-switch li a {
	padding: 0 25px;
}

header .lang-switch li a:not(:last-child) {
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

header .lang-switch:hover li:not(:first-child) {
	display: block;
	-webkit-animation: slide-down .3s ease-out;
	-moz-animation: slide-down .3s ease-out;
	-o-animation: slide-down .3s ease-out;
	animation: slide-down .3s ease-out;
}

header .lang-switch li a:hover:before {
	display: none;
}
.controller-message {
	position: relative;
	min-height: 65px;
	background: #FFF;
}

.controller-message p {
	margin: 0 40px;
	display: inline-block;
	vertical-align: middle;
}

.controller-message-positive {
	color: #145614;
	background-color: #95cc95;
}

.controller-message-negative {
	color: #b83428;
	background-color: #ff857b;
}

.controller-message:before {
	content: '';
	display: inline-block;
	height: 65px;
	vertical-align: middle;
	width: 0px;
	margin-right: -20px;
}

.controller-message-close {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 20px !important;
	cursor: pointer;
}

.header-buttons {
	position: absolute;
	right: 20px;
	line-height: 65px;
}

.nav-toggle {
	position: absolute;
	top: 0px;
	right: 10px;
	width: 60px;
	height: 60px;
	background-color: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
	z-index: 3;
}

.hamb-top, .hamb-middle, .hamb-bottom {
	background-color: #FFF;
	position: absolute;
	left: 0;
	right: 0;
	height: 4px;
	width: 40px;
	margin: auto;
	transition: .2s ease-out;
}

.hamb-top {
	top: 20px;
}

.hamb-middle {
	top: 30px;
}

.hamb-bottom {
	top: 40px;
}

.nav-toggle.active .hamb-top {
	top: 50%;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}

.nav-toggle.active .hamb-middle {
	opacity: 0;
}

.nav-toggle.active .hamb-bottom {
	top: 50%;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}

/* FOOTER */

footer {
	color: #363636;
	font-size: 13px;
}

footer nav.wrapper {
	padding: 30px 20px;
}

footer nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

footer nav ul li a {
	display: block;
	margin: 20px 0;
	color: inherit;
}

footer .text-lead {
	font-size: 18px;
}

.socials a {
	margin: 10px 6px;
	color: #76BDDF;
	font-size: 30px;
	text-decoration: none;
}
.socials a:first-child {
	margin-left: 0;
}
.socials a:last-child {
	margin-right: 0;
}
.socials a:hover {
	color: #2CB4FE;
}

.socials svg {
	fill: #76BDDF;
	display: inline-block;
	width: 35px;
	height: 35px;
	vertical-align: middle;
}

.socials a:hover svg {
	fill: #2CB4FE;
}

.bottom {
	background: #313234;
	color: #fff;
	font-size: 13px;
}

footer .copy > * {
	display: inline-block;
	vertical-align: middle;
}

footer .copy > span {
	margin: 0 5px;
}

footer .copy img {
	height: 20px;
}

ul.terms, ol.terms {
	list-style: none;
	margin: 20px 0;
	padding: 0;
}

.terms > li {
	display: inline-block;
	padding: 0 10px;
	border-right: 1px solid;
	height: 14px;
	vertical-align: middle;
}
.terms > li:last-child {
	border-right: 0;
}

.terms > li a {
	display: block;
	color: inherit;
}

.terms .lang-switch {
	position: relative;
	height: 14px;
	margin-right: 15px;
	border: 0;
	text-align: left;
}

.terms .lang-switch ul {
	margin: 0;
	padding: 0;
}

.terms .lang-switch li {
	display: none;
	float: none;
	margin-bottom: 10px;
}

.terms .lang-switch li:first-child {
	display: block;
}


.terms .mobile-sep {
	display: none;
}

.terms .lang-switch i {
	display: block;
	position: absolute;
	height: 14px;
	top: 0;
	bottom: 0;
	right: -2px;
	margin: auto;
	line-height: 10px;
	color: #fff;
	-webkit-transition: transform .2s;
	transition: transform .2s;
}

.terms .lang-switch:hover i {
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.terms .lang-switch li a:not(:last-child) {
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

.terms .lang-switch:hover li:not(:first-child) {
	display: block;
	-webkit-animation: slide-down .3s ease-out;
	-moz-animation: slide-down .3s ease-out;
	-o-animation: slide-down .3s ease-out;
	animation: slide-down .3s ease-out;
}

.terms .lang-switch li a:hover:before {
	display: none;
}

ol.list-alpha > li {
	list-style-type: lower-alpha;
	margin-left: 15px;
}

ol.list-lower-roman > li {
	list-style-type: lower-roman;
	margin-left: 15px;
}

ol.list-numbered > li {
	list-style-type: decimal;
	margin-left: 15px;
}

@media only screen and (max-width: 1080px) {
	.hide-desktop {
		display: block;
	}

	.hide-mobile {
		display: none;
	}

	[class*=col-]:not([class*=col-mobile-]) {
		width: 100%;
	}

	.col-spaced:not([class*=col-mobile-]) {
		margin-left: 0;
		margin-right: 0;
	}

	.col-mobile-40 {
		width: 40%;
	}
	.col-mobile-50 {
		width: 50%;
	}
	.col-mobile-60 {
		width: 60%;
	}
	.col-mobile-100 {
		width: 100%;
	}

	header .wrapper {
		height: 65px;
	}

	header nav {
		display: block;
		clear: both;
		position: fixed;
		width: 100%;
		height: auto;
		top: 65px;
		bottom: 0;
		left: 100%;
		overflow-y: auto;
		background-color: #555;
		text-align: center;
		-webkit-transition: left .2s ease-out;
		transition: left .2s ease-out;
	}

	.nav-toggle.active + nav {
		left: 0;
	}

	header nav ul {
		float: none;
	}

	header nav ul li {
		float: none;
		border: 0;
		border-top: 1px solid rgba(255,255,255,0.07);
	}

	header nav ul li a:before {
		display: none;
	}

	header nav ul li ul,
	header nav ul li:hover ul {
		display: block;
		position: static;
		max-height: 0;
		padding: 0;
		background: #2F2B2A;
		text-align: center;
		overflow: hidden;
		-webkit-transition: max-height .3s ease-out;
		transition: max-height .3s ease-out;
		-webkit-animation: none;
		-moz-animation: none;
		-o-animation: none;
		animation: none;
	}

	header nav ul ul:before {
		content: "\f078";
		display: block;
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		position: absolute;
		right: 15px;
		margin-top: -40px;
		color: #fff;
		transition: .2s ease-out;
	}

	header nav ul li.toggle ul {
		max-height: 500px;
		-webkit-transition: max-height .7s ease-out;
		transition: max-height .7s ease-out;
	}

	header nav li.toggle ul:before {
		transform: rotate(180deg);
	}

	header nav ul ul a {
		padding: 15px 20px;
	}

	header .lang-switch {
		display: none;
	}

	.header-buttons {
		position: static;
		padding: 15px;
		background: #2F2B2A;
	}

	.header-buttons .btn {
		display: block;
		margin: 10px;
	}

	.heading-section {
		text-align: center;
	}

	footer {
		text-align: center;
	}

	.terms .lang-switch {
		margin-bottom: 25px;
	}

	.terms .mobile-sep {
		display: block;
		float: none;
		border: 0;
	}
}


/* ----------------------------- PAGES ----------------------------- */

/* HOME */

.home-heading {
	padding: 0;
	background: #2cb4fe center center no-repeat;
}
.no-webp .home-heading,
.no-js .home-heading {
	background-image: url("/public/images/lines-bg-1.png");
}
.webp .home-heading {
	background-image: url("/public/images/lines-bg-1.webp");
}

#home-stats {
	padding: 20px 0;
	background: #BEE9BE;
}

#home-stats .icon-circle + span {
	vertical-align: middle;
}

.index-features {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.index-feature {
	width: calc(50% - 20px);
	margin-bottom: 40px;
	padding-right: 20px;
	box-sizing: border-box;
	overflow: hidden;
	border: 1px solid;
	border-right: 10px solid;
}

.index-feature:nth-child(1) {
	border-color: #E6828A;
}
.index-feature:nth-child(1) h4 {
	color: #E6828A;
}

.index-feature:nth-child(2) {
	border-color: #B2CAEC;
}
.index-feature:nth-child(2) h4 {
	color: #B2CAEC;
}

.index-feature:nth-child(3) {
	border-color: #F6A52F;
}
.index-feature:nth-child(3) h4 {
	color: #F6A52F;
}

.index-feature:nth-child(4) {
	border-color: #BEE9BE;
}
.index-feature:nth-child(4) h4 {
	color: #BEE9BE;
}

.index-feature > span {
	display: inline-block;
	vertical-align: middle;
}

.index-feature .icon {
	width: 30%;
	margin: 35px 0;
	text-align: center;
	font-size: 70px;
}

.index-feature .icon + span {
	width: 70%;
}

.index-feature:nth-child(1) .icon {
	color: #E6828A;
}

.index-feature:nth-child(2) .icon {
	color: #B2CAEC;
}

.index-feature:nth-child(3) .icon {
	color: #F6A52F;
}

.index-feature:nth-child(4) .icon {
	color: #BEE9BE;
}
.index-users .fa {
	font-size: 25px;
	width: 40px;
	text-align: center;
}

.index-users .users-block a {
	color: #fff;
}

.latest-post-thumb {
	padding-top: 40%;
	background-image: url('/public/images/chatwee.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media only screen and (max-width: 1080px) {
	#home-stats .stat {
		text-align: center;
	}

	#home-stats .stat > span {
		display: block;
		margin: 20px 0;
	}

	#home-stats .icon-circle {
		float: left;
	}

	#home-stats .icon-circle + span {
		display: block;
		float: left;
		width: calc(100% - 92px);
	}

	.index-feature {
		float: none;
		width: 100%;
	}

	.index-users .users-block {
		float: none;
		text-align: left;
	}

	.index-users .users-block > span {
		display: block;
	}
}

/* PRICING */

.pricing-table-tooltip {
	display: none;
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 15px;
	width: 250px;
	max-width: calc(100vw - 50px);
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	border-radius: 5px;
	padding: 10px;
	z-index: 2;
	font-size: 13px;
}

.pricing-table-tooltip:after {
	content: '';
	display: block;
	position: absolute;
	left: calc(50% - 8px);
	right: 50%;
	background: #fff;
	width: 16px;
	height: 16px;
	bottom: -8px;
	transform: rotateZ(45deg);
	box-shadow: 2px 2px 3px rgb(0, 0, 0, .1);
}

.feature-tooltip:hover .pricing-table-tooltip {
	display: block;
}

.pricing-table-tooltip .fa {
	display: inline-block;
	vertical-align: middle;
	color: #31b6fe;
	font-size: 30px;
}

.pricing-table-tooltip h5 {
	margin: 0;
	margin-bottom: 10px;
}

#pricing-table .feature-tooltip {
	display: inline-block;
    position: relative;
    margin-left: 2px;
    float: right;
	cursor: pointer;
}

#pricing-table .feature-tooltip > .fa {
	color: #2cb4fe;
}

.pricing-enterprise {
	background-image: url(/public/images/paper-plane.svg);
	background-repeat: no-repeat;
	background-position: calc(50% + 320px) calc(100% - 80px);
	background-size: 70px;
}

.pricing-enterprise .btn {
	width: 200px;
	max-width: 100%;
	color: #E6828A;
}

.pricing-features ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.pricing-features ul li {
	margin-bottom: 20px;
}

.pricing-features .fa {
	width: 50px;
	color: #2cb4fe;
	font-size: 30px;
	vertical-align: middle;
}

.pricing-features img {
	height: 30px;
	width: 30px;
	margin-right: 20px;
	vertical-align: middle;
}

.pricing-key-facts .icon-circle {
	display: block;
	width: 120px;
	height: 120px;
	margin: 0 auto 20px auto;
	padding: 25px 0;
	background: #fff;
	border: 1px solid;
	line-height: 70px;
}
.pricing-key-facts .icon-circle img {
	width: 70px;
	height: 70px;
}

.pricing-key-facts > div:nth-child(1) .icon-circle {
	border-color: #e6828a;
}

.pricing-key-facts > div:nth-child(2) .icon-circle {
	border-color: #b1e6b2;
}

.pricing-key-facts > div:nth-child(3) .icon-circle {
	border-color: #f6a52f;
}

.pricing-key-facts > div:nth-child(4) .icon-circle {
	border-color: #9c9afb;
}

.pricing-key-facts > div:nth-child(5) .icon-circle {
	border-color: #2cb4fe;
}

#pricing-table {
	margin-top: -220px;
}

#pricing-table > div > div:first-child > div {
	position: relative;
	padding: 10px 2px 10px 10px;
}

#pricing-table > div > div:nth-child(2) {
	position: relative;
}
#pricing-table > div:nth-child(4) > div:nth-child(2) {
	padding-right: 5px;
}
#pricing-table > div > div:nth-child(2):before {
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	bottom: -30px;
	left: 4px;
	right: 4px;
	border: 1px solid rgba(0,0,0,0.2);
}

#pricing-table > div > div > div {
	padding: 10px;
}
#pricing-table > div > div > div:after {
	content: '';
	display: block;
	clear: both;
}
#pricing-table > div > div > div:first-child {
	position: relative;
	height: 280px;
	margin: 0 5px;
	padding-top: 100px;
	overflow: hidden;
}
#pricing-table > div > div > div:nth-child(even) {
	background: #F6F6F6;
}
#pricing-table > div > div:not(:first-child) > div:first-child {
	background: #fff;
}
#pricing-table > div > div:not(:first-child) > div:not(:first-child) {
	font-weight: 700;
}
#pricing-table > div:nth-child(4) > div:nth-child(2) > div:first-child {
	margin-right: 0;
}

#pricing-table > div > div > div:first-child img {
	width: 70px;
	position: absolute;
	margin: auto;
	top: 70px;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}

#pricing-table > div > div > div:first-child img + p {
	height: 60px;
	line-height: 20px;
}

#pricing-table .pricing-feature {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: calc(100% - 20px);
	display: block;
	float: left;
}

#pricing-table .plan-price {
	margin-bottom: 0;
	color: #FFA800;
	font-size: 35px;
}
#pricing-table .plan-price + p {
	margin-top: 0;
	margin-bottom: 30px;
}

#pricing-table .btn-primary {
	display: block;
}

#pricing-table .fa-check {
	color: #5da64d;
}

#pricing-table .fa-times {
	color: #dc6370;
}

.pricing-cta-modal.modal-content {
	max-width: 1000px;
	min-height: auto;
	padding: 40px;
	max-height: 100%;
	overflow: auto;
	background-image: url('/public/images/pricing/bg_arrow.png');
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right center;
}

.pricing-cta-modal .modal-close {
	top: 0;
}

@media only screen and (min-width: 1080px) {
	.pricing-cta-modal-content {
		display: flex;
		align-items: center;
	}
}

.pricing-cta-modal .btn {
	padding-left: 70px;
	padding-right: 70px;
}

.pricing-cta-modal img {
	max-width: 100%;
	margin: auto;
	display: block;
}

@media only screen and (max-width: 1080px) {
	.pricing-enterprise {
		background-position: calc(50% + 180px) calc(100% - 80px);
	}

	.pricing-features {
		display: block;
		text-align: center;
	}

	.pricing-features ul {
		text-align: center;
	}

	#pricing-table > div:not(:last-child) {
		margin-bottom: 100px;
	}

	#pricing-table > div > div:not(:first-child) > div:first-child {
		margin-left: -150%;
		margin-right: 0;
	}
	#pricing-table > div:nth-child(4) > div:nth-child(2) {
		padding-right: 0;
	}

	#pricing-table > div > div:nth-child(2):before {
		bottom: -1px;
		left: calc(-150% - 1px);
		right: -1px;
		z-index: -1;
	}

}

/* FEATURES */

.features-section {
	box-shadow: 0 10px 10px rgba(0,0,0,0.1);
}

.features-blocks > div > div {
	min-height: 250px;
	margin: 5% 3% 0 2%;
	padding: 30px 10px 20px 10px;
	border: 1px solid;
	border-top-width: 10px;
}

.features-blocks > div > div img {
	height: 60px;
}
.features-blocks > div > div svg {
	width: 60px;
	height: 60px;
	fill: currentColor;
}
.features-blocks > div > div .fa {
	font-size: 60px;
}

.features-blocks > div:nth-child(1) {
	color: #E6828A;
}

.features-blocks > div:nth-child(2) {
	color: #B1CCE7;
}

.features-blocks > div:nth-child(3) {
	color: #F6A52F;
}

.features-blocks > div:nth-child(4) {
	color: #7FA3C7;
}

.features-blocks > div:nth-child(5) {
	color: #FDA0A8;
}

.features-blocks > div:nth-child(6) {
	color: #FCDB68;
}

.features-blocks > div:nth-child(7) {
	color: #DD9C80;
}

.features-blocks > div:nth-child(8) {
	color: #B1E6B2;
}

.features-blocks > div:nth-child(9) {
	color: #9C9AFB;
}

.features-blocks > div p {
	color: #1b212f;
}

/* FULL FEATURES */

#features-tabs {
	font-size: 20px;
	margin: -162px auto 50px auto;
}

#features-tabs li {
	border-color: #dfdfdf;
}

#features-tabs li a {
	height: 160px;
	background: #FFF;
}

#features-tabs li:nth-child(1) a {
	color: #a3e2a2;
}

#features-tabs li:nth-child(2) a {
	color: #8983fa;
}

#features-tabs li:nth-child(3) a {
	color: #fa8c97;
}

#features-tabs li:nth-child(4) a {
	color: #6c91ba;
}

#features-tabs svg {
	display: block;
	width: 50px;
	height: 50px;
	margin: 20px auto;
	fill: currentColor;
}

#features-tabs-content ul {
	list-style: none;
	margin: 0;
	margin-top: 75px;
	padding: 0;
}

#features-tabs-content ul li {
	display: block;
	position: relative;
	margin: 20px 0;
	padding: 20px 20px 20px 80px;
	border: 1px solid;
	border-left-width: 5px;
}

#features-tabs-content ul li svg {
	position: absolute;
	left: 30px;
	width: 27px;
	height: 25px;
	top: 0;
	bottom: 0;
	margin: auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 4%;
}

#features-tabs-content ul li:nth-child(6n) {
	color: #6c91ba;
}
#features-tabs-content ul li:nth-child(6n+1) {
	color: #fa8c97;
}
#features-tabs-content ul li:nth-child(6n+2) {
	color: #dd9c80;
}
#features-tabs-content ul li:nth-child(6n+3) {
	color: #a3e2a2;
}
#features-tabs-content ul li:nth-child(6n+4) {
	color: #8983fa;
}
#features-tabs-content ul li:nth-child(6n+5) {
	color: #f6a52f;
}

#features-tabs-content ul li span {
	color: initial;
}

@media only screen and (max-width: 1080px) {
	#features-tabs {
		font-size: 13px;
		margin-left: -20px;
		margin-right: -20px;
		word-wrap: break-word;
		width: calc(100% + 40px);
	}
}

.supported-browsers-table {
	border: 1px solid #ededed;
	border-top: 5px solid #ededed;
	color: #3e3e3e;
}

.supported-browsers-table > div {
	position: relative;
}

.supported-browsers-table > div:before {
	position: absolute;
	content: '';
	height: 100%;
	width: 1px;
	background-color: #ededed;
	right: 0;
}

.supported-browsers-table .cell-tbl {
	position: relative;
	margin: 4px;
	border: 1px solid #ededed;
	background-color: #ecfee6;
	padding: 15px;
}

.supported-browsers-table .cell-tbl {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.supported-browsers-table .title-tbl {
	height: 120px;
	font-weight: 500;
	border-bottom: 3px solid #e47332;
	padding: 15px;
}

.supported-browsers-table .title-tbl > p {
	padding: 7px 0 0;
	margin: 0;
}

.supported-browsers-table .chrome-browser {
	border-color: #2295c6;
}

.supported-browsers-table .opera-browser {
	border-color: #d73f3b;
}

.supported-browsers-table .safari-browser {
	border-color: #3968b4;
}

.supported-browsers-table .ie-browser {
	border-color: #18bbf3;
}

.supported-browsers-table .yandex-browser {
	border-color: #fb0017;
}

.supported-browsers-table .uc-browser {
	border-color: #c95f0d;
}

.supported-browsers-table .cell-tbl-colspan {
	height: 70px;
}

@media only screen and (max-width: 1080px) {
	.supported-browsers-table > div:before {
		background-color: transparent;
	}

	.pull-left-mobile {
		float: left;
	}

	.supported-browsers-table .title-tbl {
		height: auto;
		border: 0;
	}

	.supported-browsers-table {
		border: 0;
	}

	.supported-browsers-table .col-mobile-100 {
		border:1px solid #ededed;
		border-top: 5px solid #ededed;
		margin-bottom: 20px;
	}

	.supported-browsers-table .cell-tbl-colspan {
		height: 83px;
	}
}

.fake-input-field {
	display: none;
}

.encourage-block .icon-circle {
  width: 175px;
  height: 175px;
  margin: 0 auto;
  line-height: 180px;
  border: 7px solid #dfdfdf;
  position: relative;
}

.encourage-block .icon-circle:before {
  position: absolute;
  content: '';
  border-radius: 50%;
  width: 157px;
  height: 157px;
  border: 2px dashed #fff;
  top: 0;
  left: 0;
  webkit-transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
}


.encourage-block .icon-circle:after {
  position: absolute;
  content: '';
  width: 135%;
  height: 1px;
  background-color: transparent;
  border-top: 2px dashed #d0dff0;
  top: 50%;
  left: 114%;
}

.encourage-block .icon-circle:hover:before {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.encourage-block .icon-circle.build-ideas:after {
  border-color: #fddcba;
}

.encourage-block .icon-circle.last-child:after {
  width: 0;
  height: 0;
}

.encourage-block .build-ideas {
  background-color: #d0dff0;
  border-color: #d0dff0;
}

.encourage-block .build-ideas:hover {
  background-color: #c5d9f0;
  border-color: #c5d9f0;
}

.encourage-block .share-people {
  background-color: #fddcba;
  border-color: #fddcba;
}

.encourage-block .share-people:hover {
  background-color: #fbd4ab;
  border-color: #fbd4ab;
}

.encourage-block .talk-people {
  background-color: #def4de;
  border-color: #def4de;
}

.encourage-block .talk-people:hover {
  background-color: #d2f2d2;
  border-color: #d2f2d2;
}


.encourage-block .text {
  color: #727272;
  max-width: 350px;
  margin: 0 auto;
  padding-top: 10px;
  font-size: 17px
}

.why-us-description {
  color: #717171;
}

.why-us-item .icon-circle {
  margin: 0 auto;
  width: 140px;
  height: 140px;
  line-height: 180px;
}

.why-us-item.enterprise-solution .icon-circle {
  background-color: #d0dff0;
}

.why-us-item.online-community .icon-circle {
  background-color: #f3d1ac;
}

.why-us-item.social-hub .icon-circle {
  background-color: #88c9e5;
}

@media only screen and (max-width: 1080px) {
  .encourage-block .icon-circle:after {
	width: 0;
	height: 0;
  }
}

/* Parallax Slider */

.sl-slider-wrapper {
  width: 100%;
  margin: 0 auto;
}

.sl-slider {

}

/* Slide wrapper and slides */

.sl-slide,
.sl-slides-wrapper,
.sl-slide-inner {

}

.sl-slide {

}

.sl-slide-inner {
  background-size: cover;
}

.sl-slide-inner {
  background-image: url("/public/images/lines-bg-2.png");
}

.sl-content-slice {
  overflow: hidden;
  position: absolute;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background: #fff;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity : 1;
}

/* Horizontal slice */

.sl-slide-horizontal .sl-content-slice {
  width: 100%;
  height: 50%;
  left: -200px;
  -webkit-transform: translateY(0%) scale(1);
  -moz-transform: translateY(0%) scale(1);
  -o-transform: translateY(0%) scale(1);
  -ms-transform: translateY(0%) scale(1);
  transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
  top: -200px;
  padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-child(2) {
  top: 50%;
  padding: 0px 200px 200px 200px;
}

.why-us-section .sl-slide-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 30px;
  height: 100%;
  box-sizing: border-box;
}

.why-us-section .head-title {
  text-align: center;
}

.why-us-section .sl-slide h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  width: 80%;
  text-align: center;
  margin: 10px 0;
}

.why-us-section .sl-slide .desc {
  width: calc(100% - 100px);
  max-width: 1000px;
  text-align: center;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #fff;
  z-index: 2;
  margin: 0;
  padding: 0;
}

/* Custom background colors for slides in first demo */

/* First Slide */
.why-us-section .bg-1 .sl-slide-inner,
.why-us-section .bg-1 .sl-content-slice {
  background-color: #ee979d;
}

/* Second Slide */
.why-us-section .bg-2 .sl-slide-inner,
.why-us-section .bg-2 .sl-content-slice {
  background-color: #fbb85d;
}

/* Third Slide */
.why-us-section .bg-3 .sl-slide-inner,
.why-us-section.bg-3 .sl-content-slice {
  background-color: #a6cbc4;
}

/* Demo pages */

.demo-grid {
  margin: 25px 0;
  padding: 0;
  list-style-type: none;
  /*text-align: center;*/
}

.demo-grid-item {
  border: 1px solid #a8a8a8;
  border-radius: 5px;
  display: inline-block;
  width: 32.15%;
  margin: 0 5px 14px;
  position: relative;
  vertical-align: top;
  height: 130px;
  overflow: hidden;
  font-size: 16px;
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.demo-grid-item a {
  background: #f1f1f1;
  font-weight: 500;
  color: #425766;
  outline: 0;
  padding: 15px;
  display: block;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}

.demo-grid-item a:hover {
  background: #fff;
  text-decoration: none;
  color: #000;
}

.demo-grid-item a>span {
  display: block;
  padding-top: 7px;
}

@media only screen and (max-width: 1080px) {
  .demo-grid-item {
	width: 100%;
	display: block;
	margin-left: 0;
	margin-right: 0;
  }

  .heading-section {
	padding: 25px 0;
  }

  h1 {
	font-size: 24px;
  }

  h2 {
	font-size: 18px;
  }

  section.padding {
	padding-top: 10px;
	padding-bottom: 10px;
  }
}

.integration-links {
  padding-top: 10px;
}

.integration-links .btn{
  color: #ea6c72;
  margin: 0 30px;
  min-width: 110px;
  text-transform: none;
}

.integration-code {
  font-size: 16px;
  color: #2a2e37;
}

.integration-code code {
  font-size: 15px;
  padding: 20px;
}

.integration-code-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  background: #f2f2f2;
}

.integrations-script-blur {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
  filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='3');
}

_:-ms-lang(x), .integrations-script-blur {
  text-shadow: 0px 0px 2px 4px #424040;
}

.integrations-info {
	margin: 50px auto;
	max-width: 700px;
}

.integrations-grid:before,
.integrations-grid::after {
  display: table;
  content: " ";
}

.integrations-grid::after {
  clear: both;
}


.integrations-grid-item {
  border: 1px solid #a8a8a8;
  border-radius: 5px;
  /*display: inline-block;*/
  width: 24%;
  margin: 0 5px 14px;
  position: relative;
  vertical-align: top;
  height: 180px;
  overflow: hidden;
  float: left;
}

.integrations-grid-item figure img {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.integrations-grid-item figure {
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
  display: block;
  z-index: 2;
  position: relative;
  margin: 0;
  border-radius: 5px;
  background-color: #fff;
  padding: 10px;
  height: 79%;
  box-sizing: border-box;
}

.integrations-grid-item .cms-details {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 5px;
}

.integrations-grid-item h4 {
  z-index: 2;
  color: #bababa;
  position: relative;
  margin-bottom: 0;
}

.integrations-grid-item:hover figure,
.integrations-grid-item.cs-hover figure {
  -webkit-transform: translateY(-25px) scale(0.5);
  -moz-transform: translateY(-25px) scale(0.5);
  -ms-transform: translateY(-25px) scale(0.5);
  transform: translateY(-25px) scale(0.5);
}


@media only screen and (min-width: 1600px) {
  .integrations-grid-item {
	height: 200px;
  }

  .integrations-grid-item:hover figure,
  .integrations-grid-item.cs-hover figure {
  -webkit-transform: translateY(-35px) scale(0.85);
  -moz-transform: translateY(-35px) scale(0.85);
  -ms-transform: translateY(-35px) scale(0.85);
  transform: translateY(-35px) scale(0.85);
}
}

.integrations-grid-item .cms-details a{
  color: #000;
}

.integrations-grid-item .cms-details ul {
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.integrations-grid-item .cms-details ul>li {
  padding: 0;
  margin: 0 10px;
  list-style-type: none;
  display: inline-block;
  vertical-align: top;
}

.integrations-grid-item .cms-details ul>li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f4f4f4;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.integrations-grid-item .cms-details ul>li a:hover {
  background-color: #eee;
}

.integrations-grid-item .fa {
  font-size: 20px;
}

.integrations-grid-item .fa-joomla {
  color: #105899;
}

.integrations-grid-item .fa-drupal {
  color: #0b5dac;
}

.integrations-grid-item figure img.concrete5-img {
  width: 40%;
}

.integrations-grid-item figure img.typo3-img {
  width: 35%;
}


@media only screen and (max-width: 1080px) {
  .integrations-grid-item {
	width: 47%;
  }

  .integrations-grid-item figure img {
	width: 40%;
  }

  .integrations-grid-item figure img.concrete5-img {
	width: 20%;
  }

  .integrations-grid-item figure img.typo3-img {
	width: 20%;
  }
}

@media only screen and (max-width: 600px) {
  .integrations-grid-item {
	width: 100%;
	display: block;
	margin: 0;
	margin-bottom: 15px;
  }

  .integrations-grid-item figure img {
	width: 40%;
  }

  .integrations-grid-item figure img.concrete5-img {
	width: 20%;
  }

  .integrations-grid {
	margin: 0;
	padding: 10px;
  }
}

.iframe-block iframe {
  position: absolute;
  height: 100%;
  width:100%;
  overflow: hidden;
  top:0;
  left:0;
}

.modal-mobile .modal-content {
  width: 375px;
  height: 812px;
  padding: 55px 5px 45px;
  border-radius: 15px;
  background: #424242;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.modal.modal-mobile.show .modal-dialog {
  height: 812px;
  width: auto;
}

.modal-mobile .col-tab-lg {
  width: 82%;
}

.modal-mobile .btn-sound {
  position: absolute;
  margin: 0 auto;
  height: 3px;
  width: 67px;
  border-radius: 5px;
  background-color: #000;
  top: 27px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-mobile .btn-turn {
  position: absolute;
  margin: 0 auto;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: #000;
  top: 27px;
  left: 35%;
  transform: translate(-50%, -50%);
}

.modal-mobile .btn-sound-border {
  position: absolute;
  margin: 0 auto;
  width: 76px;
  height: 10px;
  border-radius: 5px;
  border: 3px solid #313030;
  top: 27px;
  left: 50%;
  transform: translate(-50%, -50%);
}

#demoModal .modal-body:before,
#demoModalMobile .modal-body:before {
	content: "\f110";
	display: block;
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	color: #1294F6;
	font-family: FontAwesome;
	font-size: 50px;
	line-height: 50px;
	-webkit-animation: spin 1s linear infinite;
	-moz-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}

.spinner:before {
	content: "\f110";
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	margin: auto;
	color: #1294F6;
	font-family: FontAwesome;
	font-size: 50px;
	line-height: 50px;
	-webkit-animation: spin 1s linear infinite;
	-moz-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}
	@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
	@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
	@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

/* Contact */

.contact-icon {
  width: 175px;
  height: 175px;
  line-height: 175px;
  margin: 15px auto;
  border-radius: 50%;
  background-color: #c9c8f7;
  position: relative;
}

.contact-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-form {
  width: 50%;
  margin: 0 auto;
}

.input-block {
  display: block;
  border: 1px solid #dadada;
  border-radius: 3px;
  width: 100%;
  height: 50px;
  padding: .375rem .75rem;
  background-color: #fff;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  box-sizing: border-box;
  color: #1b212f;
  font-size: 15px;
  outline: 0;
  font-family: 'Ubuntu', sans-serif;
}

.input-field {
  margin-bottom: 15px;
}

textarea.input-block {
  height: 200px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
}

.input-block:focus {
  background-color: #fff;
  border-color: #a8a8a8;
  outline: 0;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color: #dadada;
	font-style: italic;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #dadada;
   opacity:  1;
   font-style: italic;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #dadada;
   opacity:  1;
   font-style: italic;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #dadada;
   font-style: italic;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: #dadada;
   font-style: italic;
}

::placeholder { /* Most modern browsers support this now. */
   color: #dadada;
   font-style: italic;
}

.input-field .btn {
  border: 0;
  font-size: 18px;
  min-width: 230px;
  height: 50px;
  cursor: pointer;
}


.validation-box label {
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 11px;
  display: inline;
  margin: 0;
  font-weight: normal;
  padding-left: 15px;
}

.validation-box label.invalidMessage {
  background-image: url(/public/images/negativeMessage.png);
  color: #d70808;
}

.validation-box label.validMessage {
  background-image: url(/public/images/positiveMessage.png);
  color: #08b80a !important;
}


/* select */

select {
  display: none;
}

.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: #fff;
	border-radius: 5px;
	border: solid 1px #dadada;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	font-family: inherit;
	font-size: 15px;
	font-weight: normal;
	height: 50px;
	line-height: 50px;
	outline: none;
	padding-left: 18px;
	padding-right: 30px;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: 100%;
}

.nice-select:hover {
	border-color: #a8a8a8;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
	border-color: #a8a8a8;
}

.nice-select:after {
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	content: '';
	display: block;
	height: 5px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 5px;
}

.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}

.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none;
}

.nice-select.disabled:after {
	border-color: #cccccc;
}

.nice-select.wide {
	width: 100%;
}

.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}

.nice-select.small:after {
	height: 4px;
	width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .list {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 2;
	width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: #f6f6f6;
}

.nice-select .option.selected {
	font-weight: bold;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
}

.nice-select .current.default {
	font-style: italic;
	color: #dadada;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

@media only screen and (max-width: 1080px) {
  .contact-form {
	width: 100%;
  }
}

.inline-block {
  display: inline-block;
  vertical-align: middle;
}

.users-for-who-item {
  display: flex;
  align-items: center;
}

.users-for-who .user-icon {
  width: 80px;
  height: 80px;
  position: relative;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ea6c72;
  margin-right: 10px;
  flex: 0 0 80px;
}

.users-for-who .user-text {
    display: block;
    width: auto;
    flex: 1;
    padding-left: 20px;
}

.users-for-who .user-icon img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.users-for-who .user-who-cares {
  border-color: #b1e6b2;
}

.users-for-who .user-who-wants {
  border-color: #f6a52f;
}

.users-for-who .user-who-seeks {
  border-color: #28a3fc;
}

.users-for-who .user-who-aims {
  border-color: #bbb9fc;
}

.users-for-who .user-who-strives {
  border-color: #f262ba;
}

.user-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.user-item {
  background-color: #f6f6f6;
  padding: 37px 25px;
  color: #ea6c72;
  border-radius: 5px;
  position: relative;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

.user-item .fa {
  font-size: 60px;
  line-height: 1;
}

.user-item-image {
  max-width: 100%;
  display: block;
  position: relative;
}

.wrapper-inner {
  max-width: 760px;
  margin: 0 auto;
}


@media only screen and (max-width: 1080px) {
  .users-for-who .user-icon {
	margin: 0 auto 10px;
  }
}

@media only screen and (max-width: 600px) {
  .users-for-who .inline-block {
	display: block;
	text-align: center;
  }

  .users-for-who .col-mobile-50,
  .section-user-items .col-mobile-50  {
	width: 100%;
  }
}


/* Support page */

.faq-block-item {
  padding: 20px;
  background-color: #b1eab1;
  color: #363636;
}

.tabs-support {
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 0;
  clear: both;
}

.tabs-support li {
  border: 0;
  padding: 10px;
  display: table-cell;
}

.tabs-support li:first-child {
  padding-left: 0;
}

.tabs-support li.last {
  padding-right: 0;
}

.tabs-support li a {
  padding: 10px;
  border: 1px solid #6b95cf;
  border-radius: 5px;
  box-sizing: border-box;
  text-decoration: none;
  display: block;
}

#nav-support {
  position: sticky;
  top: 70px;
  background-color: #fff;
  width: 100%;
  z-index: 3;
  border-bottom: 1px solid #e9e9e9;
}

.tabs-support li a:hover{
  border-color: transparent;
  background-color: #e6e6e6;
  color: #121212;
}

.tabs-content-support h3 {
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 20px;
}

.title-tab {
  background-color: #f6f6f6;
}

.support-list {
  padding: 0;
  margin: 0;
}

.support-list > li {
  list-style-type: none;
}

.support-list > li > span {
  padding: 10px;
  border: 1px solid #a8a8a8;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  color: #292929;
  position: relative;
}

.support-list > li + li {
  margin-top: 10px;
}

.support-list > li > span:hover,
.support-list > li > span:active,
.support-list > li > span:focus {
  text-decoration: none;
  color: #2cb4fe;
  border-color: #e6e6e6;
}


.tab-support + .tab-support {
  margin-top: 20px;
}


@media only screen and (max-width: 1080px) {
  .tab-support .col-spaced [class*=col-] {
	padding: 10px 20px 0;
  }

  .title-tab h3 {
	padding-left: 20px;
	padding-right: 20px;
  }

  .title-tab {
	margin-bottom: 20px;
  }
}


/* MODAL */

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-open .modal {
  /*overflow-x: hidden;
  overflow-y: auto;*/
  overflow: hidden;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  z-index: 1050;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 90%;
  height: auto;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}


.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.modal-dialog {
  width: 100%;
  height: 97%;
}

.modal * {
  box-sizing: border-box;
}

/* Documentation */

.doc-primary-text {
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.44;
}

.doc-menu {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.doc-menu li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  word-wrap: break-word;
}

.doc-menu li > ul {
  margin: 0;
  padding: 0 0 10px 10px;
}

.doc-menu li > ul > li{
  margin: 5px 0 0;
  padding: 0;
}

.doc-menu li + li{
  margin-top: 10px;
}

.doc-menu li a {
  text-decoration: none;
  font-weight: 300;
}


.doc-menu li.active>a,
.doc-menu li>a:hover,
.doc-menu a.active {
  color: #272727;
  text-decoration: none;
  font-weight: 500;
}

.doc-menu li.active>a
.doc-menu a.active {
  cursor: default;
}

.doc-content h2 {
  margin: 0;
  padding-bottom: 15px;
  color: #151515;
  font-size: 24px;
  font-weight: 400;
}

.doc-content p {
  margin: 0;
}

.doc-content p {
  padding-bottom: 15px;
}


.doc-figure {
  margin-left: 0;
}

.doc-label {
  color: #000;
  font-size: 16px;
  padding-top: 10px;
  display: inline-block;
  font-weight: 600;
}

.doc-parameters-table,
.doc-parameters-secondary-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  margin-top: 10px;
}

.doc-parameters-table th,
.doc-parameters-table td,
.doc-parameters-secondary-table th,
.doc-parameters-secondary-table td {
  padding: 10px;
  border-bottom: 1px solid #ebebeb;
}

.doc-parameters-table th,
.doc-parameters-secondary-table th {
  background-color: #f6f6f6;
  font-weight: 500;
}

.doc-parameters-table tbody tr:nth-of-type(even) td,
.doc-parameters-secondary-table tbody tr:nth-of-type(even) td {
  background-color: #f6f6f6;
}

table + .doc-label {
  margin-top: 20px;
}

.menu-list-terms,
.menu-list-terms ul,
.menu-list-terms ol {
  margin: 0;
  padding: 0;
}


.menu-list-terms li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menu-list-terms > li {
  padding-top: 70px;
}

.menu-list-terms ul li + li{
  margin-top: 5px;
}

.menu-list-terms ul {
  margin-top: 10px;
}

.menu-list-terms  b {
  font-weight: 500;
}

.menu-list-terms > li > b {
  font-weight: 300;
  font-size: 24px;
}


.numbered-list {
  margin: 0;
  padding: 0 0 0 20px;
}

.numbered-list li + li {
  margin-top: 20px;
}

.numbered-list img {
  margin-top: 15px;
}

.plugin-integration-share.socials a {
  color: #272727;
  width: 50px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  font-size: 24px;
  border-radius: 50%;
  border: 1px solid #272727;
  height: 48px;
}

.numbered-list [data-fancybox] {
  display: block;
  /*width: 65%;*/
  margin-left: auto;
  margin-right: auto;
}


@media only screen and (min-width: 1200px) {
	.article-doc-wrapper,
  .wrapper.article-doc-wrapper {
		max-width: 900px;
	}
}

.numbered-list [data-fancybox] img{
  display: block;
}

@media only screen and (max-width: 1080px) {
  .doc-primary-text {
	padding-left: 0;
	padding-right: 0;
  }

  .doc-figure {
	margin: 0;
  }

  .heading-section-docs h1 {
	font-size: 24px;
	word-wrap: break-word;
  }

  .table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .doc-content {
	padding: 0;
  }

  .heading-section-docs + section> .wrapper {
	padding-left: 0;
	padding-right: 0;
  }

  .numbered-list [data-fancybox] {
	width: 100%;
  }
}

.cookies h3 {
  margin-top: 0;
}

.cookies-page {
  padding-top: 70px;
}


.about-quote {
	font-size: 20px;
  color: #333;
  position: relative;
  margin: 35px 0;
}

.about-quote-inner {
  background-color: #f6f6f6;
  padding: 34px 80px;
  position: relative;
}

.about-quote:after {
  width: 60px;
  height: 60px;
  background-color: #c8edcc;
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 50%;
}

.about-quote .fa {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #fff;
  font-size: 45px;
  z-index: 1;
}

.about-quote:before {
  content: '';
  width: 100%;
  border: 1px solid #c8edcc;
  height: 100%;
  bottom: -10px;
  left: 10px;
  background-color: #fff;
  position: absolute;
}

.wrapper-about {
  padding-left: 45px;
  padding-right: 45px;
}


@media only screen and (max-width: 1080px) {
  .wrapper-about {
	padding-left: 25px;
	padding-right: 25px;
  }
}

.btn-demo {
	text-transform: none;
}

.btn-primary-demo {
	background: #fff;
	color: #3c3c3c;
	font-weight: 500;
	margin-left: 15px;
}

.btn-primary-demo:hover,
.btn-primary-demo:active,
.btn-primary-demo:focus {
	background: #fff;
}

.error-page {
  padding-top: 175px;
  padding-bottom: 175px;
  color: #2e2e2e;
}

.error-page h1 {
  font-size: 36px;
}


.error-page h2 {
  font-size: 30px;
}

.error-page h2 a:hover {
  text-decoration: none;
}


@media only screen and (max-width: 1080px) {
  .error-page {
	padding-top: 140px;
	padding-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
  }
  .videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .section-video {
	padding-bottom: 0;
  }
}

.text-url {
  display: inline-block;
  margin: 0 2px 0 6px;
  font-size: 14px;
  color: #333;
  vertical-align: top;
}

.modal-mobile {
  height: 812px;
}

.modal-mobile .browser-demo-action span {
  width: 7px;
  height: 7px;
  margin-left: 5px;
}

#demoModal .modal-content {
	height: 100%;
}

@media only screen and (max-height: 650px) {
  .modal-mobile,
  .modal-mobile .modal-content,
  .modal.modal-mobile.show .modal-dialog {
	height: 630px;
  }
}

.faq-item-expand {
  padding: 10px;
  color: #666;
}

.tab-support-faq h3 {
  color: #fff;
}

#getting-started .title-tab {
  background-color: #efadaf;
}

#customization .title-tab {
  background-color: #91b3cf;
}

#subscription .title-tab {
  background-color: #cce1ce;
}

#chatting-experience .title-tab {
  background-color: #f3d8a3;
}

#chat-moderation .title-tab {
  background-color: #bebbfe;
}

#chatwee-API .title-tab {
  background-color: #77bddf;
}

.modal-close {
  position: absolute;
  top: -5px;
  right: 5px;
  font-size: 20px;
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 1;
}

.modal-close:focus {
  outline: 0;
}

/* ----------------------- */

.register-form-section {
	padding-bottom: 40px;
}

.register-form-section-submit .btn {
	margin: 5px 0;
}

@media only screen and (min-width: 1080px) {
	.register-form-section-submit {
		display: flex;
		justify-content: space-between;
		margin-bottom: 20px;
	}
	.register-form-section-submit .input-field {
		margin: 0;
	}
	.register-form-section-submit .btn {
		margin: 0;
	}
}

.browser-demo-wrapper {
  margin: -8px 0 0;
}

.browser-tab {
  background: #dfe2e9;
  height: 35px;
  /*border-radius: 5px 5px 0 0;*/
  /*position: relative;*/
}

.browser-demo-action {
  padding-top: 6px;
}

.browser-demo-action span{
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-left: 8px;
}

.browser-tab .line {
  height: 3px;
  width: 25px;
  border-radius: 5px;
  background-color: #9aa1ad;
  position: relative;
  display: inline-block;
  margin-right: 15px;
  margin-top: 15px;
}

.browser-tab .line:after,
.browser-tab .line:before {
  content: '';
  position: absolute;
  height: 3px;
  width: 25px;
  border-radius: 5px;
  background-color: #9aa1ad;
  display: block;
  top: 6px;
  left: 0;
}

.browser-tab .line:before {
  top: auto;
  bottom: 6px;
}

.col-tab-sm {
  width: 10%;
}

.col-tab-sm img {
  margin-top: 7px;
  margin-left: 7px;
}

.col-tab-lg {
  width: 80%;
}

.browser-tab .line + .line{
  margin-top: 3px;
}

.browser-search {
  height: 25px;
  border-radius: 5px;
  background-color: #fff;
  width: 100%;
  margin-top: 5px;
  padding: 4px 7px 6px;
  box-sizing: border-box;
}

.browser-search img {
  margin-top: 1px;
  float: right;
}

.browser-demo-action .circle-red {
  background-color: #dc4a3d;
}

.browser-demo-action .circle-yellow {
  background-color: #f4c30e;
}

.browser-demo-action .circle-green {
  background-color: #3dbc55;
}

@media only screen and (max-width: 1080px) {
  .col-mobile-tab-sm {
	width: 18%;
  }

  .col-mobile-tab-lg {
	width: 76%;
  }
}

@media only screen and (max-width: 1280px) and (min-width: 1080px) {
  .col-tab-sm {
	width: 15%;
  }

  .col-tab-lg {
	width: 70%;
  }
}


.browser-search img.pull-left {
	float: left;
}

/* IN A NUTSHELL PAGE */
.in-a-nutshell-steps > div {
	position: relative;
}

.in-a-nutshell-steps .icon-circle {
	margin: 0 auto;
	font-size: 10px;
	background: currentColor;
	border: 2px solid #fafafa;
	box-shadow: 0 0 0px 2px currentColor;
}

.in-a-nutshell-steps .sign-up-step .icon-circle {
	color: #f68282;
}

.in-a-nutshell-steps .get-access-step .icon-circle {
	color: #828ef6;
}

.in-a-nutshell-steps .install-step .icon-circle {
	color: #37b5fb;
}

.in-a-nutshell-steps .upgrade-step .icon-circle {
	color: #f682c8;
}

.in-a-nutshell-steps .chat-step .icon-circle {
	color: #ffa552;
}

.in-a-nutshell-steps .icon-circle img {
	vertical-align: middle;
}

@media only screen and (min-width: 1080px) {
	.in-a-nutshell-steps > div:not(:last-child) .icon-circle:after {
		content: '';
		display: block;
		position: absolute;
		top: 56px;
		left: calc(50% + 36px);
		width: calc(100% - 72px);
		height: 2px;
		background: currentColor;
	}
}

.in-a-nutshell-steps p {
	max-width: 140px;
	margin-left: auto;
	margin-right: auto;
}

.in-a-nutshell-feature {
	padding: 30px 15px 15px 15px;
	color: #fff;
}
@media only screen and (min-width: 1080px) {
	.in-a-nutshell-feature {
		min-height: 170px;
		padding-bottom: 0;
	}
}

.in-a-nutshell-features .cloud-feature {
	background: #37b5fb;
}
.in-a-nutshell-features .subscription-feature {
	background: #ffa552;
}
.in-a-nutshell-features .display-feature {
	background: #828ef6;
}
.in-a-nutshell-features .messaging-feature {
	background: #f68282;
}
.in-a-nutshell-features .customization-feature {
	background: #f682c8;
}

.in-a-nutshell-feature a {
	color: #fff;
	text-decoration: underline;
}

.in-a-nutshell-video {
	max-width: 100%;
}

.team-chat-video {
	display: block;
	max-width: 100%;
	margin: auto;
}

.team-features {
	list-style: none;
}
.team-features li {
	margin: 20px 0;
}
.team-features .fa {
    width: 50px;
    color: #2cb4fe;
    font-size: 30px;
    vertical-align: middle;
    text-align: center;
}

.welcome-features {
	list-style: none;
	margin: 0;
	padding: 0;
}

.welcome-features li {
	margin-bottom: 20px;
}

.welcome-features .fa {
	width: 50px;
	color: #2cb4fe;
	font-size: 30px;
	vertical-align: middle;
}

@media (max-width: 1063px) {
	.logo-images {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
	}
}

@media (min-width: 1064px) {
	.logo-images {
		width: 1064px;
		margin: 0px auto;
	}
}