.inputReplaceRow {
	display: flex;
	margin: 5px 0;
}

.inputReplaceLabel {
	align-self: center;
	flex: 100 1 auto;
	padding-left: 15px;
}

.inputReplaceLabel label {
	padding: 0;
	margin: 0;
	display: inline-block;
	cursor: pointer;
}

.checkbox-replaced, .radio-replaced {
	border: 1px solid #bcbcbc;
	/*barva ramecku*/
	background-color: white;
	transition: border-color 1s;
	cursor: pointer;
	display: inline-block !important;
	vertical-align: middle;
	text-align: center;
	line-height: 24px;
	font-size: 16px;
	width: 26px;
	height: 26px;
	transition: border-color 1s;
	border-radius: 2px;
}

.checkbox-replaced:hover, .radio-replaced:hover {
	border-color: #118dc0;
}

.checkbox-replaced.checked.disabled:before {
	color: #ececee;
}

.checkbox-replaced.disabled, .radio-replaced.disabled {
	border-color: #ececee;
	cursor: default;
	background: #f8f8f8;
}

.checkbox-replaced:before {
	line-height: 24px;
	content: "\f00c";
	color: #118dc0;
	/*barva zaskrtnuti*/
	visibility: hidden;
	display: inline-block;
	font-family: 'FontAwesome';
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: 0;
}

.radio-replaced {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	line-height: 18px;
	position: relative;
}

.radio-replaced:before {
	content: " ";
	background: #118dc0;
	/*barva zaskrtnuti*/
	position: absolute;
	left: 50%;
	top: 50%;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	line-height: 26px;
	display: inline-block;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	visibility: hidden;
	opacity: 0;
}

.radio-replaced.checked.disabled {
	border-color: #ececee;
}

.radio-replaced.checked.disabled:before {
	background: #cbd5db;
}

.checkbox-replaced.checked:before, .radio-replaced.checked:before {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1)
}

.radio-replaced:before, .checkbox-replaced:before {
	-webkit-transform: scale(3);
	transform: scale(3);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
