

.Form-Theme {
	font-family: "Futura PT W01 Book", 'SansProRegular', sans-serif;
	font-size: 16px;
	position: relative;
}

.Form-Theme input,
.Form-Theme textarea {
	background-color: white;
	color: #333333;
	border: 1px solid #d9d9d9;
	padding: 10px;
	border-radius: 5px;
	font-size: 16px;
	font-family: "Futura PT W01 Book", 'SansProRegular', sans-serif;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.Form-Theme input:focus,
.Form-Theme textarea:focus {
	outline: none;
	border-color: #2a9dcc;
	-webkit-box-shadow: 0 0 0 1px #2a9dcc;
	box-shadow: 0 0 0 1px #2a9dcc;
}

.Form-Theme input:disabled,
.Form-Theme textarea:disabled {
	opacity: 0.4;
}

.custom-select.disabled {
	opacity: 0.4;
}

.Form-Theme .checkbox label {
	font-weight: normal;
	font-family: "Futura PT W01 Medium", "SansProSemiBold", sans-serif;
	line-height: 16px;
	font-size: 14px;
	margin-top: -2px;
}

.Form-Theme .checkbox {
	padding-left: 20px;
}

.Form-Theme .checkbox label {
	display: inline-block;
	position: relative;
	padding-left: 5px;
}

.Form-Theme .checkbox label::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 17px;
	height: 17px;
	left: 0;
	margin-left: -20px;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background-color: #fff;
	-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	-o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.Form-Theme .checkbox label::after {
	display: inline-block;
	position: absolute;
	width: 16px;
	height: 16px;
	left: 0;
	top: 0;
	margin-left: -20px;
	padding-left: 3px;
	padding-top: 1px;
	font-size: 11px;
	color: #555555;
}

.Form-Theme .checkbox input[type="checkbox"] {
	opacity: 0;
}

.Form-Theme .checkbox input[type="checkbox"]:focus+label::before {
	/*outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;*/
	outline-offset: -2px;
}

.Form-Theme .checkbox input[type="checkbox"]:checked+label::after {
	font-family: 'Glyphicons Halflings';
	content: "\e013";
}

.Form-Theme .checkbox input[type="checkbox"]:disabled+label {
	opacity: 0.65;
}

.Form-Theme .checkbox input[type="checkbox"]:disabled+label::before {
	background-color: #eeeeee;
	cursor: not-allowed;
}

.Form-Theme .checkbox.checkbox-circle label::before {
	border-radius: 50%;
}

.Form-Theme .checkbox.checkbox-inline {
	margin-top: 0;
}

.Form-Theme .checkbox-primary input[type="checkbox"]:checked+label::before {
	background-color: #428bca;
	border-color: #428bca;
}

.Form-Theme .checkbox-primary input[type="checkbox"]:checked+label::after {
	color: #fff;
}

.Form-Theme .checkbox-danger input[type="checkbox"]:checked+label::before {
	background-color: #d9534f;
	border-color: #d9534f;
}

.Form-Theme .checkbox-danger input[type="checkbox"]:checked+label::after {
	color: #fff;
}

.Form-Theme .checkbox-info input[type="checkbox"]:checked+label::before {
	background-color: #5bc0de;
	border-color: #5bc0de;
}

.Form-Theme .checkbox-info input[type="checkbox"]:checked+label::after {
	color: #fff;
}

.Form-Theme .checkbox-warning input[type="checkbox"]:checked+label::before {
	background-color: #f0ad4e;
	border-color: #f0ad4e;
}

.Form-Theme .checkbox-warning input[type="checkbox"]:checked+label::after {
	color: #fff;
}

.Form-Theme .checkbox-success input[type="checkbox"]:checked+label::before {
	background-color: #5cb85c;
	border-color: #5cb85c;
}

.Form-Theme .checkbox-success input[type="checkbox"]:checked+label::after {
	color: #fff;
}

.Form-Theme .radio {
	padding-left: 20px;
}

.Form-Theme .radio label {
	display: inline-block;
	position: relative;
	padding-left: 5px;
}

.Form-Theme .radio label::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 17px;
	height: 17px;
	left: 0;
	margin-left: -20px;
	border: 1px solid #cccccc;
	border-radius: 50%;
	background-color: #fff;
	-webkit-transition: border 0.15s ease-in-out;
	-o-transition: border 0.15s ease-in-out;
	transition: border 0.15s ease-in-out;
}

.Form-Theme .radio label::after {
	display: inline-block;
	position: absolute;
	content: " ";
	width: 11px;
	height: 11px;
	left: 3px;
	top: 3px;
	margin-left: -20px;
	border-radius: 50%;
	background-color: #555555;
	-webkit-transform: scale(0, 0);
	-ms-transform: scale(0, 0);
	-o-transform: scale(0, 0);
	transform: scale(0, 0);
	-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.Form-Theme .radio input[type="radio"] {
	opacity: 0;
}

.Form-Theme .radio input[type="radio"]:focus+label::before {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.Form-Theme .radio input[type="radio"]:checked+label::after {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
}

.Form-Theme .radio input[type="radio"]:disabled+label {
	opacity: 0.65;
}

.Form-Theme .radio input[type="radio"]:disabled+label::before {
	cursor: not-allowed;
}

.Form-Theme .radio.radio-inline {
	margin-top: 0;
}

.Form-Theme .radio-primary input[type="radio"]+label::after {
	background-color: #428bca;
}

.Form-Theme .radio-primary input[type="radio"]:checked+label::before {
	border-color: #428bca;
}

.Form-Theme .radio-primary input[type="radio"]:checked+label::after {
	background-color: #428bca;
}

.Form-Theme .radio-danger input[type="radio"]+label::after {
	background-color: #d9534f;
}

.Form-Theme .radio-danger input[type="radio"]:checked+label::before {
	border-color: #d9534f;
}

.Form-Theme .radio-danger input[type="radio"]:checked+label::after {
	background-color: #d9534f;
}

.Form-Theme .radio-info input[type="radio"]+label::after {
	background-color: #5bc0de;
}

.Form-Theme .radio-info input[type="radio"]:checked+label::before {
	border-color: #5bc0de;
}

.Form-Theme .radio-info input[type="radio"]:checked+label::after {
	background-color: #5bc0de;
}

.Form-Theme .radio-warning input[type="radio"]+label::after {
	background-color: #f0ad4e;
}

.Form-Theme .radio-warning input[type="radio"]:checked+label::before {
	border-color: #f0ad4e;
}

.Form-Theme .radio-warning input[type="radio"]:checked+label::after {
	background-color: #f0ad4e;
}

.Form-Theme .radio-success input[type="radio"]+label::after {
	background-color: #5cb85c;
}

.Form-Theme .radio-success input[type="radio"]:checked+label::before {
	border-color: #5cb85c;
}

.Form-Theme .radio-success input[type="radio"]:checked+label::after {
	background-color: #5cb85c;
}

.Form-Theme .custom-select {
	position: relative;
	height: auto;
	border: 1px solid #d9d9d9;
    padding: 0px;
    border-radius: 5px;
    background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px
}

.Form-Theme .custom-select label {
	position: absolute;
	top: 3px;
	left: 10px;
	color: #737373;
	font-size: 12px;
	font-family: "Futura PT W01 Light", 'SansProLight', sans-serif;
}

.Form-Theme .custom-select select {
	background-color: transparent;
	color: #333333;
	border: none;
	padding: 10px;
	border-radius: 5px;
	font-size: 16px;
	font-family: "Futura PT W01 Book", 'SansProRegular', sans-serif;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	padding-top: 19px;
    padding-bottom: 6px;
	width: 100%;
	-webkit-appearance: none;
	position: relative;
	z-index: 3;
	padding-right: 35px;
}

.Form-Theme select:focus {
	outline: none;
	border-color: #2a9dcc;
	-webkit-box-shadow: 0 0 0 1px #2a9dcc;
	box-shadow: 0 0 0 1px #2a9dcc;
}

.Form-Theme .custom-select .caret-cont {
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 10px;
	bottom: 10px;
	color: #333333;
	border-left: 1px solid #ccc;
	padding-left: 19px;
	padding-top: 1px;
}

.Form-Theme .custom-select select::-ms-expand {
	display: none;
}

.Form-Theme tr td .fieldNote {
	font-weight: normal;
	font-size:11px;
	color:silver;
}

.Form-Theme .SmallInput {
	width: 110px !important;
	display: inline-block;
}

.Form-Theme .MediumInput {
	width: 200px !important;
	display: inline-block;
}

.Form-Theme .InputUnit {
	display: inline-block;
	height: 38px;
	background: #b2b2b2;
	vertical-align: middle;
	margin-top: -2px;
	margin-left: -4px;
	line-height: 38px;
	padding: 0 10px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	color: #fefefe;
	font-weight: bold;
}

.Form-Theme .form-group-space-after td {
	padding-bottom: 2rem;
}

.Form-Theme-InputLabel {
	position: absolute;
	color: #737373;
    font-size: 12px;
    font-family: "Futura PT W01 Light",'SansProLight',sans-serif;
    padding: 3px 0px 0px 10px;
    pointer-events: none;
    user-select: none;
}

.Form-Theme-InputLabel[data-form="QuestionEditForm"] {
	z-index: 9999;
}

.Form-Theme-InputLabel[data-form="FillQuestionForm"] {
	z-index: 9999;
}

.Form-Theme-InputLabeled {
	padding-top: 17px !important;
	padding-bottom: 3px !important;
}

.Form-Theme-InputLabel.disabled {
	opacity: 0.4;
}