@charset "UTF-8";

.beejs-button {
	position: relative;
	height: 30px;
	padding: 8px 10px;
	background: #006dc6;
	color: #fff;
	border: 1px solid #006dc6;
	border-radius: 4px;
	border: none;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	outline: none;
	cursor: pointer;
	box-shadow: none;
	transition: 0.3s;
}

.beejs-button:hover {
	background: #03457b;
}

.beejs-button__label {
	display: inline-block;
}

.beejs-button_checked {
	background: #3fa55b;
	color: #fff;
}

.beejs-button_checked:hover {
	background: #2d7942;
}

.beejs-checkbox-button {
	position: relative;
	display: block;
	padding: 5px;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.beejs-checkbox-button:before {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 20px;
	height: 20px;
	padding: 2px;
	background: #fafafa;
	border: 1px solid #ccc;
	border-radius: 4px;
	line-height: 16px;
	box-shadow: inset 1px 1px 5px #ccc;
}

.beejs-checkbox-button_checked:after {
	content: "\f00c";
	position: absolute;
	top: 6px;
	left: 6px;
	color: #90999e;
	font-family: "FontAwesome";
	font-size: 18px;
}

.beejs-checkbox-button__label {
	display: inline-block;
	position: relative;
	padding: 0;
	padding-left: 30px;
	color: #383838;
	cursor: pointer;
	line-height: 20px;
	vertical-align: middle;
}

.beejs-checkbox-input {
	position: relative;
	display: block;
	padding: 5px;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.beejs-checkbox-input__label {
	color: #383838;
	margin-bottom: 5px;
}

.beejs-checkbox-input__label_without-text {
	margin-bottom: 0;
}

.beejs-list-button {
	position: relative;
	display: block;
	padding: 5px;
	color: #383838;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
}

.beejs-list-button:hover {
	background: #efefef;
}

.beejs-list-button_checked {
	background: #006dc6;
	color: #fff;
}

.beejs-list-button_checked:hover {
	background: #03457b;
}

.beejs-list-button__label {
	display: inline-block;
	position: relative;
	padding: 0;
	color: inherit;
	cursor: pointer;
	line-height: 20px;
	vertical-align: middle;
}

.beejs-list-input {
	position: relative;
	display: block;
	padding: 5px;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.beejs-list-input__label {
	color: #383838;
	margin-bottom: 5px;
}

.beejs-list-input__label_without-text {
	margin-bottom: 0;
}

.beejs-list-input__panel {
	background: #fafafa;
}

.beejs-radio-button {
	position: relative;
	display: block;
	padding: 5px;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.beejs-radio-button__label {
	display: inline-block;
	position: relative;
	padding: 0;
	padding-left: 30px;
	color: #383838;
	cursor: pointer;
	line-height: 20px;
	vertical-align: middle;
}

.beejs-radio-button:before {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 20px;
	height: 20px;
	padding: 2px;
	background: #fafafa;
	border: 1px solid #ccc;
	border-radius: 4px;
	border-radius: 50%;
	line-height: 16px;
	box-shadow: inset 1px 1px 5px #ccc;
}

.beejs-radio-button_checked:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 10px;
	height: 10px;
	background: #90999e;
	border-radius: 50%;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	box-shadow: 1px 0px 5px #ccc;
}

.beejs-radio-input {
	position: relative;
	display: block;
	padding: 5px;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.beejs-radio-input__label {
	color: #383838;
	margin-bottom: 5px;
}

.beejs-radio-input__label_without-text {
	margin-bottom: 0;
}

.beejs-select-button {
	position: relative;
	height: 30px;
	padding: 8px 10px;
	padding-right: 25px;
	background: #fafafa;
	color: #383838;
	border: 1px solid #ссс;
	border-radius: 4px;
	border: none;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	outline: none;
	cursor: pointer;
	box-shadow: none;
	transition: 0.3s;
	box-shadow: 1px 1px 5px #ccc;
}

.beejs-select-button:after {
	content: "\f078";
	position: absolute;
	top: 7px;
	right: 7px;
	color: #888;
	font-family: "FontAwesome";
	font-size: 14px;
	font-weight: 400;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	cursor: pointer;
}

.beejs-select-button:hover {
	background: #efefef;
}

.beejs-select-button__label {
	display: inline-block;
}

.beejs-select-button_checked {
	background: #fafafa;
	color: #383838;
}

.beejs-select-button_checked:hover {
	background: #efefef;
}

.beejs-select-button_checked:after {
	content: "\f077";
}

.beejs-select-input {
	position: relative;
	display: block;
	padding: 5px;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.beejs-select-input__label {
	color: #383838;
	margin-bottom: 5px;
}

.beejs-select-input__label_without-text {
	margin-bottom: 0;
}

.beejs-select-input__panel {
	position: absolute;
	left: 0;
	top: 55px;
	left: 5px;
	right: 5px;
	max-height: 0;
	background: #fafafa;
	overflow: hidden;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	z-index: 2;
	max-height: 1000px;
	box-shadow: 0 2px 5px #ccc;
}

.beejs-select-input__panel_hide {
	max-height: 0;
}

.beejs-select-input__panel_without-text {
	top: 40px;
}

.beejs-textarea-input {
	position: relative;
	padding: 5px;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.beejs-textarea-input__input {
	display: block;
	width: 100%;
	height: 90px;
	min-height: 90px;
	padding: 12px;
	margin: 0;
	background: #fafafa;
	color: #383838;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	line-height: 18px;
	box-sizing: border-box;
	box-shadow: inset 1px 1px 5px #ccc;
	outline: 0;
}

.beejs-textarea-input__label {
	position: initial;
	top: 16px;
	left: 18px;
	color: #383838;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	line-height: 18px;
	cursor: text;
	will-change: top,font-size,line-height;
}

.beejs-text-input {
	position: relative;
	padding: 5px;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.beejs-text-input__input {
	display: block;
	width: 100%;
	height: 30px;
	padding: 12px;
	margin: 0;
	background: #fafafa;
	color: #383838;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	line-height: 18px;
	box-sizing: border-box;
	box-shadow: inset 1px 1px 5px #ccc;
	outline: 0;
}

.beejs-text-input__label {
	position: initial;
	top: 16px;
	left: 18px;
	color: #383838;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	line-height: 18px;
	cursor: text;
	will-change: top,font-size,line-height;
}