body, html {
	background: #fff;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light",
		"Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	padding: 0px;
	margin: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-size: 14px;
}

p {
	line-height: 20px;
}

/* MESSAGE CLASSES */
.message {
	text-align: left;
	padding: 16px;
	width: auto;
	height: auto;
	line-height: 150%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	animation: fadeInDown 0.5s;
	-moz-animation: fadeInDown 0.5s; /* Firefox */
	-webkit-animation: fadeInDown 0.5s; /* Safari and Chrome */
	-o-animation: fadeInDown 0.5s; /* Opera */
}

/* div for error messages */
.error {
	background-image: url('../app/graphics/error.svg');
	background-size: 26px;
	background-position: center left 12px !important;
	padding-left: 50px;
	background-repeat: no-repeat;
	background-color: #ff5448;
	color: #ffffff;
}

/* div for ok messages */
.ok {
	background-image: url('../app/graphics/ok.svg');
	background-size: 26px;
	background-position: center left 12px !important;
	padding-left: 50px;
	background-repeat: no-repeat;
	background-color: #54db69;
	color: #ffffff;
}

/* not found div */
.notfound {
	background-image: url('../app/graphics/sad-smiley.svg');
	background-size: 26px;
	background-position: center left 12px;
	background-color: #fef09e;
	padding-left: 50px;
	background-repeat: no-repeat;
}

/* success message */
.thumbsup {
	background-image: url('../app/graphics/thumbsup.svg');
	background-size: 26px;
	background-position: center left 12px;
	background-color: #f5f5f5;
	padding-left: 50px;
	background-repeat: no-repeat;
}
/* MESSAGE CLASSES */

/* fade in down */
@-webkit-keyframes fadeInDown {from { opacity:0;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

}
@keyframes fadeInDown {from { opacity:0;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
/* fade in down */

/*Fonts*/
@font-face {
	font-family: 'open_regular';
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'open_bold';
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'open_semibold';
	font-weight: normal;
	font-style: normal;
}

a:focus {
	color: #fff !important;
	text-decoration: none !important;
}

.container {
	max-width: 1130px;
}

.container .flst {
	font-size: 22px;
	text-align: center;
	color: #b0b0b0;
	/*font-family: open_bold;*/
}

input[type="button"], input[type="submit"] {
	border: 0px;
	-webkit-border-radius: 36px;
	-moz-border-radius: 36px;
	border-radius: 36px;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	-webkit-appearance: none;
}

input[type="button"]:hover, input[type="submit"]:hover {
	cursor: hand;
	cursor: pointer;
	outline: 0;
	box-shadow: 0px 0px 2px #818181;
	-webkit-box-shadow: 0px 0px 2px #818181;
	-moz-box-shadow: 0px 0px 2px #818181;
}

input[type="button"]:focus, input[type="submit"]:focus {
	filter: alpha(opacity = 60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

input[type="text"], input[type="email"], input[type="password"], input[type="file"],
	textarea, select {
	border: 1px solid #dddddd;
	background-color: white;
	color: #575757;
	margin: 0px;
	padding: 12px;
	-webkit-appearance: none;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

input.login[type="text"], input.login[type="email"], input.login[type="password"]
	{
	border: 0px;
	background: transparent;
	font-size: 22px;
}

input.logindark[type="text"], input.logindark[type="password"] {
	font-size: 26px;
}

input[type="checkbox"] {
	border: 0px;
	padding: 3px;
	margin: 5px;
}

input[type="radio"] {
	border: 0px;
	padding: 3px;
	margin: 5px;
}

input:focus.logindark[type="text"], input:focus.logindark[type="password"]
	{
	-webkit-appearance: none;
	-moz-appearance: none;
}

select.lngsel {
	padding: 4px;
	border: 1px solid #cccccc;
}

select:focus {
	background-color: #fef09e;
	outline: 0;
}

.grnsub {
	color: #ffffff;
	border: 0px;
	background-color: #00aba9;
	font-size: 18px;
	padding: 18px;
	border: 0px;
	width: inherit;
	max-width: 100%;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;
}

.login_window {
	width: 88%;
	background: rgba(255, 255, 255, 1.0);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	max-width: 400px;
	height: auto;
	padding: 28px;
	box-shadow: 0px 0px 8px #cccccc;
	-webkit-box-shadow: 0px 0px 8px #cccccc;
	-moz-box-shadow: 0px 0px 8px #cccccc;
}

.wc_show {
	width: 200px;
	max-width: 96%;
}

.img_heading {
	height: 200px;
	max-width: 96%;
}

@media screen and (min-width: 992px) {
	.login_window {
		/*background: rgba(255, 255, 255, 1.0);*/
		
	}
	.phid {
		display: none;
	}
	tr.bottline {
		border-bottom: 1px solid #dddddd;
	}
}

.amini {
	color: #a0a0a0;
}

.amini:hover {
	color: #575757;
}

tr.bottline {
	border-bottom: 1px solid #dddddd;
}

.regfld {
	display: block;
	width: 95%;
	/*margin: 0 auto;*/
	text-align: left;
}

table.normal {
	width: 100%;
	border: 0px;
	border-spacing: 0px;
}

table.list {
	background-color: #ffffff;
	width: 100%;
	border: 8px solid #ffffff;
}

td.bordered {
	padding: 8px;
	border-bottom: 1px solid #dddddd;
}

.acnt {
	text-align: center;
}

.showanim { /* shows status with animation for documents xx_data */
	animation: rotateIn 1s;
	-moz-animation: rotateIn 1s; /* Firefox */
	-webkit-animation: rotateIn 1s; /* Safari and Chrome */
	-o-animation: rotateIn 1s; /* Opera */
}

div.notif {
	position: absolute;
	top: 170px;
	width: auto;
	background-color: #dd3638;
	color: #ffffff;
	padding: 16px;
	font-size: 18px;
}

.pop {
	background: rgba(255, 255, 255, 0.8);
	border: 0;
	width: 0;
	position: fixed;
	float: right;
	/*opacity: 0.0;
	filter: alpha(opacity = 0); /* For IE8 and earlier */
	z-index: 999;
	overflow-x: hidden;
	transition: all 0.3s;
	text-align: left;
	height: 100%;
	top: 0px;
	right: 0;
	-webkit-box-shadow: -8px 0 26px #dddddd;
	-moz-box-shadow: -8px 0 26px #dddddd;
	box-shadow: -8px 0 26px #dddddd;
	padding-top: 60px;
}

.pop_carpet {
	background: rgba(255, 255, 255, 0.8);
	width: 0px;
	height: 100%;
	position: fixed;
	z-index: 998;
	top: 0px;
	left: -20px;
	overflow-x: hidden;
	transition: all 0.2s;
}

.pop .close {
	position: absolute;
	top: 8px;
	right: 30px;
	transition: all 200ms;
	font-size: 50px;
	font-weight: bold;
	text-decoration: none;
	color: #b0b0b0;
	padding: 12px;
}

.popinside {
	text-align: center;
	padding: 30px;
	height: auto;
	width: 90%;
	overflow-x: hidden;
	transition: all 200ms;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {

	.pop { 
	-webkit-backdrop-filter:blur(10px);
	backdrop-filter: blur(10px);
	background-color: rgba(255, 255, 255, 1.0);
}

    .pop_carpet {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.4);  
  }
}

@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
	.pop { 
    background-color: rgba(255, 255, 255, 1.0);
  }
  
  	.pop_carpet { 
    background-color: rgba(255, 255, 255, .8);
  }
}




.pop .close:hover, .pop .close:focus {
	color: #dc3231;
}

/*.loginside {
	background: linear-gradient(to right, #c0c0c0, #cecece);
	border: 0;
	width: 0;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	float: right;
	z-index: 999;
	overflow-x: hidden;
	transition: all 0.3s;
	text-align: center;
	-webkit-box-shadow: -8px 0 52px #a1a1a1;
	-moz-box-shadow: -8px 0 52px #a1a1a1;
	box-shadow: -8px 0 52px #a1a1a1;
}

.loginclose {
	font-size: 60px;
	color: #fff;
	text-decoration: none;
	padding-right: 20px;
}

.loginclose:hover, loginclose:active {
	color: #0099ff;
	text-decoration: none;
	outline: none;
}*/

/*Header */
header {
	position: relative;
	display: block;
	width: 100%;
	height: 130px;
	z-index: 99;
	background: transparent;
	/*background: #00aba9;*/
}

header .logo {
	display: table-cell;
	margin: 35px 100px 0 0;
}

header .burger_icon {
	display: none;
	float: right;
	padding: 5px 10px;
	text-transform: uppercase;
	font-size: 28px;
	color: #00aba9;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	margin: 45px 10px 0 0;
}

header .burger_icon:hover {
	cursor: pointer;
}

header .burger_icon.active {
	background: rgba(100, 100, 100, 0.1);
	color: #00aba9;
}

header nav {
	margin-top: 50px;
	display: table-cell;
}

header nav li {
	float: left;
	margin-left: 20px;
}

header nav li:first-child {
	margin: 0;
}

header nav li a {
	color: #787878;
	padding: 16px;
	font-size: 16px;
	font-weight: 80;
	transition: all .2s linear;
	-o-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
	-moz-border-radius: 26px;
	-webkit-border-radius: 26px;
	border-radius: 26px;
}

header nav li a:hover, header nav li a:focus {
	text-decoration: none;
	color: #787878;
	background-color: #eeeeee;
}

header nav li a.login {
	background-color: #00aba9;
	text-decoration: none;
	color: #ffffff !important;
}

header .social {
	display: table-cell;
	margin-top: 45px;
}

header .social li {
	float: left;
	margin-left: 20px;
}

header .social li:first-child {
	margin: 0;
}

/* references section */
.references {
	display: block;
	position: relative;
	top: 0px;
	width: 100%;
	height: 100vh;
	background: #fed217;
	background: url('../graphics/references.jpg') no-repeat fixed center
		center;
	/*background: url('../graphics/christmastime.jpeg') no-repeat fixed center center;*/
	/*christmas*/
	background-size: cover;
	padding: 40px 0;
}
/* references section */

/*Hero section */
.hero {
	display: block;
	position: relative;
	top: 0px;
	width: 100%;
	height: 85vh;
	background: #fed217;
	background: url('../graphics/welcome_bg_live.jpg?v1') no-repeat fixed center
		center; /* autumn */
	/*background: url('../graphics/lake_normal.jpg') no-repeat fixed center center; /* summer */
	/*background: url('../graphics/christmastime.jpeg') no-repeat fixed center center;*/
	/*christmas*/
	background-size: cover;
}

/*.hero .caption {
	position: absolute;
	max-width: 40vw;
	margin-left: 20px;
	top: 15vh;
}*/

.hero .caption {
	position: absolute;
	max-width: 40vw;
	margin-left: 20px;
	top: 15vh;
	background: rgba(255, 255, 255, 0.2);
	padding: 40px;
	-moz-border-radius: 32px;
	-webkit-border-radius: 32px;
	border-radius: 32px;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .hero .caption {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}

@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .hero .caption {
    background-color: rgba(255, 255, 255, .6);
  }
}

.hero .caption h1 {
	color: #575757;
	font-size: 42px;
	font-weight: normal;
	word-break: break-word;
}

.hero .caption p {
	color: #575757;
	font-size: 26px;
	line-height: 30px;
	margin: 15px 0 35px 0;
}

#slider .caption p {
	margin: 0;
}

a.app_store_btn {
	display: inline-block;
	text-decoration: none;
	padding: 15px;
	/*border: 4px solid #00aba9;*/
	-moz-border-radius: 32px;
	-webkit-border-radius: 32px;
	border-radius: 32px;
	margin: 20px 20px 10px 0;
	color: #ffffff;
	font-size: 18px;
	background: #00aba9;
}

a.app_store_btn:hover, a.app_store_btn:focus {
	color: #ffffff !important;
	background: #e44e44;
}

a.app_store_btn, .play_icon, .iphone_icon, .android_icon, a.app_link {
	transition: all .2s linear;
	-o-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
}

/*Featured on section */
.featured_on {
	width: 100%;
	padding: 25px 0;
	background: rgba(220, 220, 220, 0.4);
}

.featured_on ul {
	margin: 0;
}

.featured_on li {
	position: relative;
	height: 100%;
}

.featured_on li:first-child {
	margin-left: 0;
}

/* news section */
.news {
	height: auto;
	background-color: #ffffff;
	width: 100%;
	padding: 40px;
	font-size: 24px;
	color: #575757;
}

.news a {
	font-size: 24px;
	color: #ffffff;
}

/*About section */
.about {
	padding: 100px 0;
}

.about .lftpic, .lftpic {
	min-width: 350px;
	max-width: 450px;
	position: relative;
	display: inline-block;
	text-align: center;
	min-height: 300px;
	padding-top: 20px;
	vertical-align: middle !important;
}

.about .lftpic img {
	width: 100%;
	height: auto;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	border-radius: 18px;
}

.about .features_list {
	margin-left: 20px;
	min-height: 300px;
}

.about .features_list h2, .references h2 {
	color: #525151;
	font-size: 34px;
	font-weight: bold;
	line-height: 46px;
	margin: 0 0 20px 0;
	word-break: break-word;
}

.about .features_list p {
	color: #767272;
	font-size: 16px;
	margin-bottom: 45px;
	line-height: 32px;
	text-align: justify;
}

.about .features_list ul {
	margin-bottom: 30px;
}

.about .features_list ul li {
	display: block;
	position: relative;
	color: #6c6c6c;
	font-size: 16px;
	line-height: 44px;
	text-indent: 25px;
	transition: all .2s linear;
	-o-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
}

.about .features_list ul li span {
	display: inline-block;
}

/*App features */
.app_features {
	width: 100%;
	padding: 100px 0 20px 0;
	background: #8DADC0 !important;
	background: -webkit-linear-gradient(left top, #eeeeee, #8DADC0)
		!important;
	background: -o-linear-gradient(bottom right, #eeeeee, #8DADC0)
		!important;
	background: -moz-linear-gradient(bottom right, #eeeeee, #8DADC0)
		!important;
	background: linear-gradient(to bottom right, #eeeeee, #8DADC0)
		!important;

	/*background: #95a5a6;
background: -webkit-linear-gradient(bottom right, #95a5a6, #6f8a8b);
background: -o-linear-gradient(bottom right, #95a5a6, #6f8a8b);
background: -moz-linear-gradient(bottom right, #95a5a6, #6f8a8b);
background: linear-gradient(to bottom right, #95a5a6, #6f8a8b);*/
}

.app_features h2 {
	color: #575757;
	font-size: 20px;
	margin: 50px 0 0 0;
	word-break: break-word;
}

.app_features p {
	color: #575757;
	font-size: 16px;
	margin: 30px 0 0 0;
	line-height: 28px;
}

.app_features .details {
	margin-bottom: 80px;
}

/*Testimonials section */
.testimonials {
	padding: 50px 0;
}

.testimonials_section {
	width: 100%;
	margin: 0 auto;
	background: rgba(200, 200, 200, .5);
}

.testimonials .testimonials_list {
	max-width: 820px;
	margin: 0 auto;
}

.testimonials .testimonials_list blockquote {
	border: 0;
	padding: 0;
	margin: 0;
}

.testimonials .testimonials_list blockquote p {
	color: #757171;
	font-size: 18px;
	margin-bottom: 30px;
	line-height: 36px;
}

.testimonials .testimonials_list blockquote footer:before, .testimonials .testimonials_list blockquote footer:after
	{
	content: none;
}

.testimonials .testimonials_list blockquote .author, .testimonials .testimonials_list blockquote .job
	{
	display: block;
}

.testimonials .testimonials_list blockquote .author {
	color: #4b4848;
	font-size: 16px;
	margin-bottom: 10px;
}

.testimonials .testimonials_list blockquote .job {
	color: #6e6d6d;
}

.tslider {
	text-align: center !important;
	position: relative !important;
}

#tslider .owl-controls {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 40px;
	padding: 0;
}

#tslider .owl-controls .owl-prev, #tslider .owl-controls .owl-next {
	display: none;
}
/*width: 32px;
height: 32px;
background: url('../img/nav_arrow.png') no-repeat;
text-indent: -200px;
overflow: hidden;

transition: all .2s linear;
-o-transition: all .2s linear;
-moz-transition: all .2s linear;
-webkit-transition: all .2s linear;
}

#tslider .owl-controls .owl-prev{
background-position: 0 0;
}
#tslider .owl-controls .owl-next{
background-position: -33px 0;
margin-left: 40px;
}

#tslider .owl-controls .owl-prev:hover,
#tslider .owl-controls .owl-next:hover{
cursor: pointer;
background: url('../img/nav_arrow_hover.png') no-repeat;
}

#tslider .owl-controls .owl-prev:hover{
background-position: 0 0;
}
#tslider .owl-controls .owl-next:hover{
background-position: -33px 0;
}*/

/*Subscription section */
.sub_box {
	width: 100%;
	padding: 100px 0;
	text-align: center;
	background-color: #696969;
}

.sub_box .cta_text {
	color: #fff;
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.sub_box .cta_addr {
	color: #fff;
}

.sub_box .cenfld {
	display: block;
	width: 95%;
	max-width: 360px;
	margin: 0 auto;
	text-align: left;
	padding: 8px;
	background-color: #ffffff;
	outline: none;
}

/*Footer */
footer {
	padding: 100px 0;
	text-align: center;
}

footer .app_platform li {
	margin: 0 0 0 60px;
}

footer .app_platform li:first-child {
	margin: 0;
}

footer .copyright {
	margin-top: 60px;
	color: #757171;
	font-size: 12px;
	letter-spacing: .5px;
}

footer .copyright a {
	color: #565555;
}

/*Responsive CSS */
@media ( max-width : 360px) {
	.featured_on li {
		display: block;
		width: 100%;
	}
}

@media ( max-width : 992px) {
	.mhid {
		display: none;
	}

	/*Header */
	header .logo {
		margin-right: 0;
	}
	header .burger_icon {
		display: block;
	}
	header nav {
		width: 100%;
		float: none;
		background: rgba(240, 240, 240, 1.0); /*#379baa;*/
		position: absolute;
		margin-top: 130px;
		left: 0;
		display: none;
	}
	header nav.show {
		display: block;
	}
	header nav li {
		display: block;
		width: 100%;
		margin: 0;
		text-align: center;
	}
	header nav li a {
		display: block;
		width: 100%;
		padding: 20px 0;
		color: #575757;
		border-radius: 0px;
		font-weight: 300 !important;
	}
	header nav li a.login {
		border: 0px solid #00aba9 !important;
		color: #fff;
	}
	header nav li:first-child a {
		border-top: 0px solid #696969;
	}
	header .social {
		display: none;
	}
	header .social li {
		margin-left: 10px;
	}
	div.mgh {
		position: absolute;
		top: 540px !important;
		right: 0px;
	}
	img.mghp {
		height: 250px !important;
	}
	div.notif {
		position: absolute;
		top: 170px !important;
		width: auto;
		background-color: #dd3638;
		color: #ffffff;
		padding: 16px;
		font-size: 16px;
	}

	/*Hero section */
	.hero .caption {
		margin-left: 0;
		max-width: calc(100vw - 40px);
	}
	.hero .caption h1 {
		color: #575757;
		font-size: 36px;
		font-weight: normal;
		word-break: break-word;
	}
	.hero .caption p {
		color: #575757;
		font-size: 22px;
		line-height: 20px;
		margin: 15px 0 35px 0;
	}
	.app_store_btn {
		display: block;
		width: inherit;
		font-size: 16px !important;
		padding-left: 0;
		padding-right: 0;
		text-align: center;
	}
	input.logindark[type="text"], input.logindark[type="password"] {
		font-size: 22px;
		max-width: 80vw;
	}

	/*Featured on section*/
	.featured_on {
		padding: 25px 0 5px 0 !important;
	}
	.featured_on ul li {
		margin-bottom: 25px !important;
	}

	/*About Section */
	.about .features_list {
		text-align: center;
		margin: 0;
	}
	.about .features_list ul li {
		text-indent: 0;
		background: transparent !important;
		margin-bottom: 20px;
	}
	.about .features_list ul li:last-child {
		margin: 0;
	}
	a.app_link {
		display: block;
		margin-top: 20px;
	}

	/* news section */
	.news a {
		font-size: 18px;
	}

	/*Subscription section */
	.sub_box #mc-email, .sub_box #mc_submit {
		display: block;
		width: 90%;
		margin: 0 auto;
		text-align: center;
	}
	.sub_box #mc_submit {
		margin-top: 20px;
	}
}