.category_list {
  border: 1px solid #E7E7E7;
  border-top: 3px solid #FFDD00;
}

.category_list a {
  color: inherit;
  text-decoration: none;
}

.category_list .category_item {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  padding: 21px;
  padding-right: 35px;
  position: relative;
}

.category_list .category_item:not(:last-child) {
  border-bottom: 1px solid #E7E7E7;
}

.category_list .category_item_childs {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.category_list .category_item_childs.open {
  max-height: 100vh;
}

.category_list .category_item.child {
  font-size: 11px;
  line-height: 13px;
  color: #5C5C5C;
  border-bottom: none;
  padding: 7px 21px;
}

.category_list .category_item.child:first-child {
  padding-top: 14px;
}

.category_list .arrow {
  position: absolute;
  right: 12px;
  top: 16px;
  background-image: url("/assets/icons/arrow_yellow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 25px;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  cursor: pointer;
  caret-color: transparent;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.category_list .arrow.opened {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
/*# sourceMappingURL=../../maps/component/block/categories_block.css.map */
