

.switch {
    display: block;
  margin: 12px auto;
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 70px;
	height: 30px;
	padding: 3px;
	background-color: white;
	-moz-border-radius: 18px;
	-webkit-border-radius: 18px;
	border-radius: 18px;
	cursor: pointer;
}

.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.switch-label {
	position: relative;
	display: block;
	height: inherit;
	font-size: 10px;
	text-transform: uppercase;
	background:#bdc3c7;
	-moz-border-radius: inherit;
	-webkit-border-radius: inherit;
	border-radius: inherit;
	-webkit-transition: 0.15s ease-out;
	-moz-transition: 0.15s ease-out;
	-o-transition: 0.15s ease-out;
	transition: 0.15s ease-out;
	-webkit-transition-property: opacity background border;
	-moz-transition-property: opacity background border;
	-o-transition-property: opacity background border;
	transition-property: opacity background border;
}
.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  font-size:14px;
}
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #000;
}
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: white;
  opacity: 0;
}
.switch-input:checked ~ .switch-label {
	background: #2450a6;
}
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}

.switch-handle {
	position: absolute;
	top: 9px;
	left: 10px;
	width: 18px;
	height: 18px;
	background: white;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-transition: left 0.15s ease-out;
	-moz-transition: left 0.15s ease-out;
	-o-transition: left 0.15s ease-out;
	transition: left 0.15s ease-out;
}
	.switch-handle:before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		margin: -6px 0 0 -6px;
		width: 12px;
		height: 12px;
		background: #f9f9f9;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		-moz-box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
		-webkit-box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
		box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
		background-image: -webkit-linear-gradient(top, #eeeeee, white);
		background-image: -moz-linear-gradient(top, #eeeeee, white);
		background-image: -o-linear-gradient(top, #eeeeee, white);
		background-image: linear-gradient(to bottom, #eeeeee, white);
	}


.switch-input:checked ~ .switch-handle {
	background:#fff;
	left: 45px;
	-moz-box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
	box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-input:checked ~	.switch-handle:before{
	background:#fff;
}
.switch-green > .switch-input:checked ~ .switch-label {
  background: #fff;
}

.filters{
        display:none;
    } 
    
 .radio_group {
	 position: relative;
	 padding: 0;
}
 .radio_group input[type="radio"] {
	 display: none;
}
 .radio_group input[type="radio"] + label span {
	 position: relative;
	 display: inline-block;
	 vertical-align: middle;
	 cursor: pointer;
	 margin-bottom: 0.5em;
	 line-height: 1.2;
	 clear: both;
	 padding-left: 1.8em;
}
 .radio_group input[type="radio"] + label span:before {
	 position: absolute;
	 content: "";
	 border: 6px solid rgba(192, 200, 208, 1);
	 background: rgba(192, 200, 208, 1);
	 border-radius: 50%;
	 width: 18px;
	 height: 18px;
	 left: 0;
	 margin-top: -2px;
}
 .radio_group input[type="radio"]:checked + label span:before {
	 border: 6px solid rgba(36, 80, 166, 1);
	 background: rgba(254, 255, 250, 1);
}

 .radio_group1 {
	 position: relative;
	 padding: 0;
}
 .radio_group1 input[type="checkbox"] {
	 display: none;
}
 .radio_group1 input[type="checkbox"] + label span {
	 position: relative;
	 display: inline-block;
	 vertical-align: middle;
	 cursor: pointer;
	 margin-bottom: 0.5em;
	 line-height: 1.2;
	 clear: both;
	 padding-left: 1.8em;
}

.radio_group1 input[type="checkbox"] + label span:before {
	position: absolute;
    content: "";
    border: 1px solid rgba(192, 200, 208, 1);
    background: transparent;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    left: 0;
    margin: -11px -16px 0px;
}
 .radio_group1 input[type="checkbox"]:checked + label span:before {
	 border: 1px solid rgba(36, 80, 166, 1);
	 background: transparent;
}

 .radio_group2 {
	 position: relative;
	 padding: 0;
}
 .radio_group2 input[type="radio"] {
	 display: none;
}
 .radio_group2 input[type="radio"] + label span {
	 position: relative;
	 display: inline-block;
	 vertical-align: middle;
	 cursor: pointer;
	 margin-bottom: 0.5em;
	 line-height: 1.2;
	 clear: both;
	 padding-left: 1.8em;
}

.radio_group2 input[type="radio"] + label span:before {
	position: absolute;
    content: "";
    border: 1px solid rgba(192, 200, 208, 1);
    background: transparent;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    left: 0;
    margin: -11px -16px 0px;
}
 .radio_group2 input[type="radio"]:checked + label span:before {
	 border: 1px solid rgba(36, 80, 166, 1);
	 background: transparent;
}

.home-icon-btn-fitur {
    border-radius: 10px 10px 10px 10px;
    color: #2d333b;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    text-shadow: none;
    padding: 13px 0px;
    margin: 0px 5px 0px;
    background-color: #f9f9f9;
    border-color: #f9f3f3;
}
     
input[type=checkbox] {
display:none;
}
 
input[type=checkbox] + label
{
border: 3px solid transparent;
height: auto;
width: 90%;
display: inline-block;
padding: 4px;
border-radius: 10px 10px 10px 10px;
transition: border 0.15s ease;
-webkit-backface-visibility: hidden;  /* Chrome, Safari, Opera */
backface-visibility: hidden;
}
input[type=checkbox]:checked + label
{
background-color:#f9f9f9;;
border: 3px solid #2450a6;
height: auto;
width: 90%;
display:inline-block;
padding: 4px;
border-radius: 10px 10px 10px 10px;

}  

input[type=range] {
	-webkit-appearance: none;
	margin: 20px 0;
	width: 100%;
}
input[type=range]:focus {
	outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 4px;
	cursor: pointer;
	animate: 0.2s;
	background: #03a9f4;
	border-radius: 25px;
}
input[type=range]::-webkit-slider-thumb {
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 4px 0 rgba(0,0,0, 1);
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -8px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
	background: #03a9f4;
}
.range-wrap{
	width: 90%;
	position: relative;
	margin: 18px 19px 0px;
}
.range-value{
	position: absolute;
	top: -50%;
}
.range-value span{
	width: 90px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background: #03a9f4;
	color: #fff;
	font-size: 12px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	border-radius: 6px;
}
.range-value span:before{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-top: 10px solid #03a9f4;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	margin-top: -1px;
}
.harga
{
    display: none;
}
.blur-konten
{
    color: #ededed;
}
