/* tps_shared_checkbox */

.tps_shared_checkbox input[type="checkbox"] {
    display: none;
}

.tps_shared_checkbox label {
    position: relative;
    display: inline-block;
	cursor: pointer;
	font-size: 13.5px;
	padding-left: 25px;
	padding-top: 3px;
}

.tps_shared_checkbox label::before,
.tps_shared_checkbox label::after {
    position: absolute;
    content: "";
    display: inline-block;
}

.tps_shared_checkbox label::before {
    height: 16px;
    width: 16px;
    border: 1px solid;
    left: 0px;
    top: 3px;
}

.tps_shared_checkbox label::after {
    height: 5px;
    width: 9px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    left: 4px;
    top: 7px;
}

.tps_shared_checkbox input[type="checkbox"] + label::after {
    content: none;
}

.tps_shared_checkbox input[type="checkbox"]:checked + label::after {
    content: "";
}



/* tps_shared_select */

.tps_shared_select {
	position: relative;
}

.tps_shared_select select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border-radius: 0;
	border: 1px solid #000;
	color: #000;
	font-size: 15px;
	padding: 9px 18px;
	position: relative;
	width: 100%;
	z-index: 10;
}

.tps_shared_select select:focus {
	border-color: #62564a;
}

.tps_shared_select:after {
	content: "\25BE";
	position: absolute;
	right: 9px;
	top: 4.5px;
	font-size: 18px;
	color: #676767;
}



/* tps_shared_radio */
.tps_shared_radio, .tps_shared_radio * {
	box-sizing: border-box;
}

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

.tps_shared_radio label {
	position: relative;
    display: inline-block;
    padding: 3px 0 0 30px;
}

.tps_shared_radio label::before,
.tps_shared_radio label::after {
	box-sizing: border-box;
	border-radius: 50%;
	content: " ";
	transition: .25s all ease;
    display: block;
    position: absolute;
    top: 0;
	left: 0;
	height: 20px;
    width: 20px;
}

.tps_shared_radio label::before {
    border: 2px solid #62564a;
}

.tps_shared_radio label::after {
    background: #62564a;
    transform: scale(0);
}

.tps_shared_radio input:checked+label::after {
    transform: scale(0.5);
}

.tps_shared_input {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	border: 1px solid #000;
	box-sizing: border-box;
	color: #000;
	font-size: 15px;
	outline: none;
	padding: 9px 18px;
	padding-left: 10px;
	width: 100%;
	background-color: transparent;
}

.tps_shared_input:focus {
	border-color: #62564a;
}
