.color-error {
  color: rgb(223, 51, 51);
}

.color-warn {
  color: rgb(243, 169, 32);
}

.color-info {
  color: rgb(42, 126, 235);
}

.color-success {
  color: rgb(3, 177, 53);
}

.bg-error {
  background-color: rgb(223, 51, 51);
}

.bg-warn {
  background-color: rgb(243, 169, 32);
}

.bg-info {
  background-color: rgb(223, 51, 51);
}

.bg-success {
  background-color: rgb(3, 177, 53);
}

sidebar-header > img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
}

sidebar-header > div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  background-image: url("/resources/sidebar-header-background.jpg");
  background-position: center 16%;
  background-size: 200%;
  filter: blur(5px);
}

sidebar {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  min-width: 150px;
  max-width: 200px;
  display: block;
  height: 100%;
  background-color: #333;
  overflow: hidden;
  flex-shrink: 1;
}

sidebar-header {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 12px;
  overflow: hidden;
}

sidebar-list-container {
  display: flex;
  flex-direction: column;
  height: calc(100% - 80px);
}

sidebar-list {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: scroll;
  flex: 1 0 75%;
}

sidebar-fixed-list {
  display: flex;
  flex-direction: column-reverse;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: hidden;
  overflow-y: scroll;
  flex: 1 3 25%;
}

sidebar-list::-webkit-scrollbar {
  display: none;
}

sidebar-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

sidebar-element {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 100%;
  font-size: 10pt;
  height: calc(1em + 24px);
  padding: 12px;
  transition: 0.1s;
  color: white;
}

sidebar-element-title {
  display: inline-block;
  position: relative;
  width: calc(100% - 10px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  opacity: 0.66;
  transition: 0.1s;
}

sidebar-element:hover > sidebar-element-title {
  opacity: 1;
}

.sidebar-element-active-color-indicator {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background-color: rgb(243, 169, 32);
}

.sidebar-element-title-active {
  opacity: 1;
}

sidebar-element-delete {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: rgb(223, 51, 51);
  cursor: pointer;
}

sidebar-element > div {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 20px);
  height: 100%;
}

/*# sourceMappingURL=sidebar.css.map */
