/* Need to check with designer */
/* Need to check with designer */
:host {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

:host(.checkbox-container) {
  display: inline;
  position: relative;
}

/* Focus event occurs on the root element */
:host(:focus) {
  outline: none;
}
:host(:focus) input[type=checkbox] + label::before {
  border: 1px solid transparent;
  box-shadow: 0 0 0 2px #2c5cc5;
}
:host(:focus) input[type=checkbox][disabled] + label::before {
  box-shadow: none;
  border: 1px solid #dadfe3;
}

.label-field {
  font-size: 12px;
  color: #475867;
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
  padding-left: 28px;
  font-weight: 400;
}

/* Hover event occurs on the root element */
:host(:hover) input[type=checkbox] + label::before {
  border-color: #12344d;
  box-shadow: 0 0 0 5px #ebeff3;
}
:host(:hover) input[type=checkbox][disabled] + label {
  cursor: not-allowed;
}
:host(:hover) input[type=checkbox][disabled] + label::before {
  box-shadow: none;
  border: 1px solid #dadfe3;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  margin-bottom: 0;
  vertical-align: middle;
  font-size: 12px;
  color: #12344d;
  font-weight: 500;
}
input[type=checkbox] + label .text {
  padding-left: 27px;
}
input[type=checkbox] + label::before {
  position: absolute;
  left: 0;
  top: 3px;
  display: block;
  content: "";
  border: 1px solid #cfd7df;
  height: 14px;
  width: 14px;
  background-color: #fff;
  transition: all 0.2s ease;
  box-sizing: border-box;
  border-radius: 2px;
}
input[type=checkbox] + label::after {
  position: absolute;
  display: block;
  content: "";
  left: 4px;
  top: 5px;
  width: 5px;
  height: 7px;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  box-sizing: border-box;
}
input[type=checkbox]:checked + label::before {
  background: #2c5cc5;
  border-color: #2c5cc5;
  box-shadow: none;
}
input[type=checkbox]:checked + label::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 1;
  top: 5px;
}
input[type=checkbox]:checked:hover + label::before {
  box-shadow: 0 0 0 5px #ebeff3;
}
input[type=checkbox]:checked:hover + label::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 1;
  top: 5px;
}
input[type=checkbox]:checked:focus + label::before {
  background: #2c5cc5;
  border-color: #fff;
  box-shadow: 0 0 0 1px #2c5cc5;
}
input[type=checkbox]:checked:focus + label::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 1;
  top: 5px;
}
input[type=checkbox][disabled] + label {
  color: #92a2b1;
}
input[type=checkbox][disabled] + label .label-field {
  color: #92a2b1;
}
input[type=checkbox][disabled] + label::before {
  border-color: #dadfe3;
  background-color: #ebeff3;
}
input[type=checkbox][disabled]:checked + label {
  color: #92a2b1;
}
input[type=checkbox][disabled]:checked + label::before {
  background: #dadfe3;
}