.catalog-products-popup-sort {
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.catalog-products-popup-sort.active {
  opacity: 1;
  visibility: visible;
}

.catalog-products-popup-sort__block {
  background-color: var(--white);
  border-radius: 8px 8px 0 0;
}

.catalog-products-popup-sort__top {
  height: 56px;
  padding: 0 16px;
  border-radius: 8px 8px 0 0;
  background-color: var(--bg-highlight);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24px 1fr 24px;
  grid-template-columns: 24px 1fr 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--bg-border);
}

.catalog-products-popup-sort__close {
  width: 24px;
  height: 24px;
}

.catalog-products-popup-sort__title {
  text-align: center;
  font-size: 16px;
  line-height: 120%;
}

.catalog-products-popup-sort__form {
  padding: 12px 0;
}

.catalog-products-popup-sort__variant {
  margin: 0 16px;
  height: 48px;
}
.catalog-products-popup-sort__variant:not(:last-child) {
  border-bottom: 1px solid var(--bg-border);
}
.catalog-products-popup-sort__variant input {
  display: none;
}
.catalog-products-popup-sort__variant input:checked + label span {
  border: 1px solid var(--action-primary);
  background-color: var(--action-primary);
  width: 20px;
  height: 20px;
}
.catalog-products-popup-sort__variant label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  width: 100%;
}
.catalog-products-popup-sort__variant label span {
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--bg-border);
  border-radius: 50%;
}