.form_title {
	font-family: Lato;
	font-weight: 700;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0;
	color: var(--text-neutral-primary);
}

.row {
	margin: 1rem 0;
}

.form-group {
  	margin-bottom: 1rem;
}

.control-label {
	display: block;
	margin: 1rem 0 10px 0;

	font-family: Lato;
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	letter-spacing: 0;
	color: var(--text-neutral-primary);
}

.form-control {
	display: block;
	width: 100%;

	margin: 10px 0 1rem 0;
	padding: 10px 12px;
	border: 1px solid var(--border-neutral-inverse-tertiary);
	border-radius: var(--radius-base-4);
	background-color: var(--bg-neutral-primary);
	min-height: 45px;

	font-family: Lato;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0;
	color: var(--text-neutral-secondary);
}

.form-control:focus {
	outline: 2px solid var(--focus);
	outline-offset: 2px;
}

select.form-control {
	appearance: none;
	-webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
	padding-right: 40px;
	background: url("../img/keyboard-arrow-down-icon.svg") no-repeat center right 6px;
	background-size: 30px 30px;
}

textarea.form-control {
	min-height: 148px;
}

.checkbox {
	width: 20px;
	height: 20px;
	margin: 5px 5px 5px 0;
	border: 1px solid var(--border-neutral-inverse-tertiary);
	border-radius: var(--radius-base-4);
	vertical-align: sub;
}

input[type="radio"] {
	width: 18px;
	height: 18px;
	margin: 5px 5px 5px 0;
	border: 1px solid var(--border-neutral-inverse-tertiary);
	border-radius: var(--radius-base-4);
	vertical-align: sub;
}

.checkbox:focus, input[type="radio"]:focus {
	border-radius: var(--radius-base-4);
	outline: 2px solid var(--focus);
	outline-offset: 2px;
}

.form-control[readonly] {
	background-color: var(--bg-neutral-secondary);
}

.sublabel {
	/*margin: -0.5rem 0 0 0;*/
	
	font-family: Lato;
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	letter-spacing: 0;
	color: var(--text-neutral-teritary);
}

label + .sublabel {
	margin-top: -0.5rem;
	margin-bottom: 10px;
}

.sublabel a {
	color: var(--text-neutral-primary);
}

.sublabel a:hover {
	color: var(--text-neutral-teritary);
}

.multifileupload, .onefileupload {
  	width: 100%;
  	color: var(--text-neutral-secondary);
  	padding: 1rem;
  	/*border: 1px solid var(--border-neutral-inverse-tertiary);*/
	border-radius: var(--radius-base-4);
	background-color: var(--bg-neutral-secondary);
}

.multifileupload::file-selector-button, .onefileupload::file-selector-button {
	margin-right: 12px;
	padding: 12px 16px 10px 16px;
	border-radius: var(--radius-base-8);
	/*border: none;
	background: var(--bg-neutral-inverse-primary);
    color: var(--text-neutral-inverse-primary);*/
	border: 1px solid var(--border-neutral-inverse-tertiary);
	background: var(--bg-neutral-primary);
    color: var(--text-neutral-secondary);
	cursor: pointer;
	font-family: Lato;
	font-weight: 700;
}

.multifileupload::file-selector-button:hover, .onefileupload::file-selector-button:hover {
  	background: var(--bg-neutral-inverse-primary);
    color: var(--text-neutral-inverse-primary);
}

.multifileupload:focus {
	border-radius: var(--radius-base-4);
	outline: 2px solid var(--focus);
	outline-offset: 2px;
}

.btn {
	font-family: Lato;
}

.btn:not(.btn-tertiary) {
	border: none;
}

.progress {
	height: 12px;
	margin-bottom: 12px;
	overflow: hidden;
	background-color: var(--bg-neutral-tertiary);
	border-radius: var(--radius-base-12);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.progress-bar-success {
	background-color: var(--bg-neutral-inverse-tertiary);
  	border-radius: 12px;
}

.panel {
	padding: 0.7rem 1rem 0.1rem 1rem;
  	/*border: 1px solid var(--border-neutral-inverse-tertiary);*/
	border-radius: var(--radius-base-4);
	background-color: var(--bg-neutral-secondary);
	margin-bottom: 1rem;
}

.panel-default > .panel-heading {
  	background-color: none;
  	border-color: none;
	font-weight: 700;
	color: var(--text-neutral-secondary);
}

.alert-danger, .has-error, .has-error .control-label, .has-error .sublabel{
	color: var(--text-error);
}

.alert-danger, .alert-warning {
	margin-top: -0.5rem;
}

.alert-warning{
    color: var(--text-warning);
}

.has-error .form-control {
	border-color: var(--border-error);
}