.sections-left {
  position: relative;
  padding: 20px 20px 32px 20px;
  border-radius: 10px;
  background-color: var(--color-bg);
}

.sections-left__block-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.sections-left__current {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  margin-top: 20px;
  cursor: pointer;
}

.sections-left__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  width: 100%;
  max-height: 210px;
  overflow-y: auto;
}

.sections-left__list::-webkit-scrollbar {
  width: 6px;
}

.sections-left__list::-webkit-scrollbar-button {
  display: none;
}

.sections-left__list::-webkit-scrollbar-thumb {
  background-color: #e0e0e0;
  border-radius: 50px;
}

.sections-left__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  padding: 8px 0;
  transition: all 0.25s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sections-left__title:hover {
  background-color: var(--color-bg);
  color: var(--color-orange);
}

.sections-left__title svg {
  flex-shrink: 0;
}

.sections-left__list .active .sections-left__title {
  color: var(--color-orange);
}

.sections-left__current.opened svg {
  transform: rotate(180deg);
}

.sections-left__open {
  display: none;
}

@media (max-width: 1200px) {
  .sections-left {
    display: none;
  }
}

@media (max-width: 500px) {
  .tablet-filter {
    margin-top: 0;
  }

  .sections-left {
    display: block;
    border-radius: 20px 20px 0px 0px;
    margin: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 30px 20px;
    z-index: 101;
    transition: all 0.25s;
    transform: translateY(100%);
    width: 100%;
  }

  .sections-left.open {
    transform: translateY(0);
  }

  .subcats__overlay {
    opacity: 0.6;
    background: #000;
    position: fixed;
    top: 0;
    z-index: 100;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
  }

  .sections-left__open.button {
    display: flex;
    margin-top: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    border-radius: 50px;
    background-color: var(--color-bg);
    width: 100%;
  }

  .sections-left__block-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    display: block;
    margin-bottom: 18px;
  }

  .sections-left__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    padding: 14px 0;
  }

  .sections-left__list {
    max-height: 310px;
  }

  .sections-left__list li:not(:last-child) {
    border-bottom: 1px solid rgb(242 242 242 / 80%);
  }

  .sections-left__list li.active {
    padding-right: 17px;
    background-image: url("img/check.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right center;
  }
}
