*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
}

:host {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  display: inline-block;
  margin: 0 auto;
}

.duet-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-height: auto !important;
  padding: 0 !important;
  margin: 0 0 0 8px;
  color: rgb(8, 42, 77);
  white-space: nowrap;
  cursor: pointer;
  background: rgb(245, 248, 250);
  border-radius: 50%;
  transition: background-color 300ms ease !important;
}
.duet-action-button:focus {
  outline: 2px solid;
  outline-offset: 2px;
  outline-color: rgba(0, 119, 179, 0.8);
}
.duet-theme-turva .duet-action-button:focus, .duet-action-button:focus.duet-theme-turva, .duet-theme-turva2 .duet-action-button:focus, .duet-action-button:focus.duet-theme-turva2 {
  outline: 2px solid;
  outline-offset: 2px;
  outline-color: rgba(53, 79, 101, 0.8);
}
.duet-action-button.duet-theme-turva {
  color: rgb(23, 28, 58);
  background: rgb(245, 247, 250);
}
.duet-action-button duet-icon {
  display: block;
}
@media (max-width: 35.9375em) {
  .duet-action-button {
    width: 32px;
    height: 32px;
  }
}
.duet-action-button:not(:disabled):hover {
  background: #e9ecee;
}
.duet-action-button:not(:disabled):hover.duet-theme-turva {
  background: #e9ebee;
}
.duet-action-button:active:focus {
  background: #dddfe1 !important;
}
.duet-action-button:active:focus.duet-theme-turva {
  background: #dddee1 !important;
}
.duet-action-button:disabled {
  color: rgb(127, 150, 165);
  cursor: default;
  background: rgb(245, 248, 250);
  opacity: 0.75;
}
.duet-action-button.duet-theme-turva:disabled {
  color: rgb(143, 147, 158);
  background: rgb(245, 247, 250);
}

:host(.duet-theme-turva2) .duet-action-button.duet-theme-turva {
  color: rgb(23, 42, 59);
  background: rgb(253, 247, 242);
}
:host(.duet-theme-turva2) .duet-action-button.duet-theme-turva:not(:disabled):hover {
  background: #f0ebe6;
}
:host(.duet-theme-turva2) .duet-action-button.duet-theme-turva:active:focus {
  background: #e4deda !important;
}
:host(.duet-theme-turva2) .duet-action-button.duet-theme-turva:disabled {
  color: rgb(120, 145, 164);
  background: rgb(245, 246, 247);
}