@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root{
  --zeeuw-anim-rotate-bouncy:zo-rotation-alt 0.8s cubic-bezier(0.2, 0.1, 0.55, 1) infinite;
}
.zo-loader {
  width: 48px;
  height: 48px;
  border: 5px solid;
  border-color: var(--color-primary) transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: var(--zeeuw-anim-rotate-bouncy);
  
}
.loaderwrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@keyframes zo-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes zo-rotation-alt {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(410deg);
  }
  80% {
    transform: rotate(350deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**
Archive filters
**/

.filters {
  flex-wrap: wrap;
  display: flex;
  background-color: #fbfbfb;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  gap: 10px;
}

.zo-filter-label > input {
  display: none;
}

.zo-filter-label {
  padding: 0 5px 3px 5px;
  margin-bottom: 3px;
  cursor: pointer;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  color: #333;
  user-select: none;
  align-items: center;
}
.zo-filter-label:last-of-type {
  border-bottom: none;
}
.zo-filter-label .bi-check {
  opacity: 0;
  transition: all 0.2s ease;
}

.zo-filter-label:has(input:checked) .bi-check {
  opacity: 1;
}
.filters > .zo-filter-label {
  height: 37px;
  margin-bottom: 0;
  padding-bottom: 0;
  gap: 10px;
}

.zo-filter:hover > .zo-filter-submenu {
  animation: fadeIn 0.2s ease forwards;
  display: flex;
  z-index: 100;
}
.zo-filter-submenu {
  display: none;
  position: absolute;
  background-color: white;
  padding: 15px 10px 4px 10px;
  border-radius: 0 0 5px 5px;
  flex-direction: column;
  gap: 3px;
  top: 30px;
  animation: fadeOut 0.2s ease forwards;
  width: calc(100% + 2px);
  border: 1px solid #ddd;
  border-top: none;
  left: -1px;
}
.zo-filter {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: white;
  min-width: 200px;
}
.zo-filter-head {
  cursor: pointer;
  padding: 10px;
  height: 35px;
  display: flex;
  align-items: center;
  user-select: none;
  gap: 10px;
  justify-content: space-between;
}
.zo-filter-select {
  height: 37px;
  padding: 0 10px;
  border-radius: 5px;
  border-color: #ddd;
  cursor: pointer;
}
.zo-filter-btn {
  height: 37px;
  padding: 0 10px;
  border-radius: 5px;
  align-items: center;
  color: var(--lqd-active-txt-btnset);
}
