/* Styling radio buttons */

.radio-btn {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-btn > span {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #F9CD04;
    border-radius: 50%;
}

.radio-btn:hover input ~ span {
    background-color: #F9CD04;
}

.radio-btn input:checked ~ span {
    background-color: #F9CD04;
}

.radio-btn > span:after {
    content: "";
    position: absolute;
    display: block;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: white;
}

.radio-btn input:checked ~ span:after {
	border-radius: 0px;
	background: #F9CD04;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.in-line-radio .radio-btn {
    display: inline-block !important;
}
.in-line-radio .radio-btn {
    margin-right: 30px;
    margin-bottom: 20px;
}



.switch-btn {
	display: inline-block;
	position: relative;
	margin-right: 5px;
	height: 19px;
	width: 35px;
    border-radius: 15px;
    -moz-border-radius: 15px;
    cursor: pointer;
}
.switch-btn > span {
    display: inline-block;
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 10px;
    -moz-border-radius: 10px;
}

.switch-btn.on {
	background: #000;
}
.switch-btn.on > span {
    background: url(../../assets/images/check_mark_white.png) no-repeat center center;
    background-size: 18px;
    right: 2px;
    top: 2px;
}

.switch-btn.off {
    background: #999;
}
.switch-btn.off > span {
    background: url(../../assets/images/remove.png) #CCC no-repeat center center;
    background-size: 7px;
    left: 2px;
    top: 2px;
}
.switch-btn-label {
    cursor: pointer;
	font-family: 'Roboto-Black', Arial, sans-serif !important;
}






/* -------------------------------------------------------------------------- */
/* CSS for small screens */
/* -------------------------------------------------------------------------- */
@media only screen and (max-width:500px){
.in-line-radio .radio-btn {
    display: block !important;
}
.in-line-radio .radio-btn {
    margin-right: 30px;
    margin-bottom: 20px !important;
}	
	
	
}