/*Radio*/
/*checkbox*/
.input-group-sm .radio_v {
	padding: 0.25rem 0;
}
.radio_v {
	padding: 0.7rem 0;
}

.radio_type {
	/*height: 20px;*/
}

.radio_type_inline {
	margin-left: 20px;
	display: inline-block;
}
.radio_v .radio_type_inline:first-child {
	margin-left: 0;
}

.radio_type label {    
	font-size: 0.75rem;
	line-height: 20px;
	display: inline-block;
	margin: 0 0 0 5px;
	color: #777;
	min-width: auto;
}

.radio_type input[type="radio"],
.radio_type input[type="checkbox"] {
	width: 20px;
	height: 20px;
	appearance: none;
	position: relative;
	margin: 0;
	top: 5px;
	/*width: 12px;
    height: 12px;
    appearance: none;
    position: relative;
    margin: 0;
    top: 2px;*/
}

.radio_type input[type="radio"]:before {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	/*width: 13px;
	height: 13px;
    top: -6px;
    left: 0;*/
}
.radio_type input[type="checkbox"]:before {
	width: 20px;
	height: 20px;
	border-radius: 15%;
	/*width: 13px;
	height: 13px;
    top: -1px;
    left: -1px;*/
}
.radio_type input[type="radio"]:before,
.radio_type input[type="checkbox"]:before {
	content: '';
	border: 2px solid #dadfe6;
	background: #ffffff;
	display: inline-block;
	position: relative;
	/*vertical-align: middle;*/
	/*top: -2px;*/
	/*content: '';
    border: 1px solid #dadfe6;
    background: #ffffff;
    display: inline-block;
    position: relative;*/
    
}

.radio_type input[type="radio"]:checked:before {
	border-radius: 50%;
}

.radio_type input[type="radio"]:checked:before{
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid #be2629;
	background: #be2629;
	display: inline-block;
	position: relative;
	/*border: 2px solid #67ce59;
	background: #67ce59;*/
	/*vertical-align: middle;*/
	/*top: -2px;*/
	
	/*content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #be2629;
    background: #be2629;
    display: inline-block;
    position: relative;
    top: -7px;*/
}

.radio_type input[type="radio"]:checked:after {
	content: '';
	width: 16px;
	height: 16px;
	border: 2px solid white;
	border-radius: 50%;
	background: transparent;
	position: absolute;
	top: 2px;
	left: 2px;
	vertical-align: middle;
	transform: rotate(-45deg);
	
	/*content: '';
    width: 8px;
    height: 8px;
    border: 1px solid white;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    top: 1px;
    left: 2px;
    vertical-align: middle;
    transform: rotate(-45deg);*/
}

.radio_type input[type="checkbox"]:checked:before {
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid #be2629;
	background: #ffffff;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -2px;
	/*border: 2px solid #67ce59;*/
	
	/*content: '';
    width: 13px;
    height: 13px;
    border: 2px solid #be2629;
    background: #ffffff;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -5px;*/
}
.radio_type input[type="checkbox"]:checked:after {
	content: '';
	width: 10px;
	height: 5px;
	border: 2px solid #000000;
	background: #ffffff;
	border-top: transparent;
	border-right: transparent;
	text-align: center;
	display: block;
	position: absolute;
	top: 6px;
	left: 5px;
	vertical-align: middle;
	transform: rotate(-45deg);
	/*content: '';
    width: 7px;
    height: 4px;
    border: 2px solid #000000;
    background: #ffffff;
    border-top: transparent;
    border-right: transparent;
    text-align: center;
    display: block;
    position: absolute;
    top: 3px;
    left: 2px;
    vertical-align: middle;
    transform: rotate(-45deg);*/
}

.radio_type input[type="radio"]:checked,
.radio_type input[type="checkbox"]:checked {
	color: #c59c5a;
}