@font-face {
	font-family: Regular;
	src: url('/fonts/Inter-Regular.woff') format('woff');
	font-style: normal;
}

@font-face {
	font-family: Medium;
	src: url('/fonts/Inter-Medium.woff') format('woff');
	font-style: normal;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

* {
	box-sizing: border-box;
}

body {
	color: #FEFEFE;
	font-family: Regular;
	margin: 0;
	padding: 0;
	font-size: 16px;
	background-color: #1D1D1D;
	height: 100%;
	width: 100%;
}

body.fixed {
	overflow: hidden;
}


a[href^="tel"] {
	color: inherit;
	text-decoration: none;
}

img {
	width: auto;
}

img::selection {
	background: transparent;
}

p {
	margin: 0;
	padding: 0;
}

a {
	outline: none;
	text-decoration: none;
	cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

h3 {
	margin-bottom: 24px;
	font-family: Medium;
	font-size: 18px;
	line-height: 22px;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

input {
	display: block;
	width: 100%;
	height: 42px;
	margin: 0;
	padding: 12px 16px;
	font-family: Regular;
	font-size: 14px;
	color: #FEFEFE;
	background-color: transparent;
	background: transparent;
	border: 1px solid #404040;
	border-radius: 8px;
	outline: none;
	box-shadow: none;
	appearance: none;
	transition: all .3s;
}

input[type="text"] {
	background: transparent;
}

input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	height: 0;
	min-height: 0;
	padding: 0;
	margin: 0;
	border: none;
	color: transparent;
	cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 10px;
	background-color: #FEFEFE;
	overflow: visible;
	cursor: pointer;
}

input[type="range"].reverse {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}


input[type=file]{outline:0;opacity:0;pointer-events:none;user-select:none}

select {
	display: block;
	width: 100%;
	min-height: 40px;
	margin: 0;
	padding: 12px 16px;
	font-family: Regular;
	font-size: 14px;
	color: #FEFEFE;
	background-color: transparent;
	border: 1px solid #404040;
	border-radius: 8px;
	outline: none;
	box-shadow: none;
	appearance: none;
	transition: all .3s;
}

select option {
	background: #151515;
	color: #F9F9F9;
}

select option:hover {
	background: #151515;
}

textarea {
	display: block;
	width: 100%;
	min-height: 100px;
	margin: 0;
	padding: 12px 16px;
	font-family: Regular;
	font-size: 14px;
	color: #FEFEFE;
	background-color: transparent;
	border: 1px solid #404040;
	border-radius: 8px;
	outline: none;
	box-shadow: none;
	appearance: none;
	resize: none;
	transition: all .3s;
}

input:focus, select:focus, textarea:focus {
	border: 1px solid #949494;
}

input.readonly, select.readonly, textarea.readonly {
	color: #B6B6B6;
	cursor: default;
}

input.readonly:focus, select.readonly:focus, textarea.readonly:focus {
	color: #B6B6B6;
	border: 1px solid #404040;
}

input[type=range]:focus {
	height: 0;
	outline: none;
	border: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

::-webkit-input-placeholder {color: #bfbfbf;}
:-moz-placeholder {color: #bfbfbf;opacity: 1;}
::-moz-placeholder {color: #bfbfbf;opacity: 1;}
:-ms-input-placeholder {color: #bfbfbf;}
::-ms-input-placeholder {color: #bfbfbf;}
::placeholder {color: #bfbfbf;}

/* input component wrapper */
label {
	display: block;
	margin-bottom: 24px;
}

label .title {
	display: inline-block;
	width: 100%;
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 16px;
	text-align: left;
	color: #B6B6B6;
}

label .required {
	color: #CB0000;
}

label span.error {
	display: block;
	width: 100%;
	margin: 1px 0 0 0;
	padding: 0;
	font-size: 11px;
	color: #CB0000;
}

label .itemWrapper {
	position: relative;
}

label .itemWrapper.error input {
	border: 1px solid #CB0000;
}

label .itemWrapper.error input[type=file] {
	border: 1px solid #CB0000;
}

label .itemWrapper.error select {
	border: 1px solid #CB0000;
}

label .itemWrapper.error textarea {
	border: 1px solid #CB0000;
}

.hidden {
	display: none!important;
	visibility: hidden;
	opacity: 0;
}

.show {
	display: block;
}

.shadow {
	background: #1D1D1D;
	-moz-opacity: 0.15;
	-khtml-opacity: 0.15;
	opacity: 0.15;
}

.shadowLayer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	overflow: hidden;
}

a.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 144px;
	height: 40px;
	padding: 13px 24px;
	font-family: Medium;
	font-size: 14px;
	color: #0B0B0B;
	background: #F9F9F9;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color .3s, border .3s;
}

a.button:hover {
	background: #E3E3E3;
}

a.button:active {
	color: #F9F9F9;
	background: #404040;
}

/* notes element */
.notes {
	margin-bottom: 24px;
	font-size: 14px;
	line-height: 17px;
}

/* messageBlock element */
.messageBlock {
	width: 100%;
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 14px;
	border-radius: 3px;
}

.messageBlock .message {
	display: flex;
	margin-bottom: 24px;
	font-size: 14px;
	color: #23AF47;
}

.messageBlock.error .message {
	color: #CB0000;
}

.messageBlock .message a {
	font-size: 14px;
}

/* formWindow element */
.formWindow {
	position: fixed;
	left: 50%;
	top: 50%;
	display: block;
	width: 600px;
	max-width: 100%;
	height: auto;
	background-color: #272727;
	border-radius: 16px;
	transform: translate(-50%, -50%);
	/* overflow-y: auto; */
}

.formWindow .resetPassword a {
	display: none;
}

.formWindow .templateWrapper {
	height: 100%;
	overflow-y: auto;
}

.formWindow.sizeL {
	width: 900px;
}

.formWindow.sizeL .templateWrapper {
	margin-bottom: 53px;
}

.formWindow.sizeXl {
	width: 1200px;
}

.formWindowWrapper {
	position: relative;
}

.formWindowWrapper .closeWindowLink {
	position: absolute;
	top: 24px;
	right: 24px;
}

.formWindowWrapper .form__ctrl-buttons {
	position: fixed;
	left: 0;
	bottom: 0;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	padding: 24px;
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 16px;
	background-color: #272727;
}

.formWindowWrapperEx {
	position: relative;
}

.formWindowWrapperEx__tabs {
	display: flex;
	margin-top: 48px;
	margin-bottom: 24px;
	border-bottom: 1px solid #FEFEFE;
}

.formWindowWrapperEx__tabs li {
	margin-right: 24px;
}

.formWindowWrapperEx__tabs li a {
	display: flex;
	padding-bottom: 10px;
	font-size: 18px;
	line-height: 22px;
	color: #FEFEFE;
	border-bottom: 2px solid transparent;
	transition: all .3s;
}

.formWindowWrapperEx__tabs li a.active {
	font-family: Medium;
	border-bottom: 2px solid #FEFEFE;
}

.formWindowWrapperEx .closeWindowLink {
	position: absolute;
	top: 24px;
	right: 24px;
}

.formWindowWrapperEx .form__ctrl-buttons {
	position: fixed;
	left: 0;
	bottom: 0;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	padding: 24px;
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 16px;
	background-color: #272727;
}

.formWindowContentWrapper {
	display: flex;
	flex-direction: column;
	max-height: 600px;
	padding: 24px;
	overflow: hidden;
}

.formWindowContentWrapper h2 {
	margin: 24px 0;
	text-align: center;
	font-family: Medium;
	font-size: 24px;
	line-height: 29px;
}

.formWindowContentWrapper a.button {
	display: flex;
	margin-left: auto;
	width: min-content;
	white-space: nowrap;
	margin-left: auto;
}

.formWindowContentWrapper .shortInfo__buttons a.button {
	margin: 0 0 0 16px;
}

.formWindowContentWrapper a.button.onPut {
	width: 132px;
}
