<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.blog-settings .settings-filter {
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: space-between;
}
.blog-settings .smart-filter {
  width: 100%;
}
.blog-settings .smart-filter-form {
  display: flex;
  justify-content: space-between;
}

.blog__header {
  display: flex;
  border-bottom: 1px solid #232323;
  margin-bottom: 80px;
}

.blog__title {
  font-weight: 800;
  font-size: 60px;
  line-height: 130%;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #232323;
  margin-bottom: 40px;
}

.settings-filter__custom-parameters {
  width: max-content;
  position: relative;
  text-align: start;
  user-select: none;
  cursor: pointer;
}

.settings-filter__custom-parameters-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  /* color: rgba(35, 35, 35, 0.5); */
  /* opacity: 0.5; */
}

.settings-filter__custom-parameters-list {
  position: absolute;
  top: 34px;
  left: 0;
  cursor: pointer;
  width: max-content;
  min-width: 188px;
  max-height: 250px;
  z-index: 81;
  background: #fff;
	box-shadow: 0 7px 21px rgb(83 92 105 / 12%), 0 -1px 6px 0 rgb(83 92 105 / 6%);
  padding: 10px;
}
.settings-filter__custom-parameters-list.on {
  display: block;
}
.settings-filter__custom-parameters-item {
  font-size: 13px;
  line-height: 20px;
	text-transform: uppercase;
  color: #232323;
  display: block;
}
.settings-filter__custom-parameters-item:last-child {
  padding-bottom: 0;
}
.settings-filter__custom-parameters-item:hover {
  color: #232323;
}

.settings-filter__custom-parameters-arrow {
  position: absolute;
  top: 1px;
  right: -20px;
  border: solid #232323;
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(45deg);
  margin-right: 0px;
  height: 5px;
  width: 5px;
  cursor: pointer;
}

/* .settings-filter__custom-parameters-title:after {
  content: '';
  display: block;
  width: 12px;
  height: 7px;
  position: absolute;
  right: -20px;
  top: 25px;
  background: url('images/arrow.svg') no-repeat right center / cover;
  transition: all 0.27s ease-in-out;
  transform: rotate(0deg);
} */
.settings-filter__custom-parameters-title.on:after {
  transform: rotate(180deg);
}
</pre></body></html>