.form {
	background-color: var(--white);
	border-style: solid;
	border-width: 1px 1px 2px 1px;
	border-color: #e5e5e5 #e5e5e5 #C9CCDB #e5e5e5;
}

.form.hide-border {
	border: none;
}

.form.listing-form {
	border-width: 1px 0px 2px 0px;
}

.form .content {
	padding: 0px;
}

.form #actionArea, .form .action-area {
	background-color: whitesmoke;
	box-shadow: 0 0.1em 0.3em rgba(0,0,0,0.4);
	border-radius: 0.3em;
	margin: 0.5em;
	padding: 1em;
	border: 1px solid var(--primary-border-color);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.mobile-body-container .form #actionArea, .mobile-body-container .form .action-area {
	background-color: inherit;
	border: none;
	box-shadow: none;
}

.form #actionArea.left, .form .action-area.left {
	text-align: left;
}

.form #actionArea.right, .form .action-area.right {
	text-align: right;
}

.form #actionArea input[type=submit],
.form .action-area input[type=submit] {
	background-color: var(--highlighted-color);
	color: var(--black);
}

.form #actionArea input[type=submit]:hover,
.form .action-area input[type=submit]:hover {
	background-color: #ffb300;
}

.form #actionArea input[type=submit]:active,
.form .action-area input[type=submit]:active {
	background-color: #ffa000;
}

.m-input-layout.inline {
	display: inline-block;
	vertical-align: middle;
}

.m-input-layout.inline-flex {
	display: inline-flex;
	vertical-align: middle;
}

.m-input-layout {
	position: relative;
	vertical-align: top;
}

.m-input-layout.labeled {
	margin: 16px 0 0 0;
}

.m-input-layout > .input-prefix {
	display: inline-block;
	color: rgba(0, 0, 0, .38);
	visibility: hidden;
}

.m-input-layout > .input-prefix.has-value,
.m-input-layout > .input-prefix.is-editing {
	visibility: initial;
}

.m-input-layout > .input-prefix + input[type=text],
.m-input-layout > .input-prefix + input[type=password] {
	display: inline-block;
	width: auto; /* needed since using 100% below was causing prefix divs to always be pushed to next line... */
}

.m-input-layout > input[type=text],
.m-input-layout > input[type=password],
.m-input-layout > textarea {
	border-style: none none solid none;
	border-width: 1px;
	border-color: var(--primary-color);
	padding: 6px 0 6px 0;
	font-size: 16px;
	width: 100%;
	max-width: 100%;
	min-width: 10em;
	display: block;
	background: none;
}

/* Prevents double red underline */
.m-input-layout:has(.errorMsg) > input[type="password"],
.m-input-layout:has(.errorMsg) > input[type="text"],
.m-input-layout:has(.errorMsg) > textarea {
	border-color: transparent;
}

.m-input-layout > input[type=text].std-input.inline,
.m-input-layout > input[type=password].std-input.inline {
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-top: 1px;
	padding: 4px 8px;
	color: var(--input-text-color);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out 0.15s,
	box-shadow ease-in-out 0.15s;
	-moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	-ms-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.m-input-layout > .ef-password-field {
	width: 92% !important;
}

.m-input-layout > .ef-password-field {
	width: 92% !important;
}

.m-input-layout > .ef-password-field.std-input.inline {
	width: 100% !important;
}

.m-input-layout > input[type=text].ef_ro,
.m-input-layout > input[type=password].ef_ro,
.m-input-layout > textarea.ef_ro,
.m-input-layout > input[type=text]:disabled,
.m-input-layout > input[type=password]:disabled,
.m-input-layout > textarea:disabled {
	background: none;
	border-color: rgba(0, 0, 0, .42);
	border-style: none none dotted none;
	pointer-events: none;
	color: rgba(0, 0, 0, .38);
	cursor: not-allowed;
}

.m-input-layout > input[type=text].ef_ro:not(.has-value) ~ label,
.m-input-layout > input[type=password].ef_ro:not(.has-value) ~ label,
.m-input-layout > textarea.ef_ro:not(.has-value) ~ label,
.m-input-layout > input[type=text]:disabled:not(.has-value) ~ label,
.m-input-layout > input[type=password]:disabled:not(.has-value) ~ label,
.m-input-layout > textarea:disabled:not(.has-value) ~ label {
	color: rgba(0, 0, 0, .38);
}

.m-input-layout > input[type=text].ef_ro ~ .m-input-bar,
.m-input-layout > input[type=password].ef_ro ~ .m-input-bar,
.m-input-layout > textarea.ef_ro ~ .m-input-bar,
.m-input-layout > input[type=text]:disabled ~ .m-input-bar,
.m-input-layout > input[type=password]:disabled ~ .m-input-bar,
.m-input-layout > textarea:disabled ~ .m-input-bar {
	display: none;
}

.m-input-layout > input[type=text]:focus,
.m-input-layout > input[type=password]:focus,
.m-input-layout > textarea:focus {
	outline: none;
}

.m-input-layout .m-input-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: var(--primary-color);
}

.m-input-layout .label-layout .m-input-err,
.m-input-layout .linkedCheckRadio .m-input-err,
.m-input-layout > input[type=text] ~ .m-input-err,
.m-input-layout > input[type=password] ~ .m-input-err,
.m-input-layout > textarea ~ .m-input-err,
.m-input-layout select ~ .m-input-err {
	display: inline-block;
}

.m-input-layout > input[type=text] ~ .m-input-err ~ .m-input-highlight,
.m-input-layout > input[type=password] ~ .m-input-err ~ .m-input-highlight,
.m-input-layout > textarea ~ .m-input-err ~ .m-input-highlight {
	background-color: var(--error-color);
	left: 0;
	right: 0;
	top: 30px;
}

.m-input-layout > textarea ~ .m-input-err ~ .m-input-highlight {
	top: auto;
	bottom: 18px;
}

.m-input-layout > input[type=text] ~ .m-input-err ~ .m-input-bar,
.m-input-layout > input[type=password] ~ .m-input-err ~ .m-input-bar,
.m-input-layout > textarea ~ .m-input-err ~ .m-input-bar {
	top: 30px;
	display: none;
}

.m-input-layout .m-input-err {
	color: var(--error-color);
	font-size: 12px;
	font-weight: bold;
	left: 0;
	display: none;
}

.m-input-layout .help {
	pointer-events: auto;
}

.m-input-layout > input[type=text] ~ .help,
.m-input-layout > input[type=password] ~ .help,
.m-input-layout > textarea ~ .help {
	position: absolute;
	right: 0;
	bottom: 10px;
	pointer-events: auto;
}

.m-input-layout .label-layout {
	padding: 4px 0px 6px 0;
}

.m-input-layout .label-layout label:first-child,
.m-input-layout .m-select-2 ~ label {
	top: -14px;
	font-size: 12px;
	color: var(--form-group-title);
}

.m-input-layout label {
	position: absolute;
	top: 6px;
	left: 0;
	font-size: 16px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	font-weight: normal;
	white-space: nowrap;
	cursor: text;
}

.m-input-layout .floating-label {
	color: rgba(0, 0, 0, .54);
}

.m-input-layout.read-only-copyable {
	cursor: pointer;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

.m-input-layout.read-only-copyable:hover {
	opacity: 0.9;
	background-color: rgba(0,0,0,0.1);
	border-radius: 0.2em;
	padding: 0.3em;
}

.m-input-layout > label {
	max-width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
}

.m-input-layout > input[type=text]:focus ~ label,
.m-input-layout > input[type=password]:focus ~ label,
.m-input-layout > textarea:focus ~ label,
.m-input-layout > input[type=text].has-value ~ label,
.m-input-layout > input[type=password].has-value ~ label,
.m-input-layout > textarea.has-value ~ label {
	top: -14px;
	font-size: 12px;
	color: var(--form-group-title);
}

.m-input-layout > input[type=text]:focus ~ .m-input-err ~ label,
.m-input-layout > input[type=password]:focus ~ .m-input-err ~ label,
.m-input-layout > textarea:focus ~ .m-input-err ~ label,
.m-input-layout > input[type=text].has-value ~ .m-input-err ~ label,
.m-input-layout > input[type=password].has-value ~ .m-input-err ~ label,
.m-input-layout > textarea.has-value ~ .m-input-err ~ label {
	color: var(--error-color);
}

.m-select-2 .m-input-highlight,
.m-select-container .m-input-highlight,
.m-input-layout .m-input-highlight {
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 0px;
	height: 2px;
	background-color: var(--form-group-title);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.m-input-layout > input[type=text]:focus ~ .m-input-highlight,
.m-input-layout > input[type=password]:focus ~ .m-input-highlight,
.m-input-layout > textarea:focus ~ .m-input-highlight {
	left: 0;
	right: 0;
}

.m-input-layout > input[type=text]:disabled ~ .m-input-highlight,
.m-input-layout > input[type=password]:disabled ~ .m-input-highlight,
.m-input-layout > textarea:disabled ~ .m-input-highlight,
.m-input-layout > input[type=text].ef_ro ~ .m-input-highlight,
.m-input-layout > input[type=password].ef_ro ~ .m-input-highlight,
.m-input-layout > textarea.ef_ro ~ .m-input-highlight {
	left: 50%;
	right: 50%;
}

.form .form-group {
	padding: 16px;
}

.form.condensed .form-group {
	padding: 8px;
}

.form.condensed .form-group .title {
	margin-bottom: 20px;
}

.form .form-group .form-group-title {
	display: flex;
	justify-content: space-between;
}

.form .form-group .form-group-title-expandable {
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	padding: 0.5em;
	border-radius: 0.1em;
}

.form .form-group .form-group-title-expandable:hover {
	background-color: lightgrey;
}

.form .form-group .expand-collapse-icon {
	font-weight: bold;
	cursor: pointer;
}

.form .form-group .form-group-help-icon {
	margin-left: 0.2em;
}

.form .form-group:not(:last-child) {
	margin: 0;
}

.form-group.inline .m-input-layout {
	display: inline-block;
	margin: 24px 16px 24px 0;
}

.form .form-group .title {
	font-size: 18px;
	color: var(--form-group-title);
	margin-bottom: 36px;
	font-weight: bold;
	position: relative;
	margin-top: 0;
	display: flex;
	font-family: Lato-Bold, Helvetica, sans-serif;
}

.form .form-group .title .title-icon {
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 0.25em;
}

.form .form-group .title .title-span {
	margin-top: auto;
	margin-bottom: auto;
}

.form .form-group .title .action {
	font-size: 14px;
	text-decoration: none;
	font-weight: bold;
	position: absolute;
	right: 0;
}

.form .form-group .title::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	background-color: #ccc;
	height: 1px;
	bottom: -12px;
}

.form .form-title {
	font-size: 18px;
	color: var(--form-group-title);
	margin-top: 16px;
	font-weight: bold;
	position: relative;
	text-align: center;
	padding: 0 16px;
}

.form .form-title .fancy-title {
	position: relative;
	font-size: 26px;
	display: inline-block;
}

.form .form-title .fancy-title .subject {
	font-size: 0.65em;
	text-align: right;
	font-style: italic;
}

.m-input-layout .m-input-file {
	position: relative;
	height: 3rem;
}

.m-input-layout .m-input-file label {
	position: absolute;
	top: -16px;
	font-size: 12px;
	color: var(--form-group-title);
	left: 0;
}

.m-input-layout .m-input-file .btn {
	float: left;
	height: 28px;
	line-height: 26px;
	background: var(--form-group-title);
	color: var(--white);
	padding: 0 32px;
	border-radius: 2px;
	margin-right: 12px;
	margin-top: 6px;
}

.m-input-layout .m-input-file input[type=file] {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	cursor: pointer;
	width: 100%;
	opacity: 0;
}

.m-input-layout .m-input-file-path {
	margin-left: 12px;
	overflow: hidden;
}

.m-input-layout .m-input-file-path input[type=text] {
	border-style: none none solid none;
	border-width: 1px;
	border-color: var(--alternate-for-shadow-and-borders);
	padding: 6px 0 6px 0;
	font-size: 16px;
	width: 100%;
	display: block;
}

.m-input-layout .m-input-file-photo {
	float: left;
}

.m-input-layout .m-input-file-photo img {
	height: 36px;
	margin-right: 12px;
}

.m-radio, .m-checkbox {
	position: relative;
}

.m-checkbox input[type=checkbox],
.m-radio input[type=radio] {
	position: absolute;
	margin-top: 0;
	opacity: 0;
}

.m-checkbox input[type=checkbox] + label,
.m-radio input[type=radio] + label,
.m-switch input[type=checkbox] + label {
	color: #616161;
	position: relative;
	top: 0;
	left: 0;
	pointer-events: auto;
	cursor: pointer;
	padding-left: 28px;
	margin-right: 4px;
	height: 25px;
	line-height: 25px;
	display: inline-block;
	/* Bugify 445. Checkbox oddity in chrome. This fixes the issue when double clicking
	on the select all box on a listing page. Now wrapping text in a span that is selectable.*/
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: inherit;
	z-index: 2;
}

.m-checkbox .m-checkbox-label,
.m-radio .m-radio-label {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.m-radio input[type=radio] + label::after,
.m-radio input[type=radio] + label::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	border: 2px solid #5a5a5a;
	margin: 4px;
	box-sizing: inherit;
}

.m-radio input[type=radio]:checked + label::after,
.m-radio input[type=radio]:checked + label::before {
	border: 2px solid var(--form-group-title);
}

.m-radio input[type=radio]:not(:checked) + label::after {
	visibility: hidden;
	opacity: 0;
}

.m-radio input[type=radio]:checked + label::after {
	background-color: var(--form-group-title);
	left: 4px;
	top: 4px;
	width: 8px;
	height: 8px;
}

.m-radio input[type=radio]:disabled:not(:checked) + label::before,
.m-radio input[type=radio]:disabled:checked + label::before {
	opacity: .26;
	border-color: var(--black);
}

.m-radio input[type=radio]:disabled:checked + label::after {
	background-color: var(--black);
	border-color: var(--black);
	opacity: .26;
}

.m-checkbox input[type=checkbox] + label::after,
.m-checkbox input[type=checkbox] + label::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 2px;
	width: 16px;
	height: 16px;
	border: 2px solid #5a5a5a;
	margin: 4px;
	box-sizing: inherit;
}

.m-checkbox input[type=checkbox]:checked + label::before {
	border-color: var(--form-group-title);
	background-color: var(--form-group-title);
}

.m-checkbox input[type=checkbox]:checked + label::after {
	width: 6px;
	height: 12px;
	top: 1px;
	border-color: var(--white);
	border-radius: 0;
	border-top: none;
	border-left: none;
	border-right: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	-o-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

.m-checkbox input[type=checkbox]:disabled + label::after,
.m-checkbox input[type=checkbox]:disabled + label::before {
}

.m-checkbox input[type=checkbox]:not(:checked):disabled + label::after,
.m-checkbox input[type=checkbox]:not(:checked):disabled + label::before {
	opacity: 0.26;
}

.m-checkbox input[type=checkbox]:checked:disabled + label::before {
	border-color: var(--black);
	background-color: var(--black);
	opacity: 0.26;
}

.m-checkbox input[type=checkbox]:disabled + label {
	color: rgba(0, 0, 0, .38);
}

.m-radio .ripple,
.m-checkbox .ripple {
	background: rgba(0, 0, 0, 0.2);
	height: 32px;
	width: 32px;
	display: inline-block;
	position: absolute;
	top: -4px;
	left: -4px;
	border-radius: 50%;
	z-index: 1;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	opacity: 1;
}

.m-radio.focused input[type=radio] ~ .ripple,
.m-checkbox.focused input[type=checkbox] ~ .ripple {
	-webkit-animation: focus 0.4s forwards;
	-o-animation: focus 0.4s forwards;
	animation: focus 0.4s forwards;
}

.m-radio .ripple.animated,
.m-checkbox .ripple.animated {
	-webkit-animation: ripple 0.4s;
	-o-animation: ripple 0.4s;
	animation: ripple 0.4s;
}

@-webkit-keyframes focus {
	to {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}

@-o-keyframes focus {
	to {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}

@-moz-keyframes focus {
	to {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes focus {
	to {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes ripple {
	to {
		-webkit-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

@-o-keyframes ripple {
	to {
		-webkit-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

@-moz-keyframes ripple {
	to {
		-webkit-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

@keyframes ripple {
	to {
		-webkit-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

.m-switch {
}

.m-switch input[type=checkbox] {
	visibility: hidden;
	opacity: 0;
	position: absolute;
}

.m-switch input[type=checkbox] + label {
	padding-left: 48px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	pointer-events: auto;
	height: initial;
	line-height: initial;
}

.m-switch .track {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 28px;
	height: 12px;
	background-color: #ccc;
	border-radius: 6px;
}

.m-switch .thumb {
	position: absolute;
	left: -8px;
	width: 18px;
	height: 18px;
	background-color: var(--white);
	box-shadow: 0 2px 4px #616161;
	top: -1px;
	bottom: 0;
	margin: auto 0;
	border-radius: 50%;
	z-index: 1;
	-webkit-transition: left ease 0.08s;
	-moz-transition: left ease 0.08s;
	-ms-transition: left ease 0.08s;
	-o-transition: left ease 0.08s;
	transition: left ease 0.08s;
}

.m-switch input[type=checkbox]:checked ~ .thumb {
	background-color: var(--form-group-title);
	left: 16px;
}

.m-switch input[type=checkbox]:checked ~ .track {
	background-color: var(--form-group-title);
	opacity: 0.5;
}

.m-switch input[type=checkbox]:disabled ~ .thumb {
	background-color: var(--primary-border-color);
	opacity: 1;
}

.m-switch input[type=checkbox]:disabled ~ .track {
	background-color: #aaaaaa;
	opacity: 0.3;
}

.m-select-container .m-select-wrapper,
.m-input-layout .m-select-wrapper {
	display: block;
	position: relative;
}

.m-select-container .m-select-wrapper select,
.m-input-layout .m-select-wrapper select {
	display: none;
}

.m-select-container .m-select-wrapper ~ label,
.m-select-container .m-select-wrapper label,
.m-input-layout .m-select-wrapper ~ label,
.m-input-layout .m-select-wrapper label {
	top: -14px;
	font-size: 12px;
	color: var(--form-group-title);
}

.m-select-container .m-select-wrapper .arrow,
.m-input-layout .m-select-wrapper .arrow {
	position: absolute;
	top: 45%;
	right: 8px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid;
	pointer-events: none;
}

.m-select-container .m-select,
.m-input-layout .m-select {
	border-style: none none solid none;
	border-width: 1px;
	border-color: var(--alternate-for-shadow-and-borders);
	padding: 6px 0 6px 2px;
	background: none;
	font-size: 16px;
	cursor: pointer;
	width: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.m-select-container select:not(:disabled) ~ .m-select:focus ~ .m-input-highlight,
.m-select-2 select:not(:disabled):focus ~ .m-input-highlight,
.m-input-layout select:not(:disabled) ~ .m-select:focus ~ .m-input-highlight {
	left: 0;
	right: 0;
}

.m-select-container select.ef_ro ~ .m-select:focus ~ .m-input-highlight,
.m-input-layout select.ef_ro ~ .m-select:focus ~ .m-input-highlight {
	left: 50%;
	right: 50%;
}

.m-select-container select.ef_ro ~ .m-select,
.m-select-container select:disabled ~ .m-select,
.m-input-layout .m-select-2 select.ef_ro,
.m-input-layout .m-select-2 select:disabled,
.m-input-layout select.ef_ro ~ .m-select,
.m-input-layout select:disabled ~ .m-select {
	background: none;
	border-style: none none dotted none;
	border-color: rgba(0, 0, 0, .42);
	pointer-events: none;
	color: rgba(0, 0, 0, .38);
}

.m-select-container select.ef_ro ~ .arrow,
.m-select-container select:disabled ~ .arrow,
.m-input-layout select.ef_ro ~ .arrow,
.m-input-layout select:disabled ~ .arrow {
	border-top: 5px solid rgba(0, 0, 0, .38);
}

.m-select-container .m-select.active ~ .m-select-options,
.m-input-layout .m-select.active ~ .m-select-options {
	display: block;
	max-height: 650px;
	overflow-y: auto;
}

.m-select-container .m-select ~ .m-select-options,
.m-input-layout .m-select ~ .m-select-options {
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	z-index: 10;
	background: var(--white);
	right: 0;
	left: 0;
	box-shadow: 0 0 4px var(--alternate-for-shadow-and-borders);
}

.m-select-container .m-select ~ .m-select-options li,
.m-input-layout .m-select ~ .m-select-options li {
	padding: 6px 10px 6px 5px;
	min-height: 32px;
	cursor: pointer;
	color: var(--form-group-title);
	background: #FAFAFA;
	text-align: left;
	text-overflow: ellipsis;
	white-space: pre;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.m-select-container .m-select ~ .m-select-options li.disabled,
.m-input-layout .m-select ~ .m-select-options li.disabled {
	color: var(--alternate-for-shadow-and-borders);
}

.m-select-container .m-select ~ .m-select-options li.selected,
.m-input-layout .m-select ~ .m-select-options li.selected {
	background-color: var(--active-form-text-color);
}

.detail-item {
	position: relative;
	display: block;
}

.detail-item.editable {
	padding-right: 28px;
}

.detail-item .prefix {
	position: absolute;
	bottom: 0;
	margin: auto 0;
	width: 24px;
	height: 28px;
}

.detail-item .prefix img {
	vertical-align: middle;
}

.detail-item.editable .icon {
	display: block;
	position: absolute;
	right: 0px;
	top: 0;
	cursor: pointer;
}

.detail-item .prefix ~ .value,
.detail-item .prefix ~ .label {
	margin-left: 30px;
}

.detail-item .content {
	display: inline-block;
}

.detail-item .value {
	color: var(--black);
	margin-top: 4px;
	font-size: 14px;
	margin-left: 12px;
}

.detail-item .prefix ~ .value {
	margin-left: 42px;
}

.detail-item .label {
	color: var(--form-group-title);
	font-size: 12px;
}

.detail-item .icon {
	display: none;
}

.m-radio-2,
.m-checkbox-2 {
	display: inline-block;
	padding: 11px;
	position: relative;
	cursor: pointer;
	box-sizing: content-box;
	min-width: 18px;
	min-height: 18px;
}

.m-radio-2.condensed,
.m-checkbox-2.condensed {
	padding: 4px;
}

.m-radio-2.hover::before,
.m-radio-2.active:before,
.m-radio-2:hover::before,
.m-radio-2:active::before,
.m-checkbox-2.hover::before,
.m-checkbox-2.active::before,
.m-checkbox-2:hover::before,
.m-checkbox-2:active::before {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.m-radio-2::before,
.m-checkbox-2::before {
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: rgba(0, 0, 0, 0.1);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: transform 0.2s ease, background 0.2s ease;
	-moz-transition: transform 0.2s ease, background 0.2s ease;
	-ms-transition: transform 0.2s ease, background 0.2s ease;
	-o-transition: transform 0.2s ease, background 0.2s ease;
	transition: transform 0.2s ease, background 0.2s ease;
}

.m-radio-2.condensed::before,
.m-checkbox-2.condensed::before {
	left: -7px;
	top: -7px;
}

.m-radio-2.active::before,
.m-radio-2:active::before,
.m-checkbox-2.active::before,
.m-checkbox-2:active::before {
	background: rgba(0, 0, 0, 0.2) !important;
}

.m-radio-2.checked.active::before,
.m-radio-2.checked:active::before,
.m-checkbox-2.checked.active::before,
.m-checkbox-2.checked:active::before {
	background: rgba(33, 150, 243, 0.2) !important;
}

.m-radio-2.checked::before,
.m-checkbox-2.checked::before {
	background: rgba(33, 150, 243, 0.1);
}

.m-radio-background {
	position: absolute;
	left: 11px;
	right: auto;
	top: 11px;
	border: 2px solid var(--breadcrumbs-text-color);
	border-radius: 50%;
	width: 18px;
	height: 18px;
}

.m-checkbox-background {
	position: absolute;
	left: 11px;
	right: auto;
	top: 11px;
	border: 2px solid var(--breadcrumbs-text-color);
	border-radius: 2px;
	width: 18px;
	height: 18px;
	box-sizing: border-box;
}

.m-radio-2.condensed .m-radio-background,
.m-checkbox-2.condensed .m-checkbox-background {
	left: 4px;
	top: 4px;
}

.m-radio-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	width: inherit;
	height: inherit;
	border: 2px solid transparent;
	box-sizing: inherit;
}

.m-checkbox-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 2px;
	width: inherit;
	height: inherit;
	border: 2px solid transparent;
	box-sizing: inherit;
}

.m-radio-2 input[type=radio]:not(:checked):disabled ~ .m-radio-background,
.m-checkbox-2 input[type=checkbox]:not(:checked):disabled ~ .m-checkbox-background {
	opacity: 0.26;
}

.m-checkbox-2 input[type=checkbox]:checked:disabled ~ .m-checkbox-background {
	border-color: var(--black);
	background-color: var(--black);
	opacity: 0.26;
}

.m-radio-2 input[type=radio]:checked ~ .m-radio-background {
	border-color: var(--form-group-title);
}

.m-radio-2 input[type=radio]:checked:disabled ~ .m-radio-background {
	border-color: var(--black);
	opacity: 0.26;
}

.m-radio-2 input[type=radio]:checked:disabled ~ .m-radio-background::after {
	background-color: var(--black);
}

.m-radio-2 input[type=radio]:disabled + label,
.m-checkbox-2 input[type=checkbox]:disabled + label {
	color: rgba(0, 0, 0, .38);
}

.m-checkbox-2 input[type=checkbox]:checked ~ .m-checkbox-background {
	border-color: var(--form-group-title);
	background-color: var(--form-group-title);
}

.m-checkbox-2 input[type=checkbox]:checked ~ .m-checkbox-background::after {
	width: 6px;
	height: 12px;
	left: -1px;
	border-color: var(--white);
	border-radius: 0;
	border-top: none;
	border-left: none;
	border-right: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	-o-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

.m-radio-2 input[type=radio]:checked ~ .m-radio-background {
	background-color: var(--white);
}

.m-radio-2 input[type=radio]:checked ~ .m-radio-background::after {
	width: 10px;
	height: 10px;
	background-color: var(--form-group-title);
	top: 2px;
	left: 2px;
}

.m-radio-2 input[type=radio],
.m-checkbox-2 input[type=checkbox] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	opacity: 0;
	cursor: inherit;
	z-index: 1000;
}

.m-radio-2 input[type=radio] + label,
.m-checkbox-2 input[type=checkbox] + label {
	padding-left: 28px;
	cursor: pointer;
	pointer-events: auto;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: inherit;
	position: relative;
	top: 0;
	z-index: 1001;
}

.m-select-2 {
	position: relative;
}

.m-select-2 select {
	padding: 2px 36px 2px 0px;
	font-family: Roboto, sans-serif;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-size: 1rem;
	line-height: 1.75rem;
	font-weight: 400;
	letter-spacing: .009375em;
	text-decoration: inherit;
	text-transform: inherit;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 35px;
	border: none;
	outline: none;
	background-color: transparent;
	color: inherit;
	white-space: nowrap;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-bottom: 1px solid var(--primary-color);
}

.m-select-2 + label {
	color: var(--form-group-title);
	font-size: small;
	top: -16px;
}

.m-select-2 select.ef_ro,
.m-select-2 select:disabled {
	border-bottom: 1px dotted;
	border-color: rgba(0, 0, 0, .42);
	color: rgba(0,0,0,0.42);
	pointer-events: none;
}

.m-select-2 select.ef_ro + .md-select--icon path,
.m-select-2 select:disabled + .md-select--icon path {
	fill: rgba(0,0,0,0.42);
}

.m-select-2 select:active,
.m-select-2 select:focus {

}

.m-select-2 select::-ms-expand {
	display: none;
}

.md-select--icon {
	position: absolute;
	right: 6px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 24px;
	height: 24px;
	pointer-events: none;
}


.file-section-img {

}

.file-section-div {
	padding: 1em;
	display: flex;
	flex-direction: column;
	border: solid 2px var(--primary-border-color);
	border-radius: 0.2em;
}

.file-section-div-title {
	font-weight: bold;
}

.file-section-div-buttons {
	display: flex;
	justify-content: space-between;
}

.file-section-div-input {
	margin-top: 0.5em;
}


.preset-container-div {
	padding: 0.5em;
}

.preset-title-label {
	font-size: 14px;
	cursor: pointer;
	color: var(--form-group-title);
	text-decoration: underline;
}

.preset-title-label:hover {
	font-weight: bold;
}

.preset-btn-divs {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.preset-btn-div {
	flex: 40%;
	padding: 0.2em;
}

.load-preset-btn {
	height: 42px;
	width: 100%;
}

.preset-body-div {
	display: none;
}