/* Common */
/* Checkbox */
/* Radio */
/* Badge */
/* Toast */
/* Notification */
@keyframes scaleAnimation {
  0%, 15% {
    transform: scale(1);
  }
  5%, 10% {
    transform: scale(1.3);
  }
}
@keyframes pulse {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  10% {
    opacity: 1;
    transform: scale(1.3);
  }
  30% {
    opacity: 0.2;
    transform: scale(1);
  }
}
@keyframes spine {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
:host {
  display: block;
  width: max-content;
}
:host label {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
:host label.disabled {
  cursor: default;
}
:host label input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
:host .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  border-radius: 2px;
  border: 1px solid #737f8f;
}
:host label:hover input:not(:disabled) ~ .checkmark {
  border-color: #1aa1e1;
}
:host label input:disabled ~ .checkmark {
  border-color: #cfd4da;
}
:host label input:checked ~ .checkmark,
:host label input:indeterminate ~ .checkmark {
  background-color: #1aa1e1;
  border-radius: 2px;
  border: 0;
}
:host label input:checked ~ .checkmark:hover,
:host label input:indeterminate ~ .checkmark:hover {
  background-color: #72c0e5;
}
:host label.child-unchecked input:indeterminate ~ .checkmark {
  background-color: #ffffff;
  border: 1px solid #737f8f;
}
:host label.child-unchecked input:indeterminate ~ .checkmark:hover {
  background-color: #ffffff;
  border: 1px solid #1aa1e1;
}
:host label.child-unchecked.disabled input:indeterminate ~ .checkmark {
  border: 1px solid #cfd4da;
}
:host label.child-unchecked.disabled input:indeterminate ~ .checkmark:hover {
  border: 1px solid #cfd4da;
}
:host label input:checked:disabled ~ .checkmark,
:host label:not(.child-unchecked) input:indeterminate:disabled ~ .checkmark {
  background-color: #cfd4da;
}
:host .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
:host label input:checked ~ .checkmark:after,
:host label input:indeterminate ~ .checkmark:after {
  display: block;
}
:host label input:checked:not(:indeterminate) ~ .checkmark:after {
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
:host label input:indeterminate ~ .checkmark:after {
  width: 10px;
  height: 2px;
  background-color: #ffffff;
}
:host label.child-unchecked input:indeterminate ~ .checkmark:after {
  background-color: #737f8f;
}
:host label.child-unchecked:hover input:indeterminate ~ .checkmark:after {
  background-color: #1aa1e1;
}
:host label.child-unchecked.disabled input:indeterminate ~ .checkmark:after {
  background-color: #cfd4da;
}
:host label.small {
  width: 16px;
  height: 16px;
}
:host label.small .checkmark {
  width: 14px;
  height: 14px;
}
:host label.small.child-unchecked input:indeterminate ~ .checkmark {
  width: 14px;
  height: 14px;
}
:host label.small.child-unchecked input:indeterminate ~ .checkmark:after {
  left: 2px;
  top: 6px;
}
:host label.small input:checked ~ .checkmark,
:host label.small input:indeterminate ~ .checkmark {
  width: 16px;
  height: 16px;
}
:host label.small input:checked:not(:indeterminate) ~ .checkmark:after {
  left: 6px;
  top: 3px;
  width: 3px;
  height: 6px;
}
:host label.small input:indeterminate ~ .checkmark:after {
  left: 3px;
  top: 7px;
}
:host label.medium {
  width: 24px;
  height: 24px;
}
:host label.medium .checkmark {
  width: 22px;
  height: 22px;
}
:host label.medium.child-unchecked input:indeterminate ~ .checkmark {
  width: 22px;
  height: 22px;
}
:host label.medium.child-unchecked input:indeterminate ~ .checkmark:after {
  left: 6px;
  top: 11px;
}
:host label.medium input:checked ~ .checkmark,
:host label.medium input:indeterminate ~ .checkmark {
  width: 24px;
  height: 24px;
}
:host label.medium input:checked:not(:indeterminate) ~ .checkmark:after {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 10px;
}
:host label.medium input:indeterminate ~ .checkmark:after {
  left: 7px;
  top: 12px;
}