

/*************************************************************************


                         U   I       K   I   T


*************************************************************************/



/*************************************************************************

                           H Y P E R L I N K

*************************************************************************/


.href{
	display: inline-block;
	position: relative;
	font: inherit;
	font-size: inherit;
	height: 1em;
	line-height: 1em;
	color: inherit;
}

.href:after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 0;
	top: calc(1em + 1px);
	border-bottom: 1px solid currentColor;
	opacity: .4;
	-webkit-transition: opacity 200ms ease;
	-moz-transition: opacity 200ms ease;
	-ms-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	will-change: opacity;
}

.href.ml{
	display: inline;
	border-bottom: 1px solid rgba(50,50,50,.4);
	line-height: 1em;
	-webkit-transition: border-bottom 300ms ease;
	-moz-transition: border-bottom 300ms ease;
	-ms-transition: border-bottom 300ms ease;
	transition: border-bottom 300ms ease;
	will-change: border-bottom;
}

.href.ml:hover,
.href-wrapper:hover .href.ml{
	border-bottom: 1px solid rgba(50,50,50,0);
}

.href.ml.blue{
	border-bottom: 1px solid rgba(58, 124, 222, .4);
}

.href.ml.blue:hover,
.href-wrapper:hover .href.ml.blue{
	border-bottom: 1px solid rgba(58, 124, 222, 0);
}

.href:hover:after,
.href-wrapper:hover .href:after{
	opacity: 0;
}

.href.ml:after{
	display: none;
}

.href.white-href{
	color: #fff;
}

.href.ml.white-href{
	border-color: rgba(255,255,255,.4);
}

.href.ml.white-href:hover{
	border-color: rgba(255,255,255,0);
}

.href.blue-href{
	color: #67b7b7;
}



/*************************************************************************

                              B U T T O N

*************************************************************************/


.button{
	font-family: FuturaMediumC;
	font-size: 16px;
	height: 35px;
	border-radius: 35px;
	line-height: 35px;
	box-sizing: border-box;
	text-align: center;
	border: 2px solid #67b7b7;
	color: #67b7b7;
	cursor: pointer;
	-webkit-transition:
		background 200ms ease,
		color 200ms ease
	;
	-moz-transition:
		background 200ms ease,
		color 200ms ease
	;
	-ms-transition:
		background 200ms ease,
		color 200ms ease
	;
	transition:
		background 200ms ease,
		color 200ms ease
	;
	opacity: background, color;
	letter-spacing: 1px;
}

.button:hover{
	background: #67b7b7;
	color: #fff;
}



/*************************************************************************

                               I N P U T

*************************************************************************/


.input{
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: center;
	align-self: stretch;
	border: 1px solid rgba(255,255,255,.25);
	height: 40px;
	box-sizing: border-box;
	border-radius: 3px;
	color: rgba(255,255,255,.5);
	padding: 0 10px;
	transition:
		color 200ms ease,
		border-color 200ms ease
	;
	will-change: border-color, color;
}

.input.failed{
	border-color: rgba(255,5,0,.5);
}

.input.focus{
	border-color: rgba(255,255,255,.5);
}

.input.focus,
.input.filled{
	color: #fff;
}

.input,
.input *{
	cursor: text;
}

.input>div{
	position: absolute;
	font-size: 18px;
	line-height: 1.4em;
	height: 1.4em;
	z-index: 0;
	left: 10px;
	top: calc(50% - .7em);
	width: calc(100% - 20px);
	opacity: .8;
	color: inherit;
	-webkit-transition: opacity 200ms ease;
	-moz-transition: opacity 200ms ease;
	-ms-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	will-change: opacity;
}

.input.filled>div{
	opacity: 0;
}

.input>input{
	display: block;
	position: relative;
	font-size: 18px;
	line-height: 1.4em;
	height: 1.4em;
	z-index: 1;
}



/*************************************************************************

                             T E X T A R E A

*************************************************************************/


.textarea{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: stretch;
	border: 1px solid rgba(255,255,255,.25);
	height: 260px;
	box-sizing: border-box;
	border-radius: 3px;
	color: rgba(255,255,255,.5);
	padding: 5px 10px;
	transition:
		color 200ms ease,
		border-color 200ms ease
	;
	will-change: border-color, color;
}


.textarea.failed{
	border-color: rgba(255,5,0,.5);
}

.textarea.focus{
	border-color: rgba(255,255,255,.5);
}

.textarea.focus,
.textarea.filled{
	color: #fff;
}

.textarea,
.textarea *{
	cursor: text;
}


.textarea>textarea{
	display: block;
	font-size: 18px;
	line-height: 1.4em;
	height: 100%;
}

	.textarea>textarea::-webkit-scrollbar{
		width: 2px;
	}

	.textarea>textarea::-webkit-scrollbar-track{
		background: transparent;
	}

	.textarea>textarea::-webkit-scrollbar-thumb{
		background-clip: padding-box;
		background: #fff;
	}



/*************************************************************************

                         S E L E C T   F I L E

*************************************************************************/


.select-file{
	color: rgba(255,255,255,.5);
}

.select-file .file{
	display: inline;
	font-size: 16px;
	line-height: 20px;
	border-bottom: 1px dashed rgba(255,255,255,.5);
	letter-spacing: 2px;
	padding-bottom: 2px;
	word-break: break-all;
	-webkit-transition:
		color 200ms ease,
		border-color 200ms ease
	;
	-moz-transition:
		color 200ms ease,
		border-color 200ms ease
	;
	-ms-transition:
		color 200ms ease,
		border-color 200ms ease
	;
	transition:
		color 200ms ease,
		border-color 200ms ease
	;
}


.select-file .file:hover{
	color: rgba(255,255,255,.3);
	border-bottom: 1px dashed rgba(255,255,255,0);
}

.select-file .file,
.select-file .file *{
	cursor: pointer;
}

	.lang-ru .select-file .file:before{
		content: 'ПРИКРЕПИТЕ ФАЙЛ';
	}

	.lang-en .select-file .file:before{
		content: 'ATTACH FILE';
	}

	.select-file.filled .file:before{
		content: '';
		display: none;
	}

.select-file .subscription{
	font-size: 12px;
	line-height: 1.2em;
	color: rgba(255,255,255,.3);
	margin-top: 5px;
	letter-spacing: 1px;
}



/*************************************************************************

                         R A D I O B U T T O N

*************************************************************************/
	

.radiobutton{
	position: relative;
	height: 20px;
	box-sizing: border-box;
	padding: 0 0 0 25px;
}

.radiobutton:before{
	content: '';
	display: block;
	position: absolute;
	font-size: 18px;
	width: 1em;
	height: 1em;
	border-radius: 1em;
	border: 1px solid rgba(255,255,255,.5);
	top: 0;
	left: 0;
	box-sizing: border-box;
}

.radiobutton:after{
	content: '';
	display: block;
	position: absolute;
	font-size: 6px;
	width: 1em;
	height: 1em;
	border-radius: 1em;
	top: 6px;
	left: 6px;
	background: #fff;
	opacity: 0;
	-webkit-transition: opacity 200ms ease;
	-moz-transition: opacity 200ms ease;
	-ms-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	will-change: opacity;
}

.radiobutton.checked:after{
	opacity: 1;
}

.radiobutton,
.radiobutton *{
	cursor: pointer;
}

	.radiobutton>*{
		font-size: 13px;
		line-height: 19px;
		letter-spacing: 2px;
	}

.radiogroup>.radiobutton+.radiobutton{
	margin-top: 10px;
}


/*************************************************************************

                           T Y P O G R A P H Y

*************************************************************************/


.the-word{
	white-space: nowrap;
}


