/* app/client/plugins/filter/src/components/filter/button/button.css */
filter-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-gray-200);
  margin-right: 12px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
filter-button:not([active]):hover {
  background: #EBEBEB;
}
filter-button > a,
filter-button > span {
  display: flex;
  font-size: 16px;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
}
filter-button[active] img {
  filter: brightness(0) invert(1);
  margin-right: 6px;
}
filter-button img {
  pointer-events: none;
}
filter-button[active] {
  width: max-content;
  background: var(--color-blue-200);
  border-radius: 20px;
  color: #fff;
  padding: 0 14px;
  font-weight: 700;
}
filter-button > a > .button-text {
  display: none;
  margin-right: 6px;
}
filter-button > a > .button-count {
  opacity: 0.7;
  display: none;
}
filter-button[active] > a > .button-text {
  display: block;
}
filter-button[active] > a > .button-count {
  display: block;
  color: #4C7EB5;
}
.filter-buttons {
  display: flex;
  overflow: visible;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.filter-buttons::-webkit-scrollbar {
  display: none;
}
.filter-buttons filter-button img {
  width: 24px;
  height: 24px;
}
.filter-buttons filter-button:not([active]) img {
  opacity: 0.6;
}
.filter-buttons filter-button:not([active]):hover img {
  opacity: 1;
}
.filter-buttons .modal-settings {
  cursor: pointer;
  margin-left: auto;
  border: none;
  background: transparent;
}
@media (max-width: 768px) {
  filter-button:not([more]) > a > .button-text,
  filter-button:not([more]) > a > .button-count {
    display: none !important;
  }
  filter-button:not([more]) > a > .button-text {
    margin-right: 0;
  }
  filter-button[active] {
    padding: 0 10px;
  }
  filter-button[active] > a > img {
    margin-right: 0 !important;
  }
  .filter-buttons {
    overflow-x: auto;
    overflow-y: hidden;
  }
}

/* app/client/plugins/filter/src/components/filter/user/user.css */
filter-user {
  border-radius: 6px;
}
filter-user > div.filter-user-item {
  border: 1px solid #ebebeb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 5px 10px 5px 5px;
  position: relative;
  cursor: pointer;
  color: #000000;
  text-decoration: none;
}
filter-user:hover {
  background: #f5f5f5;
}
filter-user .user-info-wrapper {
  display: flex;
  flex-flow: column;
  margin-left: 8px;
}
filter-user .user-info-wrapper .user-name {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: var(--user-max-text);
  overflow: hidden;
}
filter-user .user-info-wrapper .user-roi {
  font-style: normal;
  font-weight: 600;
  font-size: 8px;
  color: #6ac059;
}
filter-user .user-count {
  margin-left: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #999999;
  opacity: 0.2;
}
filter-user img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
}
.filter-feed-settings > img {
  width: 32px;
}
.filter-users {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  max-width: 100%;
  position: relative;
  --user-max-text: 105px;
  margin: 20px -8px -6px;
}
.filter-users > * {
  margin: 6px 8px;
}
.filter-users.expand {
  --user-max-text: auto;
}
@media (max-width: 768px) {
  .filter-users show-more,
  .filter-users hide-more {
    flex-basis: 100%;
    text-align: center;
  }
}

/* app/client/plugins/filter/src/components/filter/selectable/selectable.css */
filter-selectable {
  cursor: pointer;
  border: 1px solid #F2F2F5;
  border-radius: 6px;
  width: max-content;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  --selectable-select: #1a73e8;
}
filter-selectable > a {
  padding: 11px 16px;
}
filter-selectable:hover {
  background: #F2F2F5;
}
filter-selectable.select {
  background: var(--selectable-select);
}
filter-selectable.select {
  color: #ffffff;
}
filter-selectable.select .selectable-clear {
  display: inline-block;
}
filter-selectable.select .selectable-text {
  color: #fff;
}
filter-selectable .selectable-count {
  margin-left: 6px;
}
filter-selectable.select .selectable-count {
  color: #ffffff;
  opacity: 0.7;
}
filter-selectable .selectable-count {
  color: #999999;
}
filter-selectable .selectable-clear {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  margin-left: -10px;
  margin-right: 14px;
  background: #ffffff;
  position: relative;
  display: none;
}
filter-selectable .selectable-clear::before,
.selectable-clear::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  transform: rotate(45deg);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: var(--selectable-select);
}
filter-selectable .selectable-clear::after {
  transform: rotate(-45deg);
}
.selectable-content {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -6px;
  margin-top: 20px;
}
.selectable-content > * {
  margin: 0 6px 8px;
}
.selectable-content:empty {
  display: none;
}
@media (max-width: 768px) {
  .selectable-content show-more,
  .selectable-content hide-more {
    flex-basis: 100%;
    text-align: center;
  }
  filter-selectable {
    font-size: 14px;
  }
  filter-selectable > a {
    padding: 7.25px 12px;
  }
  filter-selectable .selectable-clear {
    margin-right: 12px;
    margin-left: -4px;
  }
}

/* app/client/plugins/filter/src/components/filter/more-button/more-button.css */
more-button {
  border: 1px solid #F2F2F5;
  border-radius: 6px;
  padding: 11px 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
more-button:hover {
  background: #F2F2F5;
}
.more-text {
  font-weight: 500;
  font-size: 14px;
}
.more-count {
  color: #999999;
  font-weight: 500;
  font-size: 14px;
  margin-left: 4px;
}
@media (max-width:767.98px) {
  more-button {
    padding: 7.25px 12px;
    font-size: 14px;
  }
}

/* app/client/plugins/filter/src/components/filter/promt/promt.css */
filter-promt {
  background: #868686;
  padding: 20px 20px 12px;
  display: flex;
  border-radius: 12px;
  flex-flow: column;
  margin-top: 14px;
  color: #fff;
  position: relative;
  font-size: 14px;
}
.promt-container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -6px;
}
.promt-item {
  font-size: 14px;
  padding: 3px 8px;
  cursor: pointer;
  border-radius: 16px;
  flex-shrink: 0;
  border: 1px solid #ebebeb;
  background: #fff;
  color: #000;
  margin: 0 6px 8px;
}
.promt-compilation__block {
  margin-bottom: 14px;
  padding-right: 20px;
  position: relative;
}
span.promt-text {
  font-size: 14px;
  cursor: pointer;
  border-radius: 16px;
  flex-shrink: 0;
  margin: 0 6px 8px;
}
span.promt-close {
  float: right;
  width: 30px;
  height: 30px;
  position: absolute;
  cursor: pointer;
  top: -12px;
  right: -12px;
}
span.promt-close:after,
span.promt-close:before {
  content: "";
  width: 50%;
  height: 2px;
  background: #4D4D4D;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
span.promt-close:after {
  transform: rotate(45deg);
}
span.promt-close:before {
  transform: rotate(-45deg);
}
span.promt-close:hover {
  transform: scale(1.2);
}
span.promt-close:hover:after,
span.promt-close:hover:before {
  background: #fff;
  transition: background-color 0.7s ease;
}
.promt-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin: 4px -6px 0;
}
span.promt-button {
  border: 1px solid;
  font-size: 14px;
  padding: 6px 12px;
  flex-shrink: 0;
  margin: 0 6px 8px;
  cursor: pointer;
}
span.promt-button:hover {
  background: #fff;
  color: #7d7d7d;
}

/* app/client/plugins/filter/src/components/filter/filter.css */
pr-filter {
  align-content: space-between;
  background: #fff;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 20px;
}
@media (max-width:575.98px) {
  pr-filter {
    border-radius: 0px;
    margin: 0 -16px;
    padding: 20px 16px;
  }
}

/* app/client/plugins/filter/src/components/show-more/show-more.css */
show-more {
  color: #1A73E8;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  width: max-content;
  flex-shrink: 0;
}

/* app/client/plugins/filter/src/components/hide-more/hide-more.css */
hide-more {
  color: #1A66FF;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  width: max-content;
  flex-shrink: 0;
}

/* app/client/plugins/filter/src/components/modal/modal.css */
custom-modal {
  display: none;
}
.overlay-modal {
  background: transparent;
  position: absolute;
  z-index: 2147483002;
  transform: translate(-100%, 25px);
}
.overlay-modal.start {
  transform: translate(0, 25px);
}
.root-modal {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15), 0px 0px 3px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: auto;
}
.root-modal .modal-title {
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
}
.root-modal .modal-title:empty {
  margin-bottom: 0;
}
.root-modal .mobile-close {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 18px;
  right: 8px;
}
.root-modal .mobile-close:after,
.root-modal .mobile-close:before {
  content: "";
  width: 50%;
  height: 2px;
  background: #4D4D4D;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.root-modal .mobile-close:after {
  transform: rotate(45deg);
}
.root-modal .mobile-close:before {
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .overlay-modal {
    transform: none;
    height: 100%;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background: #00000066;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
  }
  .root-modal {
    border-radius: 0;
    padding: 20px 16px;
    position: relative;
  }
}

/* app/client/plugins/filter/src/components/filter-settings/save-filter/save-filter.css */
.save-filters {
  margin-left: auto;
  cursor: pointer;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
}
.save-filters.open {
  background: #ebebeb;
}
.save-filters:hover {
  background: #ebebeb;
}
.save-filters__item {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.save-filters__item-delete {
  margin-left: auto;
  visibility: hidden;
  pointer-events: none;
}
.save-filters__item:hover {
  background: #f5f5f5;
}
.save-filters__item:hover .save-filters__item-delete {
  visibility: visible;
  pointer-events: unset;
}
.save-filters__name {
  display: none;
  width: 100%;
  align-items: center;
}
.save-filters__trigger.show_name .save-filters__bookmark {
  display: none;
}
.save-filters__trigger.show_name .save-filters__name {
  display: flex;
}
.save-filters__bookmark {
  display: flex;
  align-items: center;
}
.save-filters__name input {
  width: 128px;
  border: 1px solid #999999;
  border-radius: 4px;
  padding: 8px 12px;
}
.save-filters__name input::placeholder {
  font-size: 14px;
  color: #999999;
}
.save-filters__name.valid .icon::before,
.save-filters__name.valid .icon::after {
  background: #1A66FF;
}
.save-filters__name.valid .icon {
  background: transparent;
}
.save-filters__name .icon {
  margin-left: auto;
  width: 32px;
  height: 28px;
  background: #f5f5f5;
  border-radius: 16px;
  position: relative;
}
.save-filters__name .icon::before {
  content: "";
  width: 18%;
  height: 2px;
  position: absolute;
  background: #999999;
  transform: rotate(50deg);
  top: 17px;
  left: 11px;
}
.save-filters__name .icon::after {
  content: "";
  width: 35%;
  height: 2px;
  position: absolute;
  background: #999999;
  transform: rotate(-60deg);
  top: 14px;
  right: 8px;
}
@media (max-width: 768px) {
  .save-filters {
    margin-right: 6px;
  }
  .save-filters__name input {
    width: 80%;
  }
}

/* app/client/plugins/filter/src/components/filter-settings/index.css */
filter-settings {
  background: #ffffff;
  padding: 0 20px 20px 20px;
  border-radius: 0 0 16px 16px;
  display: flex;
  flex-flow: column;
}
.dropdown {
  font-weight: 500;
  font-size: 14px;
  padding-right: 12px;
  width: max-content;
  position: relative;
  cursor: pointer;
  padding: 6px 28px 6px 12px;
  border-radius: 16px;
  margin-right: 12px;
  border: 1px solid transparent;
}
.dropdown:hover {
  background: #f5f5f5;
}
.dropdown.open {
  background: #ebebeb;
}
.dropdown.open:after {
  transform: rotate(-45deg);
}
.dropdown.open:before {
  transform: rotate(45deg);
}
.dropdown:after,
.dropdown:before {
  content: "";
  width: 6px;
  height: 1px;
  background: #999999;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-right: 12px;
}
.dropdown:hover:after,
.dropdown:hover:before {
  background: #ccc;
}
.dropdown:after {
  transform: rotate(45deg);
  right: 4px;
}
.dropdown:before {
  transform: rotate(-45deg);
  right: 0;
}
filter-settings .checked-selectable > * {
  order: 0;
}
filter-settings .checked-selectable .clear-data {
  order: 1;
  cursor: pointer;
  color: #999999;
  font-size: 16px;
  border-radius: 6px;
  width: max-content;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 11px 14px;
}
filter-settings .checked-selectable .clear-data:hover {
  background: #ebebeb;
  color: #666;
}
filter-settings > .selectable-content {
  margin-top: 12px;
  margin-bottom: 4px;
}
filter-settings > .selectable-content.compilation-container {
  margin-top: 0;
}
filter-settings > .selectable-content.compilation-container[data-has_items] {
  margin-top: 12px;
}
filter-settings > .dropdowns-wrapper {
  margin-bottom: 8px;
}
filter-settings > *:last-child {
  margin-bottom: 0;
}
filter-settings > *:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  filter-settings > .dropdowns-wrapper {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  filter-settings > .selectable-content > * {
    margin-top: 0;
    margin-bottom: 0;
  }
  filter-settings > .selectable-content.compilation-container[data-has_items] {
    margin-top: 0;
  }
  filter-settings {
    display: flex;
    flex-flow: row nowrap;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  filter-settings::-webkit-scrollbar {
    display: none;
  }
  filter-settings > .dropdowns-wrapper .dropdown,
  filter-settings > .horizontal-divider,
  filter-settings > .checked-selectable {
    display: none;
  }
  filter-settings > .selectable-content {
    margin: 0;
    width: max-content;
    overflow-x: visible;
    flex-wrap: nowrap;
  }
  filter-settings > .selectable-content > * {
    flex-shrink: 0;
  }
}
@media (max-width:767.98px) {
  filter-settings {
    border-radius: 0;
  }
}
@media (max-width:575.98px) {
  filter-settings {
    border-radius: 0;
    margin: 0 -16px 0;
    padding: 20px 16px;
  }
}

/* app/client/plugins/filter/src/components/checkbox/checkbox.css */
custom-checkbox {
  display: flex;
  align-items: center;
  padding: 11px 16px;
}
custom-checkbox .checkbox {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  cursor: pointer;
  order: 0;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
}
custom-checkbox > * {
  order: 1;
}
custom-checkbox .checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #ebebeb;
  border-radius: 4px;
  margin-right: 15px;
  position: relative;
  box-sizing: border-box;
}
custom-checkbox .checkbox .checkmark:after,
custom-checkbox .checkbox .checkmark:before {
  content: "";
  position: absolute;
  width: 2px;
  background: #ffffff;
  bottom: 2px;
  display: none;
}
custom-checkbox .checkbox .checkmark:after {
  height: 80%;
  transform: rotate(40deg);
  right: 4px;
}
custom-checkbox .checkbox .checkmark:before {
  height: 40%;
  transform: rotate(-40deg);
  left: 3px;
}
custom-checkbox .checkbox input:checked ~ .checkmark {
  background: #1a66ff;
  border-color: #1a66ff;
}
custom-checkbox .checkbox input:checked ~ .checkmark:after,
custom-checkbox .checkbox input:checked ~ .checkmark:before {
  display: block;
}
custom-checkbox .checkbox input {
  width: 0px;
  height: 0px;
  opacity: 0;
}
custom-checkbox .checkbox input[type=checkbox] {
  margin: 0;
  position: initial;
}
custom-checkbox:hover {
  background: #F5F5F5;
}
custom-checkbox .checkbox:hover .checkmark {
  border-color: #cccccc;
}
custom-checkbox.disabled {
  pointer-events: none;
  background: #F5F5F5;
  color: #999999;
}
@media (max-width:767.98px) {
  custom-checkbox {
    padding: 10px 0;
  }
  custom-checkbox .checkbox {
    font-size: 14px;
  }
}

/* app/client/plugins/filter/src/components/radio/radio.css */
custom-radio {
  display: block;
  position: relative;
  z-index: 2;
  cursor: pointer;
  padding: 14px 48px 14px 16px;
  white-space: nowrap;
  background: #fff;
}
custom-radio .radio {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  cursor: pointer;
  order: 0;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
}
custom-radio > * {
  order: 1;
}
custom-radio .radio .checkmark {
  width: 18px;
  height: 18px;
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
}
custom-radio .radio .checkmark:before {
  content: "";
  position: absolute;
  background: #ffffff;
  bottom: 0px;
  display: none;
  width: 8px;
  height: 14px;
  transform: rotate(40deg);
  left: 4px;
  border: 6px solid #2196f3;
  border-width: 0 3px 3px 0;
  bottom: 4px;
}
custom-radio .radio input:checked ~ .checkmark:before {
  display: block;
}
custom-radio .radio input {
  width: 0px;
  height: 0px;
  opacity: 0;
}
custom-radio .radio input[type=radio] {
  margin: 0;
  position: initial;
}
custom-radio.disabled:hover {
  background: #F2F2F5;
}
custom-radio:hover {
  background: #F2F2F5;
}
custom-radio.disabled {
  pointer-events: none;
  background: #F5F5F5;
  color: #999999;
}
@media (max-width:767.98px) {
  custom-radio {
    padding: 14px 48px 14px 0;
  }
  custom-radio:not(:last-child) {
    border-bottom: 0.5px solid #E4E4E4;
  }
  custom-radio.disabled:hover {
    background: transparent;
  }
  custom-radio:hover {
    background: transparent;
  }
}

/* app/client/plugins/filter/src/components/range-input/range-input.css */
range-input {
  display: block;
  width: max-content;
  padding-bottom: 7px;
}
range-input input {
  width: 60px;
  height: 32px;
  padding: 8px 6px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  outline: none;
}
range-input input[type=number] {
  -moz-appearance: textfield;
}
range-input input[type=number]:hover,
range-input input[type=number]:focus {
  -moz-appearance: number-input;
}
range-input input[type=number]::-webkit-inner-spin-button,
range-input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
range-input .divider {
  margin: 0 6px;
}
range-input .units {
  margin-left: 6px;
  font-size: 14px;
}
.dropdown-item.hide-range range-input {
  display: none;
}

/* app/client/plugins/filter/src/components/filter-mobile/index.css */
filter-mobile {
  display: none;
}
filter-mobile .filter-mobile__title {
  padding: 6px 12px;
  border: 1px solid #ebebeb;
  font-size: 14px;
  border-radius: 16px;
  cursor: pointer;
}
filter-mobile .filter-mobile__title svg {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  fill: currentColor;
  margin-bottom: -5px;
}
.filter-mobile__count {
  margin-left: 4px;
}
div.overlay-modal .root-modal .filter-mobile__modal-title {
  font-size: 18px;
  font-weight: bold;
  padding: 24px;
  position: relative;
  display: inline-block;
  text-align: center;
  color: #161616;
}
.filter-mobile__title.active {
  color: #1A66FF;
  border-color: #1A66FF;
}
div.overlay-modal .root-modal .filter-mobile__modal-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 4px;
  background: #ccc;
}
.filter-mobile__summary {
  font-size: 14px;
  font-weight: bold;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  position: relative;
  color: #161616;
}
.filter-mobile__summary {
  outline: none;
}
.filter-mobile__summary > a {
  display: flex;
  align-items: center;
  width: 100%;
}
.filter-mobile__summary img {
  width: 20px;
  margin-left: auto;
}
.filter-mobile__details {
  padding: 0 16px;
}
.filter-mobile__details.active {
  background: #F5F5F5;
}
.filter-mobile__details[open].active {
  background: transparent;
}
.filter-mobile__details[open] .filter-mobile__summary img {
  transform: rotate(180deg);
}
.filter-mobile__details .filter-mobile__summary::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100vw;
  margin-left: -16px;
  background: #ebebeb;
}
.filter-mobile__details[open] .filter-mobile__summary::after {
  content: none;
}
.filter-mobile__summary::-webkit-details-marker {
  display: none;
}
[key=filter-mobile] .root-modal {
  height: 100vh;
  padding: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
.filter-mobile__body {
  max-height: calc(100vh - 130px);
  overflow: auto;
  height: inherit;
}
.filter-mobile__actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.filter-mobile__actions > * {
  margin: 8px;
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}
.filter-mobile__actions-divider {
  height: 4px;
  width: 100vw;
  background: rgb(237, 237, 237);
  margin-top: auto;
}
.filter-mobile__actions button {
  height: 42px;
  width: 100%;
}
.filter-mobile__actions-submit {
  background: #1a66ff;
  border-radius: 8px;
  border: none;
  color: #fff;
  font-size: 14px;
}
.filter-mobile__actions-clear {
  border: 1px solid #ebebeb;
  border-radius: 8px;
  font-size: 14px;
  background: transparent;
}
@media (max-width: 768px) {
  filter-mobile {
    display: flex;
    flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }
}

/* app/client/plugins/filter/src/components/sort-settings/date-button/date-button.css */
.date-buttons {
  overflow: auto;
  display: flex;
  flex-flow: row nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}
.date-buttons::-webkit-scrollbar {
  display: none;
}
date-button {
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
date-button:not(:last-child) {
  margin-right: 20px;
}
date-button.active {
  color: #1A73E8;
}
date-button:not(.active):hover {
  color: #1A73E8;
}
date-button .date-button-count {
  margin-left: 4px;
}
date-button:not(.active) .date-button-count {
  color: #999999;
}
@media (max-width:768px) {
  date-button {
    font-size: 14px;
  }
}

/* app/client/plugins/filter/src/components/sort-settings/sort-settings.css */
sort-settings {
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin-top: 20px;
}
.sort-button {
  display: flex;
}
.sort-button::before {
  display: none;
}
.sort-button::after {
  display: none;
}
.sort-button > img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  opacity: 0.5;
}
.sort-buttons .dropdown {
  font-weight: 400;
  font-size: 16px;
  margin-right: 0;
  width: max-content;
  position: relative;
  cursor: pointer;
  padding: 0;
  padding-left: 12px;
  border-radius: 0;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.sort-buttons .dropdown svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: currentColor;
}
.sort-buttons .dropdown.open {
  background: transparent;
}
@media (max-width:768px) {
  sort-settings {
    background: #fff;
    padding: 12px 20px;
    margin: 0 0 16px;
    border-radius: 0 0 16px 16px;
    flex-flow: column;
    align-items: flex-start;
  }
  .sort-buttons {
    margin-top: 16px;
  }
  .sort-buttons .dropdown {
    font-size: 14px;
    padding-left: 0;
  }
}
@media (max-width:575.98px) {
  sort-settings {
    margin: 0 -16px 16px;
    border-radius: 0px;
    padding: 12px 16px;
  }
}

/* app/client/plugins/filter/src/index.css */
input {
  box-sizing: border-box;
}
a.no-pointer {
  pointer-events: none;
  color: unset;
  text-decoration: initial;
}
a.clear-link {
  text-decoration: none;
  color: unset;
}
a.clear-link:visited {
  color: unset;
}
div.filter-wrapper {
  padding: 0;
  box-sizing: border-box;
  font-weight: 500;
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
}
div.overlay-modal .root-modal > * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-weight: 500;
}
div.filter-wrapper input::-webkit-outer-spin-button,
div.filter-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
div.overlay-modal .root-modal input[type=number] {
  -moz-appearance: textfield;
}
div.filter-wrapper .row {
  display: flex;
  flex-flow: row;
  margin: 0;
  margin-bottom: 8px;
}
div.filter-wrapper .popup {
  background: #000;
  color: #fff;
  opacity: 0.8;
  padding: 8px;
  border-radius: 8px;
  position: absolute;
  display: flex;
  bottom: 110%;
  right: 50%;
  transform: translateX(50%);
  z-index: 1000;
  width: max-content;
  font-size: 14px;
}
div.overlay-modal .horizontal-divider {
  width: 100%;
  height: 1px;
  background: #EBEBEB;
  margin: 8px 0;
}
div.filter-wrapper .horizontal-divider {
  width: 100%;
  height: 1px;
  background: #EBEBEB;
  margin: 8px 0;
}
div.filter-wrapper .horizontal-divider_transparent {
  background: transparent;
}
div.filter-paranja {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: hsla(0, 0%, 100%, .8);
  z-index: 14;
}
div.filter-paranja .cssload-inner.cssload-one {
  border-bottom: 2px solid rgb(74 141 255);
}
div.filter-paranja .cssload-inner.cssload-two {
  border-right: 2px solid #000;
}
div.filter-paranja .cssload-inner.cssload-three {
  border-top: 2px solid #000;
}
div.bottom-filter-block {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-flow: column;
  margin-top: 14px;
  font-family: "SF Pro Display", sans-serif;
}
div.bottom-filter-block .selectable-content {
  margin-top: 0;
}
