#APP .category-filter {
  --filter-columns:1;
  display: grid;
  grid-template-columns: repeat(calc(var(--filter-columns) / 2), 1fr);
}
#APP .category-filter label input {
  display: none;
}
#APP .category-filter label:has(> input) {
  padding: 1rem;
  line-height: 1;
  display: block;
  background: #fff;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}
#APP .category-filter label:has(> input):has(:checked) {
  background: #ddd;
  cursor: default;
}
#APP .content-items {
  padding: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#APP .content-items:has(> .content-slider-nav) {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  height: 1rem !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 !important;
  margin: 1rem;
}
#APP .content-items:has(> .content-slider-nav) .content-slider-nav {
  width: 1rem;
  height: 100% !important;
  line-height: 1;
  padding: 0 !important;
}
#APP .content-items.is-slider {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  grid-template-columns: repeat(var(--repeat-count), minmax(calc(100% + 0.5rem), 1fr));
  max-width: 100%;
  overflow-x: auto;
}
#APP .content-items.is-slider .content-item {
  -webkit-transition: all 1.33s ease;
  transition: all 1.33s ease;
  scroll-snap-align: center;
  -webkit-box-shadow: 0 0 0px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0px rgba(0, 0, 0, 0.2) inset;
  color: #333;
}
#APP .content-items.is-slider .content-item .content-body :has(> .body-content) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#APP .content-items.is-slider .content-item .content-body :has(> .body-content) .body-content {
  position: relative;
}
#APP .content-items.is-slider .content-item .content-body :has(> .body-content) .body-content > div:has(> .uk-badge) {
  position: absolute;
  top: 2px;
  right: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3rem;
}
#APP .content-items.is-slider .content-item h2 {
  color: inherit;
}
#APP .content-items.is-slider .content-item.focused {
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.2) inset;
  background-color: #333;
  color: #eee;
}
#APP .content-items .content-item {
  background-color: #eee;
  padding: 1rem;
}
#APP .content-items .content-item .content-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  white-space: pre-line;
}
#APP .uk-offcanvas-bar {
  /* background: linear-gradient(270deg, #0000000f 0%, #ffffffbd 1rem);
    backdrop-filter: blur(8px);
  box-shadow: 0px 0px 2px #00000070 inset; */
}
#APP .uk-offcanvas-bar * {
  /* color:#333; */
}
#APP .uk-offcanvas-bar .content-items {
  grid-template-columns: repeat(1, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0rem;
}
#APP .uk-offcanvas-bar .content-items .content-item {
  background-color: initial;
  padding: 0rem;
}
#APP .uk-offcanvas-bar .content-items .content-item .item-name {
  position: relative;
}
#APP .uk-offcanvas-bar .content-items .content-item .item-name > input + div {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.7rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
  }
}
#APP .uk-offcanvas-bar .content-items .content-item .item-name:hover > input + div {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}
#APP .uk-offcanvas-bar .content-items .content-item .uk-input, #APP .uk-offcanvas-bar .content-items .content-item .uk-textarea {
  /* background: linear-gradient(181deg, #eee, #3333330d);
  border: 1px solid #3333330d;
  border-radius: 5px;
  text-shadow:0px 0px 0.3px #33333345; */
}
#APP .uk-offcanvas-bar .content-items .content-item .item-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.7rem;
  -webkit-box-shadow: 0px 0px 1px black;
          box-shadow: 0px 0px 1px black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#APP .uk-offcanvas-bar .content-items .content-item .item-item button * {
  pointer-events: none;
}
#APP .uk-offcanvas-bar .content-items .content-item .item-item.has-item {
  background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), color-stop(50%, rgba(0, 0, 0, 0.1294117647)), to(#ffffff));
  background: linear-gradient(0deg, #ffffff 0%, rgba(0, 0, 0, 0.1294117647) 50%, #ffffff 100%);
}
#APP .content-items + .content-items .content-item {
  height: 6rem;
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */