.duet-checkmark-container {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: auto;
  border: 1px solid rgb(127, 150, 165);
  border-radius: 4px;
  transition: border 300ms ease;
}
.duet-checkmark-container.center {
  margin-right: auto;
}
.duet-theme-turva .duet-checkmark-container {
  border-color: rgb(143, 147, 158);
}
.checked .duet-checkmark-container {
  background: rgb(0, 119, 179);
  border-color: rgb(0, 119, 179);
  transition: none;
}
.duet-theme-turva .checked .duet-checkmark-container {
  background: rgb(23, 28, 58);
  border-color: rgb(23, 28, 58) !important;
}
.duet-checkmark-container.duet-checkmark-radio {
  border-radius: 50%;
}
[disabled] + label .duet-checkmark-container {
  border-color: rgb(181, 198, 208) !important;
}
.duet-theme-turva [disabled] + label .duet-checkmark-container {
  border-color: rgb(199, 202, 207) !important;
}
.checked [disabled] + label .duet-checkmark-container {
  background: rgb(181, 198, 208) !important;
}
.duet-theme-turva .checked [disabled] + label .duet-checkmark-container {
  background: rgb(199, 202, 207) !important;
}

.duet-checkmark {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 5.3333333333px;
  height: 11.8518518519px;
  border-top: 2px solid rgb(255, 255, 255);
  border-right: 2px solid rgb(255, 255, 255);
  opacity: 1;
  transform: scaleX(-1) rotate(135deg) translateZ(0);
  transform-origin: left top;
  animation-name: duet-checkmark;
  animation-duration: 600ms;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes duet-checkmark {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  20% {
    width: 5.3333333333px;
    height: 0;
    opacity: 1;
  }
  40%, 100% {
    width: 5.3333333333px;
    height: 11.8518518519px;
    opacity: 1;
  }
}
:host(.duet-theme-turva2.duet-theme-turva) .checked .duet-checkmark-container {
  background: rgb(23, 42, 59);
  border-color: rgb(23, 42, 59) !important;
}