@-webkit-viewport {
	width: device-width;
}
@-moz-viewport {
	width: device-width;
}
@-ms-viewport {
	width: device-width;
}
@-o-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}
* {
	margin: 0;
	padding: 0;
}
html,
body {
	height: 100%;
}
body {
	color: #354650;
	font-family: Lato, sans-serif;
}

/********HEADER********/

#header {
	height: 550px;
	background: #00aff1 url(../img/pattern.png) repeat;
}
#header-rounding {
	background-image: url(../img/rounding.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	height: inherit;
	position: relative;
}
#header-menu {
	height: 65px;
}
#header-menu-fixed {
	display: table;
	position: fixed;
	width: 100%;
	height: inherit;
	z-index: 999;
}
#header-menu-fixed.active {
	background: #fff;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
#header-menu-fixed div.block {
	display: table-cell;
	vertical-align: middle;
}
#header-menu-fixed div.block.mobile {
	width: 33.33333333%;
}
#header-menu-fixed div.block.mobile i.sandwich {
	display: block;
	width: 29px;
	height: 21px;
	background: url(../img/mobile-sandwich.svg) no-repeat;
	margin-left: 15px;
	cursor: pointer;
}
#header-menu-fixed.active div.block.mobile i.sandwich {
	background: url(../img/mobile-sandwich-active.svg) no-repeat;
}
#header-menu-fixed div.block.mobile a.logo {
	display: block;
	width: 50px;
	height: 45px;
	background: url(../img/mobile-logo.svg) no-repeat;
	margin: 0 auto;
}
#header-menu-fixed.active div.block.mobile a.logo {
	background: url(../img/mobile-logo-active.svg) no-repeat;
}
#header-menu-fixed div.block.mobile a.phone {
	display: block;
	width: 17px;
	height: 25px;
	background: url(../img/mobile-phone.svg) no-repeat;
	float: right;
	margin-right: 15px;
}
#header-menu-fixed.active div.block.mobile a.phone {
	background: url(../img/mobile-phone-active.svg) no-repeat;
}
#header-menu-fixed div.block.desktop {
	display: none;
}
#header-menu-fixed div.block.desktop.full {
	width: 100%;
}
#header-menu-fixed div.block.desktop a.logo {
	display: block;
	width: 200px;
	height: 45px;
	background: url(../img/desktop-logo.svg) no-repeat;
	margin-left: 20px;
}
#header-menu-fixed.active div.block.desktop a.logo {
	background: url(../img/desktop-logo-active.svg) no-repeat;
}
#header-menu-fixed div.block.desktop a.phone {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	margin-right: 25px;
	text-decoration: none;
	background: url(../img/desktop-phone.svg) no-repeat;
	padding-left: 30px;
	height: 25px;
	display: block;
}
#header-menu-fixed.active div.block.desktop a.phone {
	color: unset;
	background: url(../img/desktop-phone-active.svg) no-repeat;
}
#header-menu-fixed div.block.desktop i.line {
	display: block;
	width: 2px;
	height: 20px;
	opacity: 0.37;
	background: #fff;
	margin-right: 25px;
}
#header-menu-fixed.active div.block.desktop i.line {
	background: #354650;
}
#header-menu-fixed div.block.desktop span.scroll {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	margin-right: 25px;
}
#header-menu-fixed.active div.block.desktop span.scroll {
	color: unset;
}
#header-menu-fixed div.block.desktop span.sign-in {
	display: block;
	width: 145px;
	line-height: 43px;
	margin-right: 20px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	border: 1px solid #fff;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	box-sizing: border-box;
	text-decoration: none;
	cursor: pointer;
}
#header-menu-fixed.active div.block.desktop span.sign-in {
	background: #54d0ff;
	border: 1px solid #54d0ff;
}
#header-menu-fixed.active div.block.desktop span.sign-in:hover {
	background: #30c3fa;
	border: 1px solid #30c3fa;
}
#header-table {
	padding-top: 10px;
}
#header-table p {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	color: #fff;
}
#header-table p small {
	font-size: 20px;
	display: block;
}
#header-table-list {
	display: table;
	margin: 25px auto;
}
#header-table-list div.block {
	display: table-row;
}
#header-table-list div.block ul {
	list-style: none;
}
#header-table-list div.block ul li {
	font-size: 16px;
	font-weight: bold;
	line-height: 30px;
	color: #fff;
	background: url(../img/list-item.svg) no-repeat center left;
	padding-left: 40px;
}
#header-table span {
	width: 300px;
	line-height: 80px;
	font-size: 36px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	background: #54d0ff;
	font-weight: bold;
	text-align: center;
	color: #fff;
	display: block;
	cursor: pointer;
	margin: 0 auto;
}
#header-table span:hover {
	background: #30c3fa;
}
#header-scroll {
	position: absolute;
	bottom: 34px;
	left: 50%;
	cursor: pointer;
	width: 70px;
	margin-left: -35px;
}
#header-scroll span {
	color: #fff;
	display: block;
	font-size: 14px;
}
#header-scroll i {
	background: url(../img/scroll-arrow1.svg) no-repeat;
	height: 12px;
	width: 20px;
	display: block;
	margin: 7px auto 0;
}
@media (min-width: 768px){
	#header-menu-fixed div.block.mobile {
		display: none;
	}
	#header-menu-fixed div.block.desktop {
		display: table-cell;
		white-space: nowrap;
	}
}
@media (min-width: 1040px){
	#header {
		height: 750px;
	}
	#header-table {
		padding-top: 80px;
	}
	#header-table p {
		font-size: 48px;
	}
	#header-table p small {
		font-size: 28px;
	}
	#header-table-list {
		margin: 50px auto;
		width: 600px;
	}
	#header-table-list div.block {
		display: table-cell;
	}
	#header-table-list div.block ul li {
		font-size: 20px;
		line-height: 50px;
	}
	#header-scroll {
		bottom: 48px;
	}
}

/********CONTENT********/

#content1 {
	padding-top: 34px;
}
#content1-title {
	width: 290px;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin: 0 auto -2px;
}
#content1-table {
	display: table;
	width: 290px;
	margin: 0 auto;
}
#content1-table div.block {
	display: table-row;
	width: 100%;
}
#content1-table div.block i {
	display: block;
	margin: 47px auto 0;
}
#content1-table div.block i.p1 {
	width: 139px;
	height: 127px;
	background: url(../img/c1-p1.svg) no-repeat;
}
#content1-table div.block i.p2 {
	width: 121px;
	height: 122px;
	background: url(../img/c1-p2.svg) no-repeat;
}
#content1-table div.block i.p3 {
	width: 86px;
	height: 122px;
	background: url(../img/c1-p3.svg) no-repeat;
}
#content1-table div.block span {
	font-size: 30px;
	line-height: 1.17;
	text-align: center;
	display: block;
	margin-top: 37px;
}
#content1-table div.block p {
	font-size: 18px;
	line-height: 1.56;
	text-align: center;
	margin-top: 19px;
}
#content1-scroll {
	cursor: pointer;
	width: 70px;
	margin: 66px auto 0;
}
#content1-scroll span {
	color: #96a2a9;
	display: block;
	font-size: 14px;
}
#content1-scroll i {
	background: url(../img/scroll-arrow2.svg) no-repeat;
	height: 12px;
	width: 20px;
	display: block;
	margin: 7px auto 0;
}
@media (min-width: 960px){
	#content1 {
		padding-top: 32px;
	}
	#content1-title {
		width: unset;
		font-size: 48px;
	}
	#content1-table {
		width: 920px;
	}
	#content1-table div.block {
		display: table-cell;
		width: 33.33333333%;
	}
	#content1-table div.block i {
		margin: 56px auto 0;
	}
	#content1-table div.block span {
		line-height: 1.13;
		margin: 32px auto 0;
		height: 102px;
	}
	#content1-table div.block p {
		line-height: 1.61;
		margin: 16px auto 0;
	}
	#content1-scroll {
		margin: 95px auto 0;
	}
}
@media (min-width: 1280px){
	#content1-table {
		width: 1240px;
	}
	#content1-table div.block span {
		width: 300px;
	}
	#content1-table div.block p {
		width: 310px;
	}
}
#content2 {
	padding: 48px 0 46px;
}
#content2-title {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: -2px;
}
#content2 div.content2-table {
	display: table;
	width: 280px;
	margin: 0 auto;
}
#content2 div.content2-table div.block {
	width: 100%;
}
#content2 div.content2-table div.block.img {
	display: table-header-group;
}
#content2 div.content2-table div.block.txt {
	display: table-footer-group;
}
#content2 div.content2-table div.block i {
	display: block;
	margin: 42px auto 0;
}
#content2 div.content2-table div.block i.p1 {
	width: 280px;
	height: 325px;
	background: url(../img/c2-p1.svg) no-repeat;
}
#content2 div.content2-table div.block i.p2 {
	width: 280px;
	height: 325px;
	background: url(../img/c2-p2.svg) no-repeat;
}
#content2 div.content2-table div.block i.p3 {
	width: 279px;
	height: 326px;
	background: url(../img/c2-p3.svg) no-repeat;
}
#content2 div.content2-table div.block span {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	color: #54d0ff;
	display: block;
	margin-top: 18px;
}
#content2 div.content2-table div.block p {
	font-size: 30px;
	line-height: 1.33;
	text-align: center;
	margin-top: 10px;
}
#content2-scroll {
	cursor: pointer;
	width: 70px;
	margin: 53px auto 0;
}
#content2-scroll span {
	color: #96a2a9;
	display: block;
	font-size: 14px;
}
#content2-scroll i {
	background: url(../img/scroll-arrow2.svg) no-repeat;
	height: 12px;
	width: 20px;
	display: block;
	margin: 7px auto 0;
}
@media (min-width: 960px){
	#content2 {
		padding: 69px 0 59px;
	}
	#content2-title {
		font-size: 48px;
		margin-bottom: 22px;
	}
	#content2 div.content2-table {
		width: 920px;
	}
	#content2 div.content2-table div.block {
		display: table-cell !important;
		width: 50%;
		vertical-align: middle;
	}
	#content2 div.content2-table div.block i {
		margin: 32px auto 0;
	}
	#content2-scroll {
		margin: 86px auto 0;
	}
}
#content3 {
	background-position: 60%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 550px;
	position: relative;
	background-image: url(../img/fullscreen.jpg);
}
#content3-blackout {
	background: rgba(14, 56, 72, 0.85);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
#content3-rounding {
	background-image: url(../img/rounding.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	height: inherit;
	position: relative;
	z-index: 2;
}
#content3-table {
	display: table;
	width: 310px;
	margin: 0 auto;
}
#content3-table div.block {
	display: table-row;
	width: 100%;
}
#content3-table div.block i {
	display: block;
	width: 270px;
	height: 160px;
	background: url(../img/map1.svg) no-repeat;
	margin: 28px auto 12px;
}
#content3-table div.block span.title {
	font-size: 36px;
	font-weight: bold;
	line-height: 43px;
	text-align: center;
	color: #fff;
	display: block;
}
#content3-table div.block span.title u {
	color: #54d0ff;
	text-decoration: none;
}
#content3-table div.block p {
	font-size: 20px;
	font-weight: bold;
	line-height: 27px;
	text-align: center;
	color: #fff;
	width: 260px;
	margin: 16px auto 0;
}
#content3-table div.block span.sign-in {
	border-radius: 8px;
	-webkit-border-radius: 8px;
	background: #54d0ff;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	width: 260px;
	line-height: 60px;
	display: block;
	cursor: pointer;
	margin: 26px auto 0;
}
#content3-table div.block span.sign-in:hover {
	background: #30c3fa;
}
#content3-scroll {
	position: absolute;
	bottom: 34px;
	left: 50%;
	cursor: pointer;
	width: 70px;
	margin-left: -35px;
}
#content3-scroll span {
	color: #fff;
	display: block;
	font-size: 14px;
}
#content3-scroll i {
	background: url(../img/scroll-arrow2.svg) no-repeat;
	height: 12px;
	width: 20px;
	display: block;
	margin: 7px auto 0;
}
@media (min-width: 1040px){
	#content3-table {
		width: 1100px;
		padding-top: 84px;
	}
	#content3-table div.block {
		display: table-cell;
		width: 50%;
		vertical-align: middle;
	}
	#content3-table div.block i {
		width: 579px;
		height: 347px;
		background: url(../img/map2.svg) no-repeat;
		margin: unset;
	}
	#content3-table div.block span.title {
		font-size: 48px;
		line-height: 1.13;
		width: 420px;
		margin: 0 auto;
	}
	#content3-table div.block p {
		font-size: 36px;
		font-weight: bold;
		line-height: 1.06;
		width: 330px;
		margin: 37px auto 0;
	}
	#content3-table div.block span.sign-in {
		width: 300px;
		line-height: 80px;
		font-size: 36px;
		margin: 46px auto 0;
	}
}
#content4 {
	padding: 20px 10px 60px;
}
#content4-title {
	font-size: 36px;
	font-weight: bold;
	line-height: 1.17;
	text-align: center;
	width: 300px;
	margin: 0 auto;
}
#content4-table {
	display: table;
	width: 100%;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	background: #fcfdfd;
	border: 1px solid #d9e2ea;
	box-sizing: border-box;
	max-width: 1000px;
	margin: 31px auto 0;
}
#content4-table div.row {
	display: table-row;
}
#content4-table div.row div.cell {
	border-top: 1px solid #d9e2ea;
	display: table-cell;
	padding: 20px 10px;
	vertical-align: top;
}
#content4-table div.row:first-child div.cell {
	border-top: unset;
}
#content4-table div.row div.cell.full {
	width: 100%;
}
#content4-table div.row div.cell span {
	color: #54d0ff;
	font-size: 20px;
	font-weight: bold;
	margin-left: 10px;
}
#content4-table div.row div.cell div.question strong {
	cursor: pointer;
	font-size: 20px;
}
#content4-table div.row:hover div.cell div.question strong {
	color: #30c3fa;
}
#content4-table div.row div.cell div.answer {
	display: none;
	font-size: 18px;
	line-height: 1.56;
	margin-top: 10px;
}
#content4-table div.row div.cell div.answer a {
	color: #54d0ff;
}
#content4-table div.row div.cell i {
	cursor: pointer;
	display: block;
	height: 12px;
	width: 19px;
	margin: 10px 10px 0 0;
}
#content4-table div.row div.cell i.bottom {
	background: url(../img/b-arrow.svg) no-repeat;
}
#content4-table div.row div.cell i.top {
	background: url(../img/t-arrow.svg) no-repeat;
}
@media (min-width: 768px){
	#content4 {
		padding: 43px 10px 60px;
	}
	#content4-title {
		font-size: 48px;
		line-height: 1.02;
		width: unset;
		margin: unset;
	}
	#content4-table {
		margin: 38px auto 0;
	}
	#content4-table div.row div.cell span {
		font-size: 24px;
	}
	#content4-table div.row div.cell div.question strong {
		font-size: 24px;
	}
	#content4-table div.row div.cell div.answer {
		font-size: 20px;
		line-height: 1.55;
	}
}

/********FOOTER********/

#footer {
	background: #1b1e25;
	padding: 1px 20px 15px;
}
#footer-links {
	display: table;
	margin: 0 auto;
	max-width: 960px;
	width: 100%;
}
#footer-links div.dinamic-cell {
	display: table-row;
}
#footer-links div.dinamic-cell div.table {
	display: table;
	width: 100%;
	padding: 20px 0;
}
#footer-links div.dinamic-cell div.table div.static-cell {
	display: table-cell;
	width: 50%;
}
#footer-links div.dinamic-cell div.table div.static-cell ul {
	list-style: none;
}
#footer-links div.dinamic-cell div.table div.static-cell ul li {
	font-size: 14px;
	color: #fff;
	line-height: 30px;
}
#footer-links div.dinamic-cell div.table div.static-cell ul li a {
	color: #fff;
	text-decoration: none;
	opacity: 0.3;
}
#footer-links div.dinamic-cell div.table div.static-cell ul.col1,
#footer-links div.dinamic-cell div.table div.static-cell ul.col2,
#footer-links div.dinamic-cell div.table div.static-cell ul.col3,
#footer-links div.dinamic-cell div.table div.static-cell div.col4 {
	display: table;
	width: 140px;
	margin: 0 auto;
}
#footer-links div.dinamic-cell div.table div.static-cell div.social {
	height: 35px;
	padding: 11px 0 20px;
}
#footer-links div.dinamic-cell div.table div.static-cell div.social a {
	display: block;
	width: 35px;
	height: 35px;
	float: left;
	margin: 0 5px;
}
#footer-links div.dinamic-cell div.table div.static-cell div.social a:first-child {
	margin: 0 5px 0 0;
}
#footer-links div.dinamic-cell div.table div.static-cell div.social a:last-child {
	margin: 0 0 0 5px;
}
#footer-links div.dinamic-cell div.table div.static-cell div.social a.yelp {
	background: url(../img/yelp-icon.svg) no-repeat;
}
#footer-links div.dinamic-cell div.table div.static-cell div.social a.twitter {
	background: url(../img/twitter-icon.svg) no-repeat;
}
#footer-links div.dinamic-cell div.table div.static-cell div.social a.facebook {
	background: url(../img/facebook-icon.svg) no-repeat;
}
#footer-links div.dinamic-cell div.table div.static-cell a.accredited {
	background: url(../img/accredited-business.png) no-repeat;
	height: 55px;
	width: 113px;
	display: block;
}
#footer-text {
	font-size: 14px;
	color: #fff;
	opacity: 0.3;
	text-align: center;
	padding-bottom: 7px;
	max-width: 960px;
	margin: 0 auto;
}
@media (min-width: 380px){
	#footer-links div.dinamic-cell div.table div.static-cell ul.col1,
	#footer-links div.dinamic-cell div.table div.static-cell ul.col2,
	#footer-links div.dinamic-cell div.table div.static-cell ul.col3,
	#footer-links div.dinamic-cell div.table div.static-cell div.col4 {
		width: 170px;
	}
}
@media (min-width: 768px){
	#footer-links div.dinamic-cell {
		display: table-cell;
		width: 50%;
	}
	#footer-links div.dinamic-cell div.table div.static-cell ul.col2 {
		padding-right: 4px;
	}
	#footer-links div.dinamic-cell div.table div.static-cell ul.col3 li {
		padding-left: 32px;
	}
}

/********FORM********/

#form-background {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.7;
	background: linear-gradient(to bottom, #0091f1, #00b9ff);
	z-index: 999;
}
#form-menu {
	width: 240px;
	background: #fff;
	z-index: 1000;
	position: fixed;
	top: 0;
	left: -240px;
	bottom: 0;
	padding: 20px;
	box-sizing: border-box;
}
#form-menu i {
	width: 20px;
	height: 20px;
	background: url(../img/close.svg) no-repeat;
	display: block;
	cursor: pointer;
}
#form-menu a {
	width: 200px;
	height: 45px;
	background: url(../img/desktop-logo-active.svg) no-repeat;
	display: block;
	margin: 10px 0 20px;
}
#form-menu ul {
	list-style: none;
	border-top: 1px solid #dbe5eb;
}
#form-menu ul li {
	font-size: 24px;
	border-bottom: 1px solid #dbe5eb;
	line-height: 60px;
}
#form-menu ul li span {
	cursor: pointer;
}
#form-sign-in {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	overflow-y: auto;
}
#form-sign-in-body {
	min-width: 320px;
	max-width: 410px;
	margin: 40px auto;
	background: #fff;
	padding: 18px 20px 37px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	box-sizing: border-box;
	position: relative;
}
#form-sign-in-body i {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 20px;
	height: 20px;
	background: url(../img/close.svg) no-repeat;
	cursor: pointer;
}
#form-sign-in-title {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.11;
	text-align: center;
}
#form-sign-in-title span {
	color: #54d0ff;
}
#form-sign-in-body input.input {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #f8f9fc;
	border: 1px solid #dbe5eb;
	font-size: 18px;
	color: #96a2a9;
	padding: 0 15px;
	box-sizing: border-box;
	width: 100%;
	height: 50px;
}
#form-sign-in-email {
	margin-top: 16px;
}
#form-sign-in-password {
	margin-top: 15px;
}
#form-sign-in-submit {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #54d0ff;
	line-height: 50px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	cursor: pointer;
	margin-top: 15px;
}
#form-sign-in-submit:hover {
	background: #30c3fa;
}
#form-sign-in-submit.disabled {
	opacity: 0.7;
}
#form-sign-in-submit.disabled:hover {
	background: #54d0ff;
	cursor: default;
}
#form-sign-in-message {
	display: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #ff2f4f;
	font-size: 14px;
	text-align: center;
	color: #fff;
	margin: 15px auto 0;
	padding: 10px 20px;
}
#form-sign-in-create {
	font-size: 16px;
	line-height: 1.44;
	text-align: center;
	margin-top: 10px;
}
#form-sign-in-create span {
	color: #54d0ff;
	cursor: pointer;
}
#form-sign-in-forgot {
	font-size: 12px;
	text-align: center;
	margin-top: 19px;
}
#form-sign-in-forgot span {
	color: #54d0ff;
	cursor: pointer;
}
#form-sign-up {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	overflow-y: auto;
}
#form-sign-up-body {
	min-width: 320px;
	max-width: 410px;
	margin: 40px auto;
	background: #fff;
	padding: 18px 20px 37px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	box-sizing: border-box;
	position: relative;
}
#form-sign-up-body i {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 20px;
	height: 20px;
	background: url(../img/close.svg) no-repeat;
	cursor: pointer;
}
#form-sign-up-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
}
#form-sign-up-title span {
	color: #54d0ff;
}
#form-sign-up-body input.input {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #f8f9fc;
	border: 1px solid #dbe5eb;
	font-size: 18px;
	color: #96a2a9;
	padding: 0 15px;
	box-sizing: border-box;
	width: 100%;
	height: 50px;
}
#form-sign-up-name {
	margin-top: 16px;
}
#form-sign-up-email {
	margin-top: 15px;
}
#form-sign-up-organization {
	margin-top: 15px;
}
#form-sign-up-password1 {
	margin-top: 15px;
}
#form-sign-up-password2 {
	margin-top: 15px;
}
#form-sign-up-case-text {
	font-size: 14px;
	margin-top: 18px;
}
#form-sign-up-case-value {
	margin-top: 7px;
}
#form-sign-up-submit {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #54d0ff;
	line-height: 50px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	cursor: pointer;
	margin-top: 15px;
}
#form-sign-up-submit:hover {
	background: #30c3fa;
}
#form-sign-up-submit.disabled {
	opacity: 0.7;
}
#form-sign-up-submit.disabled:hover {
	background: #54d0ff;
	cursor: default;
}
#form-sign-up-message {
	display: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #ff2f4f;
	font-size: 14px;
	text-align: center;
	color: #fff;
	margin: 15px auto 0;
	padding: 10px 20px;
}
#form-sign-up-login {
	font-size: 16px;
	line-height: 1.44;
	text-align: center;
	margin-top: 10px;
}
#form-sign-up-login span {
	color: #54d0ff;
	cursor: pointer;
	font-weight: bold;
}
#form-sign-up-info {
	font-size: 12px;
	line-height: 1.33;
	text-align: center;
	margin-top: 18px;
}
#form-sign-up-info a {
	color: #54d0ff;
	font-weight: bold;
	text-decoration: none;
}
#form-forgot {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	overflow-y: auto;
}
#form-forgot-body {
	min-width: 320px;
	max-width: 410px;
	margin: 40px auto;
	background: #fff;
	padding: 18px 20px 37px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	box-sizing: border-box;
	position: relative;
}
#form-forgot-body i {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 20px;
	height: 20px;
	background: url(../img/close.svg) no-repeat;
	cursor: pointer;
}
#form-forgot-title {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.11;
	text-align: center;
}
#form-forgot-description {
	font-size: 14px;
	line-height: 1.43;
	text-align: center;
	margin-top: 12px;
}
#form-forgot-body input.input {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #f8f9fc;
	border: 1px solid #dbe5eb;
	font-size: 18px;
	color: #96a2a9;
	padding: 0 15px;
	box-sizing: border-box;
	width: 100%;
	height: 50px;
}
#form-forgot-email {
	margin-top: 21px;
}
#form-forgot-submit {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #54d0ff;
	line-height: 50px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	cursor: pointer;
	margin-top: 15px;
}
#form-forgot-submit:hover {
	background: #30c3fa;
}
#form-forgot-submit.disabled {
	opacity: 0.7;
}
#form-forgot-submit.disabled:hover {
	background: #54d0ff;
	cursor: default;
}
#form-forgot-message {
	display: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 14px;
	text-align: center;
	color: #fff;
	margin: 15px auto 0;
	padding: 10px 20px;
}
#form-forgot-message.error {
	background: #ff2f4f;
}
#form-forgot-message.success {
	background: #1dd384;
}
#form-forgot-login {
	font-size: 16px;
	text-align: center;
	margin-top: 22px;
}
#form-forgot-login span {
	color: #54d0ff;
	cursor: pointer;
}
#form-forgot-send {
	font-size: 12px;
	line-height: 1.33;
	text-align: center;
	margin-top: 19px;
}
#form-forgot-send a {
	color: #54d0ff;
	font-weight: bold;
	text-decoration: none;
}
#form-reset {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	overflow-y: auto;
}
#form-reset-body {
	min-width: 320px;
	max-width: 410px;
	margin: 40px auto;
	background: #fff;
	padding: 18px 20px 30px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	box-sizing: border-box;
	position: relative;
}
#form-reset-body i {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 20px;
	height: 20px;
	background: url(../img/close.svg) no-repeat;
	cursor: pointer;
}
#form-reset-title {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.11;
	text-align: center;
}
#form-reset-email {
	font-size: 14px;
	line-height: 1.43;
	text-align: center;
	margin-top: 12px;
}
#form-reset-body input.input {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #f8f9fc;
	border: 1px solid #dbe5eb;
	font-size: 18px;
	color: #96a2a9;
	padding: 0 15px;
	box-sizing: border-box;
	width: 100%;
	height: 50px;
}
#form-reset-password1 {
	margin-top: 21px;
}
#form-reset-password2 {
	margin-top: 15px;
}
#form-reset-submit {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #54d0ff;
	line-height: 50px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	cursor: pointer;
	margin-top: 15px;
}
#form-reset-submit:hover {
	background: #30c3fa;
}
#form-reset-submit.disabled {
	opacity: 0.7;
}
#form-reset-submit.disabled:hover {
	background: #54d0ff;
	cursor: default;
}
#form-reset-message {
	display: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #ff2f4f;
	font-size: 14px;
	text-align: center;
	color: #fff;
	margin: 15px auto 0;
	padding: 10px 20px;
}
#form-try-as-guest {
    border: 1px solid #BFEDFF;
    border-radius: 6px;
    background-color: #F2FCFF;
    padding: 16px;
    color: #54D0FF;
    width: auto;
    margin-top: 25px;
    margin-left: auto;
    font-weight: bold;
    margin-right: auto;
    line-height: 18px;
    font-size: 18px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    text-align: center;
}
#form-try-as-guest:hover {
	background-color: #54D0FF;
	color: #FFFFFF;
}
.or-hr {
    margin: 19px 0;
    position: relative;
    border-bottom: 1px solid #BECAD3;
}
.or-hr span {
    position: absolute;
    top: -11px;
    width: 10%;
    margin: 0 45%;
    text-align: center;
    background: #FFFFFF;
}
#form-sign-up-close {
    position: absolute;
    right: 18px;
    font-size: 22px;
    cursor: pointer;
    top: 5px;
}