*,
*::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;
  position: absolute;
  height: 100%;
}

::slotted(*) {
  position: relative;
  visibility: hidden;
  width: 100%;
  opacity: 0;
  transition: opacity 300ms ease;
  transition-delay: 300ms;
}

:host([open]:not([open=false])) ::slotted(*) {
  visibility: visible;
  opacity: 1;
}

:host(:not([open])) ::slotted(duet-slideout-panel) {
  display: none;
}

.duet-slideout {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: "localtapiola-sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgb(8, 42, 77);
}
.duet-slideout.duet-theme-turva {
  font-family: "turva-sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: rgb(23, 28, 58);
}
@media (min-width: 62em) {
  .duet-slideout.duet-theme-turva .desktop-bg {
    background: rgb(23, 28, 58);
  }
}
.duet-slideout .dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 600;
  width: min(450px, 100%);
  padding-bottom: 75px;
  overflow-y: auto;
  box-shadow: 0 3px 6px 0 rgba(0, 41, 77, 0.1) inset;
  transition: bottom 300ms ease;
  transition-delay: 0s;
}
.duet-slideout .dialog:not(.modal) {
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.2);
}
.duet-slideout .dialog .top-container.has-sticky-header-slot {
  position: sticky;
  top: 0;
  z-index: 200;
}
.duet-slideout .dialog .top-container.has-sticky-header-slot .top {
  background: rgb(255, 255, 255);
}
.duet-slideout .dialog .top-container.has-sticky-header-slot .sticky-header {
  display: block;
}
.duet-slideout .dialog .top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4px;
  opacity: 1;
  transition: opacity 300ms ease;
}
.duet-slideout .dialog .top button {
  cursor: pointer;
}
.duet-slideout .dialog .top button:focus {
  outline: 2px solid;
  outline-offset: 2px;
  outline-color: rgba(0, 119, 179, 0.8);
}
.duet-theme-turva .duet-slideout .dialog .top button:focus, .duet-slideout .dialog .top button:focus.duet-theme-turva, .duet-theme-turva2 .duet-slideout .dialog .top button:focus, .duet-slideout .dialog .top button:focus.duet-theme-turva2 {
  outline: 2px solid;
  outline-offset: 2px;
  outline-color: rgba(53, 79, 101, 0.8);
}
.duet-slideout .dialog .top duet-icon {
  padding: 16px;
}
.duet-slideout .dialog .sticky-header {
  display: none;
  width: 100%;
  padding: 0 20px 20px;
  margin-bottom: 20px;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(212, 223, 229);
}
@media (min-width: 36em) {
  .duet-slideout .dialog .sticky-header {
    padding: 0 28px 28px;
  }
}
.duet-slideout .dialog .items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  opacity: 1;
  transition: padding 600ms ease, opacity 300ms ease;
  transition-delay: 300ms;
}
@media (min-width: 36em) {
  .duet-slideout .dialog .items {
    padding: 16px 28px;
  }
}
.duet-slideout .dialog.hidden {
  bottom: 100vh;
  visibility: hidden;
  pointer-events: none;
  transition: 300ms ease;
}
.duet-slideout .dialog.hidden .items {
  padding-top: 28px;
  opacity: 0;
}
.duet-slideout .dialog.hidden .top {
  opacity: 0;
}
.duet-slideout.duet-theme-turva .dialog {
  box-shadow: 0 3px 6px 0 rgba(23, 28, 58, 0.1) inset;
}
.duet-slideout.duet-theme-turva .dialog:not(.modal) {
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.2);
}
.duet-slideout.duet-theme-turva button {
  font-family: "turva-sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: rgb(23, 28, 58);
}
.duet-slideout.duet-theme-turva button.active {
  color: rgb(198, 12, 48);
}
.duet-slideout.duet-theme-turva button.active::after {
  background: rgb(198, 12, 48);
}
.duet-slideout.duet-theme-turva .has-sticky-header-slot .sticky-header {
  border-bottom: 1px solid rgb(222, 224, 228);
}

slot {
  color: rgb(8, 42, 77);
}
.duet-theme-turva slot {
  color: rgb(23, 28, 58);
}

:host(.duet-theme-turva2) .duet-slideout.duet-theme-turva {
  color: rgb(23, 42, 59);
}
@media (min-width: 62em) {
  :host(.duet-theme-turva2) .duet-slideout.duet-theme-turva .desktop-bg {
    background: rgb(23, 42, 59);
  }
}
:host(.duet-theme-turva2) .duet-slideout.duet-theme-turva button {
  color: rgb(23, 42, 59);
}
:host(.duet-theme-turva2) .duet-slideout.duet-theme-turva button.active {
  color: rgb(230, 23, 64);
}
:host(.duet-theme-turva2) .duet-slideout.duet-theme-turva button.active::after {
  background: rgb(230, 23, 64);
}
:host(.duet-theme-turva2) .duet-slideout.duet-theme-turva .has-sticky-header-slot .sticky-header {
  border-bottom-color: rgb(212, 221, 226);
}
:host(.duet-theme-turva2) slot {
  color: rgb(23, 42, 59);
}