/* 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;
  width: 16px;
  height: 16px;
}
:host label.disabled {
  cursor: default;
}
:host label input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
:host .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border-radius: 50%;
  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:not(:disabled) ~ .checkmark {
  border-radius: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid #1aa1e1;
}
:host label input:checked:not(:disabled) ~ .checkmark:hover {
  border-color: #72c0e5;
}
:host label input:checked:disabled ~ .checkmark {
  border: 1px solid #cfd4da;
}
:host .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
:host label input:checked ~ .checkmark:after {
  display: block;
}
:host label .checkmark:after {
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
:host label:not(.disabled) .checkmark:after {
  background: #1aa1e1;
}
:host label.disabled .checkmark:after {
  background: #cfd4da;
}
:host label:hover input:checked:not(:disabled) ~ .checkmark:after {
  background: #72c0e5;
}