:root {
	--fluentform-primary: #1a7efb;
	--fluentform-secondary: #606266;
	--fluentform-danger: #f56c6c;
	--fluentform-border-color: #dadbdd;
	--fluentform-border-radius: 7px;
	--fluentform-input-select-height: auto;
}

.ff-default .ff_btn_style {
	border: 1px solid transparent;
	border-radius: 7px;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	padding: 8px 20px;
	position: relative;
	text-align: center;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	vertical-align: middle;
	white-space: nowrap;
}

.ff-default .ff_btn_style:focus, .ff-default .ff_btn_style:hover {
	opacity: .8;
	outline: 0;
	text-decoration: none;
}

.ff-default .ff-el-form-control {
	background-clip: padding-box;
	background-image: none;
	border: 1px solid var(--fluentform-border-color);
	border-radius: var(--fluentform-border-radius);
	color: var(--fluentform-secondary);
	font-family: -apple-system, "system-ui", Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
	line-height: 1;
	margin-bottom: 0;
	max-width: 100%;
	padding: 11px 15px;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.ff-default .ff-el-form-control:focus {
	background-color: #fff;
	border-color: var(--fluentform-primary);
	color: var(--fluentform-secondary);
	outline: none;
}

.ff-default .ff-el-form-check label.ff-el-form-check-label {
	cursor: pointer;
	margin-bottom: 7px;
}

.ff-default .ff-el-form-check label.ff-el-form-check-label>span:after, .ff-default .ff-el-form-check label.ff-el-form-check-label>span:before {
	content: none;
}

.ff-default .ff-el-form-check:last-child label.ff-el-form-check-label {
	margin-bottom: 0;
}

select.ff-el-form-control:not([size]):not([multiple]) {
	height: var(--fluentform-input-select-height, auto);
}

@keyframes ff_move {
	0% {
		background-position: 0 0;
	}
	
	to {
		background-position: 50px 50px;
	}
}

.ff-default {
	font-family: inherit;
}

.ff-default .ff-el-input--label label {
	display: inline-block;
	font-weight: 500;
	line-height: inherit;
	margin-bottom: 0;
}