/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #26a3a2;
}
::-webkit-scrollbar-thumb {
  background-color: #2dd269;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #2dd269;
}

/* FIX */
:focus-visible,
[tabindex="0"]:focus-visible,
input:focus-visible,
input[type="checkbox"].focus-visible + label,
input[type="checkbox"]:focus-visible + label,
input[type="radio"].focus-visible + label,
input[type="radio"]:focus-visible + label,
select:focus-visible,
textarea:focus-visible {
  box-shadow: none;
  outline: 0px;
}
:hover {
  transition: all 0.3s;
}

/* MENU */
.sidebar {
  position: relative;
}
.sidebar-inner {
  position: sticky;
  top: 20px;
  align-self: start;
  padding: 0;
  margin-bottom: 20px;
}
.box-bg-variant #categories {
  display: flex;
  flex-flow: column;
  gap: 3px;
}
.box-bg-variant .categories {
  background-color: #f2f2f2;
  gap: 3px;
  display: flex;
  width: 100%;
}
.box-bg-variant .categories .topic {
  width: 100%;
}
.box-bg-variant .categories a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  border: none;
  padding: 12px 60px 10px 30px;
  display: flex;
  width: 100%;
}
.box-bg-variant .categories .topic.active,
.box-bg-variant .categories .topic.child-active {
  background-color: #26a3a2;
}
.box-bg-variant .categories .topic.active a,
.box-bg-variant .categories .topic.child-active a {
  color: #ffffff;
}
.box-bg-variant .categories#cat-3108 {
  background-color: #2dd269;
}
.box-bg-variant .categories#cat-3108 a {
  color: #ffffff;
}
.box-bg-variant .categories#cat-1343 {
  background-color: #c32956;
}
.box-bg-variant .categories#cat-1343 a {
  color: #ffffff;
}
.box-bg-variant .categories#cat-2258 {
  background-color: #e0ce27;
}
.box-bg-variant .categories#cat-2258 a {
  color: #ffffff;
}
.box-bg-variant .categories:hover {
  background-color: #26a3a2 !important;
}
.box-bg-variant .categories:hover a {
  color: #ffffff !important;
}
#categories .expandable > .topic > a > span,
#categories .expandable > a > span {
  top: auto;
  right: 30px;
  left: auto;
  line-height: 1;
  font-size: 10px;
}
#categories .expandable.active.expanded > a > span,
#categories .expandable > .topic.active > a > span,
#categories .expandable.active > .topic > a > span,
#categories .expandable.active > a > span {
  color: #ffffff;
}
#categories .expandable.expanded > ul {
  display: none;
}

/* CATEGORIES */
.subcategories {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1199px) {
  .subcategories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .subcategories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 479px) {
  .subcategories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.subcategories li {
  width: 100%;
  background-color: #f2f2f2;
  height: 50px;
  display: flex;
  transition: all 0.3s;
  padding: 0;
}
.subcategories li:hover {
  background-color: #26a3a2;
}
.subcategories li a {
  height: auto;
  padding: 4px 20px 0px 20px;
  width: 100%;
  height: 100%;
  line-height: 1;
}
.subcategories li a .text {
  line-height: 1.2;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.subcategories li:hover a .text {
  color: #ffffff;
}
.subcategories li a:hover .text {
  text-decoration: none;
}
@media (max-width: 479px) {
  .subcategories li {
    height: 40px;
  }
  .subcategories li a {
    padding: 2px 20px 0px 20px;
  }
  .subcategories li a .text {
    font-size: 10px;
  }
}
