.grid-header label {
  color: #1C355E;
}

/* The container */
.container-checkmark {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  /* font-size: 22px; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container-checkmark input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #1C355E;
}

/* On mouse-over, add a grey background color */
/* When the radio button is checked, add a blue background */
.container-checkmark input:checked ~ .checkmark {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 12px;
  height: 12px;
  background-color: #1C355E;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #1C355E;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-checkmark input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container-checkmark .checkmark:after {
  /* top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: white; */
  top: 3px;
  left: 1px;
  width: 8px;
  height: 4px;
  border-radius: 0;
  /* background: white; */
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* content: '\2713'; */
  /* -webkit-transform: rotate(45deg); */
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-right: none;
  border-top: none;
  border-bottom: 3px solid white;
  border-left: 3px solid white;
}