/*! nouislider - 14.6.1 - 8/17/2020 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}
.pagination {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin: 0; }

.pagination li {
  list-style: none;
  margin-right: 16px; }

.pagination li:last-of-type {
  margin-right: 0; }

.pagination a {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #535574;
  transition: .3s; }

.pagination a:hover {
  background: #E8E8EF;
  transition: .3s; }

.pagination .selected a {
  background: #E8E8EF;
  pointer-events: none; }

.about {
  position: relative;
  max-width: 810px;
  min-width: 1024px;
  padding: 80px 40px;
  margin: auto; }

.about__title {
  position: relative;
  margin: 0 0 50px 0; }

.about__name1 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 900;
  text-transform: uppercase; }

.about__name2 {
  color: #006E31; }

.about__name3 {
  position: absolute;
  top: 10px;
  left: -38px;
  font-size: 48px;
  line-height: 54px;
  font-weight: 600;
  color: #F2F2F2;
  text-transform: uppercase;
  z-index: -1; }

.about__text {
  font-size: 18px;
  line-height: 27px; }

.about__text a {
  display: inline;
  text-decoration: underline;
  transition: .3s; }

.about__text a:hover {
  text-decoration: none;
  transition: .3s; }

.about__text h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 20px 0; }

.about__text p:first-of-type {
  margin-top: 0; }

.about__text p:last-of-type {
  margin-bottom: 0; }

.about__logo {
  position: absolute;
  right: 55px;
  bottom: 0;
  z-index: -1; }

.about__stress {
  background: #006E31;
  color: white;
  padding: 0 5px;
  white-space: nowrap; }

.footer {
  background: #535574;
  min-width: 1024px;
  overflow: hidden; }

.footer__block {
  max-width: 1440px;
  margin: auto; }

.footer__content {
  display: flex;
  padding: 80px;
  margin-right: -60px; }

.footer__half {
  width: 50%;
  display: flex; }

.footer__full {
  width: 50%;
  margin-right: 60px; }

.footer__full:first-of-type {
  margin-bottom: 22px; }

.footer__column {
  width: 25%;
  margin-right: 60px; }

.footer__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  margin-bottom: 16px; }

.footer__item:last-of-type {
  margin-bottom: 0; }

.footer__key {
  color: #B7B8CB;
  margin-bottom: 8px; }

.footer__value {
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  color: white;
  margin-bottom: 22px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }

.footer__value--margin0 {
  margin-bottom: 0; }

.footer__footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 80px 31px 80px;
  margin-right: -60px; }

.footer__line {
  position: absolute;
  left: 24px;
  top: 0;
  width: calc(100% - 108px);
  height: 1px;
  background: rgba(176, 178, 198, 0.1); }

.footer__text {
  color: white;
  font-size: 12px;
  line-height: 18px; }

.footer__flex {
  display: flex;
  align-items: center; }

.footer__flex svg {
  margin-left: 16px; }

.footer__quote {
  font-size: 12px;
  line-height: 18px;
  color: white;
  font-style: italic;
  margin-bottom: 32px; }

.footer__socials {
  display: flex;
  align-items: center; }

.footer__social {
  margin-right: 16px;
  width: 42px;
  height: 42px; }

.footer__social > * {
  pointer-events: none; }

.footer__social:last-of-type {
  margin-right: 0; }

.footer__box {
  display: flex;
  align-items: center;
  margin-bottom: 16px; }

.footer__box svg {
  margin-right: 16px; }

.footer__firm {
  font-size: 18px;
  line-height: 12px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px; }

.footer__statement {
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: #B0B2C6; }

.footer__developer > * {
  pointer-events: none; }

@media only screen and (max-width: 1350px) {
  .menu {
    width: 96px; }
  .menu__header {
    padding-right: unset; }
  .menu__name {
    display: none; }
  .menu__text {
    display: none; }
  .menu__arrow {
    display: none; }
  .menu__quote {
    visibility: hidden;
    height: 36px; }
  .menu__made {
    display: none; }
  .menu__ru {
    display: block; }
  .menu__quad--type5 {
    display: none; } }

@media only screen and (max-width: 1190px) {
  .category__side {
    width: 0;
    padding: 0;
    margin: 0;
    border: none; }
  .category__side--login {
    width: 240px;
    padding-left: 32px;
    margin: 32px 0;
    border-left: 1px solid #D5D5E1; }
  .category__content {
    margin-right: 0; }
  .sort__filter {
    display: block; }
  .filter {
    position: absolute;
    background: white;
    right: 0;
    padding: 36px 32px 48px 32px;
    visibility: hidden;
    opacity: 0; }
  .filter--active {
    visibility: visible;
    opacity: 1;
    z-index: 100; }
  .filter__header {
    display: flex; } }

@media only screen and (max-width: 1150px) {
  .category__side--product {
    display: none; }
  .footer__half {
    flex-direction: column;
    width: calc(100%/3); }
  .footer__column {
    width: calc(100%/3); }
  .footer__full {
    width: unset; } }

