*,html,body,table,tr,td,a,div,span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4em;
	color: #4A4A4A;
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	height: 100%;
}

strong {
	font-weight: 600;
}

.ft-color-primary {
	color: #57abff;
}

.ft-color-secondary {
	color: #4A4A4A;
}

.button,
a.button,
a:link.button,
a:visited.button {
	border-radius: 42px;
	background: #57abff;
	color: #FFF;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	display: inline-block;	
	height: 42px;
	line-height: 42px;
	padding: 0px 20px;
	text-decoration: none;
	transition: all ease-in-out .15s;
	outline: none;
}

.button.disable,
a.button.disable,
a:link.button.disable,
a:visited.button.disable,
a:hover.button.disable {
	opacity: .15;
	pointer-events: none;
}


.button *,
a.button *,
a:link.button *,
a:visited.button * {
	display: inline-block;
	vertical-align: middle;
}

.button img,
a.button img,
a:link.button img,
a:visited.button img {
	margin-right: 10px;
}


.button:hover:not(.disable) {
	opacity: .8;
	transform: scale(1.05,1.05);	
}

.button:active {
	opacity: 1;
	transform: scale(1,1);
}

.button.bordered,
a.button.bordered,
a:link.button.bordered,
a:visited.button.bordered {
	background: none;
	border: 1px solid #57abff;
	color: #57abff; 
}

.button.white,
a.button.white,
a:link.button.white,
a:visited.button.white {
	background: white;
}

.button.gray,
a.button.gray,
a:link.button.gray,
a:visited.button.gray {
	background: #CCC;
}


.button.social,
a.button.social,
a:link.button.social,
a:visited.button.social {
	background: white;
	margin: 9px 10px 0px 0px;
	font-size: 14px;
	font-weight: 600;
	color: #666666;
	box-shadow: 0px 0px 6px rgba(0,0,0,.20);
}

.button.icon {
	margin-right: 5px;
}

.button.large,
a.button.large,
a:link.button.large,
a:visited.button.large {
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	padding: 0px 30px;	
}

.button.icon {
	
}

.button.icon.small {
	font-size: 0;
	background: none;
	margin: 0;
	padding: 0;
	line-height: normal;
	height: auto;
}

.button.icon.small i {
	font-size: 14px;
	margin: 50% 0;
	transform: translateY(-50%);
}

.button.icon.alone {
	background: none;
	padding: 0 10px;
}

.button.icon.alone i {
	font-size: 22px;
	color: #57abff;
}

.button.circle,
a.button.circle,
a:link.button.circle,
a:visited.button.circle {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background: #57ABFF;
	color: #FFF;
	text-align: center;
	padding: 4px 0;
}

.button.circle i {
	color: #FFF;
}

.button.circle.small {
	width: 24px;
	height: 24px;
}

.button.circle.small i {
	margin-top: -24px;
}

.button.withicon i {
	color: #FFF;
	margin-right: 5px;
}

a,a:link,a:visited {
	display: inline-block;
	transition: all ease-in-out .15s;
	font-size: inherit;
	color: #57abff;
}

a:hover {
	opacity: .8;
	transform: scale(1.05,1.05);	
}

h1,
h1 * {
	font-size: 50px;
	font-weight: 700;
	line-height: 53px;
}

h2,
h2 * {
	font-size: 40px;
	font-weight: 700;
	line-height: 44px;
}


h3,
h3 * {
	font-size: 20px;
	font-weight: 700;
	line-height: 22px;
	padding-top: 20px;
}

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

h5 {
	font-size: 16px;
	font-weight: 600;
	margin: 8px 0px 10px 0px;
}


header {
	padding: 35px 40px 40px 40px;
	position: fixed;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 100;
}

header:before {
/* 	background-image: linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); */
	background: #FFF;		
	content: "";
	box-shadow: 0px 2px 6px rgba(0,0,0,.10);
	position: absolute;
	pointer-events: none;
	width: 100%;
	height: 95px;
	opacity: 0;
	top: 0;
	left: 0;
	transition: all ease-in-out .5s;	
	z-index: -1;
	
}

header.sticky:before {
	opacity: 1
}


header .logo {
	display: inline-block;
	vertical-align: middle;
	padding-top: 10px;
}

header .logo .symbol-logo {
	display: none;
	width: 36px;
	height: auto;
	margin-top: 10px;
}

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

header .logo .type {
	padding:0px 0px 5px 10px;
	font-size: 12px;
	font-weight: 600;
}

header .actions {
	float: right;
	vertical-align: middle;	
	display: inline-block;
}

header .actions * {
	margin-left: 10px;
	vertical-align: middle;
}

header .actions a {
	font-size: 14px;
	font-weight: 700;
}

.tip-win {
	width: 250px;
	height: auto;
	border-radius: 4px;
	background: #FFF;
	box-shadow: 0 -3px 10px rgba(0,0,0,.15);
	position: absolute;
	left: -50%;
	top: 100%;
}

.tip-win.tip-left {
	left: 10%;
	right: auto;
}

.tip-win.tip-right {
	right: 10%;
	left: auto;
}

.tip-win.tip-bottom {
	box-shadow: 0 3px 10px rgba(0,0,0,.15);
}

.tip-win.tip-right-bottom {
	right: -20px;
	left: auto;	
	box-shadow: 0 3px 10px rgba(0,0,0,.15);
}

.tip-win:before {
	display: block;
	content: '';
	width: 14px;
	height: 14px;
	transform: rotate(45deg);
	top: -7px;
	left: 50%;
	box-shadow: -4px -4px 6px rgba(0,0,0,.15);
	position: absolute;
	background: #FFF;
}

.tip-win.tip-right:before {
	left: auto;
	right: 20%;
}

.tip-win.tip-left:before {
	left: 10%;
	right: auto;
}

.tip-win.tip-bottom:before {
	top: auto;
	bottom: -7px;
	box-shadow: 4px 4px 6px rgba(0,0,0,.15);	
}

.tip-win.tip-right-bottom:before {
	left: auto;
	right: 10%;
	top: auto;
	bottom: -7px;
	box-shadow: 4px 4px 6px rgba(0,0,0,.15);	
}

.tip-win-container {
	overflow-x: hidden;
	overflow-y: auto;
	
}

.tip-win-footer {
	padding: 10px;
	background: #FFF;
	text-align: left;
}

.cols {
	display: flex;
}

.cols .col {
	flex: 1 50%;
	max-width: 50%;
	position: relative;
}

.slider {
	text-align: center;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 30px;
	position: relative;
}

.slider .slide {
	text-align: center;
	position: relative;
	padding: 5px;
	outline: none;
}

.slider .content {
	background: #FFF;
	width: 100%;
	padding: 30px;
	border-radius: 25px;
	box-shadow: 0px 2px 8px rgba(0,0,0,.15);
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: -5px;
	z-index: 2;
	position: relative;
}



.field {
	position: relative;
	padding-bottom: 15px;
}

input[type='text'],
input[type='password'],
textarea,
select {
	height: 60px;
	width: 100%;
	padding:25px 20px 12px 20px;
	font-size: 18px;
	outline: none;
	transition: all .15s ease-in-out;
	border: 1px solid #E3E2E2;
	position: relative;
	z-index: 1;
	background: white;
	color: #707070;
	border-radius: 4px;
	-webkit-appearance: none;	
}

select {
	padding: 18px 20px 12px 20px;
	-webkit-appearance: none;
	outline: none;	
}

select + i {
	position: absolute;
	right: 20px;
	top: 10px;
	z-index: 3;
	color: #57abff;
	font-size: 30px;
	pointer-events: none;
}

textarea {
	height: 145px;
	outline: none;	
}

input[type='checkbox']{
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	-webkit-appearance: none;
	border: 1px solid #999;
	border-radius: 4px;
	transition: all .15s ease-in-out;
	outline: none;	
}

input[type='checkbox'].small {
	width: 20px;
	height: 20px;
}

input[type='checkbox']:checked {
	background: #57abff;
	border: 1px solid #57abff;
}


input[type='checkbox'] + label {
	vertical-align: middle;
	padding-left: 5px;
}
			
input[type='text']:focus,
input[type='password']:focus,
textarea:focus,
select:focus,
.field.error input:not([value=""]):focus,
.field.error textarea:not([value=""]):focus {
	border: 1px solid #333;
}

input[type='text'] + label,
input[type='password'] + label,
textarea + label {
	font-size: 18px;
	font-weight: 500;
	color: #EEE;
	position: absolute;
	top: 20px;
	left: 20px;
	transition: all .25s ease-in-out;
	z-index: 1;
	pointer-events: none;
}

input[value=""]:focus + label,
textarea[value=""]:focus + label {
	color: #707070;
	font-size: 14px;
	top: 8px;				
}

input:not([value=""]) + label,
textarea:not([value=""]) + label {
	color: #707070;
	font-size: 14px;
	top: 10px;
	display: inline-block;
	width: 80%;
}


.field.error input[type='text'],
.field.error input[type='password'],
.field.error input[type='checkbox'],
.field.error input[type='hidden'],
.field.error textarea,
.field.error select {
	border: 1px solid red;
}

.field.invalid input[type='text'],
.field.invalid input[type='password'],
.field.invalid input[type='checkbox'],
.field.invalid input[type='hidden'],
.field.invalid textarea {
	border: 1px solid red !important;
}



.field.error input:not([value=""]):not([type="checkbox"]):not([type="hidden"]),
.field.error textarea:not([value=""]) {
	border: 1px solid #E3E2E2;
}

.field.error input[type="checkbox"]:not([data-field-checked="false"]) {
	border: 1px solid #E3E2E2;
}

.field.error.checkbox .field.error.checkbox {
	border: 1px solid #E3E2E2;
}

input[type='submit'] {
	border: 0;
	cursor: pointer;
	opacity: .25;
	margin-top: 30px;
	-webkit-appearance: none;	
}

input[type='submit']:not(.available):hover {
	transform: scale(1.01,1.01);
	opacity: .30;
}

input[type='submit'].available {
	opacity: 1;	
}

input[type='submit'].available:hover {
	transform: scale(1.01,1.01);
	opacity: .8;
}

input[type='submit']:hover:active {
	transform: scale(0.98,0.98);
	opacity: .9;
}

.field.good {
	opacity: 0;
	height: 0;
	padding-bottom: 0;
	overflow: hidden;
}

.error-message {
	font-size: 12px;
	color: red;
	position: absolute;
	right: 10px;
	bottom: 20px;
	opacity: 0;
	transition: all .15s ease-in-out;
	z-index: 3;
	pointer-events: none;
}

.field.error.checkbox .error-message {
	right: auto;
	left: 0;
	position: relative;
	bottom: auto;
	top: 10px;
}

.field.error .error-message {
	opacity: 1;
}

.field.error input:not([value=""]):not([type="checkbox"]):not([type="hidden"]) ~ .error-message,
.field.error input[type="checkbox"]:not([data-field-checked="false"]) ~ .error-message,
.field.error textarea:not([value=""]) ~ .error-message {
	opacity: 0;
}

.field.invalid .error-message {
	opacity: 1 !important;
}

.modal-overlay {
	background: rgba(255,255,255,.8);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 200;
}

.modal {
	width: 300px;
	height: 300px;
	background: #FFF;
	box-shadow: 0px 0px 8px rgba(0,0,0,.20);
	border-radius: 8px;
	margin-left: auto;
	margin-right: auto;
	transform: translateY(50%);
	padding: 20px;
}

.modal .close {
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}

.modal .ok {
	position: absolute;
	bottom: 20px;
}

.modal .hstack {
	position: absolute;
	bottom: 20px;	
}

.modal .hstack .button {
	margin-right: 10px;
}

.modal .message {
	font-size: 16px;
	font-weight: 600;
	padding: 20px 0px 60px 0px;
}

.toast {
	width: 300px;
	height: auto;
	background: #FFF;
	box-shadow: 0px 0px 8px rgba(0,0,0,.20);
	border-radius: 8px;
	padding: 20px 50px 20px 20px;
	position: fixed;
	right: -20px;
	top: 15%;
	z-index: 400;
	animation-name: anim-toast;
	animation-iteration-count: 1;
	animation-direction: alternate;
	animation-fill-mode: forwards;
	animation-duration: 6s;	
	animation-delay: 0s;
}

.toast .close {
	position: absolute;
	right: 40px;
	top: 20px;
	cursor: pointer;
}

.toast .message {
	font-size: 16px;
	font-weight: 600;
	padding: 0px 0px 10px 0px;
}

.toast .toasticon {
	width: 60px;
	font-size: 50px;
	float: left;
	color: #57abff;
}

@-webkit-keyframes anim-toast {
  0% {
	  transform: translateX(100%);
  }
  10% {
	  transform: translateX(0%);
  }
  90% {
	  transform: translateX(0%);	  
  }
  100% {
	  transform: translateX(100%);	  
  }
}

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


.card {
	padding: 20px;
}

.card.disable {
	pointer-events: none;
}

.card .card-container {
	padding: 20px;
	background: #FFF;
	box-shadow: 0 2px 20px rgba(0,0,0,.10);
	border-radius: 8px;
	height: 100%;
	position: relative;
}

[data-type="listing-list"] .card {
	padding: 0;	
}

[data-type="listing-list"] .card .card-container {
	padding: 20px 0;
	background: #FFF;
	box-shadow: 0px 0px 0px black;
	border-radius: 0;
	height: 100%;
	position: relative;
	border-bottom: 1px solid #EEE;
}

.card .card-footer {
	bottom: 10px;
	position: absolute;
	width: calc(100% - 40px);
}

.card .card-footer .col:nth-child(1) {
	flex: 1 40%;
	min-width: 40%;
}

.card .card-footer .col:nth-child(2) {
	flex: 1 60%;
	min-width: 60%;
	text-align: right;
}

.card .card-info {
	padding-bottom: 100px;		
}

.card .button.icon.small {
	width: 32px;
	height: 32px;
	text-align: center;
}

.card .button.icon.small i {
	font-size: 20px;
	margin: 50% 0;
	transform: translateY(-50%);
	color: #57ABFF;
}

@media only screen and (max-width: 800px) {

	.button:hover:not(.disable) {
		opacity: 1;
		transform: none;
	}
	
	.button:active {
		opacity: 1;
		transform: none;
	}

	header:before {
		height: 80px;
	}
	
	header .logo {
		padding: 0;	
	}
	
	header .logo .full-logo {
		display: none;
	}
	
	header .logo .symbol-logo {
		display: block;
	}
	
	header {
		padding: 20px 20px 20px 20px;
	}
	
	header .type {
		display: none;
	}

	header .actions {
		max-width: 85%;	
		text-align: right;
	}

	header .actions a:first-child {
		margin-bottom: 10px;
		max-width: 150px;
		display: inline-block;
	}
	
	header .actions a:last-child {
		display: none;
	}
	
	header .actions a:first-child {
		max-width: none;
	}	

	h1,
	h1 * {
		font-size: 30px;
		line-height: 34px;
	}
	
	h2,
	h2 * {
		font-size: 26px;
		line-height: 28px;
	}
	
	.cols {
		flex-wrap: wrap;
	}
	
	.cols .col {
		flex: 1 100%;
		max-width: 100%;
	}
	
	.slider {
		width: auto;
	}


	.cols .col.card {
		padding: 10px;
	}
	
	.card .card-container {
		padding: 20px;
	}
	
	.card .card-info {
		min-height: auto;			
	}
	
}

@media only screen and (max-width: 400px) {

	header .actions a:first-child {
		max-width: 90px;
	}

}
