/**
 * The default transition, used when the element is visible
 * since the beginning of the animation
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The enter transition, used when the element is not visible on the screen
 * since the beginning of the animation and become visible
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The leave transition, used when the element is visible on the screen
 * since the beginning of the animation and is removed
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The stand transition, used when the element is going to accelerate,
 * like movements from bottom to top
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The out transition, used when the element is going to deaccelerate,
 * like movements from top to bottom
 * ---
 * @access private
 * @type transition
 * @group transition
 */
.md-checkbox {
  width: auto;
  margin: 16px 16px 16px 0;
  display: inline-flex;
  position: relative;
  cursor: pointer;
}
.md-checkbox.md-disabled {
  cursor: default;
  opacity: 0.38;
}
.md-checkbox .md-checkbox-container {
  width: 20px;
  min-width: 20px;
  height: 20px;
  position: relative;
  border-radius: 2px;
  border: 2px solid var(--md-on-surface-medium);
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.md-checkbox .md-checkbox-container:focus {
  outline: none;
}
.md-checkbox .md-checkbox-container::before, .md-checkbox .md-checkbox-container::after {
  position: absolute;
  transition: 0.4s cubic-bezier(0.55, 0, 0.55, 0.2);
  content: " ";
}
.md-checkbox .md-checkbox-container::before {
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  z-index: 11;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.md-checkbox .md-checkbox-container::after {
  width: 4px;
  height: 12px;
  top: 0;
  left: 5px;
  z-index: 12;
  border: 2px solid transparent;
  border-top: 0;
  border-left: 0;
  opacity: 0;
  transform: rotate(45deg) scale3d(0.15, 0.15, 1);
}
.md-checkbox .md-checkbox-container .md-ripple {
  width: 48px !important;
  height: 48px !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.md-checkbox .md-checkbox-container input {
  position: absolute;
  left: -999em;
}
.md-checkbox .md-checkbox-label {
  height: 20px;
  padding-left: 16px;
  position: relative;
  line-height: 20px;
}

.md-checkbox.md-checked .md-ripple {
  color: var(--md-secondary);
}
.md-checkbox.md-checked .md-checkbox-container {
  background-color: var(--md-secondary);
  border-color: var(--md-secondary);
}
.md-checkbox.md-checked .md-checkbox-container::after {
  opacity: 1;
  transform: rotate(45deg) scale3d(1, 1, 1);
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-color: var(--md-background);
}
.md-checkbox.md-checked.md-primary .md-checkbox-container {
  background-color: var(--md-primary);
  border-color: var(--md-primary);
}
.md-checkbox.md-checked.md-primary .md-ripple {
  color: var(--md-primary);
}

.md-checkbox.md-required label::after {
  position: absolute;
  top: 2px;
  right: 0;
  transform: translateX(calc(100% + 2px));
  content: "*";
  line-height: 1em;
  vertical-align: top;
}