.checkbox-label {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 11px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'arialmt';
  color: #5e5e5e;
}
.checkbox-label img{
  vertical-align: middle;
}

/* Hide the browser's default checkbox */
.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border:1px solid #6d6d6d;
}

/* On mouse-over, add a grey background color */
.checkbox-label:hover input ~ .checkmark {
  background-color: transparent;
}

/* When the checkbox is checked, add a blue background */
.checkbox-label input:checked ~ .checkmark {
  background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-label .checkmark:after {
  left: 7px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


.test-ride-component .form .checkbox-label{
  font-size: 11px;
  color: #444;
  font-family: 'gilroyregular';
  padding-left: 22px;

}

.test-ride-component .form .checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border:1px solid #006AD0;
}

.test-ride-component .form .checkbox-label .checkmark:after {
  left:4px;
  top: 0;
  width: 6px;
  height: 10px;
  border: solid #006AD0;
  border-width: 0 1px 1px 0;
}
.test-ride-component .form .slotIdentifier .checkbox-label .checkmark::after{
  left:4px;
  top: 0;
  width: 6px;
  height: 10px;
  border: solid transparent;
  border-width: 0 1px 1px 0;
}
.test-ride-component .form .slotIdentifier .checkbox-label.active .checkmark:after{ border: solid #006AD0;
  border-width: 0 1px 1px 0;}

.test-ride-component .form .checkbox-label  a{
  color: #006AD0;
}

.test-ride-component .form .date-time-slot .checkbox-label, 
.test-ride-component .form .optional .checkbox-label{
  color: #8B8B8B;
  border: 1px solid rgba(38,38,38,0.3);
  border-radius: 23px;
  padding: 5px 15px;
  width: 100%;
}
.test-ride-component .form .optional .checkbox-label{
  font-family: 'gilroymedium';
  padding: 5px 30px 5px 11px;
}
.test-ride-component .form .date-time-slot .checkbox-label.active,
.test-ride-component .form .optional .checkbox-label.active{
  background: #006AD0;
  color: #fff;
}

.test-ride-component .form .date-time-slot .time-slot{
  color: #444;
  font-size: 13px;
  display: inline-block;
  width: 100%;
}
.test-ride-component .form .date-time-slot .checkbox-label.active .time-slot{
  color: #fff;
}
.test-ride-component .form .date-time-slot .checkmark, 
.test-ride-component .form .optional .checkmark{
  border-radius: 50%;
  border: 1px solid rgba(38,38,38,0.3);
  top:15px;
  right: 9px;
  left: auto;
}
.test-ride-component .form .optional .checkmark{
  top:4px;
  right: 5px;
}
.test-ride-component .form .date-time-slot .checkbox-label input:checked ~ .checkmark,
.test-ride-component .form .optional .checkbox-label input:checked ~ .checkmark {
  background-color: #fff;
}
.checkbox-label.slot_disabled{opacity: 0.5;cursor: not-allowed;}