.colorsCont {
	display: inline-block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 14px;
	  vertical-align: middle;
	  line-height: 30px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .colorsCont input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  /* Create a custom checkbox */
  .colorsCont .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 28px;
	width: 28px;
	background-color: red;
	border-radius:50%;
  }
  
  
  
  /* When the checkbox is checked, add a blue background */
  .colorsCont input:checked ~ .checkmark {
	background-color: red;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the checkmark when checked */
  .colorsCont input:checked ~ .checkmark:after {
	display: block;
  }
  
  /* Style the checkmark/indicator */
  .colorsCont .checkmark:after {
	left: 0px;
	top: 0px;
	width: 28px;
	height: 28px;
	border: solid 4px #898989;
	border-radius:50%;
  }
