/* line 38, stdin */
.ss-autofill {
  display: flex;
  align-items: center;
  color: #253340; }
/* line 43, stdin */
.ss-autofill::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  background-image: url(/img/ss-plus.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain; }
/* line 57, stdin */
.ss-autofill__button {
  padding: 0;
  color: currentColor;
  background-color: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.18;
  cursor: pointer;
  transition: ease color 300ms; }
/* line 70, stdin */
.ss-autofill__button:hover {
  color: #2c977d; }
/* line 74, stdin */
.ss-autofill__button.is-disabled {
  pointer-events: none; }
/* line 80, stdin */
.ss-autofill__notice {
  display: inline;
  margin: 0;
  margin-left: 4px;
  color: #617277;
  font-family: inherit;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.18; }
/* line 90, stdin */
.ss-autofill__notice a {
  color: currentColor;
  text-decoration: underline;
  transition: ease color 300ms; }
/* line 95, stdin */
.ss-autofill__notice a:hover {
  color: #2c977d; }
/* line 47, stdin */
.ss-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 300px;
  height: 100%;
  background-image: radial-gradient(530px at 50% 0%, #44505b 0%, #000 100%);
  border-radius: 0 8px 8px 0;
  text-align: center; }
/* line 57, stdin */
.ss-aside__header {
  flex-grow: 1;
  padding: 30px 50px; }
/* line 62, stdin */
.ss-aside__title {
  color: #ffffff;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2; }
/* line 69, stdin */
.ss-aside__subtitle {
  margin: 0;
  margin-top: 20px;
  color: #a4b3b7;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6; }
/* line 78, stdin */
.ss-aside__body {
  margin-top: 30px;
  padding: 15px; }
/* line 83, stdin */
.ss-aside__image {
  position: relative; }
/* line 86, stdin */
.ss-aside__image::before {
  content: "";
  display: block;
  width: 262px;
  height: 115px;
  background-image: url("/img/advice.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain; }
/* line 98, stdin */
.ss-aside__informer {
  position: absolute;
  left: 0;
  bottom: 50%;
  transform: translateY(2px); }
/* line 111, stdin */
.ss-aside__textPath {
  font-size: 33px; }
/* line 115, stdin */
.ss-aside__footer {
  padding: 45px;
  padding-top: 20px; }
@media (max-width: 959px) {
  /* line 47, stdin */
  .ss-aside {
    width: 100%;
    flex-direction: row;
    align-items: center;
    border-radius: 8px; }
  /* line 129, stdin */
  .ss-aside__header, .ss-aside__footer {
    width: 50%;
    padding: 30px; }
  /* line 135, stdin */
  .ss-aside__subtitle {
    margin-top: 15px; }
  /* line 139, stdin */
  .ss-aside__body {
    display: none; } }
@media (max-width: 561px) {
  /* line 47, stdin */
  .ss-aside {
    flex-direction: column; }
  /* line 147, stdin */
  .ss-aside__header, .ss-aside__footer {
    width: 100%;
    padding: 16px; } }
/* line 51, stdin */
.ss-checkbox {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: baseline;
  justify-content: space-between;
  position: relative;
  color: #253340;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  cursor: pointer; }
/* line 68, stdin */
.ss-checkbox__input {
  margin: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -1px;
  left: 0;
  opacity: 0; }
/* line 78, stdin */
.ss-checkbox__label {
  display: block;
  padding-left: 27px;
  position: relative;
  color: currentColor;
  line-height: 1.2; }
/* line 85, stdin */
.ss-checkbox__label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -1px;
  left: 0;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #dde5e6; }
/* line 98, stdin */
.ss-checkbox__label::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 2px;
  left: 2px;
  background-size: contain;
  background-image: url(/img/check.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0;
  transition: opacity cubic-bezier(0.455, 0.03, 0.515, 0.955) 300ms; }
/* line 114, stdin */
.ss-checkbox__label a {
  color: #2b5999;
  text-decoration: none;
  transition: color ease 300ms; }
/* line 119, stdin */
.ss-checkbox__label a:hover {
  color: #ff6c66; }
/* line 125, stdin */
.ss-checkbox__amount {
  margin-left: 25px;
  color: #686c90;
  font-size: 15px;
  line-height: 1; }
/* line 132, stdin */
.ss-checkbox__input:checked + .ss-checkbox__label::after {
  opacity: 1; }
/* line 136, stdin */
.ss-checkbox__input.is-focused + .ss-checkbox__label::before {
  outline: 2px dashed #86d3ff; }
/* line 47, stdin */
.ss-button {
  display: inline-block;
  min-height: 54px;
  padding: 17px 20px 15px;
  position: relative;
  z-index: 0;
  color: #ffffff;
  border-radius: 10px;
  background-color: #366099;
  border: 1px solid #366099;
  font-weight: 500;
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1;
  vertical-align: top;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transform: translateZ(0);
  transition: ease border-color 300ms, ease background-color 300ms; }
@supports (font-variation-settings: normal) {
  /* line 47, stdin */
  .ss-button {
    font-family: "Inter var", sans-serif; } }
/* line 77, stdin */
.ss-button:hover {
  background-color: #294873;
  border-color: #294873; }
/* line 82, stdin */
.ss-button__caption {
  margin: 0;
  padding: 0;
  color: currentColor;
  font-size: 13px;
  font-weight: 400; }
/* line 90, stdin */
.ss-button__label {
  margin: 0;
  padding: 0; }
/* line 95, stdin */
.ss-button__caption + .ss-button__label {
  margin-top: 4px; }
/* line 99, stdin */
.ss-button.has-caption {
  padding-top: 9px;
  padding-bottom: 8px; }
/* line 103, stdin */
.ss-button.has-caption .ss-button__label {
  font-size: 17px; }
/* line 108, stdin */
.ss-button.is-wide {
  width: 100%; }
/* line 112, stdin */
.ss-button.is-advice {
  padding-left: 10px;
  padding-right: 10px;
  border: 2px solid #617277;
  background: transparent;
  transition: ease background-color 300ms; }
/* line 119, stdin */
.ss-button.is-advice .ss-button__caption {
  color: #a4b3b7;
  font-size: 13px;
  font-weight: 400;
  transition: ease color 300ms; }
/* line 126, stdin */
.ss-button.is-advice .ss-button__label {
  margin-top: 3px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 400; }
/* line 133, stdin */
.ss-button.is-advice:hover {
  background-color: #617277; }
/* line 136, stdin */
.ss-button.is-advice:hover .ss-button__caption {
  color: #ffffff; }
/* line 142, stdin */
.ss-button.is-bordered {
  color: #3b4a4d;
  background-color: #ffffff;
  border: 1px solid #dde5e6;
  transition: ease border 300ms; }
/* line 148, stdin */
.ss-button.is-bordered:hover {
  border-color: #637a99; }
/* line 153, stdin */
.ss-button.is-expand {
  padding-left: 60px;
  padding-right: 60px; }
/* line 158, stdin */
.ss-button.has-icon {
  display: flex;
  align-items: center;
  position: relative; }
/* line 163, stdin */
.ss-button.has-icon::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  position: relative;
  top: -1px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  transition: ease filter 300ms; }
/* line 179, stdin */
.ss-button.is-reset {
  padding-left: 16px;
  padding-right: 20px; }
/* line 183, stdin */
.ss-button.is-reset::before {
  background-image: url("/img/close.svg"); }
/* line 188, stdin */
.ss-button.is-reset.is-disabled::before {
  filter: grayscale(1) brightness(1.5); }
/* line 194, stdin */
.ss-button.is-green {
  background-color: #2c977d;
  border-color: #2c977d;
  color: #ffffff; }
/* line 199, stdin */
.ss-button.is-green:hover {
  background-color: #20705c;
  border-color: #20705c; }
/* line 205, stdin */
.ss-button.is-disabled {
  pointer-events: none;
  user-select: none; }
/* line 51, stdin */
.ss-input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 12px 16px 10px;
  color: #366099;
  background-color: rgba(236, 239, 241, 0.5);
  border: 1px solid #dde5e6;
  border-radius: 4px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 1;
  outline: none !important;
  transition: background-color 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955); }
/* line 67, stdin */
.ss-input:focus {
  background-color: #ffffff; }
/* line 71, stdin */
.ss-input.is-focused {
  /* outline: 2px dashed #86d3ff !important; */ }
/* line 75, stdin */
.ss-input::-moz-placeholder {
  color: #366099; }
/* line 79, stdin */
.ss-input::-webkit-input-placeholder {
  color: #366099; }
@charset "UTF-8";
/* line 6, stdin */
.ss-loader {
  width: 100%;
  height: 100%;
  text-align: center;
  background-image: url(/img/spinner.svg);
  background-position: 50% 50%;
  background-size: 60px 60px;
  background-repeat: no-repeat; }
@media (max-width: 768px) {
  /* line 6, stdin */
  .ss-loader {
    background-image: none;
    border: 1px solid #ddd;
    color: #666;
    border-radius: 10px;
    padding: 20px; }
  /* line 22, stdin */
  .ss-loader::after {
    content: "Загрузка..."; } }
/* slim-select */
/* line 3, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-single-selected,
.ss-multi-selected {
  height: auto !important;
  min-height: 40px !important;
  padding: 12.5px 15px 10.5px !important;
  padding-right: 35px !important;
  color: #366099;
  background-color: #f1f2f4 !important;
  border: 1px solid #dde5e6 !important;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1; }
/* line 17, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-single-selected.ss-disabled,
.ss-multi-selected.ss-disabled {
  opacity: 0.6;
  pointer-events: none; }
/* line 22, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-single-selected .placeholder,
.ss-single-selected .placeholder .ss-disabled,
.ss-multi-selected .placeholder,
.ss-multi-selected .placeholder .ss-disabled {
  color: #366099 !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 1; }
/* line 30, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-single-selected .placeholder,
.ss-multi-selected .placeholder {
  display: block !important;
  width: auto !important; }
/* line 34, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-single-selected .placeholder i,
.ss-multi-selected .placeholder i {
  display: inline !important;
  font-style: normal;
  color: #3b4a4d; }
/* line 41, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-single-selected.ss-open-above, .ss-single-selected.ss-open-below,
.ss-multi-selected.ss-open-above,
.ss-multi-selected.ss-open-below {
  position: relative;
  background-color: #ffffff !important;
  z-index: 1000;
  box-shadow: none; }
/* line 49, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-single-selected .ss-arrow,
.ss-multi-selected .ss-arrow {
  margin: 0;
  position: absolute;
  right: 10px;
  top: calc(50% - 6px); }
/* line 55, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-single-selected .ss-arrow span,
.ss-multi-selected .ss-arrow span {
  margin: 2px 0 0 !important;
  padding: 0 !important;
  width: 8px;
  height: 8px;
  background-image: url("/img/arrow-select.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  border: none !important;
  transform: rotate(0deg) !important; }
/* line 67, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-single-selected .ss-arrow span.arrow-up,
.ss-multi-selected .ss-arrow span.arrow-up {
  transform: rotate(180deg) !important; }
@media (max-width: 561px) {
  /* line 3, src/components/selection-form/filter/styles/plugins/_sselect.scss */
  .ss-single-selected,
  .ss-multi-selected {
    min-height: 36px !important;
    padding: 10px !important;
    padding-right: 30px !important; }
  /* line 78, src/components/selection-form/filter/styles/plugins/_sselect.scss */
  .ss-single-selected .placeholder,
  .ss-single-selected .placeholder .ss-disabled,
  .ss-multi-selected .placeholder,
  .ss-multi-selected .placeholder .ss-disabled {
    font-size: 13px; }
  /* line 83, src/components/selection-form/filter/styles/plugins/_sselect.scss */
  .ss-single-selected .ss-arrow,
  .ss-multi-selected .ss-arrow {
    right: 6px; } }

/* line 89, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-content {
  left: 0;
  top: calc(100% - 1px);
  width: 100%;
  padding: 0 !important;
  background-color: #ffffff !important;
  border: 1px solid #dde5e6 !important;
  border-radius: 0 0 4px 4px;
  box-shadow: none;
  border-top: none;
  overflow: hidden; }
/* line 101, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-content .ss-option {
  padding: 8px 16px !important;
  color: #5b6365;
  font-size: 16px;
  transition: ease color 300ms; }
/* line 108, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-content .ss-option:hover,
.ss-content .ss-option.ss-highlighted {
  color: #2c977d !important;
  background-color: transparent !important; }
/* line 114, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-content .ss-option.ss-disabled {
  color: #366099 !important;
  background-color: transparent !important; }

/* line 120, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-list {
  margin: 5px 0; }

/* line 124, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected {
  align-items: center;
  padding: 5px !important;
  padding-right: 15px !important;
  overflow: hidden; }
/* line 133, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected.ss-open-above .ss-values::after, .ss-multi-selected.ss-open-below .ss-values::after {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff); }
/* line 143, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected .ss-disabled {
  margin: 0 !important;
  margin-left: 10px !important;
  padding: 0 !important;
  color: #366099 !important; }
/* line 150, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected .ss-values {
  flex-wrap: nowrap !important;
  overflow: hidden;
  position: relative; }
/* line 155, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected .ss-values::after {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
   }
/* line 167, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected .ss-value {
  margin: 0 !important;
  padding: 6px 6px 5px !important;
  flex-direction: row-reverse;
  flex-shrink: 0 !important;
  background-color: #ffffff !important;
  border: 1px solid #a4b3b7 !important;
  border-radius: 2px !important;
  animation: none !important; }
/* line 177, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected .ss-value .ss-value-text {
  margin-left: 4px !important;
  color: #3b4a4d !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  line-height: 1; }
/* line 184, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected .ss-value .ss-value-text:empty {
  display: none !important; }
/* line 189, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected .ss-value .ss-value-delete {
  color: transparent;
  width: 12px;
  height: 12px;
  margin: 0 !important;
  flex-shrink: 0;
  position: relative;
  top: -1px;
  background-image: url(/img/remove.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain; }
/* line 204, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected .ss-value + .ss-value {
  margin-left: 5px !important; }
/* line 208, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected .ss-add {
  width: 8px !important;
  justify-content: center !important;
  flex: 1 0 8px !important;
  margin: 0 !important; }
/* line 214, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected .ss-add .ss-plus {
  height: 8px !important;
  background-color: #617277 !important; }
/* line 218, src/components/selection-form/filter/styles/plugins/_sselect.scss */
.ss-multi-selected .ss-add .ss-plus::after {
  width: 8px !important;
  left: -3px !important;
  top: 3px !important;
  background-color: #617277 !important; }

/* minibar */
/* line 2, src/components/selection-form/filter/styles/plugins/_minibar.scss */
.mb-container {
  overflow: hidden !important; }

/* line 6, src/components/selection-form/filter/styles/plugins/_minibar.scss */
.mb-content {
  max-height: inherit;
  overflow: visible; }

/* line 11, src/components/selection-form/filter/styles/plugins/_minibar.scss */
.mb-track-x,
.mb-track-y {
  background-color: transparent; }

/* line 16, src/components/selection-form/filter/styles/plugins/_minibar.scss */
.mb-track-x .mb-bar {
  height: 4px;
  background: #dde5e6;
  border-radius: 2px; }

/* line 22, src/components/selection-form/filter/styles/plugins/_minibar.scss */
.mb-track-y .mb-bar {
  width: 4px;
  background: #dde5e6;
  border-radius: 2px; }

/* line 165, stdin */
.ss-select {
  display: block;
  width: 100%;
  color: #253340;
  font-weight: 400;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  line-height: 1;
  outline: none !important;
  opacity: 1 !important;
  transition: color 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), border 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), background-color 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955); }
/* line 178, stdin */
.js-init .ss-select {
  opacity: 0; }
/* line 182, stdin */
.ss-select.is-inited {
  opacity: 1; }
/* line 186, stdin */
.ss-select .mb-track.mb-track-x {
  display: none; }
/* line 190, stdin */
.ss-select:focus {
  color: #253340;
  background-color: #ffffff;
  border-color: #2c977d; }
/* line 121, stdin */
.sizes-select {
  padding-bottom: 12px; }
/* line 124, stdin */
.sizes-select__content {
  display: flex;
  flex-flow: row wrap; }
/* line 129, stdin */
.sizes-select__fields {
  flex: 1; }
/* line 136, stdin */
.sizes-select__car {
  width: 72px;
  height: 88px;
  flex-shrink: 1;
  margin-left: 10px;
  margin-right: 20px;
  position: relative;
  top: 6px;
  background-image: url(/img/car.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain; }
/* line 150, stdin */
.sizes-select__toggle {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 25px;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #253340;
  font-weight: 500;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  outline: none !important;
  transition: ease color 200ms; }
/* line 168, stdin */
.sizes-select__toggle::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  flex-shrink: 0;
  background-image: url(/img/ss-plus.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain; }
/* line 182, stdin */
.sizes-select__toggle.is-active::before {
  background-image: url(/img/close.svg); }
/* line 187, stdin */
.sizes-select__toggle:hover {
  color: #2c977d; }
/* line 192, stdin */
.sizes-select__field + .sizes-select__toggle {
  margin-top: 30px; }
@media (max-width: 561px) {
  /* line 197, stdin */
  .sizes-select__car {
    width: 56px;
    height: 68px;
    margin-right: 10px; }
  /* line 203, stdin */
  .sizes-select__toggle {
    margin: 15px 0 5px;
    font-size: 14px; }
  /* line 208, stdin */
  .sizes-select__field + .sizes-select__toggle {
    margin: 15px 0 0; } }
@keyframes shift {
  from {
    transform: translateY(100%); }
  to {
    transform: translateY(0%); } }

/* line 63, stdin */
.ss-tabs {
  position: relative;
  z-index: 0; }
/* line 67, stdin */
.ss-tabs__header {
  position: absolute;
  bottom: 100%;
  left: 0px;
  z-index: 1; }
/* line 75, stdin */
.ss-tabs__buttons {
  display: flex;
  align-items: flex-end; }
/* line 80, stdin */
.ss-tabs__button {
  padding: 17px 45px 15px;
  position: relative;
  z-index: 0;
  border: none;
  color: #a4b3b7;
  background-color: transparent;
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  outline: none !important; }
/* line 95, stdin */
.ss-tabs__button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -3;
  background-color: #F2F4F5;
  border-radius: 8px 0 0px 0px;
}
/* line 110, stdin */
.ss-tabs__button::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  border-radius: 8px 0 0px 0px;

}
/* line 123, stdin */
.ss-tabs__button:last-child::before, .ss-tabs__button:last-child::after {
  border-radius: 0 8px 0px 0px; }
/* line 128, stdin */
.ss-tabs__button + .ss-tabs__button::after {
  border-left: none; }
/* line 132, stdin */
.ss-tabs__button.is-active {
  padding-top: 25px;
  color: #253340; }
/* line 136, stdin */
.ss-tabs__button.is-active::before {
  z-index: -2;
  border-radius: 8px 8px 0px 0px;
  background-color: #ffffff;
   }
/* line 143, stdin */
.ss-tabs__button.is-active::after {
  z-index: -1;
  border-bottom-color: #ffffff;
  border-radius: 8px 8px 0px 0px; }
/* line 151, stdin */
.ss-tabs__body {
  background-color: #ffffff;
  border-radius: 0 8px 8px;
  position: relative;
  z-index: 2; }
/* line 158, stdin */
.ss-tabs__list {
  margin: 0;
  padding: 0;
  list-style: none; }
/* line 164, stdin */
.ss-tabs__item {
  padding: 1px 45px; }
@media (max-width: 769px) {
  /* line 169, stdin */
  .ss-tabs__item {
    padding-left: 30px;
    padding-right: 30px; } }
@media (max-width: 561px) {
  /* line 176, stdin */
  .ss-tabs__button {
    padding: 20px 55px;
    font-weight: 500;
    font-size: 18px; }
  /* line 181, stdin */
  .ss-tabs__button.is-active {
    padding-top: 13px; }
  /* line 186, stdin */
  .ss-tabs__item {
    padding-left: 16px;
    padding-right: 16px; } }
/* line 59, stdin */
.ss-types__header {
  padding: 30px 0 35px; }

/* line 63, stdin */
.ss-types__buttons {
  display: flex;
  justify-content: space-between;
  margin: -10px 0; }

/* line 69, stdin */
.ss-types__button {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: 10px 5px;
  padding-left: 28px;
  position: relative;
  background-color: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none !important; }
/* line 83, stdin */
.ss-types__button:last-child {
  flex: 0.9; }
/* line 87, stdin */
.ss-types__button::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: calc(50% - 10px);
  border: 2px solid #dde5e6;
  border-radius: 50%;
  transition: ease border-color 200ms; }
/* line 100, stdin */
.ss-types__button::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 4px;
  top: calc(50% - 6px);
  background-color: #2c977d;
  border-radius: 50%;
  opacity: 0;
  transition: ease opacity 200ms; }
/* line 115, stdin */
.ss-types__button:hover::before {
  border-color: #2c977d; }
/* line 121, stdin */
.ss-types__button.is-active .ss-types__caption {
  color: #2c977d; }
/* line 125, stdin */
.ss-types__button.is-active .ss-types__title {
  color: #253340; }
/* line 129, stdin */
.ss-types__button.is-active::before {
  border-color: #a4b3b7; }
/* line 133, stdin */
.ss-types__button.is-active::after {
  opacity: 1; }

/* line 139, stdin */
.ss-types__caption {
  color: #a4b3b7;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  transition: ease color 200ms; }

/* line 147, stdin */
.ss-types__title {
  margin-top: 6px;
  color: #617277;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  transition: ease color 200ms; }

/* line 160, stdin */
.ss-types__list {
  margin: 0;
  padding: 0;
  list-style: none; }

@media (max-width: 769px) {
  /* line 170, stdin */
  .ss-types__buttons {
    flex-flow: row wrap; }
  /* line 174, stdin */
  .ss-types__title {
    font-size: 15px; } }

@media (max-width: 561px) {
  /* line 180, stdin */
  .ss-types__header {
    padding: 20px 0 25px; }
  /* line 184, stdin */
  .ss-types__button {
    width: 50%;
    flex: 1 0 50% !important; }
  /* line 189, stdin */
  .ss-types__caption {
    font-size: 12px; }
  /* line 193, stdin */
  .ss-types__title {
    margin-top: 4px;
    font-size: 14px; } }
/* line 453, stdin */
.ss-filter {
  display: flex;
  width: 100%;
  max-width: 1060px;
  /* margin: 20px auto; */
  /* padding-top: 60px; */
  padding-bottom: 100px;
  padding-top: 130px;
  /* position: relative; */
  font-family: "Inter", sans-serif;
}
@supports (font-variation-settings: normal) {
  /* line 453, stdin */
  .ss-filter {
    font-family: "Inter var", sans-serif; } }
/* line 466, stdin */
.ss-filter .is-loading {
  opacity: 0.5;
  pointer-events: none; }
/* line 471, stdin */
.ss-filter__loader {
  width: 100%; }
/* line 475, stdin */
.ss-filter__inner {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 0 8px 8px;
  box-shadow: 0 4px 40px rgba(52, 58, 53, 0.12); }
/* line 484, stdin */
.ss-filter__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  min-height: 530px;
  border-right: none;
  border-radius: 0 0 0 8px; }
/* line 495, stdin */
.ss-filter__tabs {
  flex: 1;
  position: relative;
  z-index: 1; }
/* line 501, stdin */
.ss-filter__info {
  min-height: 530px; }
/* line 505, stdin */
.ss-filter__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  padding: 25px 45px 40px; }
/* line 513, stdin */
.ss-filter__results {
  flex-grow: 1; }
/* line 517, stdin */
.ss-filter__caption {
  margin: 0;
  color: #617277;
  font-size: 13px;
  line-height: 1.1; }
/* line 524, stdin */
.ss-filter__result {
  margin-top: 5px;
  color: #2c977d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1; }
/* line 532, stdin */
.ss-filter__buttons {
  display: flex;
  min-height: 54px; }
/* line 538, stdin */
.ss-filter__button + .ss-filter__button {
  margin-left: 22px; }
@media (max-width: 959px) {
  /* line 544, stdin */
  .ss-filter__inner {
    flex-direction: column;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none; }
  /* line 551, stdin */
  .ss-filter__body {
    background-color: #ffffff;
    border-radius: 0 8px 8px;
    box-shadow: 0 4px 40px rgba(52, 58, 53, 0.12); }
  /* line 558, stdin */
  .ss-filter__info {
    min-height: auto;
    margin-top: 30px; } }
@media (max-width: 769px) {
  /* line 565, stdin */
  .ss-filter.is-loading {
    padding-top: 0; }
  /* line 569, stdin */
  .ss-filter__footer {
    padding: 30px;
    padding-top: 20px; }
  /* line 574, stdin */
  .ss-filter__results {
    display: none; } }
@media (max-width: 561px) {
  /* line 453, stdin */
  .ss-filter {
    margin-bottom: 0;
    padding-top: 45px; }
  /* line 583, stdin */
  .ss-filter__body {
    min-height: auto; }
  /* line 587, stdin */
  .ss-filter__footer {
    padding: 16px; }
  /* line 591, stdin */
  .ss-filter__buttons {
    width: 100%;
    min-height: auto; }
  /* line 596, stdin */
  .ss-filter__button {
    width: 50%; }
  /* line 599, stdin */
  .ss-filter__button + .ss-filter__button {
    margin-left: 12px; }
  /* line 603, stdin */
  .ss-filter__button .ss-button {
    min-height: 50px;
    padding-top: 15px;
    padding-bottom: 13px; }
  /* line 609, stdin */
  .ss-filter__button .ss-button.is-expand {
    padding-left: 16px;
    padding-right: 16px; }
  /* line 614, stdin */
  .ss-filter__button .ss-button.is-reset {
    justify-content: center;
    padding-left: 12px;
    padding-right: 16px; }
  /* line 619, stdin */
  .ss-filter__button .ss-button.is-reset::before {
    margin-right: 8px; }
  /* line 625, stdin */
  .ss-filter__info {
    margin-top: 20px; } }
/* line 22, stdin */
.ss-icon {
  display: block;
  width: 100%;
  height: 100%;
  color: currentColor; }
/* line 91, stdin */
.ss-cats__buttons {
  margin-top: 20px;
  display: flex;
}

/* line 96, stdin */
.ss-cats__button {
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px 0;
  background: none;
  border: none;
  color: #25334080;
  cursor: pointer;
  transition: color .2s; }
/* line 107, stdin */
.ss-cats__button:hover {
  color: #2c977d; }
/* line 111, stdin */
.ss-cats__button.is-active {
  color: #253340;
}

/* line 116, stdin */
.ss-cats__button-label {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 700; }

/* line 123, stdin */
.ss-icon {
  display: block;
  fill: currentColor;
}

.ss-cats__list{
  list-style: none;
  padding: 20px;
}

.ss-single-selected{
  border-radius: 10px !important;
  border: 1px solid #366099 !important;
  background-color: white !important;
}

.ss-multi-selected{
  border-radius: 10px !important;
  border: 1px solid #366099 !important;
  background-color: white !important;
}

.ss-input{
  border-radius: 10px !important;
  border: 1px solid #366099 !important;
  background-color: white !important;
}