/* Jet Cache critical css: catalog/view/theme/profi/css/main.css?v=207 */
.bottom-clients {
	padding: 0 calc(50% - 1400px/2 - 20px);
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	margin: 30px 0;
}

.aBoxOverlay{
  position: fixed;
  left: 0;top: 0;right: 0;bottom: 0;
  background: rgba(0, 0, 0,.8);
  z-index: 1200;


  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;

  align-items: center;
  justify-content: center;

}
.aBoxOverlay + .aBoxOverlay{
  display: none;
}

.aBoxOverlay ~ *{
  filter: blur(1.2px);
}
.aSelect{
  position: relative;
  min-height: 40px;
}

.aSelect.disabled{
  background: #eee;
  pointer-events: none;
}

.aSelect .options{
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  max-height: 300px;
  overflow: auto;
  z-index: 200;
  
  padding: 0 0 5px 5px;
  border: 1px solid lightgray;
  border-top: none;
  border-radius: 3px;

  background: white;

  display: none;
}


.aSelect .options div.node div{
  margin-left: 30px;
  position: relative;
}

.aSelect .options .node span{
  display: block;
  padding: 5px 8px;
  margin: 1px 0;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aSelect .options .node span::before{
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  width: 14px;
  border-top: 1px dotted lightgray;
}

.aSelect .options.filtered div:not(.filter_revealed){
  display: none;
}

.aSelect .options .node[data-selected=true] > span{
  background: pink;
}

.aSelect .options .node:not([data-disabled]) > span:hover{
  background: #EF5350;
  color: white;
  cursor: pointer;
}

.aSelect .options .node[data-disabled] > span{
  background: lightgray;
}

.aSelect .options div.node div::before{
  content: '';
  position: absolute;
  left: -15px;
  height: 100%;
  border-left: 1px lightgray dotted;
}

.aSelect .options div.node div:last-child::before{
  height: 15px;
}

.aSelect .options .filter{
  height: 25px;
  max-width: 100vw;
  position: sticky;
  top: 0px;
  z-index: 750;
  border-top: 10px solid white;
  border-bottom: 10px solid white;
  height: auto;
  outline: none;

  box-shadow: 0 0 1px black inset;
  border-radius: 0;
}


.aSelect > .selected{
  cursor: pointer;
  box-shadow: 0 0 0 1px lightgray inset;
  min-height: 40px;
  
  border-radius: 5px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


.aSelect > .selected .default{
  display: none;
}
.aSelect > .selected .default:only-child{
  display: block;
}

.aSelect > .selected > span{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  max-width: calc(100% - 16px);
  order: -1;
}

.aSelect > .selected > span > span{
  text-overflow: ellipsis;
  max-width: calc(100% - 38px);
  overflow: hidden;
}


.aSelect > .selected i{
  font-size: 1.65em;
  font-weight: 600;
  font-style: normal;
  margin-left: 5px;
  padding: 3px;
  line-height: 1;
  margin-right: 5px;
  color: #005367;
}
.aSelect > .selected i:hover{
  color: red;
}

.aSelect > .selected.multiple{

  flex-wrap: wrap;
}

.aSelect > .selected.multiple i:hover{
  color: white;
}

.aSelect > .selected.multiple > span{
  width: auto;
  flex-grow: 0;
  margin: 4px 0;
}
.aSelect > .selected.multiple::before{
  content: '';
  order: 1000;
  flex-grow: 1;
}
.aSelect > .selected.multiple > span:not(.default){
  background: salmon;
  padding: 2px 3px 2px 6px;
  border-radius: 4px;
}
.aSelect > .selected.multiple > span > span{
  max-width: 100vw;
}
.aSelect > .selected.multiple > span:not(:last-child){
  margin-right: 3px;
}


/*.aSelect > .selected div{
  height: 100%;
  padding: 8px 10px 10px;
  display: block;
  position: relative;
  z-index: 500;
}
*/
.aSelect > .selected::after{
  content: '\25BC';
  order: 1001;

  font-size: .65em;
  color: #005367;

  transform: scale(1.2, 1);
  transform-origin: center center;

  text-align: right;
  margin-right: 5px;
  margin-left: 5px;

  height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.aSelect > .selected.active::after{
  transform: scale(1.2, 1) rotate(180deg);
  top: 12px;
}
.aSelect > .selected.active{
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}
@keyframes bBoxTremble{
  0%{
    transform: rotate(45deg);
  }

  33%{
    transform: rotate(50deg);
  }

  66%{
    transform: rotate(40deg);
  }

  100%{
    transform: rotate(45deg);
  }
}


.aBoxOverlay .bBox{
  position: relative;
  overflow-x: hidden;
}

.bBoxClose:hover{
  animation: bBoxTremble 200ms 2;
}

.aBoxOverlay .bBox > img{
  max-height: 98vh;
  max-width: 98vw;
  display: block;
}

.bBoxClose{
  position: absolute;
  right: 2%; top: 2%;
  outline: none;
}

/* outside close button */
.bBoxClose{
  color: lightgray;
  font-size: 5em;
  text-decoration: none;
}

.bBoxClose:hover{
}
/* inside close button */
.bBoxClose{
  width: 20px; height: 20px;
  text-decoration: none;
  border-radius: 100%;
  align-items: center;
  justify-content: center;

  transform: rotate(45deg);

  z-index: 105;
}



.bBoxClose::before, .bBoxClose::after{
  content:'';
  position: absolute; 

  width: 100%;height: 100%;

  left: 50%; top: 50%;
  transform: translate(-50%,-50%);

  transition: 200ms;
}

.bBoxClose::after{
  width: 18px;
  height: 18px;
}

.bBoxClose::before{
  background: 
    linear-gradient(to bottom, transparent 35%, white 35%, white 65%,  transparent 65%),
    linear-gradient(to right, transparent 35%, white 35%, white 65%, transparent 65%);
}
.bBoxClose:hover::before{
  filter: invert(100%);
}

.bBoxClose::after{
  background: 
    linear-gradient(to bottom, transparent 40%, black 40%, black 60%,  transparent 60%),
    linear-gradient(to right, transparent 40%, black 40%, black 60%, transparent 60%);
}

.bBoxClose:hover::after{
  filter: invert(100%);
}


.bBox{
  max-height: 98vh;
  background: white;
  overflow: auto;
}
.bCarouselControlsDots{
  display: flex;
}

.bCarouselControlsDots > *{
  width: 11px;
  height: 11px;
  border-radius: 100%;
  border: 1px solid white;
}

.bCarouselControlsDots > *:not(:last-child){
  margin-right: 7px;
}

.bCarouselControlsDots > *.active{
  background: white;
}
.social-icons{
  margin-top: 15px;
}
a.social-icon{
  color:#ff7e00;
  padding-right:7px;
}
a.social-icon:hover::before{
  color:#ffffff;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('https://www.kp-mebel.ru/catalog/view/theme/profi/fonts/FontAwesome/fontawesome-webfont.woff2?v=4.7.0') format('woff2');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
  fa-shopping-cart:before
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.fa-facebook:hover::before {
  color: #3b5998;
}
.fa-twitter:hover::before {
  color: #4099FF;
}
.fa-linkedin:hover::before {
  color: #007bb6;
}
.fa-rss:hover::before {
  color: #FA9B39;
}
.fa-youtube:hover::before {
  color: #C4302B;
}
@font-face {
  font-family: Aqum;
  src: local("Aqum"), url("https://www.kp-mebel.ru/catalog/view/theme/profi/fonts/Aqum/Aqum.woff2");
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: Evolventa;
  src: local("Evolventa"), url("https://www.kp-mebel.ru/catalog/view/theme/profi/fonts/Evolventa/Evolventa-Regular.woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Evolventa;
  src: local("Evolventa Oblique"), url("https://www.kp-mebel.ru/catalog/view/theme/profi/fonts/Evolventa/Evolventa-Oblique.woff");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: Evolventa;
  src: local("Evolventa Bold"), url("https://www.kp-mebel.ru/catalog/view/theme/profi/fonts/Evolventa/Evolventa-Bold.woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: Evolventa;
  src: local("Evolventa Bold Oblique"), url("https://www.kp-mebel.ru/catalog/view/theme/profi/fonts/Evolventa/Evolventa-BoldOblique.woff");
  font-weight: bold;
  font-style: italic;
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
*,
:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
figcaption,
figure,
main {
  display: block;
}
figure {
  margin: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
code {
  display: block;
  background: #F2F2F2;
  padding: 15px;
  margin: 10px 0;
}
dfn {
  font-style: italic;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
audio,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
img {
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1;
  margin: 0;
}
textarea {
  resize: none;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  display: inline-block;
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details,
menu {
  display: block;
}
summary {
  display: list-item;
}
canvas {
  display: inline-block;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
/*----------------------------custom------------------------------*/
html,
body,
div,
dl,
dt,
dd,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
hr,
img,
a,
em,
span,
strong,
form,
label,
input,
button,
select,
table,
thead,
tbody,
tfoot,
tr,
th,
td,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  vertical-align: baseline;
  /*font: inherit;*/
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,
select,
textarea,
button {
  margin: 0;
  color: #686868;
  outline: none;
}
a:hover,
a:focus,
a.active {
  text-decoration: none;
  outline: none;
}
button,
a {
  cursor: pointer;
}
input::-webkit-input-placeholder {
  color: #939393;
}
input::-moz-placeholder {
  color: #939393;
}
input:-moz-placeholder {
  color: #939393;
}
input:-ms-input-placeholder {
  color: #939393;
}
input:focus::-webkit-input-placeholder {
  color: transparent!important;
}
input:focus::-moz-placeholder {
  color: transparent!important;
}
input:focus:-moz-placeholder {
  color: transparent!important;
}
input:focus:-ms-input-placeholder {
  color: transparent!important;
}
textarea::-webkit-input-placeholder {
  color: #939393;
}
textarea::-moz-placeholder {
  color: #939393;
}
textarea:-moz-placeholder {
  color: #939393;
}
textarea:-ms-input-placeholder {
  color: #939393;
}
textarea:focus::-webkit-input-placeholder {
  color: transparent!important;
}
textarea:focus::-moz-placeholder {
  color: transparent!important;
}
textarea:focus:-moz-placeholder {
  color: transparent!important;
}
textarea:focus:-ms-input-placeholder {
  color: transparent!important;
}
.payment_methods span {
  height: 24px;
  width: 38px;
  font-size: 0;
  margin-right: 10px;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/thirdparty/sprite.png') no-repeat scroll 0 0 transparent;
}
.payment_methods .dankort {
  background-position: 0 0;
}
.payment_methods .american-express {
  background-position: 0 -79px;
}
.payment_methods .bitcoin {
  background-position: 0 -158px;
}
.payment_methods .cash-on-delivery {
  background-position: 0 -237px;
}
.payment_methods .discover {
  background-position: 0 -316px;
}
.payment_methods .google {
  background-position: 0 -473px;
}
.payment_methods .maestro {
  background-position: 0 -631px;
}
.payment_methods .mastercard {
  background-position: 0 -552px;
}
.payment_methods .paypal {
  background-position: 0 -394px;
}
.payment_methods .visa {
  background-position: 0 -710px;
}
/* Start of generated SVG icons styles */
.icon {
  position: relative;
}
.icon::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
}
.icon.call::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#call') no-repeat center center;
  background-size: 348.077px 348.077px;
  min-width: 348.077px;
  min-height: 348.077px;
}
.icon.envelope::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#envelope') no-repeat center center;
  background-size: 612px 612px;
  min-width: 612px;
  min-height: 612px;
}
.icon.headphones::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#headphones') no-repeat center center;
  background-size: 476px 476px;
  min-width: 476px;
  min-height: 476px;
}
.icon.map::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#map') no-repeat center center;
  background-size: 512px 512px;
  min-width: 512px;
  min-height: 512px;
}
.icon.message::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#message') no-repeat center center;
  background-size: 512px 512px;
  min-width: 512px;
  min-height: 512px;
}
.icon.rocket::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#rocket') no-repeat center center;
  background-size: 1792px 1792px;
  min-width: 1792px;
  min-height: 1792px;
}
.icon.search::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#search') no-repeat center center;
  background-size: 56.966px 56.966px;
  min-width: 56.966px;
  min-height: 56.966px;
}
.icon.search::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 200ms;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#search_hover') no-repeat center center;
  background-size: 56.966px 56.966px;
  min-width: 56.966px;
  min-height: 56.966px;
}
.icon.search:hover::after {
  opacity: 1;
}
.icon.shopping-cart::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#shopping-cart') no-repeat center center;
  background-size: 510px 510px;
  min-width: 510px;
  min-height: 510px;
}
.icon.shopping-cart::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 200ms;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#shopping-cart_hover') no-repeat center center;
  background-size: 510px 510px;
  min-width: 510px;
  min-height: 510px;
}
.icon.shopping-cart:hover::after {
  opacity: 1;
}
.icon.user::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#user') no-repeat center center;
  background-size: 409.165px 409.164px;
  min-width: 409.165px;
  min-height: 409.164px;
}
.icon.user::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 200ms;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#user_hover') no-repeat center center;
  background-size: 409.165px 409.164px;
  min-width: 409.165px;
  min-height: 409.164px;
}
.icon.user:hover::after {
  opacity: 1;
}
/* End of generated SVG icons styles */
/* Start of generated SVG icons styles */
.icon {
  position: relative;
}
.icon::before {
  content: '';
  display: inline-block;
  margin-right: 8px;
}
.icon.arrow-left::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#arrow-left') no-repeat center center;
  background-size: 493.356px 493.356px;
  min-width: 493.356px;
  min-height: 493.356px;
}
.icon.arrow-left_alt::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#arrow-left_alt') no-repeat center center;
  background-size: 20.461872px 16.263455px;
  min-width: 20.461872px;
  min-height: 16.263455px;
}
.icon.arrow-right::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#arrow-right') no-repeat center center;
  background-size: 493.356px 493.356px;
  min-width: 493.356px;
  min-height: 493.356px;
}
.icon.call::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#call') no-repeat center center;
  background-size: 348.077px 348.077px;
  min-width: 348.077px;
  min-height: 348.077px;
}
.icon.close::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#close') no-repeat center center;
  background-size: 9.6785203px 9.6785204px;
  min-width: 9.6785203px;
  min-height: 9.6785204px;
}
.icon.cross::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#cross') no-repeat center center;
  background-size: 612px 612px;
  min-width: 612px;
  min-height: 612px;
}
.icon.envelope::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#envelope') no-repeat center center;
  background-size: 612px 612px;
  min-width: 612px;
  min-height: 612px;
}
.icon.fullscreen_enter::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#fullscreen_enter') no-repeat center center;
  background-size: 20.68782px 14.49928px;
  min-width: 20.68782px;
  min-height: 14.49928px;
}
.icon.fullscreen_exit::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#fullscreen_exit') no-repeat center center;
  background-size: 20.68782px 14.49928px;
  min-width: 20.68782px;
  min-height: 14.49928px;
}
.icon.headphones::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#headphones') no-repeat center center;
  background-size: 476px 476px;
  min-width: 476px;
  min-height: 476px;
}
.icon.map::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#map') no-repeat center center;
  background-size: 512px 512px;
  min-width: 512px;
  min-height: 512px;
}
.icon.message::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#message') no-repeat center center;
  background-size: 512px 512px;
  min-width: 512px;
  min-height: 512px;
}
.icon.rocket::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#rocket') no-repeat center center;
  background-size: 1792px 1792px;
  min-width: 1792px;
  min-height: 1792px;
}
.icon.search::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#search') no-repeat center center;
  background-size: 56.966px 56.966px;
  min-width: 56.966px;
  min-height: 56.966px;
}
.icon.search::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 200ms;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#search_hover') no-repeat center center;
  background-size: 56.966px 56.966px;
  min-width: 56.966px;
  min-height: 56.966px;
}
.icon.search:hover::after {
  opacity: 1;
}
.icon.shopping-cart::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#shopping-cart') no-repeat center center;
  background-size: 510px 510px;
  min-width: 510px;
  min-height: 510px;
}
.icon.shopping-cart::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 200ms;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#shopping-cart_hover') no-repeat center center;
  background-size: 510px 510px;
  min-width: 510px;
  min-height: 510px;
}
.icon.shopping-cart:hover::after {
  opacity: 1;
}
.icon.star::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#star') no-repeat center center;
  background-size: 62.695899px 45.976713px;
  min-width: 62.695899px;
  min-height: 45.976713px;
}
.icon.star_active::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#star_active') no-repeat center center;
  background-size: 62.695899px 45.976713px;
  min-width: 62.695899px;
  min-height: 45.976713px;
}
.icon.star_form::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#star_form') no-repeat center center;
  background-size: 56.406943px 56.406927px;
  min-width: 56.406943px;
  min-height: 56.406927px;
}
.icon.star_form::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 200ms;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#star_form_hover') no-repeat center center;
  background-size: 56.406943px 56.406927px;
  min-width: 56.406943px;
  min-height: 56.406927px;
}
.icon.star_form:hover::after {
  opacity: 1;
}
.icon.user::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#user') no-repeat center center;
  background-size: 409.165px 409.164px;
  min-width: 409.165px;
  min-height: 409.164px;
}
.icon.user::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 200ms;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#user_hover') no-repeat center center;
  background-size: 409.165px 409.164px;
  min-width: 409.165px;
  min-height: 409.164px;
}
.icon.user:hover::after {
  opacity: 1;
}
.icon.zoom_in::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#zoom_in') no-repeat center center;
  background-size: 19.07459px 19.074602px;
  min-width: 19.07459px;
  min-height: 19.074602px;
}
.icon.zoom_out::before {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#zoom_out') no-repeat center center;
  background-size: 19.07459px 19.074602px;
  min-width: 19.07459px;
  min-height: 19.074602px;
}
/* End of generated SVG icons styles */
.drop_margins:first-child {
  margin-left: 0;
}
.drop_margins:last-child {
  margin-right: 0;
}
.page_super_block {
  padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-size: 1.08333em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.page_block {
  padding: 0 calc(50% - 1400px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  overflow: hidden;
}
.nav_link {
  text-decoration: inherit;
  font-weight: 500;
  letter-spacing: .4px;
  color: black;
  padding: 3px 15px;
  margin: 0 12px;
  border-radius: 100px;
  line-height: 25px;
  height: 36px;
  display: block;
  font-size: 1.25rem;
}
.nav_link:hover,
.nav_link.active {
  background: #FF7E00;
  color: white;
}
.nav_link:first-child {
  margin-left: 0;
}
.nav_link:last-child {
  margin-right: 0;
}
.button {
  color: white;
  text-decoration: inherit;
  background: #FF7E00;
  letter-spacing: .4px;
  padding: 6px 25px;
  border-radius: 100px;
  line-height: 20px;
  height: 32px;
  display: block;
  font-size: 1.25rem;
}
.button:hover,
.button.active {
  background: black;
}
.close_button {
  width: 44px;
  height: 44px;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#cross') no-repeat center center;
  background-size: 20px 20px;
  transform: none;
  border-radius: 22px;
  border: 1px solid #393938;
  right: 70px;
  top: 70px;
}
.close_button:hover {
  animation: none;
}
.close_button::before,
.close_button::after {
  display: none;
}
.close_button_alt {
  width: 21px;
  height: 21px;
}
.close_button_alt::before,
.close_button_alt::after {
  background-color: black;
  content: "";
  display: block;
  height: 3px;
  top: 10px;
  width: 20px;
  left: auto;
  right: 0px;
  position: absolute;
  transform: rotate(45deg);
}
.close_button_alt::after {
  transform: rotate(-45deg);
}
html,
body {
  font-family: 'Evolventa', sans-serif;
  color: #8C8C8C;
  font-size: 12px;
  letter-spacing: .8px;
  line-height: 2;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #FF7E00;
}
h1 {
  font-size: 2.08333em;
  color: #FF7E00;
  font-weight: 600;
}
h2,
h3 {
  color: black;
}
h2 {
  font-size: 2.5em;
}
h3 {
  font-size: 1.3333em;
  line-height: 1.25;
}
h4 {
  color: #8a8a8a;
  font-size: 1.08333rem;
  font-weight: normal;
  line-height: 2rem;
}
h4 a {
  text-decoration: none;
  color: inherit;
}
h5 {
  font-weight: 600;
  font-size: 1.1666rem;
  color: black;
  margin-bottom: 10px;
}
form {
  display: flex;
  flex-direction: column;
}
form input,
form textarea {
  background: white;
  border: 1px solid #d9d9d9;
}
form input:focus,
form textarea:focus {
  border-color: rgba(0, 0, 0, 0.3);
}
form textarea {
  width: 100%;
  min-height: 132px;
}
form label {
  cursor: pointer;
  line-height: 1.7;
  margin-bottom: 18px;
  margin-top: 3px;
}
form label:not([class]),
form label.short {
  display: flex;
  flex-direction: column-reverse;
}
form label:not([class]) input,
form label.short input,
form label:not([class]) textarea,
form label.short textarea {
  width: 100%;
  padding: 8px;
  font-size: 1em;
}
form label:not([class]) input[required] + span::after,
form label.short input[required] + span::after,
form label:not([class]) textarea[required] + span::after,
form label.short textarea[required] + span::after,
form label:not([class]) select[required] + span::after,
form label.short select[required] + span::after {
  content: '*';
  color: red;
  margin-left: 2px;
  font-size: 1.2em;
}
form label.short {
  flex-basis: 48%;
}
form label.checkbox {
  display: flex;
  align-items: center;
}
form label.checkbox :not(:first-child) {
  margin-left: 8px;
}
form label.int {
  display: flex;
  margin: 0;
  line-height: 1;
}
form label.int > * {
  width: 35px;
  height: 35px;
}
form label.int a {
  background: black;
  font-size: 1.6666rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F7F7F7;
}
form label.int a:hover {
  color: white;
}
form label.int input {
  background: #F7F7F7;
  text-align: center;
  width: 42px;
}
.content-compare .button-bordered button {
  margin-right: 10px;
}
form button, .content-compare button {
  text-decoration: inherit;
  font-weight: 500;
  letter-spacing: .4px;
  color: black;
  padding: 3px 15px;
  margin: 0 12px;
  border-radius: 100px;
  line-height: 25px;
  height: 36px;
  display: block;
  font-size: 1.25rem;
  background: #FF7E00;
  color: white;
  width: auto;
  display: inline-block;
  align-self: center;
}
form button:hover,
form button.active {
  background: #FF7E00;
  color: white;
}
form button:first-child {
  margin-left: 0;
}
form button:last-child {
  margin-right: 0;
}
form button:hover,
.content-compare button:hover {
  background: black;
}
form button[disabled] {
  opacity: .5;
  cursor: not-allowed;
}
form .hint {
  font-style: italic;
}
form fieldset {
  border: 1px solid #f0f0f2;
  padding: 11px 12px;
  padding-bottom: 0;
  margin-bottom: 24px;
}
form input[type=number] {
  padding: 8px 0;
  width: 30%;
  text-align: center;
  background: #F7F7F7;
  border: none;
}
ol {
  margin-left: 15px;
}
ol li {
  list-style: decimal;
}
ol:not(:first-child) {
  margin-top: 10px;
}
ul li {
  list-style: disc;
  margin-left: 15px;
}
table {
  width: 100%;
}
table th,
table td {
  background: white;
  padding: 10px;
  border: 1px solid #d9d9d9;
  font-size: 1.0833em;
}
table th {
  color: black;
  text-align: left;
  padding: 10px 25px;
  width: 180px;
  font-weight: 400;
}
body {
  /*--DEL
  .sup_header{
    .page_super_block;
    height: 40px;

    background: @c-black-900;

    color: @c-black-200;
    a{
      color: @c-black-200;
    }

    .icon::before{
      width: 15px;
      height: 15px;
      min-height: 0;
      min-width: 0;
      background-size: 13px 13px;
      background-position: left bottom;

    }

    >span{
      letter-spacing: .6px;
      padding-top: 2px;
    }

    .contacts{
      height: 20px;
      position: relative;
      top: 1px;

      >:last-child{
        margin-left: 16px;
        padding-left: 20px;
        border-left: 1px solid @c-black-600;
      }
    }

    nav{
      padding-top: 4px;
      a{
        text-decoration: none;
        letter-spacing: .6px;

        &:not(:first-child){
          margin-left: 20px;
          padding-left: 20px;
          border-left: 1px solid @c-black-600;
        }
      }
    }
  }
  */
}
header.header-main {
  padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-size: 1.08333em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  overflow: visible;
  z-index: 500;
  height: 80px;
  border-bottom: 1px solid #dbdbdb;
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0px -20px 30px 6px black;
}
header.header-main > a {
  text-decoration: none;
  color: inherit;
}
header.header-main > .logo img {
  position: relative;
  top: 5px;
}
header.header-main .logo ~ a {
  color: black;
  font-weight: bold;
}
header.header-main nav.subnav {
  padding: 16px 38px;
  min-width: 257px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dbdbdb;
  background-color: white;
  transform: translate(-10px, 0);
  position: absolute;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 350ms;
}
header.header-main nav.subnav a {
  text-decoration: inherit;
  color: black;
  font-size: 1.08333rem;
  line-height: 24px;
  padding: 5px 0;
  white-space: nowrap;
  letter-spacing: .4px;
  position: relative;
}

header.header-main nav.subnav a:after {
    content: '';
    height: 1px;
    background: #ededed;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

header.header-main nav.subnav a:hover {
  color: #FF7E00;
}
header.header-main nav.subnav a::before {
  content: '-';
  font-weight: 600;
  margin: 0 8px 0 -8px;
  position: relative;
  top: -1px;
}
header.header-main .main_menu {
  padding-top: 1px;
  display: flex;
  align-self: stretch;
  position: relative;
  flex-grow: 1;
  margin: 0 40px;
}
header.header-main .main_menu > * {
  order: 100;
}
header.header-main .main_menu::before,
header.header-main .main_menu::after {
  content: '';
  flex-grow: 1;
  order: 50;
}
header.header-main .main_menu::after {
  order: 150;
}
header.header-main .main_menu > a.close {
  width: 21px;
  height: 21px;
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
}
header.header-main .main_menu > a.close::before,
header.header-main .main_menu > a.close::after {
  background-color: black;
  content: "";
  display: block;
  height: 3px;
  top: 10px;
  width: 20px;
  left: auto;
  right: 0px;
  position: absolute;
  transform: rotate(45deg);
}
header.header-main .main_menu > a.close::after {
  transform: rotate(-45deg);
}
header.header-main .main_menu a.expand {
  display: none;
  flex-shrink: 0;
  flex-basis: 25px;
  margin-left: 0;
  justify-content: center;
  align-items: center;
}
header.header-main .main_menu a.expand::before {
  content: "\f067";
  font-family: 'FontAwesome';
  color: #adadad;
  background: none;
  margin: 0;
  font-weight: normal;
}
header.header-main .main_menu a.expand.active::before {
  content: "\f068";
  background: transparent;
}
header.header-main .main_menu > * {
  text-decoration: none;
  margin: 0 12px;
  display: flex;
  align-items: center;
}
header.header-main .main_menu > * a {
  line-height: 2rem;
}
header.header-main .main_menu > * > a {
  text-decoration: inherit;
  font-weight: 500;
  letter-spacing: .4px;
  padding: 3px 15px;
  margin: 0 12px;
  border-radius: 100px;
  line-height: 25px;
  height: 36px;
  display: block;
  font-size: 1.25rem;
  margin: 0;
  height: 30px;
}
header.header-main .main_menu > * > a:hover,
header.header-main .main_menu > * > a.active {
  background: #FF7E00;
  color: white;
}
header.header-main .main_menu > * > a:first-child {
  margin-left: 0;
}
header.header-main .main_menu > * > a:last-child {
  margin-right: 0;
}
header.header-main .main_menu > * > a.expand {
  background: none;
}
header.header-main .main_menu > *:first-child {
  margin-left: 0;
}
header.header-main .main_menu > *:last-child {
  margin-right: 0;
}
header.header-main .main_menu > * > div,
header.header-main .main_menu > * > nav {
  position: absolute;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 350ms;
}
header.header-main .main_menu > * > div.active,
header.header-main .main_menu > * > nav.active {
  opacity: 1;
  pointer-events: auto;
}
header.header-main .main_menu > * > div.active > .subnav,
header.header-main .main_menu > * > nav.active > .subnav {
  opacity: 1;
  pointer-events: auto;
  position: static;
}
header.header-main .main_menu > * > div {
  display: flex;
  right: 0;
}
header.header-main .main_menu > * > div > nav {
  width: 235px;
  position: static;
}
header.header-main .main_menu > * > div > nav:not(:first-child) {
  border-left: none;
}
header.header-main .main_menu > * > div > nav.subnav > a:first-child {
  font-size: 1.16666rem;
  font-weight: 600;
  position: relative;
  left: -14px;
}
header.header-main .main_menu > * > div > nav.subnav > a:first-child::before {
  display: none;
}
header.header-main .main_menu > * > div > nav.subnav > a:first-child:hover {
  color: black;
}
header.header-main .main_menu > * > div > nav > div {
  display: flex;
  flex-wrap: wrap;
}
header.header-main .main_menu > * > div > nav > div > a {
  flex-basis: 100%;
  flex-shrink: 0;
}
header.header-main .main_menu .tag {
  color: white;
  background: red;
  line-height: 20px;
  padding: 0 6px;
  margin-left: 10px;
}
header.header-main .main_menu > :first-child {
  order: 10;
  position: relative;
}
header.header-main .main_menu > :first-child.active > nav {
  opacity: 1;
  pointer-events: auto;
}
header.header-main .main_menu > :first-child > nav {
  flex-direction: column;
  padding: 0;
  right: 0;
  border: 2px solid #FF7E00;
  border-top: 1px solid #dbdbdb;
}
header.header-main .main_menu > * > nav.subnav {
  padding: 20px;
  border: 2px solid #FF7E00;
  border-top: 1px solid #dbdbdb;
}
header.header-main .main_menu > :first-child > nav a:not(.expand)::before {
  display: none;
}
header.header-main .main_menu > :first-child > nav a.expand {
  display: none;
}
header.header-main .main_menu > :first-child > nav > div {
  width: 320px;
}
header.header-main .main_menu > :first-child > nav > div > a {
  display: flex;
  align-items: center;
  padding: 10px;
  position: relative;
}
header.header-main .main_menu > :first-child > nav > div > a::after {
  content: '';
  height: 1px;
  background: #ededed;
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 95%;
}
header.header-main .main_menu > :first-child > nav > div > a img {
  max-width: 40px;
  margin-right: 10px;
}
header.header-main .main_menu > :first-child > nav > div:hover > nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}
header.header-main .main_menu > :first-child > nav > div > nav {
  position: absolute;
  left: 320px;
  min-height: 100%;
 /* max-width: calc(100vw - (50vw - 820px) - 220px - 560px); */
 width:320px;
  overflow: hidden;
  top: 0;
  background: white;
  display: flex;
  flex-wrap: wrap;
  border-left: 2px solid #FF7E00;
  box-shadow: 5px 5px 8px -5px rgba(170, 170, 170, 0.5);
  pointer-events: none;
  opacity: 0;
  transform: translate(20px, 0);
  transition: 350ms;
}
header.header-main .main_menu > :first-child > nav > div > nav header {
  font-size: 1.33em;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 15px;
}
header.header-main .main_menu > :first-child > nav > div > nav header + img {
  margin-bottom: 15px;
}
header.header-main .main_menu > :first-child > nav > div > nav header + nav {
  flex-direction: row;
}
header.header-main .main_menu > :first-child > nav > div > nav > * {
  padding: 20px;
  flex-grow: 1;
}
header.header-main .main_menu > :first-child > nav > div > nav .banner {
  padding: 0;
}
header.header-main .main_menu > :first-child > nav > div > nav nav {
  display: flex;
  flex-direction: column;
}
header.header-main .main_menu > :first-child > nav > div > nav nav img {
  align-self: center;
}
header.header-main .main_menu > :first-child > nav > div > nav nav a {
  line-height: 2;
  white-space: initial;
}
header.header-main.sticky .main_menu > :first-child.active:not(:hover) > nav {
  opacity: 0;
  pointer-events: none;
}
header.header-main .adds {
  display: flex;
  align-items: center;
  margin: 0 15px;
}
header.header-main .adds > * {
  position: relative;
}
header.header-main .adds > :not(:first-child) {
  margin-left: 30px;
}
header.header-main .adds .icon {
  position: relative;
  display: block;
}
header.header-main .adds .icon::before,
header.header-main .adds .icon::after {
  width: 20px;
  height: 20px;
  min-width: 0;
  min-height: 0;
  margin: 0;
  display: block;
  background-size: 15px 15px;
  background-position: center center;
}
header.header-main .adds .icon::after {
  position: absolute;
  left: 0;
  top: 0;
}
header.header-main .adds .icon:hover::before {
  transition: 200ms;
  opacity: 0;
}
header.header-main .adds .icon > span {
   position: absolute;
   z-index: 1;
   background-color: #FF7E00;
   color: white;
   border-radius: 100px;
   width: 18px;
   height: 18px;
   left: 14px;
   top: -10px;
   font-size: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
}
header.header-main .adds a > span {
  position: absolute;
  z-index: 1;
  background-color: #FF7E00;
  color: white;
  border-radius: 100px;
  width: 18px;
  height: 18px;
  left: 14px;
  top: -10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
header.header-main .adds .icon.search::before,
header.header-main .adds .icon.search:after {
  background-size: 14.6px 14.6px;
}
header.header-main .adds .icon.shopping-cart::before,
header.header-main .adds .icon.shopping-cart:after {
  background-size: 19px 19px;
}
header.header-main .adds .icon:focus + nav,
header.header-main .adds .icon + nav:hover {
  opacity: 1;
  pointer-events: auto;
}
header.header-main .adds .subnav {
  right: -15px;
  left: auto;
  top: calc(100% + 29px);
  padding: 15px 24px;
  width: 200px;
  pointer-events: none;
}
header.header-main .adds .subnav a::before {
  display: none;
}
header.header-main .adds .menu_trigger {
  display: none;
  width: 21px;
}
header.header-main .adds .menu_trigger::before {
  content: "\f0c9";
  font-size: 1.75rem;
  font-family: FontAwesome;
  color: black;
  transition: color 200ms;
}
header.header-main .adds .menu_trigger:hover::before {
  color: #FF7E00;
}
header.header-main .adds .menu_trigger.active {
  transition: none;
  width: 21px;
  height: 21px;
}
header.header-main .adds .menu_trigger.active::before,
header.header-main .adds .menu_trigger.active::after {
  background-color: black;
  content: "";
  display: block;
  height: 3px;
  top: 10px;
  width: 20px;
  left: auto;
  right: 0px;
  position: absolute;
  transform: rotate(45deg);
}
header.header-main .adds .menu_trigger.active::after {
  transform: rotate(-45deg);
}
body main > * {
  padding: 0 calc(50% - 1400px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  overflow: hidden;
}
body main > :first-child ~ * {
  margin-top: 89px;
}
body main > :last-child {
  margin-bottom: 150px;
}
body main > header:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F5F5F5;
  padding-top: 20px;
  padding-bottom: 20px;
}
body main > header:first-child + * {
  margin-top: 50px;
}
body main > .carousel.huge + h1 {
  color: black;
  text-align: center;
  font-size: 3em;
  margin-top: 50px;
}
body main > .carousel.huge + h1 + * {
  margin-top: 50px;
}
body main > h2 + section[class] {
  margin-top: 20px;
}
footer {
  background: #070706;
  color: #adadad;
  position: relative;
}
footer > * {
  padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-size: 1.08333em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
footer a {
  color: #adadad;
  text-decoration: none;
}
footer header {
  font-size: 1.3333rem;
  margin-bottom: 30px;
  color: white;
  line-height: 22px;
  display: none;
}
footer nav > header {
  display: flex;
  min-height: 1.6666rem;
}
footer > :first-child {
  padding-top: 25px;
  padding-bottom: 55px;
  align-items: flex-start;
  /*

      >:last-child{
        flex-basis: 23%;
        padding-left: 35px;

        span{
          line-height: 2rem;
        }
      }

      form{
        border: 1px solid white;
        padding: 2px;
        display: flex;
        margin-top: 30px;

        label{
          flex-grow: 1;
          input{
            width: 90%;
            margin: 0 auto;
            display: block;
            height: 100%;
            color: white;
          }
        }

        button.icon{
          width: 42px;
          height: 42px;
          background: @c-active-400;
          &::before{
            width: 19px;
            height: 19px;
            min-width: 0; min-height: 0;
            background-size: 19px 19px;
            margin-right: 0;
          }
          &:hover{
            background: transparent;
          }
        }

      }

      .payment_methods{
        margin-top: 30px;
        display: flex;
      }

      */
}
footer > :first-child > * {
  display: flex;
  flex-direction: column;
}
footer > :first-child > :first-child {
  flex-basis: 23%;
  flex-shrink: 0;
  padding-right: 35px;
}
footer > :first-child > :first-child .logo {
  margin-bottom: 30px;
}
footer > :first-child .icon {
  line-height: 30px;
  display: flex;
}
footer > :first-child .icon::before {
  vertical-align: middle;
  min-height: 0;
  min-width: 0;
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
  margin-right: 15px;
  flex-shrink: 0;
}
footer > :first-child .icon.headphones {
  margin: 10px 0;
}
footer > :first-child .menu {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: space-between;
}
footer > :first-child .menu::after {
  content: '';
  flex-grow: 1;
  order: 200;
}
footer > :first-child .menu nav {
  display: flex;
  flex-direction: column;
  flex-basis: 20%;
  flex-shrink: 0;
  flex-grow: 0;
  order: 100;
  padding: 0 35px;
}
footer > :first-child .menu nav:nth-last-child(1),
footer > :first-child .menu nav:nth-last-child(2) {
  order: 300;
}
footer > :first-child .menu nav a {
  line-height: 24px;
  margin-bottom: 10px;
}
footer > :first-child .menu nav:nth-child(1),
footer > :first-child .menu nav:nth-child(2),
footer > :first-child .menu nav:nth-child(3) {
  flex-grow: 1;
}
footer > :last-child {
  padding-bottom: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  justify-content: center;
  /*
      nav{
        display: flex;
        a{
          padding: 0 14px;
          &:last-child{
            padding-right: 0;
          }
          &:first-child{
            padding-left: 0;
          }
        }
      }
      */
}
.popup {
  display: none;
}
.rating {
  width: 75px;
  height: 18px;
  display: block;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#star') repeat-x left center;
  background-size: 15px 11px;
  position: relative;
}
.rating::before {
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#star_active') repeat-x left center;
  background-size: 15px 11px;
}
.rating.x1::before {
  width: 20%;
}
.rating.x2::before {
  width: 40%;
}
.rating.x3::before {
  width: 60%;
}
.rating.x4::before {
  width: 80%;
}
.rating.x5::before {
  width: 100%;
}
a.date {
  color: #FF7E00;
  text-decoration: none;
  display: block;
  margin: 20px 0 13px;
}
a.more {
  color: inherit;
  text-decoration: underline;
}
a.more:hover {
  color: #FF7E00;
  text-decoration: none;
}
.more_button {
  margin: 0 auto;
  text-decoration: inherit;
  font-weight: 500;
  letter-spacing: .4px;
  color: black;
  padding: 3px 15px;
  margin: 0 12px;
  border-radius: 100px;
  line-height: 25px;
  display: block;
  font-size: 1.25rem;
  display: inline-block;
  margin-left: 0;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 1rem;
  font-weight: normal;
  padding: 8px 20px;
  height: 36px;
  line-height: 20px;
  margin-top: 20px;
}
.more_button:hover,
.more_button.active {
  background: #FF7E00;
  color: white;
}
.more_button:first-child {
  margin-left: 0;
}
.more_button:last-child {
  margin-right: 0;
}
.more_button:hover {
  background: black;
}
label.radio_toggle {
  position: relative;
  cursor: pointer;
  margin-right: 8px;
}
label.radio_toggle:last-of-type {
  margin-right: 15px;
}
label.radio_toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
label.radio_toggle span {
  width: 22px;
  height: 22px;
  display: block;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/sprite_toggle.png') no-repeat;
  transition: 200ms;
}
label.radio_toggle.grid span {
  background-position: 0 0;
}
label.radio_toggle.grid:hover span,
label.radio_toggle.grid input:checked + span {
  background-position: 0 -30px;
}
label.radio_toggle.list span {
  background-position: -30px 0;
}
label.radio_toggle.list:hover span,
label.radio_toggle.list input:checked + span {
  background-position: -30px -30px;
}
label.select {
  border: 1px solid #e0e0e0;
  position: relative;
  min-width: 275px;
  padding: 0 10px;
}
label.select select {
  opacity: 0;
  position: absolute;
  left: 0;
  width: 100%;
  top: 1px;
  height: 100%;
}
label.select span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
label.select span::after {
  content: '';
  width: 9px;
  height: 5px;
  border-bottom: none;
  border-top: 5px solid #999;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
label.select select:focus + span::after {
  border-top: none;
  border-bottom: 5px solid #999;
}
.aSelect .options .node[data-selected="true"] > span {
  background: #FF7E00;
  color: white;
}
.aSelect .options .node:not([data-disabled]) > span:hover {
  background: #ffdcba;
  color: black;
}
.aSelect > .selected::after {
  color: inherit;
  transform: scaleX(1.5);
}
.aSelect > .selected i {
  color: inherit;
}
.aSelect > .selected i:hover {
  color: red;
}
.aSelect + select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.aSelect .options .filter {
  border-left: none;
  border-right: none;
}
.aBoxOverlay {
  background: black;
}
.bBox {
  background: transparent;
  max-height: 100vh;
  height: 100%;
}
.bBox aside {
  position: relative;
  max-height: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.bBox aside > * {
  flex-basis: 100%;
  flex-shrink: 0;
  height: calc(100% - 88px);
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bBox aside > * img {
  max-height: 100%;
  cursor: zoom-in;
  transform-origin: left top;
  transition: 200ms;
  position: relative;
  top: 0;
  left: 0;
}
.bBox aside > * img.floating {
  transition: max-height 200ms;
  max-height: 200vh;
  cursor: grab;
}
.bBox header,
.bBox footer {
  height: 44px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.5);
}
.bBox footer {
  top: auto;
  bottom: 0;
  text-align: center;
  line-height: 44px;
  color: #c3c3c3;
}
.bBox header {
  display: flex;
}
.bBox header > * {
  order: 100;
}
.bBox header > span {
  order: 50;
  color: white;
  white-space: nowrap;
  font-size: 1.083em;
  padding: 0 10px;
  line-height: 44px;
}
.bBox header::before {
  content: '';
  order: 100;
  flex-grow: 1;
}
.bBox header button {
  filter: invert(100%);
  width: 44px;
  opacity: .7;
  transition: 250ms;
  outline: none;
}
.bBox header button:hover {
  opacity: 1;
}
.bBox header button.fullscreen {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#fullscreen_enter') no-repeat center center;
  background-size: 18px 14px;
}
.bBox header button.fullscreen_exit {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#fullscreen_exit') no-repeat center center;
  background-size: 18px 14px;
}
.bBox header button.zoom {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#zoom_in') no-repeat center center;
  background-size: 18px 16px;
}
.bBox header button.zoom_out {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#zoom_out') no-repeat center center;
  background-size: 18px 16px;
}
.bBox header button.close {
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#close') no-repeat center center;
  background-size: 14px 14px;
}
.bBoxSearchClose {
  width: 44px;
  height: 44px;
  background: url(https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#cross) no-repeat center center;
  background-size: 20px 20px;
  transform: none;
  border-radius: 22px;
  border: 1px solid #393938;
  position: fixed;
  right: 40px;
  top: 120px;
  z-index: 199999;
}
.bBox .bCarouselControlsArrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  justify-content: space-between;
  height: 0;
}
.bBox .bCarouselControlsArrows > a {
  width: 70px;
  height: 100px;
  margin-top: -35px;
  font-size: 0;
  background: rgba(255, 255, 255, 0.5) url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#arrow-left_alt') no-repeat center center;
  background-size: 14px 11px;
  filter: invert(100%);
  transform-origin: center center;
  opacity: .7;
  transition: 300ms;
}
.bBox .bCarouselControlsArrows > a:last-of-type {
  transform: rotate(180deg);
}
.bBox .bCarouselControlsArrows > a:hover {
  opacity: 1;
}
.slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 14px;
  margin: 20px 0;
}
.slider::before {
  content: '';
  flex-grow: 1;
  height: 2px;
  background: #aaa;
  position: absolute;
  top: 6px;
  left: 7px;
  right: 7px;
}
.slider > div {
  position: relative;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #aaa;
  border-radius: 15px;
  background: white;
  cursor: pointer;
}
.slider > div:last-child {
  left: auto;
  right: 0;
}
span.empty {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 13px 10px 13px 45px;
  border: 1px solid #eaeaea;
  border-top: 2px solid black;
}
span.empty::before {
  background-color: black;
  content: "i";
  font-family: Times, Georgia, serif;
  font-style: italic;
  height: 2.5em;
  width: 1.5em;
  position: absolute;
  top: 0;
  left: 1em;
  font-size: 1em;
  line-height: 1.5;
  text-align: center;
  color: white;
  padding-top: 1em;
}
span.empty a {
  color: white;
  text-decoration: inherit;
  background: #FF7E00;
  letter-spacing: .4px;
  padding: 6px 25px;
  border-radius: 100px;
  line-height: 20px;
  height: 32px;
  display: block;
  font-size: 1.25rem;
  font-size: 1.0833rem;
}
span.empty a:hover,
span.empty a.active {
  background: black;
}
span.empty + table {
  margin-top: 50px;
}
table.products_table {
  font-size: 1.16666em;
  margin-bottom: 50px;
}
table.products_table th {
  font-weight: 700;
  text-align: center;
  font-size: 1.083rem;
  border-top: 2px solid #d9d9d9;
}
table.products_table td {
  text-align: center;
  vertical-align: middle;
}
table.products_table img {
  display: block;
  max-height: 70px;
}
table.products_table th.name {
  width: 30%;
}
table.products_table th.price,
table.products_table th.status {
  width: 15%;
}
table.products_table th.controls {
  width: 25%;
}
table.products_table th.image {
  width: 1%;
}
table.products_table th:first-child {
  width: 1%;
}
table.products_table th.amount {
  width: 30%;
}
table.products_table td:first-child a {
  font-size: 1.6666em;
  font-weight: 900;
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
table.products_table td:first-child a:hover {
  background: #c3c3c3;
  color: white;
}
table.products_table .availability.available {
  color: green;
}
table.products_table td:last-child a {
  color: white;
  text-decoration: inherit;
  background: #FF7E00;
  letter-spacing: .4px;
  padding: 6px 25px;
  border-radius: 100px;
  line-height: 20px;
  height: 32px;
  display: block;
  font-size: 1.25rem;
  display: inline-block;
}
table.products_table td:last-child a:hover,
table.products_table td:last-child a.active {
  background: black;
}
table.products_table strong {
  color: black;
  font-size: 1.3333em;
}
table.products_table td.coupon {
  text-align: left;
}
table.products_table td.coupon input {
  padding: 8px 10px;
}
table.products_table td.coupon button {
  font-size: 1em;
}
table.products_table td.coupon button:last-child {
  float: right;
}
.color_def {
  display: flex;
  align-items: center;
}
.color_def strong {
  margin-left: 8px;
}
.color {
  flex-basis: 29px;
  height: 29px;
  margin: 0 6px;
  border-radius: 100%;
}
.socials {
  display: flex;
  height: 24px;
  margin: 30px 0 20px;
}
.socials > * {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
.pareto {
  padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-size: 1.08333em;
  align-items: center;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pareto > :first-child {
  flex-basis: calc(100%/3 - 30px);
  flex-shrink: 0;
}
.pareto > :last-child {
  flex-basis: calc(200%/3 - 30px);
}
.carousel {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  /* * Effects * */
}
.carousel .effect_layer > * {
  transition: 800ms;
  transition-delay: 500ms;
  transform-origin: center 80%;
}
.carousel .effect_layer .scale0 {
  transform: scale(0);
}
.carousel .effect_layer .scale1 {
  transform: scale(1);
}
.carousel .viewport {
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.carousel .viewport > * {
  flex-basis: 100%;
  flex-shrink: 0;
}
.carousel .viewport > * img {
  display: block;
  max-width: 100%;
}
.carousel.huge {
  margin-top: 0;
  border: none;
  padding-left: 0;
  padding-right: 0;
  font-family: Aqum;
}
.carousel.huge > .viewport > * {
  position: relative;
}
@keyframes carousel_header_fadeout {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(0);
  }
}
.carousel.huge > .viewport > * header {
  position: absolute;
  left: 0;
  right: 0;
  top: 16%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.carousel.huge > .viewport > * header.fadeout {
  animation: carousel_header_fadeout 500ms forwards;
}
.carousel.huge > .viewport > * h2 {
  font-size: 5.4111em;
}
.carousel.huge > .viewport > * h3 {
  font-size: 1.5em;
}
.carousel.huge > .viewport > * h2,
.carousel.huge > .viewport > * h3 {
  color: #FF7E00;
  text-shadow: 2px 2px 2px black;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.carousel.huge > .viewport > * h2 {
  justify-content: flex-end;
}
.carousel.huge > .viewport > * h3 {
  justify-content: flex-start;
}
.carousel.huge > .viewport > * h3::before,
.carousel.huge > .viewport > * h2::after {
  content: '';
  flex-shrink: 0;
  flex-basis: 100%;
  transition: 500ms 1200ms;
}
.carousel.huge > .viewport > * h2::after {
  transition-delay: 2000ms;
}
.carousel.huge > .viewport > *.active h3::before,
.carousel.huge > .viewport > *.active h2::after {
  flex-basis: 0;
}
.carousel.huge > .viewport > *.delayed h3::before {
  transition-delay: 1700ms;
}
.carousel.huge > .viewport > *.delayed h2::after {
  transition-delay: 2500ms;
}
.carousel.huge > .viewport > *::before {
  content: '';
  display: block;
  padding-top: 43%;
}
.carousel.huge > .viewport > * img {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  object-fit: cover;
}
.carousel.huge .bCarouselControlsArrows {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 300ms;
}
.carousel.huge .bCarouselControlsArrows > a {
  position: absolute;
  z-index: 100;
  left: 0;
  top: 50%;
  width: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0;
  width: 40px;
  height: 40px;
}
.carousel.huge .bCarouselControlsArrows > a:hover {
  background: black;
}
.carousel.huge .bCarouselControlsArrows > a::before {
  content: '';
  border-top: 1px solid white;
  border-left: 1px solid white;
  display: block;
  width: 10px;
  height: 10px;
  transform-origin: center center;
  transform: rotate(-45deg);
}
.carousel.huge .bCarouselControlsArrows > a.bCarouselControlArrowRight {
  left: auto;
  right: 0;
}
.carousel.huge .bCarouselControlsArrows > a.bCarouselControlArrowRight::before {
  transform: rotate(135deg);
  position: relative;
  right: 4px;
}
.carousel.huge:hover .bCarouselControlsArrows {
  opacity: 1;
}
.carousel.large .viewport {
  margin-left: -15px;
  margin-right: -15px;
  max-width: none;
  justify-content: space-between;
}
.carousel.large .viewport > * {
  flex-basis: calc(100%/2 - 30px);
  flex-shrink: 0;
  margin: 0 15px;
  border: 1px solid #ededed;
  padding-bottom: 30px;
}
.carousel.large .viewport > * .date {
  font-weight: bold;
  color: inherit;
  font-size: 1.0833em;
  margin-top: 0;
  margin-bottom: 0;
}
.carousel.large .viewport > * .date:hover {
  color: black;
}
.carousel.large .viewport > * a:first-child {
  margin-bottom: 30px;
  margin-left: -1px;
  margin-right: -1px;
  margin-top: -1px;
}
.carousel.large .viewport > * a:first-child img {
  margin-bottom: 0;
  width: 100%;
}
.carousel.large .viewport > * a:first-child ~ * {
  margin-left: 30px;
  margin-right: 30px;
}
.carousel.large .viewport > * h3 {
  line-height: 2;
  margin-bottom: 20px;
}
.carousel.large .viewport > * h3 a:hover {
  color: inherit;
}
.carousel.medium .viewport {
  margin-left: -15px;
  margin-right: -15px;
  max-width: none;
  justify-content: space-between;
}
.carousel.medium .viewport > * {
  flex-basis: calc(100%/3 - 30px);
  margin: 0 15px;
}
.carousel.tiny .viewport > * {
  flex-basis: auto;
}
.carousel.tiny .bCarouselControlsArrows,
.carousel.small .bCarouselControlsArrows {
  padding: 0 calc(50% - 1400px/2);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 300ms;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 800;
  height: 0;
  top: 50%;
}
.carousel.tiny .bCarouselControlsArrows a,
.carousel.small .bCarouselControlsArrows a {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#arrow-right') no-repeat left center;
  background-size: 46px 46px;
}
.carousel.tiny .bCarouselControlsArrows a.bCarouselControlArrowRight,
.carousel.small .bCarouselControlsArrows a.bCarouselControlArrowRight {
  left: auto;
  transform-origin: center center;
  transform: rotate(180deg);
}
.carousel.tiny:hover .bCarouselControlsArrows,
.carousel.small:hover .bCarouselControlsArrows {
  opacity: 1;
}
.carousel.small h2 {
  margin-bottom: 35px;
}
.carousel.small .viewport > * {
  flex-basis: calc(100%/5 - 30px);
  margin: 0 15px;
  flex-shrink: 0;
}
.carousel.small > .bCarouselControlsArrows {
  opacity: 1;
}
.carousel.small > .bCarouselControlsArrows > a {
  top: 60%;
}
.carousel.colors {
  display: flex;
  max-width: 100%;
  align-items: center;
}
.carousel.colors .viewport {
  flex-grow: 1;
  order: 3;
}
.carousel.colors .viewport > * {
  flex-basis: 29px;
  height: 29px;
  margin: 0 6px;
  border-radius: 100%;
}
.carousel.colors > strong {
  order: 1;
}
.carousel.colors .bCarouselControlsArrows {
  display: contents;
}
.carousel.colors .bCarouselControlsArrows > a[class] {
  order: 2;
  margin-left: 10px;
  margin-right: 10px;
  background: none;
  font-size: 1rem;
  color: #555;
  margin-top: 0;
  transform: none;
}
.carousel.colors .bCarouselControlsArrows > a:last-child {
  order: 4;
}
.tiled_nav {
  display: flex;
}
.tiled_nav img {
  display: block;
}
.tiled_nav > * {
  flex-basis: 50%;
  flex-shrink: 0;
}
.tiled_nav > * > * {
  display: block;
  position: relative;
}
.tiled_nav > * > *::before {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  top: 0;
  bottom: 0;
  box-shadow: 0 0 125px rgba(0, 0, 0, 0.5) inset;
  transition: 300ms;
}
.tiled_nav > * > * > :not(img) {
  transition: 300ms;
  position: absolute;
  bottom: 7%;
  left: 0;
  right: 0;
  text-align: center;
}
.tiled_nav > * > *:hover::before {
  right: 0;
}
.tiled_nav > * > *:hover > h3 {
  padding-left: 15%;
  padding-right: 15%;
}
.tiled_nav > * > div > :not(img) {
  bottom: auto;
  top: 24.5%;
  left: 7%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: black;
}
.tiled_nav > * > div > :not(img) h3 {
  font-size: 2.1666em;
  line-height: 1.385;
}
.tiled_nav > * > div > :not(img) strong {
  font-size: 1.16666em;
  color: #FF7E00;
  font-weight: 600;
  margin: 25px 0 26px;
}
.tiled_nav > * > div > :not(img) a {
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid black;
  font-weight: 600;
}
.tiled_nav > * > div:hover > div {
  padding-left: 5%;
}
.tiled_nav > * > a h3 {
  font-size: 3.16666em;
  color: black;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}
.tabbed header {
  display: flex;
}
.tabbed.vertical {
  display: flex;
  align-items: flex-start;
}
.tabbed.vertical > header {
  flex-direction: column;
  margin-right: 70px;
  flex-basis: 20%;
  flex-shrink: 0;
}
.tabbed.vertical > header a {
  margin: 0 0 15px 0;
  color: white;
  font-size: 1.08333em;
  font-weight: 500;
  padding: 15px;
  line-height: 1.85;
  max-height: 54px;
  background: #FF7E00;
  white-space: nowrap;
  position: relative;
}
.tabbed.vertical > header a:hover {
  background: black;
}
.tabbed.vertical > header a.active {
  background: black;
}
.tabbed.vertical > header a.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  width: 27px;
  border-left: solid black 27px;
  border-top: solid transparent 27px;
  border-bottom: solid transparent 27px;
  border-right: none;
}
@keyframes scaleup {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.tabbed.vertical > div {
  flex-grow: 1;
}
.tabbed.vertical > div > * {
  display: none;
  transform: scale(0);
  transition: transform 3000ms;
  transform-origin: right bottom;
}
.tabbed.vertical > div > * p,
.tabbed.vertical > div > * ul,
.tabbed.vertical > div > * ol {
  margin-bottom: 10px;
  font-size: 1.0833rem;
}
.tabbed.vertical > div > .active {
  display: block;
  animation: scaleup 300ms forwards;
}
.tabbed.vertical > div > table.active {
  display: table;
}
.items_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.items_list::after {
  content: '';
  flex-grow: 1;
}
.items_list > * {
  flex-basis: calc((100% - 90px)/4);
  margin: 15px;
  flex-shrink: 0;
  flex-grow: 0;
}
.items_list > *:nth-child(4n) {
  margin-right: 0;
}
.items_list > *:nth-child(4n - 3) {
  margin-left: 0;
}
.items_list.list > .item_small {
  flex-basis: 100%;
  display: flex;
}
.items_list.list > .item_small > a {
  margin-right: 40px;
}
.items_list.list > .item_small h3 {
  margin-top: 15px;
}
.items_list.list > .item_small p {
  display: block;
}
.series_entry > a:first-child {
  overflow: hidden;
  display: block;
}
.series_entry > a:first-child img {
  transition: 300ms;
}
.series_entry > a:first-child:hover img {
  z-index: -1;
  transform: scale(1.05);
}
.breadcrumbs {
  display: flex;
}
.breadcrumbs span {
  font-weight: 500;
  font-size: 1.12em;
  text-decoration: none;
  color: #8C8C8C;
}
.breadcrumbs a {
  margin-right: 19px;
  position: relative;
}
.breadcrumbs a:hover {
  color: black;
}
.breadcrumbs a:hover::after {
  color: #8C8C8C;
}
.breadcrumbs a::after {
  content: '/';
  pointer-events: none;
  position: absolute;
  right: -12px;
}
.catalog {
  padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-size: 1.08333em;
  align-items: center;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.catalog aside {
  width: 258px;
  flex-shrink: 0;
  margin-right: 40px;
}
.catalog aside h3 {
  padding: 15px;
  font-size: 1.3333em;
  font-weight: 500;
  background: #F5F5F5;
}
.catalog aside h3 + * {
  margin-top: 15px;
}
.catalog aside h3:not(:first-child) {
  margin-top: 15px;
}
.catalog aside form {
  margin-left: 15px;
  margin-right: 15px;
}
.catalog aside form button {
  align-self: flex-start;
  margin-left: 0;
  font-size: 1rem;
}
.catalog aside form strong {
  margin-top: 15px;
  color: black;
  font-size: 1.1666em;
}
.catalog aside > ul {
  padding: 0 15px;
}
.catalog aside > ul > li {
  margin-left: 0;
}
.catalog aside > ul li {
  position: relative;
  list-style: none;
}
.catalog aside > ul a {
  color: #8a8a8a;
  text-decoration: none;
  display: block;
}
.catalog aside > ul a:hover {
  color: #FF7E00;
}
.catalog aside > ul a:not(.control) {
  margin-right: 24px;
}
.catalog aside > ul a.control {
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  font-weight: bold;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog aside > ul ul {
  margin-left: 15px;
  max-height: 0;
  overflow: hidden;
  transition: 300ms;
}
.catalog aside > ul ul.expanded {
  max-height: 30vh;
}
.catalog .category {
  flex-basis: 1300px;
  flex-grow: 0;
}
.catalog .category .settings {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eaeaea;
  color: #8a8a8a;
  display: flex;
  justify-content: space-between;
}
.catalog .category .settings > * {
  display: flex;
  align-items: center;
}
.forms {
  padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-size: 1.08333em;
  align-items: center;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.forms > * {
  flex-basis: 49%;
  flex-grow: 0;
  flex-shrink: 0;
}
.forms h2 {
  font-size: 1.6666em;
  font-weight: 500;
}
.blog h1 {
  color: black;
  font-size: 2.3333rem;
  margin-bottom: 15px;
}
.blog img {
  margin-bottom: 30px;
}
.blog p {
  margin-bottom: 20px;
}
.blog hr {
  width: 100px;
  border-bottom: 2px solid #8f98a1;
  margin: 0 auto 23px;
}
.prev_next {
  display: flex;
  justify-content: space-between;
}
.prev_next > * {
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
}
.prev_next > * img {
  margin-bottom: 0;
  margin-right: 15px;
}
.prev_next > * span {
  font-size: 1.08333em;
}
.prev_next > *:first-child span::before {
  content: "\f060";
  font: normal normal normal 14px/1 FontAwesome;
  margin-right: 15px;
}
.prev_next > *:last-child span::after {
  content: "\f061";
  font: normal normal normal 14px/1 FontAwesome;
  margin-left: 15px;
}
.prev_next > *:hover span::before,
.prev_next > *:hover span::after {
  color: black;
}
form.review h4 {
  color: black;
  font-size: 1.1666em;
  margin-bottom: 30px;
  font-weight: 500;
}
form.review label span {
  font-weight: bold;
}
form.review p.strong {
  font-weight: bold;
}
form.review p.hint {
  color: #333;
  font-size: 1.08333em;
}
form.review p.hint strong {
  color: red;
  font-size: 1.2em;
}
form.review p.hint ~ :not(button) {
  color: #333;
  font-size: 1.08333em;
}
form.review .radio_rating {
  font-weight: bold;
  margin: 10px 0;
}
form.review .radio_rating > div {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-top: 5px;
  margin-bottom: 15px;
}
form.review .radio_rating > div label {
  height: 16px;
  width: 20px;
  margin: 0;
  position: relative;
  cursor: pointer;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#star_form') no-repeat center center;
  background-size: 15px;
}
form.review .radio_rating > div label:last-child {
  margin-left: -2px;
}
form.review .radio_rating > div label:hover {
  background-image: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#star_form_hover');
}
form.review .radio_rating > div label:hover ~ label {
  background-image: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#star_form_hover');
}
form.review .radio_rating > div input {
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  width: 2px;
}
form.review .radio_rating > div input:checked ~ label {
  background-image: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#star_form_hover');
}
form.review button {
  margin-left: 0;
}
form.feedback > h1 {
  color: black;
  font-size: 2.5em;
  font-weight: 600;
}
form.feedback p {
  color: black;
  margin: 25px 0 30px;
  font-size: 1.0833em;
}
form.feedback label {
  font-size: 1.0833em;
}
form.feedback button {
  margin: 0;
  align-self: flex-start;
}
.contacts_short h2 {
  padding: 15px 0;
  font-size: 1.1666em;
}
.contacts_short p {
  margin-bottom: 20px;
}
.contacts_short > div {
  margin: 15px 10px;
  height: 110px;
  padding: 10px 20px 10px 130px;
  border: 1px solid #eaeaea;
  position: relative;
}
.contacts_short > div strong {
  color: black;
  display: block;
}
.contacts_short > div::after,
.contacts_short > div::before {
  content: '';
  height: 100%;
  width: 110px;
  position: absolute;
  left: 0;
  top: 0;
}
.contacts_short > div::before {
  background: #eaeaea;
}
.contacts_short > div::after {
  display: flex;
  align-items: center;
  justify-content: center;
  font: normal normal normal 14px/1 FontAwesome;
  transition: 300ms;
  font-size: 1.692em;
  color: #FF7E00;
}
.contacts_short > div:hover::after {
  transform: scale(1.2);
}
.contacts_short > div.map::after {
  content: "\f041";
}
.contacts_short > div.phone::after {
  content: "\f095";
}
.contacts_short > div.email::after {
  content: "\f0e0";
}
#map {
  padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-size: 1.08333em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  min-height: 450px;
}
.wishlist {
  padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-size: 1.08333em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
}
.wishlist h1 {
  color: black;
  font-size: 1.6666em;
  margin-bottom: 45px;
}
.wishlist .socials {
  margin-top: 0;
}
.wishlist .socials a {
  font-size: 2em;
  margin-right: .5em;
}
.account {
  padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-size: 1.08333em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  align-items: stretch;
}
.account > aside {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  margin-right: 36px;
}
.account > aside a {
  white-space: nowrap;
  font-family: inherit;
  font-size: 1.16666em;
  font-weight: 600;
  color: #333;
  height: 45px;
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
}
.account > aside a:not(:last-child) {
  border-bottom: 1px dashed #eaeaea;
}
.account > aside a:hover {
  color: black;
}
.account > aside a::before {
  font: normal normal normal 14px/1 FontAwesome;
  min-width: 3em;
  margin-left: .53em;
  flex-grow: 1;
  text-align: right;
}
.account > div {
  flex-grow: 1;
}
.account > div > h2 {
  color: black;
  font-size: 1.6666em;
  max-width: 40%;
  position: relative;
}
.account > div > h2 a {
  color: #8C8C8C;
  font-size: 1rem;
  font-weight: normal;
  float: right;
}
.account > div > h2 a:hover {
  color: #FF7E00;
}
.account > div.orders table th,
.account > div.orders table td {
  font-size: 1.0833rem;
}
.account > div.orders table th {
  font-weight: bold;
  color: black;
  padding: 10px;
}
.account > div.orders table td:last-child a {
  color: white;
  text-decoration: inherit;
  background: #FF7E00;
  letter-spacing: .4px;
  padding: 6px 25px;
  border-radius: 100px;
  line-height: 20px;
  height: 32px;
  display: block;
  font-size: 1.25rem;
  display: inline-block;
}
.account > div.orders table td:last-child a:hover,
.account > div.orders table td:last-child a.active {
  background: black;
}
.account > div.orders.order > p {
  font-size: 1.0833em;
}
.account > div.orders.order > h1 {
  color: black;
  font-size: 1.6666em;
}
.account > div.orders.order thead th,
.account > div.orders.order tfoot th {
  padding: 20px;
  line-height: 3.333em;
}
.account > div.orders.order th:last-child,
.account > div.orders.order td:last-child {
  border-right-width: 2px;
}
.account > div.orders.order tfoot th:last-child {
  color: inherit;
}
.account > div.orders.order tfoot th:last-child span {
  font-size: 1rem;
}
.account > div.orders.order tfoot tr:last-child th {
  border-bottom-width: 2px;
}
.account > div.orders.order table {
  margin-bottom: 20px;
}
.account > div.address form {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.account > div.address form > :not([class]) {
  flex-basis: 100%;
}
.account > div.address form label.select {
  flex-basis: 100%;
}
.account > div.address form > button:last-child {
  flex-basis: auto;
  margin-left: 0;
  font-size: 1.083rem;
}
.product_tiny {
  display: flex;
}
.product_tiny > a {
  font-size: 1.08333em;
  max-width: 6.05em;
  margin-right: 10px;
}
.product_tiny > a img {
  max-width: 100%;
}
.product_tiny .rating {
  margin: 3px 0;
}
.product_tiny .prices strong {
  font-weight: 600;
  color: black;
}
.product_tiny .prices del {
  color: #8C8C8C;
}
.product {
  padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-size: 1.08333em;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  overflow: visible;
  display: flex;
  align-items: flex-start;
}
.product > aside {
  flex-basis: 33.75%;
  margin-right: 3.375%;
  flex-grow: 0;
  flex-shrink: 0;
}
.product > aside a {
  display: block;
}
.product > aside a img {
  width: 100%;
  display: block;
}
.product > aside a:not(:first-child) {
  margin-top: 40px;
}
.product > div {
  position: sticky;
  top: 92px;
  flex-grow: 1;
}
.product > div h1 {
  font-size: 1.8333rem;
  font-weight: 600;
  color: black;
}
.product > div .prices {
  font-size: 2.5rem;
}
.product > div .prices strong {
  color: black;
}
.product > div .prices ins {
  font-weight: normal;
}
.product > div .availability {
  margin-top: 24px;
  font-size: 1.1666em;
  font-weight: 600;
}
.product > div .availability.available {
  color: green;
}
.product > div form {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 15px 0;
}
.product > div form label {
  margin-right: 53px;
}
#product .button-cart{
  height: 35px;
  width: 113px;
  margin: 0;
}
.content-compare .button-cart{
  height: 35px;
  width: 113px;
  margin: 0;
}
#product .product-oneclick{
  background-color:black;
  height: 35px;
  width: 155px;
  margin: 0;
}
#product .product-oneclick:hover {
  background:#585858;
}
.product > div form .links {
  color: black;
  white-space: nowrap;
  padding-right:20px;
  margin-bottom: 10px;
}
.product > div form .links a {
  color: black;
}
.product > div form .links a:hover {
  color: #FF7E00;
}
.product > div form .links a::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  font-size: 1.0769em;
}
.product > div form .links a.to_favorites::before {
  content: "\f08a";
}
.product > div form .links a.to_compare::before {
  content: "\f055";
}
.product > div form .links a:first-of-type {
  margin-right: 20px;
  margin-left: 24px;
  position: relative;
}
.product > div form .links a:first-of-type::after {
  content: '/';
  position: absolute;
  right: -15px;
  top: -8px;
  font-size: 1.1538em;
  pointer-events: none;
}
.product > div form .links a:first-of-type:hover::after {
  color: black;
}
.product > div .params {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #ededed;
}
.product > div .params strong {
  color: black;
  font-weight: normal;
  font-weight: 500;
}
.product_details {
  padding: 0 calc(50% - 1400px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  overflow: hidden;
  padding-top: 55px;
  padding-bottom: 30px;
  background: #F7F7F7;
}
.aBoxOverlay.faded {
  background: rgba(0, 0, 0, 0.5);
}
.aBoxOverlay.faded .bBox {
  display: flex;
  align-items: center;
  height: auto;
}
.aBoxOverlay.faded .bBox .bBoxClose {
  width: 44px;
  height: 44px;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#cross') no-repeat center center;
  background-size: 20px 20px;
  transform: none;
  border-radius: 22px;
  border: 1px solid #393938;
  right: 70px;
  top: 70px;
  top: 10px;
  right: 10px;
}
.aBoxOverlay.faded .bBox .bBoxClose:hover {
  animation: none;
}
.aBoxOverlay.faded .bBox .bBoxClose::before,
.aBoxOverlay.faded .bBox .bBoxClose::after {
  display: none;
}
.aBoxOverlay.gray {
  background: #ededed;
}
.aBoxOverlay.gray .bBox {
  width: 100%;
}
.aBoxOverlay.gray .bBox form {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aBoxOverlay.gray .bBox form input {
  width: 80%;
  padding: 20px;
  border: none;
  border-bottom: 2px solid #333;
  background: transparent;
  color: black;
  font-size: 2.9166em;
  line-height: 1.714;
}
.aBoxOverlay.gray .bBox form input::placeholder {
  color: #555;
  opacity: 1;
}
.aBoxOverlay.gray .bBox form button {
  position: absolute;
  opacity: 1;
  right: 14%;
  font-size: x-large;
  height: 50px;
  width: 50px;
}
.aBoxOverlay.gray .bBox .bBoxClose {
  width: 44px;
  height: 44px;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#cross') no-repeat center center;
  background-size: 20px 20px;
  transform: none;
  border-radius: 22px;
  border: 1px solid #393938;
  right: 70px;
  top: 70px;
}
.aBoxOverlay.gray .bBox .bBoxClose:hover {
  animation: none;
}
.aBoxOverlay.gray .bBox .bBoxClose::before,
.aBoxOverlay.gray .bBox .bBoxClose::after {
  display: none;
}
.minicart {
  position: fixed;
  right: -350px;
  transition: right 400ms;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 850;
  background: white;
  width: 350px;
  padding: 20px;
  max-height: 100%;
  overflow-y: scroll;
}
.minicart.active {
  right: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.minicart a.close {
  width: 44px;
  height: 44px;
  background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons.svg#cross') no-repeat center center;
  background-size: 20px 20px;
  transform: none;
  border-radius: 22px;
  border: 1px solid #393938;
  right: 70px;
  top: 70px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 42px;
  height: 42px;
  background-size: 17px 17px;
}
.minicart a.close:hover {
  animation: none;
}
.minicart a.close::before,
.minicart a.close::after {
  display: none;
}
.minicart > p.empty {
  font-size: 1.5em;
  margin: 5px 0 10px 0;
  visibility: hidden;
}
.minicart > p.empty:last-child {
  visibility: visible;
}
.minicart p {
  color: #555;
}
.minicart .product_tiny {
  color: black;
  margin: 20px 0 0;
  position: relative;
}
.minicart .product_tiny a {
  color: black;
}
.minicart .product_tiny h4 {
  font-size: 1.1666em;
  padding-right: 15px;
}
.minicart .product_tiny p {
  font-size: 1.08333em;
}
.minicart .product_tiny .remove {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.1666em;
  height: 10px;
  width: 10px;
  text-align: center;
  line-height: 10px;
}
.minicart .subtotal {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 1.5em;
}
.minicart .subtotal::before {
  content: '';
  flex-grow: 1;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
}
.minicart .subtotal span {
  padding: 20px 0;
  color: #555;
}
.minicart .subtotal ~ a {
  color: white;
  text-decoration: inherit;
  background: #FF7E00;
  letter-spacing: .4px;
  padding: 6px 25px;
  border-radius: 100px;
  line-height: 20px;
  height: 32px;
  display: block;
  font-size: 1.25rem;
  margin-bottom: 5px;
  text-align: center;
  font-size: 1.0833em;
}
.minicart .subtotal ~ a:hover,
.minicart .subtotal ~ a.active {
  background: black;
}
.clients img {
  filter: grayscale(100%);
  transition: 400ms;
}
.clients a:hover img {
  filter: grayscale(0);
}
.cart {
  padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-size: 1.08333em;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cart table.products_table td {
  font-size: 1.083rem;
}
.cart table.products_table thead th {
  padding: 20px;
}
.cart .totals {
  max-width: 532px;
  align-self: flex-end;
  background: #F7F7F7;
  padding: 25px 30px;
}
.cart .totals h3 {
  font-size: 1.666rem;
  margin-bottom: 30px;
  padding: 10px 0;
}
.cart .totals table th,
.cart .totals table td {
  font-size: 1.083rem;
}
.cart .totals th {
  vertical-align: middle;
  font-weight: bold;
}
.cart .totals strong.total_overall {
  font-size: 1.666rem;
}
.cart .totals button {
  text-decoration: inherit;
  font-weight: 500;
  letter-spacing: .4px;
  color: black;
  padding: 3px 15px;
  margin: 0 12px;
  border-radius: 100px;
  line-height: 25px;
  height: 36px;
  display: block;
  font-size: 1.25rem;
  background: black;
  color: white;
  margin-top: 30px;
  float: right;
  font-size: 1em;
}
.cart .totals button:hover,
.cart .totals button.active {
  background: #FF7E00;
  color: white;
}
.cart .totals button:first-child {
  margin-left: 0;
}
.cart .totals button:last-child {
  margin-right: 0;
}
.cart .totals button:hover {
  background: black;
}
.item_small {
  position: relative;
  overflow: hidden;
  min-width: 300px;
}
.item_small figure img {
  margin: 0 auto;
}
.item_small .controls {
  position: absolute;
  top: 5px;
  right: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 500ms;
  z-index: 250;
}
.item_small .controls > * {
  display: flex;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  font-size: 1.08333em;
  color: white;
  background: #FF7E00;
  border-radius: 100%;
  margin: 5px;
  transition: 250ms;
}
.item_small .controls > *:hover {
  background: black;
}
.item_small:hover .controls {
  right: calc(100% - 50px);
}
.item_small a {
  text-decoration: none;
  color: inherit;
}
.item_small figure {
  position: relative;
  width: 320px;
  height: 240px;
  overflow: hidden;
}
.item_small figure .discount {
  position: absolute;
  background: black;
  color: white;
  right: 10px;
  top: 10px;
  line-height: 20px;
  z-index: 100;
  width: 36px;
  text-align: center;
}
.item_small figure img {
  width: 320px;
  height: 240px;
  display: block;
}
.item_small figure img + img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  opacity: 0;
  transition: 500ms;
  width: 320px;
  height: 240px;
}
.item_small:hover figure img {
  width: 320px;
  height: 240px;
  opacity: 1;
}
.item_small h3 {
  font-size: 1.08333rem;
  font-weight: normal;
  margin: 15px 0 5px;
  color: inherit;
}
.item_small .prices {
  font-size: 1.16666rem;
  display: flex;
}
.item_small .prices strong {
  font-weight: 600;
  color: black;
}
.item_small .prices del {
  color: #aaa;
  margin-left: 5px;
}
.item_small p {
  display: none;
}
.popup {
  background: white;
}
.popup.cart_added {
  padding: 20px;
}
.popup.cart_added img {
  max-width: 10vw;
}
.popup.cart_added h1 {
  color: black;
}
.popup.cart_added .details {
  display: flex;
}
.popup.cart_added .details > :nth-child(2) {
  margin: 0 15px;
}
.popup.cart_added .details > :last-child {
  padding-left: 15px;
  border-left: 1px solid #aaa;
}
.popup.cart_added .details h2 {
  font-size: 1.166rem;
}
.popup.cart_added .buttonset {
  display: flex;
  margin-top: 30px;
  justify-content: flex-end;
}
.popup.cart_added .buttonset > * {
  margin-left: 15px;
}
.popup.cart_added .buttonset > *:hover {
  color: white;
}
.popup.cart_added .buttonset > *:last-child {
  background: black;
  color: white;
}
@media screen and (max-width: 1620px) {
  .main_menu .special .banner,
  .main_menu .special .banners {
    display: none;
  }
}
@media screen and (max-width: 1550px) {
  .carousel.small .viewport > :not(.color) {
    flex-basis: calc(100%/4 - 30px);
  }
}
@media screen and (max-width: 1450px) {
  body .tiled_nav img {
    max-width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  header.header-main .main_menu > * {
    margin-left: 0;
    margin-right: 0;
  }
  main .carousel.huge .viewport > * header {
    bottom: 0;
    height: 100%;
  }
}
@media screen and (max-width: 1366px) {
  .items_list > * {
    flex-basis: calc((100% - 60px)/3);
  }
  .items_list > :nth-child(4n-3) {
    margin-left: 15px;
  }
  .items_list > :nth-child(4n) {
    margin-right: 15px;
  }
  .items_list > :nth-child(3n-2) {
    margin-left: 0;
  }
  .items_list > :nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1280px) {
  header .logo + a {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .pareto {
    flex-direction: column;
  }
  .pareto > * {
    width: 100%;
  }
}
@media screen and (max-width: 1105px) {
  header.header-main .logo + a {
    display: block;
  }
  header.header-main nav.subnav {
    pointer-events: auto;
  }
  header.header-main .adds .menu_trigger {
    display: block;
  }
  header.header-main .main_menu_mobile_block {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    opacity: 1;
    border: none;
    padding: 0;
    width: auto;
    height: auto;
    flex-basis: 100%;
    flex-shrink: 0;
    display: flex;
    transform: none;
  }
  header.header-main .main_menu_mobile_block a::before {
    display: none;
  }
  header.header-main .main_menu_mobile_block a {
    font-size: 1.1666rem;
  }
  header.header-main .main_menu {
    position: fixed;
    left: 0;
    height: 100%;
    overflow: auto;
    transform: translate(-100%, 0);
    top: 0;
    bottom: 0;
    min-width: 420px;
    width: 50vw;
    max-width: 100vw;
    display: block;
    background: white;
    z-index: 650;
    margin: 0;
    padding: 65px 20px 20px;
    transition: transform 300ms;
  }
  header.header-main .main_menu::before,
  header.header-main .main_menu::after {
    display: none;
  }
  header.header-main .main_menu.active {
    transform: translate(0, 0);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  }
  header.header-main .main_menu * {
    max-width: 100%;
  }
  header.header-main .main_menu a.expand {
    display: flex;
  }
  header.header-main .main_menu nav.subnav {
    background: transparent;
    max-width: 100%;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: wrap;
  }
  header.header-main .main_menu nav.subnav > * {
    flex-basis: 100%;
  }
  header.header-main .main_menu > :first-child nav.subnav {
    border: none;
  }
  header.header-main .main_menu > :first-child nav.subnav > div {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
  }
  header.header-main .main_menu > :first-child nav.subnav > div > a {
    padding: 5px 0;
  }
  header.header-main .main_menu > :first-child nav.subnav > div > a:first-child {
    flex-grow: 1;
  }
  header.header-main .main_menu > :first-child nav.subnav > div > a::after {
    display: none;
  }
  header.header-main .main_menu > :first-child nav.subnav > div > nav {
    position: static;
    display: block;
    flex-basis: 100%;
    max-width: none;
    max-height: 0;
    transform: none;
    overflow: hidden;
    border: none;
    transition: none;
    box-shadow: none;
    padding: 0;
    min-height: 0;
  }
  header.header-main .main_menu > :first-child nav.subnav a.expand {
    display: flex;
  }
  header.header-main .main_menu > :first-child nav.subnav a.expand::before {
    display: block;
  }
  header.header-main .main_menu > * {
    margin: 0;
    flex-wrap: wrap;
    flex-direction: row;
  }
  header.header-main .main_menu > * > a {
    padding: 5px 0;
    font-size: 1.1666rem;
  }
  header.header-main .main_menu > * > a:first-child {
    flex-grow: 1;
  }
  header.header-main .main_menu > * > a:hover {
    background: none;
    color: #FF7E00;
  }
  header.header-main .main_menu > * > div > nav.subnav > a:first-child {
    left: 0;
    font-weight: normal;
    flex-shrink: 1;
    flex-basis: calc(100% - 25px);
  }
  header.header-main .main_menu > * > div > nav.subnav > a:first-child + a.expand {
    flex-basis: 25px;
    display: flex;
  }
  header.header-main .main_menu > * > div > nav.subnav > a:first-child + a.expand::before {
    display: block;
  }
  header.header-main .main_menu > * > div > nav.subnav > a:first-child + a.expand + * {
    margin-left: 20px;
  }
  header.header-main .main_menu a + nav,
  header.header-main .main_menu a + div,
  header.header-main .main_menu a + div > nav {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    opacity: 1;
    border: none;
    padding: 0;
    width: auto;
    height: auto;
    flex-basis: 100%;
    flex-shrink: 0;
    display: flex;
    transform: none;
  }
  header.header-main .main_menu a + nav a::before,
  header.header-main .main_menu a + div a::before,
  header.header-main .main_menu a + div > nav a::before {
    display: none;
  }
  header.header-main .main_menu a + nav a,
  header.header-main .main_menu a + div a,
  header.header-main .main_menu a + div > nav a {
    font-size: 1.1666rem;
  }
  header.header-main .main_menu a + div {
    flex-wrap: wrap;
  }
  header.header-main .main_menu a.expand + * {
    margin-left: 20px;
    max-width: calc(100% - 20px);
    height: 0;
    overflow: hidden;
    transition: none;
  }
  header.header-main .main_menu > a.close {
    display: block;
  }
  .tiled_nav > * > div > :not(img) strong {
    margin: 5px 0;
  }
}
@media screen and (max-width: 1060px) {
  footer {
    padding-left: calc((100vw - 734px)/2 - 20px);
    padding-right: calc((100vw - 734px)/2 - 20px);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    padding-top: 30px;
    padding-bottom: 60px;
  }
  footer .socials {
    margin-top: 0;
  }
  footer > :first-child {
    display: contents;
  }
  footer > :first-child > :first-child {
    display: contents;
  }
  footer > :first-child .menu {
    display: contents;
  }
  footer > :first-child .menu nav {
    padding: 0;
  }
  footer header {
    display: block;
    font-size: 1.3333em;
    font-weight: 600;
    margin: 20px 0 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
  }
  footer header::after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 1.6666rem;
  }
  footer header:empty {
    display: none;
  }
  footer header.active::after {
    content: "\f106";
  }
  footer header + * {
    margin-top: 10px;
  }
  footer header + section {
    display: none;
  }
  footer header ~ a {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .product {
    flex-direction: column;
    align-items: center;
  }
  .product aside {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .product > div {
    padding-left: calc(50% - 730px/2);
    padding-right: calc(50% - 730px/2);
  }
  body main > :first-child ~ .product_details {
    margin-top: 50px;
    padding-top: 20px;
  }
  .carousel.small .viewport > * {
    flex-basis: calc(100%/3 - 30px);
  }
}
@media screen and (max-width: 810px) {
  .tiled_nav {
    flex-direction: column;
    align-items: center;
  }
  .tiled_nav > * > div :not(img) {
    top: 50%;
    transform: translate(0, -50%);
  }
  .tiled_nav > * > div :not(img) strong {
    margin: 10px 0;
  }
  .tiled_nav > * > div :not(img) h3 {
    font-size: 1.8em;
  }
  .tiled_nav > * > a h3 {
    font-size: 2.5em;
  }
  main .carousel.huge .viewport > * header {
    font-size: .65rem;
  }
}
@media screen and (max-width: 800px) {
  header.header-main a.logo + a {
    display: none;
  }
  .catalog {
    display: flex;
    flex-direction: column-reverse;
  }
  .catalog aside {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
  .catalog aside h3 {
    display: flex;
    cursor: pointer;
    justify-content: space-between;
  }
  .catalog aside h3:not(:first-child) {
    margin-top: 3px;
  }
  .catalog aside h3.active::after {
    content: '\f106';
  }
  .catalog aside h3::after {
    content: "\f107";
    font-family: 'FontAwesome';
  }
  .catalog aside h3 + * {
    display: none;
    margin-top: 10px;
  }
  .product > div form {
    flex-wrap: wrap;
  }
  .product > div form > .links {
    flex-basis: 100%;
    margin-top: 15px;
  }
  .product > div form > .links > a:first-child {
    margin-left: 0;
  }
  .tabbed.vertical {
    flex-direction: column;
  }
  .tabbed.vertical header {
    flex-direction: row;
    margin-right: 0;
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
  }
  .tabbed.vertical header > a {
    margin: 0 15px;
  }
  .tabbed.vertical header > a.active::after {
    display: none;
  }
  .tabbed.vertical > div {
    width: 100%;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    padding-left: 5%;
    padding-right: 5%;
  }
  .forms {
    flex-direction: column;
  }
  .forms > * {
    width: 100%;
    margin-bottom: 30px;
  }
  .forms > * button {
    align-self: flex-start;
    margin: 10px 0 10px 0;
  }
  table.products_table {
    display: block;
    padding-bottom: 15px;
    position: relative;
  }
  table.products_table thead {
    display: none;
  }
  table.products_table tbody {
    display: block;
  }
  table.products_table tbody tr {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  table.products_table tbody tr td {
    border: none;
  }
  table.products_table tbody tr td:only-child {
    width: 100%;
  }
  table.products_table tbody tr td:first-child:not(:only-child) {
    order: 50;
  }
  table.products_table tbody tr td:nth-child(3) {
    flex-grow: 1;
    flex-basis: 51%;
  }
  table.products_table tbody tr td:nth-child(4),
  table.products_table tbody tr td:nth-child(5) {
    flex-basis: 50%;
    display: flex;
  }
  table.products_table tbody tr td:nth-child(4)::before,
  table.products_table tbody tr td:nth-child(5)::before {
    content: attr(title);
    color: #555;
    margin-right: 10px;
  }
  table.products_table tbody tr td:nth-child(5) {
    justify-content: flex-end;
  }
  table.products_table tbody tr td:nth-child(6) {
    flex-grow: 1;
  }
  table.products_table tbody tr td:last-child::after {
    content: '';
    left: 10%;
    right: 10%;
    top: 100%;
    position: absolute;
    border-bottom: 1px dotted #555;
  }
  .cart .totals {
    max-width: none;
    width: 100%;
  }
  .cart .totals button {
    width: 100%;
  }
  .cart table.products_table {
    display: block;
  }
  .cart table.products_table thead {
    display: none;
  }
  .cart table.products_table tbody tr {
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .cart table.products_table tbody tr td {
    display: flex;
    justify-content: space-between;
    border: 1px solid #d9d9d9;
    border-bottom: none;
  }
  .cart table.products_table tbody tr td:first-child {
    justify-content: flex-end;
  }
  .cart table.products_table tbody tr td:nth-child(2) {
    justify-content: center;
  }
  .cart table.products_table tbody tr td:nth-child(5) {
    justify-content: space-between;
  }
  .cart table.products_table tbody tr td::before {
    content: attr(title);
    font-weight: bold;
    color: black;
  }
  .cart table.products_table tbody tr td input[type=number] {
    width: 60px;
    background: transparent;
  }
  .cart table.products_table tbody tr td:last-child::after {
    display: none;
  }
  .cart table.products_table tbody tr td.coupon {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .cart table.products_table tbody tr td.coupon input {
    margin-bottom: 5px;
  }
  .cart table.products_table tbody tr td.coupon button {
    flex-basis: 100%;
    margin: 5px 0;
  }
  .cart table.products_table tbody tr:last-child td:last-child {
    border: 1px solid #d9d9d9;
  }
}
@media screen and (max-width: 768px) {
  .account {
    flex-direction: column;
  }
  .account > div {
    margin-top: 30px;
  }
  .account .orders:not(.order) table {
    display: block;
  }
  .account .orders:not(.order) table thead {
    display: none;
  }
  .account .orders:not(.order) table tbody {
    display: block;
  }
  .account .orders:not(.order) table tbody tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }
  .account .orders:not(.order) table tbody tr td {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    align-items: center;
  }
  .account .orders:not(.order) table tbody tr td:not(:first-child) {
    border-top: none;
  }
  .account .orders:not(.order) table tbody tr td::before {
    content: attr(title);
    font-weight: bold;
    color: black;
  }
  form label.short {
    flex-basis: 100%;
  }
  header.header-main {
    border-left: none;
    border-right: none;
  }
}
@media screen and (max-width: 680px) {
  header.header-main a.logo ~ a {
    display: none;
  }
  .catalog .category .settings {
    flex-direction: column;
    align-items: center;
  }
  .catalog .category .settings > :not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .items_list > :nth-child(n) {
    flex-basis: calc((100% - 30px)/2);
    margin-left: 0;
    margin-right: 0;
  }
  .tabbed.vertical > header {
    flex-direction: column;
  }
  .tabbed.vertical > header > a ~ a {
    margin-top: 1em;
  }
  body main > .carousel.huge .viewport > * header {
    top: 20%;
    bottom: 0;
    height: auto;
    font-size: .5em;
  }
  body main > .carousel.huge + h1 {
    font-size: 2em;
  }
  .carousel.small .viewport > * {
    flex-basis: calc(100%/2 - 30px);
  }
}
@media screen and (max-width: 560px) {
  header.header-main .logo {
    max-width: 50%;
    min-width: 150px;
    margin-right: 15px;
  }
  header.header-main .logo img {
    width: 100%;
  }
  header.header-main .adds > :not(:first-child) {
    margin-left: 15px;
  }
  .tiled_nav {
    flex-direction: column;
    align-items: center;
  }
  .tiled_nav > * > div :not(img) h3 {
    line-height: 1;
  }
  .tiled_nav > * > div :not(img) strong {
    margin: 5px 0;
  }
}
@media screen and (max-width: 480px) {
  .items_list {
    justify-content: center;
  }
  .items_list > :nth-child(n) {
    flex-basis: calc(100% - 30px);
  }
  header.header-main .adds .icon > span {
    display: none;
  }
  .tiled_nav {
    flex-direction: column;
    align-items: center;
    font-size: .8em;
  }
  .carousel.small .viewport > * {
    flex-basis: calc(100% - 30px);
  }
}
@media screen and (max-width: 480px) {
  table.products_table tbody tr td:nth-child(4),
  table.products_table tbody tr td:nth-child(5) {
    flex-basis: 100%;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 420px) {
  header.header-main .main_menu {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 360px) {
  header.header-main .adds > :not(:first-child) {
    margin-left: 10px;
  }
}
/*Предзагрузчик фото*/
.item_small img.lazy-hidden {
    background: #fff url('/catalog/view/theme/profi/images/preloader.svg') no-repeat 50% 50%;
    background-size: 100px 100px;
	height: 130px;
}
/*Предзагрузчик фото*/
/*Стрелки слайдеров*/
.owl-nav{
position:absolute;
top:50%;
width:100%;
}
.owl-nav i{
font-size:24px;
}
.owl-nav .owl-prev{
	left:1px;
	position:absolute;
}
.owl-nav .owl-next{
	right:1px;
	position:absolute;
}
/*Стрелки слайдеров*/
.text-danger {
  color: red;
  font-weight: bold;
}
.option-color {

}
.active-color {
  border: red 1px solid;
}
.reviews {
  margin-bottom: 40px;
}
.review {
  margin-bottom: 5px;
}
.review_info {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review_info__author {
  font-weight: bold;
  justify-content: left;
}
.review_info__date_rating {
  display: flex;
}
.review_info__date_added {
  justify-content: right;
}
.review_info__rating {
  margin-left: 5px;
  justify-content: right;
}
.review_text {
  color: #292929;
}
span[class^="error_message__"] {
  margin-top: 3px;
  margin-left: 3px;
  font-size: 0.85em;
  color: red;
}
.popup-review-success {
  color: black;
  padding: 20px;
  width: 437px;
  display: block !important;
}
.fa-star:before {
  color: orange;
}
.fa-star-o:before {
  color: orange;
}
.account-wishlist td i {
  font-size: 17px;
}
nav.adds a.fa-heart, nav.adds a.fa-balance-scale {
  color: black;
  font-size: 17px;
}
nav.adds a.fa-heart:hover, nav.adds a.fa-balance-scale:hover {
  color: orange;
  font-size: 17px;
}
/* Jet Cache critical css: catalog/view/theme/profi/css/common.css?v=207 */
.contact-block {
    background: #f6f6f6;

}
.wrapper {
    position: relative;
    width: 1180px;
    margin: auto;
    height: auto !important;
    text-align: center;
}
.contact-block .inner {
    width: 100%;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
}
.contact-block .inner .contact {
    width: calc(50%);
    padding: 36px 20px;
}
.contact-block .inner .map {
    width: 50%;
}
.contact-block .inner .contact h2 {
    font-size: 32px;
    color: #000000;
    line-height: 37px;
}
.contact-block .inner .contact a.tell {
    font-size: 24px;
    color: #4c4c4c;
    text-decoration: none;
    margin: 10px auto;
    display: inline-block;
}
.contact-block .inner .contact .address {
    
    font-size: 15px;
    color: #4c4c4c;
    margin-bottom: 10px;
}
.contact-block .inner .contact .mail {
    
    font-size: 18px;
    color: #4c4c4c;
    border-bottom: #4c4c4c dotted 1px;
    display: inline-block;
    line-height: 0.7;
    text-decoration: none;
}
.contact-block .inner .contact form {
    border-top: #e1e0e0 solid 1px;
    width: 85%;
    margin-top: 28px;
}
.form-block form {
    position: relative;
    background: transparent;
    min-height: 50px;
    height: auto;
    margin: auto;
    text-align: center;
    width: 400px;
}
.contact-block .inner .contact form input {
    width: 80%;
}
.form-block form input {
    background: transparent;
    
    border: none;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: #cccccc solid 1px;
    box-sizing: border-box;
    height: 38px;
    margin: 0 auto 17px auto;
    width: 80%;
    font-size: 16px;
    color: #808080;
}
.contact-block .inner .contact form textarea {
    width: 80%;
}
.form-block form textarea {
    background: transparent;
    border: none!important;
    border-bottom: #cccccc solid 1px!important;
    box-sizing: border-box;
    font-size: 16px;
    color: #808080;
    width: 100%;
    height: 50px;
    padding-top: 10px;
    margin: 0 auto;
}
.form-block form label.checkbox {
    
    font-size: 13px;
    color: #4c4c4c;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin: 20px 0 20px 0;
}
.form-block form label.form-but {
    position: relative;
    display: block;
    width: 280px;
    height: 70px;
    border-radius: 35px;
    border: #dbdbdb solid 1px;
    box-sizing: border-box;
    margin: auto;
}
.contact-block .inner .contact form h3 {
    font-size: 32px;
    color: #000000;
    margin: 25px auto 15px auto;
}
.form-block input[type='checkbox'] {
    display: none;
}
input[type='checkbox']:checked + .custom-checkbox, input[type='checkbox']:checked + div:before {
    background: url(https://www.kp-mebel.ru/catalog/view/theme/profi/images/sprite.png) left -198px no-repeat;
}
input[type='checkbox'] + .custom-checkbox, input[type='checkbox'] + div:before {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 13px;
    height: 13px;
    border: #cccccc solid 1px;
    cursor: pointer;
    margin-right: 10px;
    margin-left: -30px;
    margin-bottom: 3px;
}
.form-block form label.form-but {
    position: relative;
    display: block;
    width: 280px;
    height: 70px;
    border-radius: 35px;
    border: #dbdbdb solid 1px;
    box-sizing: border-box;
    margin: auto;
}
.form-block form .feedback {
    display: block;
    position: relative;
    width: 278px !important;
    height: 68px;
    background: linear-gradient(to left, #ed413b, #f3722a);
    border-radius: 35px;
    border: #ffffff solid 10px !important;
    line-height: 40px;
    margin: auto;
    
    box-sizing: border-box;
    font-size: 20px;
    color: #f2f4f8;
    white-space: nowrap;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
}
.forms_account form {
    margin: 0 auto;
}
.minicart p.empty {
    font-size: 1.5em;
    margin: 5px 0 10px 0;
}
.minicart a.linkscart {
    line-height: 25px;
    height: 34px;
}

.minicart a.linkscart {
    color: white;
    text-decoration: inherit;
    background: #FF7E00;
    letter-spacing: .4px;
    padding: 6px 25px;
    border-radius: 100px;
    line-height: 20px;
    height: 32px;
    display: block;
    font-size: 1.25rem;
    margin-bottom: 5px;
    text-align: center;
    font-size: 1.0833em;
}

.minicart li,
.minicart {
	list-style: none;
}
.minicart .product_tiny h4 {
	line-height: 17px;
}
.panel ul li,
.panel ul {
	list-style: none;
}
.panel .badge {
	display: none;
}
.successfulform {
display: none;
background: #FF7E00;
color: #ffffff;
font-size: 13px; 
text-align: center;
text-transform: uppercase;
margin-top: 6px;
padding: 10px 15px;
position: fixed;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
top: 0;
right: 0;
z-index: 1000000;
}
.successclose {
margin-left: 10px;
cursor: pointer;
display: inline-block;
}

.successclose:hover {
color: #000000;
}
.iconbox-inner {
    border: 2px solid #e6e6e6;
    border-radius: 5px;
    padding: 18px 30px 27px;
    transition: all .5s ease;
    flex-basis: calc(100%/4 - 30px);
    margin-bottom: 30px;
    text-align: center;
}

.iconbox-inner .icon {
	margin-bottom: 10px;
}

.iconbox-inner:hover {
	border-color: #FF7E00;
}
.iconbox-inner .title {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 11px;
}
.items_list_home {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.imgcat {
	height: 30px;
	overflow: hidden;
	width: 55px;
	text-align: center;
}
.imgcat img {
	height: 100%;
	width: auto;
}
@media screen and (max-width: 1366px){
	.items_category.items_list > * {
	    flex-basis: calc((100% - 90px)/4);
	}
}

.minicart .subtotal ~ a {
	line-height: 25px;
	height: 34px;
}
.item_small figure .discount {
	height: 20px;
	    line-height: 23px;
}
.items_list.list > .item_small > a {
	min-width: 300px;
}
footer > :first-child .menu nav a{
	white-space: normal;
	line-height: 20px;
	padding: 2px 0;
}
footer > :first-child .menu nav {
	padding: 0 15px;
}
.availability.red{
	color: red;
}
.tiled_nav > * > *:hover > h3 {
    padding-left: 15%;
    padding-right: 15%;
}
.tiled_nav > * > a h3 {
    font-size: 3em;
}
header.header-main .logo ~ a {
    color: black;
    font-weight: bold;
    font-size: 15px;
    color: #FF7E00;
}
header.header-main .logo ~ a:hover {
	color: black;
}
@media (max-width: 999px){
    .contact-block .inner {
        display: block;
    }
    .contact-block .inner .contact {
        width: 100%;
        padding: 36px 0px;
    }
    .contact-block .inner .map {
        width: 100%;
        height: 400px;
    }
    .wrapper {
        width: 100%;
        padding: 0 10px;
    }
}
/* Jet Cache critical css: catalog/view/theme/profi/css/re.css?v=207 */
.html-block h2 {
    font-size: 16px;
    margin-top: 15px;
}


.category-description .col-sm-4 {
	width: 32%;
	display: inline-block;
	margin-bottom: 30px;
}


.product > div form label {
	margin-right:15px;
}
.add-to-cart-errors {color:red;display:block;width: 100%;margin-top: 13px; display:none;}
.add-to-cart-errors.has-error {
	display:block;
}
.carousel.news-carousel .viewport > * {
	flex-basis: calc(100%/2 - 30px);
}
.carousel.news-carousel .viewport .info {
	width: 46%;
	display: inline-block;
	vertical-align: top;
	padding-left: 20px;
}
.carousel.news-carousel .viewport .thumb {
	width: 50%;
	display: inline-block;
}
.carousel.news-carousel .viewport .info h3 {
	margin-top: 0;
}

.portfolio-list {
	
}
.portfolio-list .portfolio-item {
	display: inline-block; 
	width: 24%;
	text-align: center;
	margin: 10px 5px;
	border-radius: 3px;
	vertical-align: top;
}
.portfolio-list .portfolio-item a {
	display: block;
	padding: 10px;
}
.portfolio-list .portfolio-item a img {
	margin-bottom: 0;
	width: 100%;
}
.portfolio-list .portfolio-item a span {
	margin: 0;
	padding: 0;
} 
.news-list .portfolio-item a{
	padding:0;
}

.news-list .portfolio-item {
	padding: 15px;
}
.category-subcategories {
	margin-bottom: 30px;
}
.category-subcategories a {
	display: inline-block;
	margin: 0 10px 10px 0;
	border: 1px solid #8C8C8C;
	padding: 5px 10px;
	border-radius: 3px;
}
 
.category-subcategories a:hover {
    background-color:#FF7E00;
    color:white;
    border-color:#FF7E00;
}
 
.button-bordered {
	position: relative;
	text-align: center;
	margin-bottom: 10px;
}
.button-bordered:after {
	content:"";
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	position: absolute;
	left: -5px;
	top: -5px;
	z-index: -1;
	background-color: white;
	border-radius: 25px;
	border: #dbdbdb solid 1px;
}
.simple-content .button-bordered {
	z-index: 1;
	margin: 0 auto;
	width: 210px;
	display: block;
}

.simple-content .button-bordered:after {
	border-radius: 30px;
}

.simple-content .button-bordered .button {
	
}

.main_menu .special > a:hover {
	cursor:default;
}
header.header-main {
	z-index: 1000;
}
header.header-main nav.subnav {
	z-index: 1000;
}

.blog table td {
	padding:0;
	border:none;
}

.item_small figure .discount {
	background-color: #FF7E00;
	width: 70px;
	height: 30px;
	line-height: 30px;
	right: 0;
}

.search-page {
	flex-basis: 100% !important;
}
.search-page .items_list > * {
}
.common-home .html-block {
	margin-bottom:20px;
}
.product_details.tabbed {
	margin-bottom:0;
}

.series-options h3 {
	margin-bottom: 30px !important;
}



.pagination {
	margin: 40px 20px;
	padding: 0;
	text-align: center;
}
.pagination li {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-block;
	margin: 0 4px;
}
.pagination li a, .pagination li span {
	display: inline-block;
	width: 30px;
	border: 1px solid lightgray;
	text-align: center;
	border-radius: 5px;
}
.pagination li a {

}
.pagination li span, .pagination li a:hover {
	background-color: #FF7E00;
	color: white;
}
.pagination .active {

}


.carousel.clients {
	margin-bottom:40px;
}
.carousel.colors .viewport .color {
	border:1px solid lightgray;
}
.product > div .params {margin-top: 0px;padding-top: 0;}
.product-description {
	margin-top: 20px !important;

  	padding: 0 calc(50% - 1600px/2 - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}



.product-options {
	margin-top: 20px;

}
.product-options a {
	display: inline-block !important;
	vertical-align: middle;
	width: 100%;
    margin-bottom: 11px;
}
.product-options .option-price {
	color: black;
	font-weight:bold;
}
.product > div .availability {
	margin-top:0;
}
.product > div .prices {
	color:black;
}
.product > div .prices strong {
	font-weight:normal;
}
.product-options .text-danger {
	color:red;
}
.product-options h3 {
	margin-top: 20px;
	margin-bottom: 13px;
}
.product-options .radio {
	margin-bottom: 10px;
	display: inline-block;
	margin-right: 0px;
	width: 150px;
	vertical-align: top;
	text-align: center;
	line-height: 1.4;
}
.product-options .radio label {
	display: block;
	cursor: pointer;
	border: 1px solid transparent;
	height: 130px;
	overflow: hidden;
	padding: 5px;
	border-radius: 3px;
}
.product-options .radio label:hover, .product-options input[type=radio]:checked + label {
	border-color:lightgray;
}

.product-options .radio input {
	display: none;
}
.product-options .radio label img  {
	vertical-align: middle;
	margin: 0 5px;
	border-radius: 50%;
	border: 1px solid lightgray;
	width: 50px;
}

.catalog aside > ul ul.expanded {
	max-height:100%;
}

.simplecheckout {
	color:black;
}
.simplecheckout .shipping-description {
	color:gray;
	margin-bottom:20px;
}
#simplecheckout_customer {
	margin-bottom:0;
}
#simplecheckout_customer .simplecheckout-block-content {
	padding-bottom:0;
}
#simplecheckout_customer .simplecheckout-block-content fieldset {
	padding-bottom:0;
}
#simplecheckout_comment {
	padding: 20px;
}
.simple-content #buttons .simplecheckout-button-right {float: initial;}
.simple-content #buttons .simplecheckout-button-right .button {
    width: 210px;
    text-align: center;
    height: 55px;
    line-height: 40px;
    margin: 0 auto !important;
}

.clients {
	padding: 0 calc(50% - 1400px/2 - 20px);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    overflow: hidden;
    margin-bottom:20px;
}
#map {
	margin-top:20px;
}
.pareto.form_call {
	margin-top: 10px;
}
.minicart {
	z-index: 9999999;
}
#product-categories {

}
#product-categories .title {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}
#product-categories ul {

}
#product-categories ul li {

}
#product-categories ul li a {
	color: #FF7E00;
}


#product-series {

}
#product-series .product-series-title {background-color: #F5F5F5;display: block;padding: 15px;text-align: center;margin-bottom: 20px;}

#product-series .product-series-title li {
	list-style: none;
	display: inline-block;
	margin: 0 25px;
}
#product-series .product-series-title li a{
	font-size: 16px;
}

#product-series h2 {
	text-align:center;
}
.product > div .params li {
	list-style:none;
    margin:0;
}
.overlay {
    background-color: #fff;
    height: 100%;
    left: 0;
    opacity: 0.66;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99998
}
.popup {
     background-color: #fff;
     left: 0;
     position: fixed;
     top: 0;
     width: 770px;
     z-index: 99999;
     border-radius: 5px;
     padding:30px;
     -webkit-box-shadow: -1px 2px 19px 3px rgba(0,0,0,0.75);
     -moz-box-shadow: -1px 2px 19px 3px rgba(0,0,0,0.75);
     box-shadow: -1px 2px 19px 3px rgba(0,0,0,0.75);
}
.popup .close-popup {
     background-image: url("https://www.kp-mebel.ru/catalog/view/theme/profi/images/icons/close-popup.png");
    height: 32px;
    position: absolute;
    right: -17px;
    top: -17px;
    width: 32px;
    cursor: pointer;
}

.oneclick-popup {
    padding: 0;
    width: 437px;
    display: block !important;
}
.oneclick-popup .error {
	color:red;
}
.oneclick-popup .wrap {
    border-radius: 5px;
    overflow: hidden;
}
.oneclick-popup .title {
    background-color: #ebebeb;
    font-size: 24px;
    padding: 23px 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}
.oneclick-popup .input {
    margin-bottom: 0px;
}
.oneclick-popup .pop-content {
    margin: 10px auto;
    width: 330px;
}
.oneclick-popup label {
    display: block !important;
    font-size: 14px;
    margin-bottom: 3px;
}
.oneclick-popup label span {
    color: #e5767e;
    display: inline;
}
.oneclick-popup input {
    border: 1px solid #b7c9d6;
    border-radius: 5px;
    padding: 8px 0;
    text-indent: 10px;
    width: 100%;
}
.oneclick-popup .button-red {
    text-decoration: inherit;
    font-weight: 500;
    letter-spacing: .4px;
    padding: 3px 15px;
    margin: 0 auto 15px;
    border-radius: 100px;
    line-height: 25px;
    height: 33px;
    font-size: 1.25rem;
    background: #FF7E00;
    color: white;
    display: block;
    width: 100px;
    text-align: center;
}
.oneclick-popup .button-red:hover {
	background-color:black;
}
.oneclick-popup .text {
    color: #393939;
    font-size: 13px;
    padding: 23px 35px;
    text-align: center;
}



.product .additional-images {
	display: inline-block;
	width: 100%;
	min-width: 90px;
	margin-top: 20px;
}
.product .additional-images a {display: block;width: 100%;padding: 6px 5px 0px 6px;border: 1px solid whitesmoke;margin-bottom: 10px;}
.product .additional-images a:hover, .product .additional-images a.active {border-color:gray;}

.product .additional-images a img{
	width: 100%;
}
.product .gallery {
	width: 50%;
	flex-basis: initial;
	margin-right: 3%;
}
.product > div {
	/* position: initial; */
	/* flex-grow: initial; */
	/* width: 100%; */
}
.product .gallery a {
	display:none;
}
.product .gallery a.active {
	display: inline-block;
	margin: 0;
}


.product .additional-images a {
	display: inline-block;
	width: 90px;
	padding: 5px;
	margin: 16px 2px 10px !important;
}
.top-button {
    display: block;
    width: 46px;
    height: 46px;
    background: url('https://www.kp-mebel.ru/catalog/view/theme/profi/images/to-up.png') no-repeat;
    text-decoration: none;
    position: fixed;
    right: 2%;
    bottom: 7%;
    cursor: pointer;
    background-color: #FF7E00;
    background-position: center;
}
.top-button:hover {background-color: #e89645;}
.noUi-connect {
	background-color: #e89645 !important;
}

#ocfilter .popover.right {z-index: 9999999;}

#ocfilter .popover.right .popover-title {
	background-color:transparent;
	z-index: 9999999;
	display: none;
}
#ocfilter .popover.right .popover-content .btn {
	top: 20px;
}

#ocfilter .hidden{
	display:none;
}
#ocfilter .btn {
  text-decoration: inherit;
  font-weight: 500;
  letter-spacing: .4px;
  color: black;
  padding: 3px 15px;
  margin: 0 12px;
  border-radius: 100px;
  line-height: 25px;
  height: 36px;
  display: block;
  font-size: 1.25rem;
  background: #FF7E00;
  color: white;
  width: auto;
  display: inline-block;
  align-self: center;
  position: relative;
}

#ocfilter .collapse-value .btn {
	top: 0;
	margin: 0px 0 0 0;
	padding: 0 0 0 20px;
	background-color: transparent;
	color: #FF7E00;
}


#ocfilter .panel-heading {padding: 15px;font-size: 1.3333em;font-weight: 500;background-color: #F5F5F5;display: block;color: black;line-height: 1.25;margin-top: 30px;}
#ocfilter .ocfilter-option {
	margin: 10px 0 40px;
}

#ocfilter #scale-price {
    margin-bottom: 60px;
}


#ocfilter .ocfilter-value-item {width: 100%;margin-bottom: 5px;border: none;}
#ocfilter .ocfilter-value-item tr{}
#ocfilter .ocfilter-value-item td{
    padding: 0;
    border: none;
    vertical-align: middle;
}
#ocfilter .ocfilter-value-item .ocf-image {
	width: 50px;
	height: 50px;
	float: inherit;
	border-radius: 50%;
	border: 1px solid lightgray;
}
#ocfilter .ocfilter-value-item label {

}
#ocfilter .ocfilter-value-item.with-image label input {
	display:none;
}
#ocfilter .ocfilter-value-item.with-image .image-block {
	width: 60px;
	padding: 5px;
}
#ocfilter .ocfilter-value-item:hover td {
	background-color: #F5F5F5;
}
#ocfilter .collapsed {
	display:none;
}
.category-top-description {
	margin-bottom:50px;
}
.category-description {
	margin-top:30px;
	border-top: 1px solid #eee;
	padding-top: 30px;
}
.category-description .col-sm-3 {
	width:25%;
	display: inline-block;
}
.category-top-description .col-sm-3 {
	width:25%;
	display: inline-block;
}
.form-block form .feedback {
    background: #FF7E00;
    border: none !important;
    width: 210px !important;
    height: 45px;
    margin-top: 3px;
}

.form-block form label.form-but {
	width: 219px;
	height: 53px;
}
.iconbox-inner {
	min-height:175px;
}
.iconbox-inner:hover .icon {
	-webkit-animation: bounceIn 0.3s ease-out;
    -o-animation: bounceIn 0.3s ease-out;
    animation: bounceIn 0.3s ease-out;
}


.messager {
	position: fixed;
	right: 2%;
	bottom: 7%;
	z-index: 999999;
}
.messager .messager-button {
	width: 60px;
	height: 60px;
	background-color: #FF7E00;
	display: block;
	border-radius: 50%;
	animation: pulseIt 2s ease-out;
	animation-iteration-count: infinite;
	-webkit-animation: pulseIt 2s ease-out;
	-webkit-animation-iteration-count: infinite;
	transition: all 0.2s ease-in-out;
	box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
}
.messager .messager-button .icon-close {
	display:none;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -7px;
}
.messager .messager-button .icon-message {position: absolute;left: 50%;margin-left: -17px;margin-top: -17px;top: 50%;}
.messager .messager-button.open .icon-close {
	display:block;

}
.messager .messager-button.open .icon-message {
	display:none;
}
.messager .messager-button.open {
	background-color:white
}
.messager .messager-button:hover {
	box-shadow:0 0 20px 0 rgba(0,0,0,.4)
}

.messager .messager-content {
	position: absolute;
	bottom: 70px;
	width: 100%;
	text-align: center;
	height: 0;
	display: none;
}
.messager .messager-content ul {

}
.messager .messager-content ul li {
	padding: 0;
	margin: 0;
	text-align: center;
	list-style: none;
}
.messager .messager-content ul li a {
	position: relative;
	z-index: 99999;
}

.messager .messager-content ul li a:hover .tooltip {
    opacity: .85;
}
.messager .messager-content ul li a .tooltip {
	position: absolute;
	right: 70px;
	white-space: nowrap;
	padding: 6px 9px;
	font-size: 13px;
	border-radius: 3px;
	transform: translateX(0%) translateY(-50%);
	top: -10px;
	background: #292929;
	color: #fff;
	opacity: 0;
	transition: all 0.1s linear;
}
.messager .messager-content ul li a .tooltip:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-left-color: #292929;
}


.side-categories {
	padding: 0 !important;
}
.side-categories > li {
	padding-bottom: 5px;
	margin-bottom: 7px;
}
.side-categories  li.active > a {color: #FF7E00;}
.side-categories > li:after {
content: '';
    height: 1px;
    background: #ededed;
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 95%;
}
.side-categories > li  a{
	line-height:1.4;
}
.side-categories > li table {

}
.side-categories > li table tr {

}
.side-categories > li table tr td {
	padding: 0;
	border: none;
	vertical-align: middle;
}
.side-categories > li table .imgcat{
	padding-right: 10px;
}
.side-categories > li table .imgcat img{
	max-width: 40px;
}
.side-categories > li > ul {margin-bottom: 10px;margin-top: 10px;}
.side-categories > li > ul > li {
	margin-bottom: 10px;
}

@media only screen and (min-width:1060px) {
.ocfilter-mobile {
	display: none;
}
.hidden-desktop {
	display:none !important;
}
}
@keyframes pulseIt{0%{transform:scale(1,1)}25%{transform:scale(1.1,1.1)}50%{transform:scale(1,1)}}

@keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 1200px) {
	.wrapper {
		width:100%;
	}
	.contact-block .inner .map {
		    width: 51%;
	}
	.carousel.news-carousel .viewport .info .preview{
		display:none;
	}
	.catalog aside h3 {
		display:none;
	}
}


@media screen and (max-width: 1060px) {

	.product {
		display:block;
	}
.breadcrumbs {
	display:block;
}
header.header-main .main_menu a.expand + * {
	position: relative !important;
	left: 0 !important;
	top: 0 !important;
	max-height: initial !important;
}

	.contact-block .inner .map {
		    width: 100%;
	}
.header-socials {
	text-align: center;
	margin-top: 15px !important;
	margin-left: 50px !important;
}
.header-socials a {
	width: 30px !important;
	font-size: 25px !important;
	max-width: initial !important;
	flex-grow: unset !important;
	display: inline-block !important;
	color: #ff7e00;
}
.header-socials a:hover::before {
	color: #ff7e00;
}
.header-contacts {
}
.header-contacts .icon {display: block;width: 100%;margin-bottom: 10px;color: black;}
.header-contacts .icon::before {
  vertical-align: middle;
  min-height: 0;
  min-width: 0;
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
  margin-right: 15px;
  flex-shrink: 0;
  position: absolute;
}
	.header-contacts .icon span, .header-contacts .icon a {padding-left: 0px;display: block;padding-left: 50px;}
.ocf-offcanvas-body {
	padding:10px;
}
.ocfilter-mobile-handle {

}
.ocfilter-mobile-handle button {
	background-color: #FF7E00;
	color: white;
	padding: 7px 7px 7px 25px;
	border-radius: 3px;
	font-size: 16px;
}

.ocfilter-mobile-handle button i {position: absolute;left: 6px;top: 6px;}
header.header-main .adds .icon > span {
	display:block;
	text-align: center;
	line-height: 1.5;
}

body > .popup {
	width: 90%;
	left: 5% !important;
}

.oneclick-popup .pop-content {
	width: 80%;
}

	footer > :last-child {
		position: relative;
		top: 40px;
	}

	footer .header-contact:after, .header-social:after {
		display:none;
	}

	footer .section-contact, .sections-social{
		display:block;
	}

	.hidden-mobile {
		display: none !important;
	}

	body > footer > :first-child .icon {
	margin-top: 10px !important;
	}
	.iconbox-inner {
		width:49%;
		flex-basis: unset;
	}
  .carousel.small.product-carousel .viewport > div {
    	    flex-basis: calc(100%/3 - 30px);
    	    vertical-align: top;
  }
  .carousel.small.news-carousel .viewport > div {
  	 flex-basis: calc(100%/2 - 30px);
  }
  .carousel.small.product-carousel .viewport .colors .viewport > a {
    		flex-basis: 29px;
    		width:auto;
  }
  .carousel.huge > .viewport > * h2 {
  	font-size:4em;
  }
  .carousel.huge {
  	margin-top: 0;
  }
  .category-subcategories a {
  	width: 31%;
  	text-align: center;
  }

  .product .gallery {
  	width:100%;
  }

  .portfolio-list .portfolio-item {
	width: 31%;
	}

	.contacts_short > div {
		height:auto;
	}

	.button-bordered-oneclick {
		margin-left: 0px !important;
	}

  .items_list.list {

  }
  .items_list.list .product-info-left {

  }
  .items_list.list .product-info-right {
  	width: 45%;
  	max-width: 380px;
  }
}
@media screen and (max-width:980px) {
.side-categories-box {
	display:none;
}

}
@media screen and (max-width: 480px) {
.carousel.huge > .viewport > * h3 {
  	font-size: 10px;
  }
.carousel.huge > .viewport > * h2 {
  	font-size: 17px;
  }

.category-description .col-sm-4 {
	width: 100%;
}

header.header-main .adds .icon > span {
	display:block;
}

header.header-main .main_menu > :first-child nav.subnav a.expand {
    position: absolute;
    right: -23px;
    top: 0px;
}
header.header-main .main_menu > :first-child > nav > div > nav nav {
	padding:0;
}
header.header-main .main_menu > :first-child nav.subnav > div {
	position:relative;
}
header.header-main .main_menu > :first-child nav.subnav > div > a {
	padding-right: 30px;
	display: block;
}
header.header-main .main_menu .imgcat {
	display: none;
}

header.header-main .main_menu > :first-child nav.subnav a.expand.active + nav {
    max-height: initial;
} 


  .carousel.small.product-carousel .viewport > div {
    flex-basis: calc(100% - 30px) !important;
  }
  .carousel.small.category-carousel .viewport > div {
    	    flex-basis: calc(100%/2 - 30px);
  }
  .iconbox-inner {
		width:100%;
		flex-basis: unset;
		min-height: auto;
	} 
	.aBoxOverlay.gray .bBox form input {
		font-size:15px;
	}
	
	.carousel.huge  {
  	margin-top: 0px;
  }
  
  .category-subcategories a {
  	width: 46%;
  	text-align: center;
  	vertical-align: top;
  }

  .catalog .category {
  	flex-basis: inherit;
  	width: 100%;
  }

  .product .gallery  {
  	text-align:center;
  }

 
  .simplecheckout-cart .quantity {
  	display:none;
  }
  
  .portfolio-list .portfolio-item {
	width: 46%;
	vertical-align: top;
	}
}						
