/** Contents

	-- 1. Body
	-- 2. Hero
	-- 3. Carousel controls
	-- 4. Scroll navigation
	-- 5. Navigation
	-- 6. Sections
	-- 7. Button styles
	-- 8. UI Tabs
	-- 9. UI Accordion
	-- 10. Blog posts
	-- 11. Sign-up
	-- 12. Pricing table
	-- 13. FAQ
	-- 14. Positions
	-- 15. Icons
	-- 16. Customers
	-- 17. Footer
	-- 18. Page loading animations
	-- 19. Slick slider
	-- 20. Keyframe animations
	-- 21. Tablet media queries
	-- 22. Mobile media queries

**/

/**  Body  **/

@font-face {
	font-family: 'LineaBasic';
	src: url('../fonts/linea-basic-10.eot');
	src: url('../fonts/linea-basic-10d41d.eot?#iefix') format('embedded-opentype'), 
	     url('../fonts/linea-basic-10.woff') format('woff'), 
	     url('../fonts/linea-basic-10.ttf')  format('truetype'),
	     url('../fonts/linea-basic-10.svg#svgFontName') format('svg'); 
}

@font-face {
	font-family: "LineaArrows";
	src:url("../fonts/linea-arrows-10.eot");
	src:url("../fonts/linea-arrows-10d41d.eot?#iefix") format("embedded-opentype"),
		url("../fonts/linea-arrows-10.woff") format("woff"),
		url("../fonts/linea-arrows-10.ttf") format("truetype"),
		url("../fonts/linea-arrows-10.svg#linea-arrows-10") format("svg");
}

@font-face {
    font-family: 'socicon';
    src: url('../fonts/socicon-webfont.eot');
    src: url('../fonts/socicon-webfontd41d.eot?#iefix') format('embedded-opentype'),
         url('../fonts/socicon-webfont.woff') format('woff'),
         url('../fonts/socicon-webfont.ttf') format('truetype'),
         url('../fonts/socicon-webfont.svg#sociconregular') format('svg');
    font-weight: normal;
    font-style: normal;
    text-transform: initial;
}

@font-face {
	font-family: 'LineaMusic';
	src: url('../fonts/linea-music-10.eot');
	src: url('../fonts/linea-music-10d41d.eot?#iefix') format('embedded-opentype'), 
	     url('../fonts/linea-music-10.ttf')  format('truetype'),
	     url('../fonts/linea-music-10.svg#svgFontName') format('svg'); 
}

::-moz-selection {
	background: rgba(38, 161, 224, 0.7);
	color: #fff;
}

::selection {
	background: rgba(38, 161, 224, 0.7);
	color: #fff;
}

.blue ::-moz-selection {
	background: rgba(255, 255, 255, 1);
	color: #26a1e0;
}

.blue ::selection {
	background: rgba(255, 255, 255, 1);
	color: #26a1e0;
}

html, body {
	height: 100%;
	font-family: 'Lato', sans-serif;
	color: #5c5c5c;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    -moz-osx-font-smoothing: grayscale;
}

body {
	overflow-x: hidden;
}

.wrapper {
	overflow-x: hidden;
}

a:link, a:active, a:visited {
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover {
	color: #26a1e0;
}

p {
	margin: 0 0 20px 0;
}

img {
	max-width: 100%;
	height: auto;
}

h2, h3, h4, h5, h6 {
	color: #383838;
	font-weight: 700;
	text-align: center;
	margin: 0 0 30px 0;
}

h2:after,
h3:after,
h4:after,
h5:after,
h6:after {
	content: '';
	display: block;
	height: 2px;
	width: 70px;
	background: #26a1e0;
	margin: 20px auto 0 auto;
	-webkit-animation: title-border .5s ease-in;
  	-moz-animation:    title-border .5s ease-in;
  	-o-animation:      title-border .5s ease-in;
	animation:         title-border .5s ease-in;
}

h2 {
	font-size: 30px;
}

h4 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 30px;
}

h5 {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 20px;
}

em {
	font-size: 17px;
}

*:focus {
	box-shadow: none;
	outline: none;
}

blockquote {
	font-size: 14px;
	color: #3a3a3a;
	padding: 20px;
	border-left: 3px solid #d9d9d9;
	background: #f8f8f8;
}

input:focus, input:active, .textarea:focus, .textarea:active {
	box-shadow: none !important;
	border-color: #9c9c9c !important;
}

.no-underline:after, .no-underline.left:after {
	content: '';
	display: none;
}

.wrapper {
	overflow-x: hidden;
}

/**  Hero  **/

.hero {
	background: #192a3b url("../images/hero-bg.jpg");
	overflow: hidden;
	padding-top: 30px;;
	background-attachment: fixed;
	position: relative;
	-webkit-animation: hero-bg 90s linear infinite;
  	-moz-animation:    hero-bg 90s linear infinite;
  	-o-animation:      hero-bg 90s linear infinite;
	animation:         hero-bg 90s linear infinite;
}

.hero:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background: url("../images/dots.png");
	z-index: 0;
}

.hero.open:after {
	top: 0;
	opacity: 1;
}

.hero:after {
	content: '';
	display: block;
	position: absolute;
	height: 110px;
	opacity: 0;
	top: -10px;
	width: 100%;
	background: rgba(255,255,255, .9);
	z-index: 0;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.hero .blurb {
	color: #fff;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 50px;
}

.hero .blurb img {
	-webkit-animation: hero-img 1s ease-in-out;
  	-moz-animation:    hero-img 1s ease-in-out;
  	-o-animation:      hero-img 1s ease-in-out;
	animation:         hero-img 1s ease-in-out;
}

.hero .blurb p {
	-webkit-animation: hero-p 1s ease-in-out;
  	-moz-animation:    hero-p 1s ease-in-out;
  	-o-animation:      hero-p 1s ease-in-out;
	animation:         hero-p 1s ease-in-out;
}

.hero .blurb .blurb-content {
	padding: 0px 85px 0 85px;
}

.hero .blurb h1 {
	font-size: 46px;
	font-weight: 900;
	margin: 0 0 20px 0;
}

.hero .blurb h1 span {
	font-size: 46px;
	font-weight: 300;
	color: #26a1e0;
	position: relative;
	-webkit-animation: heading 1s 0.5s linear;
  	-moz-animation:    heading 1s 0.5s linear;
  	-o-animation:      heading 1s 0.5s linear;
	animation:         heading 1s 0.5s linear;
}

.hero .blurb p {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 30px 0;
}

.hero .blurb .btn {
	margin: 0 5px;
}

.hero .blurb .btn-default {
	color: #fff;
	border-color: #fff;
}

.hero .blurb .btn-default:hover {
	border-color: #26a1e0;
	background: #26a1e0;
}

.hero .preview {
	margin-top: 60px;
}

.hero .dark-logo {
	display: none;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.hero.open .dark-logo {
	display: block;
}

.hero.open .navbar img:not(.dark-logo) {
	display: none;
}

.hero.open .menu a {
	color: #26a1e0;
}

/** Carousel controls **/

.carousel-control {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 20px;
    font-size: 12px;
    color: #FFF;
    text-align: center;
    text-shadow: none;
    opacity: 1;
    height: 60px;
    width: 60px;
}

.carousel-control.left:hover,
.carousel-control.right:hover {
	background: #26a1e0;
}

.carousel-control.left {
	left: auto;
	right: 61px;
}

.carousel-control.left,
.carousel-control.right {
	background: rgba(38, 161, 224, .2);
	bottom: 0;
	top: auto;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
	font-size: 12px;
	text-align: center;
	line-height: 2.6em;
}

/** Pagination **/

.carousel-indicators {
    bottom: 8px;
    right: 150px;
    left: auto;
    width: 100%;
    text-align: right;
}

.carousel-indicators li {
	background: rgba(38, 161, 224, .2);
	border: none;
	height: 14px;
	width: 14px;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	margin: 0 5px;
}

.carousel-indicators .active {
	background: none;
	border: 3px solid #26a1e0;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	margin: 0 5px;
	height: 14px;
	width: 14px;
}

/**  Navigation  **/

.navbar {
	z-index: 10;
}

.menu {
	text-align: right;
}

.menu a {
	font-size: 16px;
	outline: none;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: inline-block;
	margin: 12px 14px 8px 0;
}

#nav_icon {
  width: 30px;
  height: 20px;
  float: right;
  position: relative;
  margin: 14px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav_icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav_icon span:nth-child(1) {
  top: 0px;
}

#nav_icon span:nth-child(2),
#nav_icon span:nth-child(3) {
  top: 8px;
}

#nav_icon span:nth-child(4) {
  top: 16px;
}

#nav_icon.open span {
	background: #26a1e0;
}

#nav_icon.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#nav_icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav_icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav_icon.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.nav {
	float: right;
	opacity: 0;
	-webkit-transition: .25s ease-in-out;
 	-moz-transition: .25s ease-in-out;
 	-o-transition: .25s ease-in-out;
  	transition: .25s ease-in-out;
  	transform:translateY(-20%);
  	-webkit-transform: translateY(-20%);
}

.nav.opennav {
	opacity: 1;
	transform:translateY(0);
	-webkit-transform: translateY(0);
}

.nav li a {
	font-size: 16px;
	color: #5c5c5c;
	font-weight: 600;
	text-transform: uppercase;
	overflow: hidden;
	padding: 0 20px;
	height: 1.2em;
	letter-spacing: 1px;
	margin-top: 14px;
}

.nav li a span {
	position: relative;
	display: inline-block;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}

.nav li a span::before {
	position: absolute;
	top: 100%;
	content: attr(data-hover);
	font-weight: 700;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.nav li a:hover {
	background: none;
	color: #fff;
}

.nav li a:hover span, .nav li a:focus span {
	color: #26a1e0;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
}

.nav li.active a {
	color: #26a1e0;
}

.nav li.active:hover a, .nav li.active a:hover span {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
}


/**  Sections  **/

.section {
	margin-top: 90px;
}

.green {
	background: #26a1e0;
	padding: 90px 0;
	color: #fff;
}

.green h2 {
	color: #fff;
}

.green h2:after {
	background: #fff;
}

.dark.bg-img {
	background: #192a3b url("../images/large-bg.png") no-repeat;
	z-index: -2;
	padding-bottom: 90px;
	background-size: cover;
}

.dark.bg-img.no-padding-bottom {
	padding-bottom: 0;
}

.dark.bg-img strong {
	color: #fff;
}

.dark.bg-img h2,
.dark.bg-img p {
	color: #fff;
}

.dark.bg-img:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
	background: url("../images/dots.png");
}

.dark {
	background: #f8f8f8;
	position: relative;
	padding-top: 90px;
}

.dark:before {
	content: '';
	background: url("../images/dark-bg.svg") center top no-repeat;
	position: absolute;
	display: block;
	width: 100%;
	height: 70px;
    top: -70px;
	background-size: cover;
}

.dark.remove-top:before {
	display: none;
}

.dark h2 {
	color: #383838;
}

.dark strong,
.dark p {
	color: #5c5c5c;
}

.section ul.bullet {
	margin: 0 0 40px 20px;
	padding: 0;
}

.section ul.bullet li {
	list-style: none;
	background: url("../images/bullet.html") no-repeat 0 50%;
	padding-left: 20px;
	margin-bottom: 10px;
}

.section ul.bullet li a {
	color: #26a1e0;
}

/** Form styles  **/

#contact {
	background: #fff;
}

.dark form {
	margin-top: 60px;
}

input.form-control,
textarea.form-control {
	border: none;
	border: 1px solid #e5e5e5;
	color: #5c5c5c;
	background: #f8f8f8;
	border-radius: 3px;
	box-shadow: none;
	font-size: 14px;
	font-weight: 700;
	padding: 20px 15px;
	height: auto;
	margin: 0 0 20px 0;
}

textarea.form-control {
	padding: 12px;
}

input:focus,
.form-control:focus, .textarea:focus {
	outline: none;
	box-shadow: none;
}

form .btn {
	color: #fff;
	border-color: #fff;
}

/**  Button styles  **/

.btn, .btn:hover {
	font-size: 11px;
	text-transform: uppercase;;
	letter-spacing: 2px;
	border-radius: 35px;
	font-weight: 900;
	padding: 15px 30px;
	margin-top: 10px;
	-webkit-transition:all .3s ease-in-out;
	-moz-transition:all .3s ease-in-out;
	transition:all .3s ease-in-out;
}

.btn.btn-xs {
	padding: 8px 12px; 
}

.btn.btn-sm {
	padding: 11px 24px; 
}

.btn.btn-lg {
	padding: 20px 40px; 
}

.hero .btn-default {
	border-color: #b2b2b2;
	color: #b2b2b2;
	background: none;
}


.btn-default {
	border: 2px solid #b2b2b2;
	color: #383838;
	background: none;
}

.btn-default:hover {
	border-color: #26a1e0;
	color: #26a1e0;
	background: none;
}

.btn-primary {
	border: 2px solid #26a1e0;
	background: #26a1e0;
	color: #fff;
}

.btn-primary:hover {
	border: 2px solid #26a1e0;
	color: #26a1e0;
	background: none;
}

/**  UI Tabs  **/

#tabs {
	position: static;
	margin-bottom: 610px;
}

#tabs ul {
	text-align: center;
}

#tabs ul li {
	float: none;
	padding-bottom: 50px;
	margin: 0 10px -4px 10px;
	display: inline-block;
	background: url('../images/current-tab.png') no-repeat 50% 110%;
	-webkit-transition:all .3s ease-in-out;
	-moz-transition:all .3s ease-in-out;
	transition:all .3s ease-in-out;
}

#tabs ul li span {
	display: block;
	height: 64px;
	width: 100%;
	color: #26a1e0;
	margin-bottom: 30px;
	background-repeat: no-repeat;
	background-position: 50% 100%;
	-webkit-transition:all .3s ease-in-out;
	-moz-transition:all .3s ease-in-out;
	transition:all .3s ease-in-out;
}

#tabs ul li a {
	font-size: 12px;
    font-weight: 600;
    color: #383838;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: normal;
    text-align: center;
    display: inline-block;
    width: 100%;
}

#tabs ul li a:hover {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: .5;
}

#tabs ul li a:focus {
	outline: none;
}

#tabs ul li.ui-tabs-active span {
	 -webkit-filter: grayscale(100%);
	 filter: grayscale(100%);
	 opacity: .5;
}

#tabs ul li.ui-tabs-active {
	background: url('../images/current-tab.png') no-repeat 50% 100%;
}

#tabs ul li.ui-tabs-active span,
#tabs ul li a:hover span {
	color: #383838;
}

#tabs ul li h3:after {
	display: none;
}

#tabs .indv-tab {
	position: absolute;
	overflow: hidden;
	padding: 90px 0; 
	left: 0;
	width: 100%;
	background: #f8f8f8;
}

#tabs .indv-tab .col-md-6 {
	-webkit-animation: tab-content 1s ease-in-out;
  	-moz-animation:    tab-content 1s ease-in-out;
  	-o-animation:      tab-content 1s ease-in-out;
	animation:         tab-content 1s ease-in-out;
}

#tabs .img-preview:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	z-index: 1;
	height: 100%;
	width: 100%;
	background: url("../images/dots.png");
}

#tabs .img-preview {
	position: absolute;
	text-align: center;
	left: 0;
	bottom: 0;
	width: 50%;
	background: url("../images/video-bg.png") no-repeat;
	background-size: cover;
	height: 100%;
	padding: 0;
}

#tabs .img-preview .play {
	font-family: 'LineaMusic';
	color: #fff;
	font-size: 80px;
	background: rgba(38, 161, 224, .6);
	padding: 20px;
	border-radius: 50%;
	position: relative;
	z-index: 100;
	top: 45%;
	transform: translateY(-45%);
	-webkit-transform: translateY(-45%);
	cursor: pointer;
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

#tabs .img-preview .play:hover {
	color: #26a1e0;
	background: rgba(255, 255, 255, .8);
}

#tabs .img-preview .video.player {
	opacity: 1;
}

#tabs .img-preview .video {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border: none;
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

#tabs h4 {
	color: #383838;
}

#tabs p {
	color: #5c5c5c;
}

#tabs p strong {
	color: #383838;
	font-size: 16px;
}

/*#tabs .img-preview img {
	width: 100%;
}*/

#horz_tabs ul {
	border-bottom: 1px solid #dfdfdf;
	padding: 0;
}

#horz_tabs ul li {
	margin: 0 5px 0 0;
}

#horz_tabs ul li a {
	font-size: 11px;
	color: #767676;
	text-transform: uppercase;;
	letter-spacing: 2px;
	border: 1px solid #f8f8f8;
	background: #f8f8f8;
	border-radius: 3px 3px 0 0;
	padding: 15px;
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; 
}

#horz_tabs ul li a:hover {
	background-color: #26a1e0;
	border-color: #26a1e0;
	color: #fff;
}

#horz_tabs ul li.ui-tabs-active {
	margin-bottom: -2px;
	position: relative;
}

#horz_tabs ul li.ui-tabs-active:after {
	content: '';
	display: block;
	width: 99%;
	background: #fff;
	height: 1px;
	position: absolute;
	bottom: 0;
}

#horz_tabs ul li.ui-tabs-active a {
	color: #383838;
	background: #fff; 
	border: 1px solid #dfdfdf;
	border-bottom-color: #fff;
}

#horz_tabs ul li a:focus, #horz_tabs ul li:focus {
	box-shadow: none;
	outline: none;
}

#horz_tabs.ui-tabs .ui-tabs-panel {
	padding: 50px 0;
}

/**  Accordion  **/

#accordion h3 {
	margin: 5px 0 0 0;
	padding: 15px 15px 15px 45px;
	font-size: 12px;
	color: #383838;
	background-color: #fff;
	border: 1px solid #dfdfdf;
	border-radius: 3px;
	font-weight: 600;
	letter-spacing: 1px;
	position: relative;
	text-align: left;
	text-transform: uppercase;
}

#accordion h3:after {
	display: none;
}

#accordion h3:before {
	content: "\e014";
	font-family: 'Glyphicons Halflings';
	font-size: 9px;
	height: 8px;
	width: 8px;
	display: block;
	position: absolute;
	left: 20px;
	top: 16px;
	color: #26a1e0;
}

#accordion .ui-state-active {
	color: #fff;
	background-color: #26a1e0;
	border-color: #26a1e0;
	border-radius: 3px 3px 0 0;
}

#accordion .ui-state-active:before {
	content: "\e014";
	color: #fff;
	height: 8px;
	width: 8px;
	display: block;
	position: absolute;
	left: 20px;
	top: 15px;
}

#accordion .ui-accordion-content {
	background-color: #f8f8f8;
	border: 1px solid #dfdfdf;
	border-top: none;
	padding: 0;
}

#accordion .ui-accordion-content p {
	padding: 15px;
}

/**  Home app slide  **/

.blue {
	background-color: #26a1e0;
}

.small-hex {
	background-image: url("../images/small-hex.svg");
	height: 76px;
	display: block;
	background-position: 0px;
	position: relative;
	width: 68px;
    background-size: 101%;
}

.usp-wrap {
	margin-top: 90px;
}

.app-usp .col-md-9 {
	border-bottom: 1px solid #dfdfdf;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.app-usp {
	margin-top: 130px;
}

.app-usp h3 {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 20px 0;
}

.app-usp h3:after {
	display: none;
}

.app-usp .linea-icon {
    font-family: "LineaBasic";
    display: block;
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    text-transform: none;
    color: #fff;
    position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.app-usp.left,
.app-usp.left h3 {
	text-align: right;
}

.app-usp.right,
.app-usp.right h3 {
	text-align: left;
}

.right .row .animateme:last-child .col-md-9,
.left .row .animateme:last-child .col-md-9 {
	border:none;
}

/**  Map  **/

.open-map {
	background: #26a1e0;
	text-align: center;
	margin: 60px 0 0 0;
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.open-map a {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: block;
	padding: 20px 0;
}

.open-map:hover {
	background: #4a2e77;
}


/**  Pricing table  **/

.pricing {
	margin-top: 80px; 
}

.price.popular {
	background: #253545;
	color: #fff;
	z-index: 10;
}

.price.popular .head {
	background: #192a3b;
}

.price.popular .head h2 {
	color: #fff;
}

.price.popular:before {
	content: 'Most popular plan';
	display: block;
	background: #26a1e0;
	position: absolute;
	width: 100%;
	left: 0;
	top: -31px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 11px;
	padding: 8px 5px;
}

.price {
	border: 1px solid #f8f8f8;
	background: #fff;
	position: relative;
	padding: 30px 30px 80px 30px;

	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.price:hover {
	-webkit-transform: translateY(-2%);
    -ms-transform: translateY(-2%);
     transform: translateY(-2%);
}

.price .head {
	background: #f8f8f8;
	padding: 30px 0;
	margin: -30px -30px 0 -30px; 
}

.price .head h2 {
	font-size: 20px;
	color: #767676;
	text-transform: none;
	font-weight: 500;
	letter-spacing: 0;
	margin-bottom: 20px;
}

.price .head h2:after {
	display: none;
}

.price .head p {
	font-size: 60px;
	color: #26a1e0;
	font-weight: 300;
	text-align: center;
	margin-bottom: 0;
}

.price .head p span {
	font-size: 20px;
	color: #949494;
	font-weight: 400;
}

ul.check {
	margin: 30px 0;
	padding: 0 0 0 20px;
	list-style: none;
}

ul.check li {
	position: relative;
	padding: 7px 7px 7px 35px;
}

ul.check li:before {
	font-family: 'LineaArrows';
	content: "\e006";
	font-size: 28px;
	color: #26a1e0;
	position: absolute;
	left: 0;
	top: -3px;
}

.price .btn {
	position: absolute;
	bottom: 30px;
}

/**  FAQ  **/

.question {
	margin: 0 0 50px 0;
}

.question p strong {
	font-weight: 800;
	font-size: 16px;
}

.question:last-child p, .question:last-child {
	margin-bottom: 0;
}

/**  Icons  **/

.icon-wrapper {
	padding-top: 60px;
}

.icon {
	text-align: center;
	padding: 0 60px;
	margin-bottom: 60px;
}

.icon p {
	color: #5c5c5c;
}

.icon h5 {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0px 0px 20px;
	font-weight: 600;
	color: #383838;
}

.icon .dark-hex {
	background-repeat: no-repeat;
	background-size: 102%;
	width: 113px;
	height: 126px;
	display: inline-block;
	background-position: -1px 0px;
	margin-bottom: 30px; 
}

.icon .dark-hex img {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.icon-list .content {
	border-bottom: 1px solid #dfdfdf;
	padding: 30px 0;
}

.icon-list:last-child .content {
	border: none;
}

.icon-list span {
	font-family: 'LineaBasic';
	display: block;
	width: 100%;
	font-size: 60px;
	color: #26a1e0;
	text-transform: none;
	margin-top: 30px;
}

.icon-list p {
	margin-bottom: 0;
}


/**  Customers  **/

.customer-slider.slick-slider {
	height: auto;
	padding: 0;
	background: none;
	margin-top: 60px;
}

.customer-slider .slick-list {
	border: none;
}

.customer-slider.slick-slider .slick-dots {
  bottom: -60px;
}

.customers div {
	background: #fff;
	border-radius: 2px;
	text-align: center;
	color: #fff;
	padding: 30px; 
}

.dark.bg-img .customers div p {
	color: #5c5c5c;
}

.customers div h6 {
	color: #26a1e0;
	margin: 0;
	font-size: 14px;
}

.customers div h6:after {
	display: none;
}

.customers div span {
	color: #7c8b9b;
	font-weight: 600;
}

.customers .dark-hex {
	position: relative;
	display: inline-block;
	width: 128px;
	height: 128px;
	margin-bottom: 30px;
}

.customers .dark-hex:before {
	content: '';
	position: absolute;
	background-image: url("../images/small-hex.svg");
	background-repeat: no-repeat;
	background-size: 100%;
	left: -1px;
	width: 120px;
	height: 100%;
	display: inline-block;
	background-position: 50%; 
}

/**  Logos  **/

.logo {
	margin-top: 90px;
	padding: 30px 0;
	background: rgba(19, 36, 54, .5);
}

/**  Download  **/

.blue.section {
	margin: 1px 0 0 0;
	padding: 90px 0;
}

.blue * {
	color: #fff;
}

.blue.section .btn {
	background: rgba(0, 0, 0, .3);
	font-weight: 900;
	font-size: 13px;
	position: relative;
	text-align: left;
	line-height: 1.2em;
	padding-left: 55px;
	margin: 20px 5px 0 5px;
}

.blue.section .btn:hover {
	background: rgba(0, 0, 0, .5);
	color: #fff;
}

.blue.section .btn .socicon {
	position: absolute;
	left: 20px;
	top: 22px;
	font-size: 24px;
}

.blue.section .btn .sub {
	color: rgba(255, 255, 255, .5);
	font-size: 11px;
	display: block;
}

/**  Footer  **/

.footer {
	background: #f8f8f8;
	font-size: 16px;
}

.footer p {
	margin: 0;
}

.footer .copyright a {
	color: #5c5c5c;
}

.socicon {
    font-family: 'socicon' !important;
}

.footer .copyright {
	padding-top: 27px;
}

.footer .social-icons {
	text-align: right;
}

.footer .social-icons ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer .social-icons ul li {
	display: inline-block;
}

.footer .social-icons ul li a {
	color: #26a1e0;
	padding: 35px 25px;
	display: block;
	font-size: 20px;
	-webkit-transition:all .3s ease-in-out;
	-moz-transition:all .3s ease-in-out;
	transition:all .3s ease-in-out;
}

.footer .social-icons ul li a:hover {
	background: #26a1e0;
	color: #fff;
	text-decoration: none;
}

.top {
	position: fixed;
	bottom: 20px;
	right: 20px;
}

.top a {
	color: #fff;
	font-weight: 600;
	padding: 10px 20px;
	display: block;
	border-radius: 30px;
	background: rgba(38, 161, 224, .7);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
	-webkit-transition:all .3s ease-in-out;
	-moz-transition:all .3s ease-in-out;
	transition:all .3s ease-in-out;
}

.top a:hover {
	background: rgba(0, 0, 0, .7);
}

/**  Pace page loading  **/

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #26a1e0;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 3px;
}

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #26a1e0, 0 0 5px #26a1e0;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -moz-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  -o-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #26a1e0;
  border-left-color: #26a1e0;
  border-radius: 10px;
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -ms-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes pace-spinner {
  0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes pace-spinner {
  0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes pace-spinner {
  0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes pace-spinner {
  0% { transform: rotate(0deg); transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}

/** Slick slider  **/

.slick-slider {
	background: url("../images/slide-bg.png") no-repeat top center;
	height: 641px;
    position: relative;
    display: block;
    z-index: 10;
    padding: 93px 49px 0px 52px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 2px solid #282a1c;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-dots {
	text-align: center;
	padding: 0;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 110px;
}

.slick-dots li {
	display: inline-block;
    background: #fff;
    border: medium none;
    text-indent: -9999px;
    height: 14px;
    width: 14px;
    transform: translateY(0px);
    margin: 0px 5px;
    border-radius: 50%;
    cursor: pointer;
}

.slick-dots li.slick-active {
	background: none;
	border: 3px solid #fff;
	transform: translateY(3px);
}

/**  Positions  **/

.italic {
	font-size: 17px;
	font-style: italic;
}

.centered {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.left {
	text-align: left;
}

.margin-top {
	margin-top: 30px;
}

.large-margin-top {
	margin-top: 90px;
}

.margin-bottom {
	margin-bottom: 30px;
}

.large-margin-bottom {
	margin-bottom: 90px;
}

.large-padding-bottom {
	padding-bottom: 90px;
}

.no-margin-bottom {
	margin-bottom: 0;
}

.no-margin-top {
	margin-top: 0;
}

.no-padding {
	padding: 0;
}

.no-padding-bottom {
	padding-bottom: 0;
}

.padding-top-btm {
	padding-top: 30px;
	padding-bottom: 30px;
}

h2.left:after,
h3.left:after,
h4.left:after,
h5.left:after,
h6.left:after {
	content: '';
	display: block;
	height: 2px;
	width: 70px;
	background: #26a1e0;
	margin: 20px 0 0 0;
	-webkit-animation: title-border .5s ease-in;
  	-moz-animation:    title-border .5s ease-in;
  	-o-animation:      title-border .5s ease-in;
	animation:         title-border .5s ease-in;
}

/**  Keyframes  **/

@-webkit-keyframes title-border {
  0%   { width: 0; }
  100% { width: 70px; }
}
@-moz-keyframes title-border {
  0%   { width: 0; }
  100% { width: 70px; }
}
@-o-keyframes title-border {
  0%   { width: 0; }
  100% { width: 70px; }
}
@keyframes title-border {
  0%   { width: 0; }
  100% { width: 70px; }
}



@-webkit-keyframes tab-content {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes tab-content {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes tab-content {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes tab-content {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}



@-webkit-keyframes heading {
  0%   { opacity: 0; bottom: -20px; }
  100% { opacity: 1; bottom: 0; }
}
@-moz-keyframes heading {
  0%   { opacity: 0; bottom: -20px; }
  100% { opacity: 1; bottom: 0; }
}
@-o-keyframes heading {
  0%   { opacity: 0; bottom: -20px; }
  100% { opacity: 1; bottom: 0; }
}
@keyframes heading {
  0%   { opacity: 0; bottom: -20px; }
  100% { opacity: 1; bottom: 0; }
}



@-webkit-keyframes hero-img {
  0%   { opacity: 0; transform: translateY(15%); }
  100% { opacity: 1; transform: translateY(0); }
}
@-moz-keyframes hero-img {
  0%   { opacity: 0; transform: translateY(15%); }
  100% { opacity: 1; transform: translateY(0); }
}
@-o-keyframes hero-img {
  0%   { opacity: 0; transform: translateY(15%); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes hero-img {
  0%   { opacity: 0; transform: translateY(15%); }
  100% { opacity: 1; transform: translateY(0); }
}



@-webkit-keyframes hero-p {
  0%   { opacity: 0; transform: translateX(15%) rotate(5deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0deg); }
}
@-moz-keyframes hero-p {
  0%   { opacity: 0; transform: translateX(15%) rotate(5deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0deg); }
}
@-o-keyframes hero-p {
  0%   { opacity: 0; transform: translateX(15%) rotate(5deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0deg); }
}
@keyframes hero-p {
  0%   { opacity: 0; transform: translateX(15%) rotate(5deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0deg); }
}



@-webkit-keyframes hero-bg {
  0%   { background-position: 0 0; }
  50% { background-position: 100% 0; }
  100%   { background-position: 0 0; }
}
@-moz-keyframes hero-bg {
  0%   { background-position: 0 0; }
  50% { background-position: 100% 0; }
  100%   { background-position: 0 0; }
}
@-o-keyframes hero-bg {
  0%   { background-position: 0 0; }
  50% { background-position: 100% 0; }
  100%   { background-position: 0 0; }
}
@keyframes hero-bg {
  0%   { background-position: 0 0; }
  50% { background-position: 100% 0; }
  100%   { background-position: 0 0; }
}


/** Medium screen media queries  **/

@media (max-width: 1200px) {

	.hero .blurb h1,
	.hero .blurb h1 span {
		font-size: 40px;
	}

	.hero .blurb .blurb-content {
		padding-top: 60px;
	}

	#tabs {
		margin-bottom: 660px;
	}

	.small-hex,
	.animateme:nth-child(2) .small-hex:before,
	.animateme:nth-child(3) .small-hex:before {
		height: 74px;
    	width: 68px;
	}

	.slick-slider {
		background-size: 96%;
		padding: 87px 24px 0px 27px;
	}

	.slick-list {
		height: 432px;
	}

	.slick-slide img {
		height: 100%;
		width: 100%;
	}

	.slick-dots {
		bottom: 140px;
	}

	.icon {
		min-height: 275px;
	}

	.dark.bg-img {
		background-attachment: inherit;
	}

	.customers .dark-hex {
		width: 118px;
	}

	.nav li a {
		font-size: 14px;
		padding: 0 14px;
	}

}

/** Small screen media queries  **/

@media (max-width: 991px) {

	/* Mobile nav */

	.hero:after {
		height: 100%;
		display: none;
		background: rgba(255,255,255, .9);
	}

	.hero.open:after {
		display: block;
	}

	.open .carousel-indicators,
	.open .carousel-control.left,
	.open .carousel-control.right {
		z-index: 0;
	}

	.nav {
		width: 100%;
		position: absolute;
		top: 60px;
	}

	.nav li {
		float: none;
	}

	.nav li a {
		font-size: 28px;
		font-weight: 400;
		text-align: center;
		padding: 0;
		line-height: .8em;
		height: 23px;
	}

	.nav li span,
	.nav li a span::before {
		font-weight: 400;
	}

	/* End */

	.hero .blurb .blurb-content {
		padding: 10px 15px 0 15px;
	}

	.hero .blurb h1, .hero .blurb h1 span {
		font-size: 35px;
	}

	#tabs {
		margin-bottom: 700px;
	}

	.app-usp {
		margin-top: 20px;
	}

	.app-usp .linea-icon {
		font-size: 20px;
		margin-left: -4px;
	}

	.app-usp h3 {
		margin-bottom: 5px;
	}

	.small-hex,
	.animateme:nth-child(2) .small-hex:before,
	.animateme:nth-child(3) .small-hex:before {
		height: 45px;
	}

	.small-hex {
		background-size: 103%;
	}

	.slick-list {
		height: 317px;
	}

	.slick-track {
		height: 100%;
	}

	.slick-slider {
		background-size: 96%;
		padding: 63px 19px 0px 22px;
		height: 520px;
	}

	.price.popular:before {
		display: none;
	}

	.customer-slider .slick-list {
		height: auto;
	}

	.left .point-wrap div:last-child,
	.right .point-wrap div:first-child {
		display: none;
	}

	.left .point-wrap div:first-child,
	.right .point-wrap div:last-child {
		width: 100%;
	}

}


/** Tablet media queries  **/

@media (max-width: 768px) {

	.menu {
		position: absolute;
		right: 0;
	}

	.hero .blurb img {
		display: none;
	}

	.hero .blurb h1,
	.hero .blurb h1 span {
		font-size: 40px;
	}

	.hero .blurb {
		margin: 100px 0 120px 0;
		padding: 0;
	}

	.carousel-control .glyphicon-chevron-left,
	.carousel-control .glyphicon-chevron-right {
		line-height: 0.6;
	}

	#tabs {
		margin-bottom: 630px;
	}

	.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
		float: none;
	}

	#tabs ul li {
		margin: 0;
		float: left;
		width: 50%;
		background: none;
	}

	#tabs ul li.ui-tabs-active {
		background: none;
	}

	#tabs .img-preview {
		display: none;
	}

	.app-usp .point-wrap {
		overflow: hidden;
		margin: 0 15px;
	}

	.small-hex {
		background-size: 101%;
	}

	.small-hex,
	.animateme:nth-child(2) .small-hex:before,
	.animateme:nth-child(3) .small-hex:before {
		height: 101px;
	}

	.app-usp .linea-icon {
		font-size: 40px;
		margin-left: 0;
	}

	.slick-slider {
		height: 465px;
    	padding: 65px 20px 50px 20px;
	}

	.slick-dots {
	    bottom: 75px;
	}

	.slick-list {
		height: 91%;
	}

	.usp-wrap {
		 margin-bottom: 140px;
	}

	.dark {
		padding-top: 0;
	}

	.dark.bg-img,
	.dark.remove-top {
		padding-top: 90px;
	}

	.icon {
		min-height: inherit;
	}

	.logo .col-xs-6:nth-child(1),
	.logo .col-xs-6:nth-child(2) {
		margin-bottom: 15px;
	}

	.footer * {
		text-align: center;
	}

	.footer .social-icons {
		margin-top: 10px;
	}
	
}

/** Mobile media queries  **/

@media (max-width: 480px) {

	.menu {
		text-align: right;
		position: absolute;
		right: 0;
	}

	.hero .blurb {
		margin-top: 0;
	}

	.hero .blurb .btn {
		margin-bottom: 5px;
		display: inline-block;
	}

	#tabs {
		margin-bottom: 500px;
	}

	.small-hex,
	.animateme:nth-child(2) .small-hex:before,
	.animateme:nth-child(3) .small-hex:before {
		height: 73px;
	}

	.slick-slider {
		height: 600px;
		padding: 85px 27px 0px 27px;
	}

	.slick-list {
		height: 482px;
	}

	.footer .social-icons ul li a {
		padding: 25px 15px;
	}

	.price:hover {
		transform: none;
	}

	form .btn {
		width: 100%;
	}

	.left .point-wrap div:last-child,
	.right .point-wrap div:first-child {
		display: block;
	}

	.left .point-wrap div:first-child,
	.right .point-wrap div:last-child {
		width: 66.66666667%;
	}
	
}


/** IE 10  **/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  
	input, .textarea {
		padding: 15px !important;
		height: auto !important;
	}

	.nav li input, .nav li .textarea {
		padding-left: 25px !important;
	}

	.nav .dropdown-menu {
		top: 58px !important;
	}

	#prev span, #next span {
		display: none;
	}

}

/* emoji list */
.emoji-picker {
    list-style-type: none;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 650px;
    padding: 2em 0;
    margin: 0 auto
}
@media (max-width: 480px) {
    .emoji-picker {
        padding: 1.5em 0
    }
}
.emoji-picker li {
    display: inline-block;
    text-align: center;
    vertical-align: middle
}
.emoji-picker li a {
    display: inline-block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 3em;
    text-align: center;
    line-height: 0
}
@media (max-width: 768px) {
    .emoji-picker li a {
        font-size: 2.25em;
        padding: 0 0.25em
    }
}
@media (max-width: 480px) {
    .emoji-picker li a {
        font-size: 1.75em;
        padding: 0
    }
}
.emoji-picker li a:hover {
    color: #8ae9b9
}
.emoji-picker li a.active {
    color: #16d374
}
.emoji-gallery {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3em
}
@media (max-width: 768px) {
    .emoji-gallery {
        margin-bottom: 2em
    }
}
@media (max-width: 480px) {
    .emoji-gallery {
        margin-bottom: 1em
    }
}
.emoji-gallery li {
    display: inline-block;
    width: 9%;
    margin-bottom: 1.75em;
    padding: 0 0.5em
}
.emoji-gallery li a {
    display: block
}
@media (max-width: 480px) {
    .emoji-gallery li {
        margin-bottom: 1em
    }
}
.emoji-gallery li img {
    -webkit-transition: all 100ms ease;
    transition: all 100ms ease;
    max-width: 65px;
    margin: 0 auto
}
@media (max-width: 768px) {
    .emoji-gallery li {
        width: 10%;
        padding: 0 0.25em
    }
}
@media (max-width: 480px) {
    .emoji-gallery li {
        width: 14.25%
    }
}
.emoji-gallery li a:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}


.demo-emoji-list {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3em
}
.demo-emoji-list li {
    display: inline-block;
    width: 10%;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding: 0 26px;
    font-size: 250%;
}
.demo-emoji-list li img {
    -webkit-transition: all 100ms ease;
    transition: all 100ms ease;
    display: block;
    width: 100%;
    height: auto;
    max-width: 65px;
    margin: 0 auto
}
.demo-emoji-list li img:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}/* emoji list end */

/* custom start */
.fa{display:flex;justify-content:center;align-items:center;font-size:40px;
    padding: 16px;} marked{color:#26a1e0} div:hover > div > .blue-hover{background-color:#2926e0;}@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

.messages-content{background:#fff}.messages{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.messages-date{text-align:center;font-weight:500;font-size:11px;line-height:1;margin:10px 15px;color:#8e8e93}.messages-date span{font-weight:400}.message{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:1px 10px 0;max-width:70%;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.message:first-child{margin-top:10px}.message .message-text{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-radius:16px;padding:6px 16px 9px;min-width:48px;min-height:35px;font-size:17px;line-height:1.2;word-break:break-word}.message.message-pic .message-text{padding:0;background:0 0}.message.message-pic img{display:block;height:auto;max-width:100%;border-radius:16px}.message-name{font-size:12px;line-height:1;color:#8e8e93;margin-bottom:2px;margin-top:7px}.message-hide-name .message-name{display:none}.message-label{font-size:12px;line-height:1;color:#8e8e93;margin-top:4px}.message-hide-label .message-label{display:none}.message-avatar{width:29px;height:29px;border-radius:100%;margin-top:-29px;position:relative;top:1px;background-size:cover;opacity:1;-webkit-transition-duration:400ms;transition-duration:400ms}.message-hide-avatar .message-avatar{opacity:0}.message-sent{-ms-flex-item-align:end;-webkit-align-self:flex-end;align-self:flex-end;-webkit-box-align:end;-ms-flex-align:end;-webkit-align-items:flex-end;align-items:flex-end}.message-sent .message-name{margin-right:16px}.message-sent .message-label{margin-right:6px}.message-sent.message-with-avatar .message-text{margin-right:29px}.message-sent.message-with-avatar .message-name{margin-right:45px}.message-sent.message-with-avatar .message-label{margin-right:34px}.message-sent .message-text{padding-right:22px;background-color:#26a1e0;color:#fff;margin-left:auto;-webkit-mask-box-image:url(data:image/svg+xml;charset=utf-8,<svg\ height=\'35\'\ viewBox=\'0\ 0\ 96\ 70\'\ width=\'48\'\ xmlns=\'http://www.w3.org/2000/svg\'><path\ d=\'m84\ 35c1\ 7-5\ 37-42\ 35-37\ 2-43-28-42-35-1-7\ 5-37\ 42-35\ 37-2\ 43\ 28\ 42\ 35z\'/></svg>) 50% 56% 46% 42%}.message-sent.message-last .message-text,.message-sent.message-with-tail .message-text{border-radius:16px 16px 0 16px;-webkit-mask-box-image:url(data:image/svg+xml;charset=utf-8,<svg\ height=\'35\'\ viewBox=\'0\ 0\ 96\ 70\'\ width=\'48\'\ xmlns=\'http://www.w3.org/2000/svg\'><path\ d=\'m84\ 35c1\ 7-5\ 37-42\ 35-37\ 2-43-28-42-35-1-7\ 5-37\ 42-35\ 37-2\ 43\ 28\ 42\ 35z\'/><path\ d=\'m96\ 70c-6-2-12-10-12-19v-16l-14\ 27s8\ 8\ 26\ 8z\'/></svg>) 50% 56% 46% 42%}.message-sent.message-last.message-pic img,.message-sent.message-with-tail.message-pic img{border-radius:16px 16px 0 16px}.message-received{-ms-flex-item-align:start;-webkit-align-self:flex-start;align-self:flex-start;-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.message-received .message-text{padding-left:22px;background-color:#e5e5ea;color:#000;-webkit-mask-box-image:url(data:image/svg+xml;charset=utf-8,<svg\ height=\'35\'\ viewBox=\'0\ 0\ 96\ 70\'\ width=\'48\'\ xmlns=\'http://www.w3.org/2000/svg\'><path\ d=\'m96\ 35c1\ 7-5\ 37-42\ 35-37\ 2-43-28-42-35-1-7\ 5-37\ 42-35\ 37-2\ 43\ 28\ 42\ 35z\'/></svg>) 50% 42% 46% 56%}.message-received .message-name{margin-left:16px}.message-received .message-label{margin-left:6px}.message-received.message-with-avatar .message-text{margin-left:29px}.message-received.message-with-avatar .message-name{margin-left:45px}.message-received.message-with-avatar .message-label{margin-left:34px}.message-received.message-last .message-text,.message-received.message-with-tail .message-text{border-radius:16px 16px 16px 0;-webkit-mask-box-image:url(data:image/svg+xml;charset=utf-8,<svg\ height=\'35\'\ viewBox=\'0\ 0\ 96\ 70\'\ width=\'48\'\ xmlns=\'http://www.w3.org/2000/svg\'><path\ d=\'m96\ 35c1\ 7-5\ 37-42\ 35-37\ 2-43-28-42-35-1-7\ 5-37\ 42-35\ 37-2\ 43\ 28\ 42\ 35z\'/><path\ d=\'m0\ 70c6-2\ 12-10\ 12-19v-16l14\ 27s-8\ 8-26\ 8z\'/></svg>) 50% 42% 46% 56%}.message-received.message-last.message-pic img,.message-received.message-with-tail.message-pic img{border-radius:16px 16px 16px 0}.message-last{margin-bottom:8px}.message-appear-from-bottom{-webkit-animation:messageAppearFromBottom 400ms;animation:messageAppearFromBottom 400ms}.message-appear-from-top{-webkit-animation:messageAppearFromTop 400ms;animation:messageAppearFromTop 400ms}.messages-auto-layout .message-label,.messages-auto-layout .message-name{display:none}.messages-auto-layout .message-avatar{opacity:0}.messages-auto-layout .message-first .message-name{display:block}.messages-auto-layout .message-last .message-avatar{opacity:1}.messages-auto-layout .message-last .message-label{display:block}html.retina.ios-6 .message,html.retina.ios-6 .message.message-pic img{-webkit-mask-box-image:none;border-radius:16px}@-webkit-keyframes messageAppearFromBottom{from{-webkit-transform:translate3d(0,100%,0)}to{-webkit-transform:translate3d(0,0,0)}}@keyframes messageAppearFromBottom{from{transform:translate3d(0,100%,0)}to{transform:translate3d(0,0,0)}}@-webkit-keyframes messageAppearFromTop{from{-webkit-transform:translate3d(0,-100%,0)}to{-webkit-transform:translate3d(0,0,0)}}@keyframes messageAppearFromTop{from{transform:translate3d(0,-100%,0)}to{transform:translate3d(0,0,0)}}html.with-statusbar-overlay body{padding-top:20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}


.message{margin-left:-22px;margin-right:4px;}

.success-message {
    text-align: center;
    
    max-width: 500px;
}

.success-message__icon {
    max-width: 75px;
}

.success-message__title {
    color: #26a1e0;
    transform: translateY(0);
    opacity: 1;
    transition: all 200ms ease;
    
}

.success-message__content {
    color: #B8BABB;
    transform: translateY(0);
    opacity: 1;
    transition: all 200ms ease;
    transition-delay: 50ms;
    
 
}

.icon-checkmark {
    circle {
        fill: #26a1e0;
    }
    path {
        transition: stroke-dashoffset 350ms ease;
        transition-delay: 100ms;
    }
    
    .active & {
        circle {
            transform: scale(1);
        }
    }
}


.inputDiv {
	background: #fafafa;
	position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width:100%;
    height:50px;
}

.textarea {
    position: fixed;
    bottom: 0px;
    left: 41px;
    right: 0px;
    width:calc(100% - 90px);
    height: 50px;
    z-index: 99;
    background: #fafafa;
    border: none;
    outline: none;
    padding-left: 10px;
    padding-right: 55px;
    color: #666;
    font-weight: 400;
    line-height: 50px;
    font-size: 15px;
}
.emojis {
    position: fixed;
    display: block;
    bottom: 8px;
    left: 7px;
    width: 34px;
    height: 34px;
    background-image: url(../images/emoji.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
    cursor: pointer;
}
.emojis:active {
    opacity: 0.9;
}
.emojis2 {
    position: fixed;
    display: block;
    bottom: 8px;
    right: 7px;
    width: 34px;
    height: 34px;
    background-image: url(../images/emoji.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
    cursor: pointer;
}
.emojis2:active {
    opacity: 0.9;
}
.menuBtn {
    position: fixed;
    display: block;
    bottom: 8px;
    left: 7px;
    width: 34px;
    height: 34px;
    background-image: url(../images/menu.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
    cursor: pointer;
}
.menuBtn:active {
    opacity: 0.9;
}
.sendBtn {
    position: fixed;
    display: block;
    bottom: 8px;
    right: 7px;
    width: 34px;
    height: 34px;
    background-image: url(../images/send.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
    cursor: pointer;
}
.sendBtn:active {
    opacity: 0.9;
}
.backBtn {
    position: fixed;
    display: block;
    bottom: 8px;
    left: 7px;
    width: 34px;
    height: 34px;
    background-image: url(../images/back.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
    cursor: pointer;
}
.backBtn:active {
    opacity: 0.9;
}

[contenteditable=true]:empty:before{
  content: attr(placeholder);
  display: block;
  color: #9e9e9e;
}

.textarea img, .message-text img {
	height: 24px;
	margin-top: -2px;
}

.textarea object, .message-text object {
	height: 24px;
	margin-top: -2px;
	display: inline-block;
	margin-bottom: -6px;
}

[contenteditable="true"].textarea {
    white-space: nowrap;
    overflow: hidden;
} 
[contenteditable="true"].textarea br {
    display:none;

}
[contenteditable="true"].textarea * {
    display:inline;
    white-space:nowrap;
}

/* custom end */

.button {
  display: block;
  background-color: #c0392b;
  width: 50%;
  height: 50px;
  line-height: 50px;
  margin: auto;
  color: #fff!important;
  position: absolute;
  cursor: pointer;
  overflow: hidden;
  bottom: 0;
  left: 0;
}
.button:hover { background-color: #942318; }
.greenB { left: initial!important; right: 0!important; background-color: #1e8221!important; }
.greenB:hover { background-color: #0e440f!important; }
.blueB { width:100%!important; background-color:#26a1e0; }
.blueB:hover { background-color:#10577b; }
.button span,
.button .icon {
  display: block;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
}
.button span {
  width: 100%;
  line-height: inherit;
  font-size: 22px;
  text-transform: uppercase;
  left: 0;
}

ins.adsbygoogle {
    margin: 0 15px;
}