

/*************************************************************************

                             
                          U   I       K   I   T


*************************************************************************/


/*************************************************************************

                              B U T T O N

*************************************************************************/

.lang {
    min-width: 60px!important;
}
.button{
	display: inline-block;
	position: relative;
	min-width: 140px;
	height: 50px;
	box-sizing: border-box;
	background: #08b9ea;
	border: 2px solid #08b9ea;
	font-family: MuseoSansCyrl500;
	font-size: 18px;
	text-align: center;
	color: #fff;
	line-height: 48px;
	border-radius: 26px;
	padding: 0 20px;
	-webkit-transition:
		border-color 200ms ease,
		background 200ms ease,
		color 200ms ease
	;
	-moz-transition:
		border-color 200ms ease,
		background 200ms ease,
		color 200ms ease
	;
	-ms-transition:
		border-color 200ms ease,
		background 200ms ease,
		color 200ms ease
	;
	transition:
		border-color 200ms ease,
		background 200ms ease,
		color 200ms ease
	;
	will-change: border-color, background, color;
}

.button:hover{
	border: 2px solid #2dd1ff;
	background: #2dd1ff;
	color: #fff;
}

.button, .button *{
	cursor: pointer;
}

.button.small{
	height: 40px;
	font-size: 14px;
	line-height: 38px;
	border-radius: 21px;
}

.button.big{
	height: 60px;
	font-size: 20px;
	line-height: 58px;
	border-radius: 31px;
}

.button.transparent{
	background: rgba(8,185,234,0);
	color: #08b9ea;
}

.button.transparent:hover{
	background: #2dd1ff;
	/*background: #08b9ea;*/
	color: #fff;
}
@media (max-width: 900px){

.button2{
	min-width: 190px!important;
}
}
.button2{
	display: inline-block;
	position: relative;
	min-width: 285px;
	height: 50px;
	box-sizing: border-box;
	background: #08b9ea;
	border: 2px solid #08b9ea;
	font-family: MuseoSansCyrl500;
	font-size: 18px;
	text-align: center;
	color: #fff;
	line-height: 48px;
	border-radius: 26px;
	padding: 0 20px;
	-webkit-transition:
		border-color 200ms ease,
		background 200ms ease,
		color 200ms ease
	;
	-moz-transition:
		border-color 200ms ease,
		background 200ms ease,
		color 200ms ease
	;
	-ms-transition:
		border-color 200ms ease,
		background 200ms ease,
		color 200ms ease
	;
	transition:
		border-color 200ms ease,
		background 200ms ease,
		color 200ms ease
	;
	will-change: border-color, background, color;
}

.button2:hover{
	border: 2px solid #2dd1ff;
	background: #2dd1ff;
	color: #fff;
}

.button2, .button *{
	cursor: pointer;
}

.button2.small{
	height: 40px;
	font-size: 14px;
	line-height: 38px;
	border-radius: 21px;
}

.button2.big{
	height: 60px;
	font-size: 20px;
	line-height: 58px;
	border-radius: 31px;
}

.button2.transparent{
	background: rgba(8,185,234,0);
	color: #08b9ea;
}

.button2.transparent:hover{
	background: #2dd1ff;
	/*background: #08b9ea;*/
	color: #fff;
}


/*************************************************************************

                               I N P U T

*************************************************************************/


.input{
	position: relative;
	height: 60px;
	box-sizing: border-box;
	border: 1px solid #646464;
	-webkit-transition: border 200ms ease;
	-moz-transition: border 200ms ease;
	-ms-transition: border 200ms ease;
	transition: border 200ms ease;
	will-change: border;
}

.input.for-form{
	height: 50px;
}

.input.for-form.big{
	height: 60px;
}

.input.focus{
	border-color: #fff;
}

.input.for-form{
	border-color: #e6e6e6;
}

.input.for-form.darker{
	border-color: #d8d8d8;
}

.input.for-form.focus,
.input.for-form.darker.focus{
	border-color: #323232;
}


.input.failed{
	border-color: red !important;
}


.input,
.input *{
	cursor: text;
}

.input:before,
.input>div,
.input>input{
	display: block;
	position: absolute;
	width: calc(100% - 40px);
	height: 1.2em;
	line-height: 1.2em;
	top: calc(50% - .6em);
	left: 20px;
	box-sizing: border-box;
	font-size: 18px;
	z-index: 1;
}

.input.for-form:before,
.input.for-form>div,
.input.for-form>input{
	font-size: 14px;
}

.input.for-form.big:before,
.input.for-form.big>div,
.input.for-form.big>input{
	font-size: 18px;
}

.input:before,
.input>div{
	color: #646464;
	z-index: 0;
	opacity: 1;
	-webkit-transition: opacity 200ms ease;
	-moz-transition: opacity 200ms ease;
	-ms-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	will-change: opacity;
}

.input.for-form:before,
.input.for-form>div{
	color: #323232;
	opacity: .5;
}

.input.filled:before,
.input.filled>div{
	opacity: 0;
}

.input.for-form.filled:before,
.input.for-form.filled>div{
	opacity: 0;
}



/*************************************************************************

                             T E X T A R E A

*************************************************************************/


.textarea{
	position: relative;
	min-height: 120px;
	box-sizing: border-box;
	border: 1px solid #646464;
	-webkit-transition: border 200ms ease;
	-moz-transition: border 200ms ease;
	-ms-transition: border 200ms ease;
	transition: border 200ms ease;
	will-change: border;
}

.textarea.failed{
	border-color: red;
}

.textarea.focus{
	border-color: #fff;
}

.textarea,
.textarea *{
	cursor: text;
}

.textarea:before,
.textarea>div,
.textarea>textarea{
	display: block;
	position: absolute;
	height: 100%;
	line-height: 30px;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 20px 0;
	box-sizing: border-box;
	font-size: 18px;
	z-index: 1;
}

.textarea:before,
.textarea>div{
	color: #646464;
	z-index: 0;
	opacity: 1;
	-webkit-transition: opacity 200ms ease;
	-moz-transition: opacity 200ms ease;
	-ms-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	will-change: opacity;
}

.textarea.filled:before,
.textarea.filled>div{
	opacity: 0;
}

.textarea textarea::-webkit-scrollbar{
	width: 2px
}

.textarea textarea::-webkit-scrollbar-track{
	background:transparent
}

.textarea textarea::-webkit-scrollbar-thumb{
	background: #646464;
	-webkit-transition: background 200ms ease;
	-moz-transition: background 200ms ease;
	-ms-transition: background 200ms ease;
	transition: background 200ms ease;
	will-change: background;
}

.textarea.focus textarea::-webkit-scrollbar-thumb{
	background: #fff;
}



/*************************************************************************

                           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 + 2px);
	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.gray{
	color: #949494;
}

.href.white{
	color: #fff;
}

.href.blue{
	color: #08b9ea;
}



/*************************************************************************

                        R A D I O B U T T O N

*************************************************************************/


.radiobutton{
	display: block;
	font-size: 20px;
	position: relative;
	border: 2px solid #e6e6e6;
	height: 1em;
	width: 1em;
	border-radius: 1em;
	box-sizing: border-box;
	cursor: pointer;
}

.radiobutton:before{
	content: '';
	display: block;
	position: absolute;
	font-size: .6em;
	width: 1em;
	height: 1em;
	border-radius: 1em;
	background: #08b9ea;
	top: calc(50% - .5em);
	left: calc(50% - .5em);
	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.active:before{
	opacity: 1;
}



/*************************************************************************

                            C H E C K B O X

*************************************************************************/


.checkbox{
	display: block;
	font-size: 20px;
	position: relative;
	border: 2px solid #d5d5d5;
	height: 1em;
	width: 1em;
	box-sizing: border-box;
	cursor: pointer;
}

.checkbox:before{
	content: '';
	display: block;
	position: absolute;
	font-size: .1em;
	width: calc(100% - 2em);
	height: calc(100% - 2em);
	top: 1em;
	left: 1em;
	opacity: 0;
	background: url(../img/checkbox.svg) no-repeat center center/contain;
	-webkit-transition: opacity 200ms ease;
	-moz-transition: opacity 200ms ease;
	-ms-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	will-change: opacity;
}

.checkbox.active:before{
	opacity: 1;
}



/*************************************************************************

                         T Y P O G R A P H Y

*************************************************************************/


.the-word{
	white-space: nowrap;
}


