.product-search-filter-stock-form label {
	position: relative;
	display: inline-block;
    width: 54px;
    height: 24px;
}

.product-search-filter-stock-form label input[type=checkbox] {
	opacity: 0;
	width: 0;
	height: 0;
}

a.product-search-filter-in-stock {
	text-indent: -9999px;

	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 34px;
}

a.product-search-filter-in-stock:before {
	text-indent: -9999px;

	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 50%;
}

.product-search-filter-stock-form label input[type=checkbox]:checked + a.product-search-filter-in-stock:before {
	left: 9px;
}

.product-search-filter-stock-form label input[type=checkbox]:checked + a.product-search-filter-in-stock {
	background-color: #0056A3;
}

.product-search-filter-stock-form label input[type=checkbox]:focus + a.product-search-filter-in-stock {
	box-shadow: 0 0 1px #0056A3;
}

.product-search-filter-stock-form label input[type=checkbox]:checked + a.product-search-filter-in-stock:before {
	-webkit-transform: translateX(16px);
	-ms-transform: translateX(16px);
	transform: translateX(16px);
}

div.product-search-filter-stock {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}