::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, .5);
  box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
.img-responsive{
	max-width: 100%;
	height: auto;
	display: block;
}


.main {
	display: block;
	position: relative;
	padding-left: 2.5vw;
	align-items:center;
	cursor: pointer;
	font-size: 20px;
}

.indeterminateCheck1 {
	visibility: hidden;
}

.indeterminateCheck2 {
	visibility: hidden;
}

.indeterminateCheck3 {
	visibility: hidden;
}
.indeterminateCheck4 {
	visibility: hidden;
}

.indeterminateCheck5 {
	visibility: hidden;
}

.positif {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #EBEDF3;
	border: 1px solid transparent;
	border-radius: 0.42rem;
}

.main input:checked ~ .positif {
	background-color: #3699FF;
	transition: all 0.3s ease;
}

.positif:after {
	content: "";
	position: absolute;
	display: none;
}

.main input:checked ~ .positif:after {
	display: block;
}

.main .positif:after {
	left: 8px;
	bottom: 7px;
	width: 6px;
	height: 12px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-top: -2px;
}

.negatif {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	border: 1px solid transparent;
	border-radius: 0.42rem;
}

.main input:indeterminate ~ .positif {
	background-color: red;
	transition: all 0.3s ease;
}

.negatif:after {
	content: "";
	position: absolute;
	display: none;
}

.main input:indeterminate ~ .negatif:after {
	display: block;
}

.main .negatif:after {
	left: 6px;
	bottom: 11px;
	width: 12px;
	border: solid white;
	border-width: 0 2px 2px 0;																	
	margin-top: -2px;
}

img.lazyload:not([src]) {
	visibility: hidden;
}