*,
*::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: relative;
  width: 100%;
}

.duet-toolbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255, 255, 255);
}
.duet-toolbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1384px;
  height: 36px;
  margin: 0 28px;
  border-bottom: 1px solid rgb(212, 223, 229);
}
.duet-toolbar .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  list-style-type: none;
}
.duet-toolbar ::slotted(*) {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.duet-toolbar.primary {
  background: rgb(0, 119, 179);
}
.duet-toolbar.primary .container {
  border-bottom: 0;
}
.duet-toolbar.secondary {
  background: rgb(8, 42, 77);
}
.duet-toolbar.secondary .container {
  border-bottom: 0;
}
.duet-toolbar.duet-theme-turva {
  background: rgb(255, 255, 255);
}
.duet-toolbar.duet-theme-turva .container {
  border-bottom: 1px solid rgb(222, 224, 228);
}
.duet-toolbar.duet-theme-turva.primary {
  background: rgb(198, 12, 48);
}
.duet-toolbar.duet-theme-turva.primary .container {
  border-bottom: 0;
}

:host(.duet-theme-turva2) .duet-toolbar.duet-theme-turva .container {
  border-bottom-color: rgb(251, 225, 209);
}
:host(.duet-theme-turva2) .duet-toolbar.duet-theme-turva.primary {
  background: rgb(230, 23, 64);
}