.feedback {
	font-family: var(--default-font);
}


.feedback .file-input .photo{
	margin: 5px 0 0px 5px;
	-moz-border-radius: 18px;
	-webkit-border-radius: 18px;
	border-radius: 18px;
	height: 110px;
}

.feedback input:focus, .feedback select:focus {
	outline: none;
}

.feedback select::before {
    content: "▼";
    font-size: 16px;
    margin-right: 2px;
    cursor: pointer;
}


.feedback .error-msg {
	color: red;
}

.feedback .more-fields {
	padding-top: 20px;
}

.feedback .file-input .btn{
	max-width: 120px;
	text-align: center;
}

.control {
	font-size: 20px;
	position: relative;
	display: block;
	margin-bottom: 15px;
	padding-left: 30px;
	cursor: pointer;
}

.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.control__indicator {
	position: absolute;
	top: 2px;
	left: 0;
	height: 20px;
	width: 20px;
	border-width: 2px;
	border-style: solid;
	border-color: gray;
	background: white;
	border-radius: 50%;
}



.control__indicator:after {
	top: 4px;
	left: 8px;
	width: 3px;
	height: 8px;
	transform: rotate(45deg);
	border: solid #fff;
	border-width: 0 2px 2px 0;
	position: absolute;
}

.control--checkbox .control__indicator {
	border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
	background: #ccc;
}
.control input:checked ~ .control__indicator {
	background: #fff;
}
/*.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #0e647d;
}*/
.control input:disabled ~ .control__indicator {
	background: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}
.control__indicator:after {
	content: '';
	position: absolute;
	display: none;
}
.control input:checked ~ .control__indicator:after {
	display: block;
}
.control--checkbox .control__indicator:after {
	left: 5px;
	top: 1px;
	width: 7px;
	height: 11px;
	border: solid #7a99af;
	border-width: 0px 2px 2px 0;
	transform: rotate(45deg);
}

.control--checkbox input:disabled ~ .control__indicator:after {
	border-color: #7b7b7b;
}

.errorreport-deviceType {
	width: 38%;
	margin-top: -29px;
	position: absolute;
	display: -webkit-box;
	border: none;
	margin-left: 2px;
	outline: none;
	height: 20px;
}

.select-wrapper {
	position: relative;
	width: 100%;
}

.select-wrapper:after {
	content: "▼";
	width: 0;
	height: 0;
	position: absolute;
	right: 22px;
	top: 6px;
	pointer-events: none;
	content: "▼";
	font-size: 16px;
	cursor: pointer;
}

.select-wrapper select {
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	text-indent: 0.01px;
	text-overflow: "";
	font-size: inherit;
	line-height: inherit;
	width: 100%;
	background-color: #fff;
	color: #777;
	border: none;
}

.select-wrapper select::-ms-expand {
	display: none;
}
