@charset "UTF-8";
/* ----- каталог в хедере ----- */
.header-2 {
  padding-bottom: 28px;
}

.header-2 .catalog-nav-mob {
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .header-2 {
    padding-bottom: 0;
  }
}

.catalog-nav-expanded {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.m-catalog {
  position: relative;
}

.m-catalog__btn {
  width: 171px;
  cursor: pointer;
}

.m-catalog__btn::before {
  content: '';
  display: block;
  width: 15px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 15px;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  height: 2px;
  margin-right: 12px;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff;
          box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff;
  -webkit-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
}

.m-catalog__list {
  width: 275px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 13px 0;
  font-size: 14px;
  background: #fff;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.13);
		  box-shadow: 0 0 24px rgba(0, 0, 0, 0.13);
	visibility: hidden;
	opacity: 0;
	z-index: -999;
	transition: all .1s linear;
}

.m-catalog__list li.--with-sublist > .m-catalog__link {
  position: relative;
}

.m-catalog__list li.--with-sublist > .m-catalog__link::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #2dc964;
  border-bottom: 1px solid #2dc964;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  right: 24px;
  top: 18px;
}

@media screen and (min-width: 1200px) {
  .m-catalog__list li:hover > .m-catalog__link {
    color: #2dc964;
    background-color: #efefef;
  }
  .m-catalog__list li:hover > .m-catalog__sublist {
    display: block;
  }
}

.m-catalog__sublist {
  display: none;
  width: 255px;
  height: 100%;
  padding: 13px 0;
  position: absolute;
  left: 100%;
  top: 0;
  background: #f7f8fa;
}

.m-catalog__sublist .m-catalog__sublist {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.m-catalog__link {
  display: block;
  padding: 13px 36px;
  color: #000;
}

.m-catalog:hover .m-catalog__btn {
  border-color: #26ab55;
  background-color: #26ab55;
}

.m-catalog:hover .m-catalog__btn::before {
  -webkit-box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
          box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
}

.m-catalog.m-catalog--active .m-catalog__list {
 	visibility: visible;
	opacity: 1;
	z-index: 1;
	transition-delay: 0s;
}

.--with-sublist > .m-catalog__link:hover {
  text-decoration: underline;
}

.m-catalog__sublist > li:hover > a {
  text-decoration: underline;
}

@media screen and (max-width: 1199px) {
  .m-catalog {
    display: none;
  }
  .m-catalog__sublist {
    display: block;
    width: 100%;
    height: 130%;
    padding: 0 0 30px;
    border-left: 0 !important;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    opacity: 0;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
  }
  .m-catalog__sublist.s-active {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
    z-index: 1;
  }
  .m-catalog__sublist a:not([href]) {
    position: relative;
  }
  .m-catalog__sublist a:not([href])::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #2dc964;
    border-bottom: 2px solid #2dc964;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
    right: 24px;
    top: 18px;
  }
  .catalog-nav-mob >.catalog-nav__list > li > .m-catalog__sublist > .m-catalog__sublist-item-first > .m-catalog__view-all {
    display: none;
  }
  .m-catalog__sublist-item-first {
    display: flex;
  }
  .m-catalog__back,
  .m-catalog__view-all {
    display: inline-block;
    white-space: nowrap;
    width: 46px; 
    float: left;
  }
  .m-catalog__view-all {
    width: calc(100% - 46px);
  }
  .m-catalog__back a:not([href]) {
    padding-left: 37%;
    border-bottom: 1px solid #e7e7e7;
    width: 100%;
    height: 46px;
    border-right: 1px solid #e7e7e7;
  }
  .m-catalog__view-all a {
    border-bottom: 1px solid #e7e7e7;
    font-size: 12px;
    height: 46px;
    display: flex;
    align-items: center;
  }
  .m-catalog__back a:not([href])::after {
    right: auto;
    left: calc(50% - 2px);
    top: calc(50% - 4px);
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .m-catalog__link {
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: padding-left .1s .2s linear;
    -o-transition: padding-left .1s .2s linear;
    transition: padding-left .1s .2s linear;
  }
  .m-catalog__arrow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 14px;
    top: 6px;
  }
  .m-catalog__arrow::before {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #2dc964;
    border-bottom: 2px solid #2dc964;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: -webkit-transform .1s ease;
    transition: -webkit-transform .1s ease;
    -o-transition: transform .1s ease;
    transition: transform .1s ease;
    transition: transform .1s ease, -webkit-transform .1s ease;
  }
}

@media screen and (max-width: 575px) {
  .m-catalog__back a:not([href]) {
    padding-left: 25%;
  }
  .m-catalog__back a:not([href])::after {
    right: auto;
    left: 20px;
    top: 18px;
  }
}

/* Фиксирование хедера при прокрутке */
.header--sticky {
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 68px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 68px rgba(0, 0, 0, 0.08);
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  -webkit-animation: headerReveal .4s ease-out forwards;
          animation: headerReveal .4s ease-out forwards;
}

.header--sticky .header__top {
  display: none;
}

.header--sticky .header__middle {
  padding-top: 0;
}

.header--sticky .header__middle .search {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  width: auto;
}

@-webkit-keyframes headerReveal {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes headerReveal {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

/*new desktop menu*/

.m-catalog > .m-catalog__list > .--with-sublist > .m-catalog__sublist {
  width: calc(1292px - 275px);
  padding: 20px 5px 20px 10px;
  max-height: 100%;
    overflow-y: auto;
}

.m-catalog > .m-catalog__list > .--with-sublist:hover > .m-catalog__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.m-catalog__col {
  width: 33%;
}

.m-catalog__col > li {
  padding-bottom: 30px;
}

.m-catalog__col .m-catalog__sublist {
  display: block;
  height: auto;
  position: relative;
  left: auto;
  border-left: none;
  width: auto;
  padding-top: 0;
  padding-bottom: 5px;
}

.m-catalog__col > .--with-sublist > .m-catalog__sublist {
  padding-top: 0;
  padding-bottom: 0;
}

.m-catalog__col .m-catalog__link {
  background-color: transparent !important;
  color: #000 !important;
  padding: 4px 36px;
}

.m-catalog__col .m-catalog__link::after {
  content: none !important;
}

.m-catalog__col > li > .m-catalog__link {
  font-weight: 700;
  padding-bottom: 12px;
}

.m-catalog__col > .--with-sublist > .m-catalog__sublist > li > .m-catalog__link {
  font-weight: 500;
}

.m-catalog__col > .--with-sublist > .m-catalog__sublist > .--with-sublist > .m-catalog__link:before {
  content: none;
}

.m-catalog__col > .--with-sublist > .m-catalog__sublist > .--with-sublist > .m-catalog__link:after {
  content: '' !important;
  background: url(/local/templates/novolamp_new/img/ic-arrow.png) no-repeat center;
  width: 13px;
  height: 8px;
  display: inline-block;
  margin-left: 10px;
  border: none;
  position: relative;
  right: auto;
  top: auto;
  -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
 --webkit-transition: opacity 0.1, -webkit-transform 0.1s;
  transition: opacity 0.1, -webkit-transform 0.1s;
  -o-transition: transform 0.1s, opacity 0.1;
  transition: transform 0.1s, opacity 0.1s;
  transition: transform 0.1s, opacity 0.1, -webkit-transform 0.1s;
  opacity: 0.5;
}

.m-catalog__col > .--with-sublist > .m-catalog__sublist > .--with-sublist:hover > .m-catalog__link:after {
  opacity: 1;
}

.m-catalog__col > .--with-sublist > .m-catalog__sublist > .--with-sublist > .m-catalog__link.active:after {
  -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
  opacity: 1;
}

.m-catalog__col > .--with-sublist > .m-catalog__sublist > .--with-sublist > .m-catalog__sublist {
  overflow: hidden;
  display: none;
}

.m-catalog__col > .--with-sublist > .m-catalog__sublist > li > .m-catalog__sublist .m-catalog__link {
  font-weight: 400;
  position: relative;
  padding-left: 51px;
}

.m-catalog__col > .--with-sublist > .m-catalog__sublist > li > .m-catalog__sublist .m-catalog__link:hover {
  text-decoration: underline;
}

.m-catalog__col > .--with-sublist > .m-catalog__sublist > li > .m-catalog__sublist .m-catalog__link:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 36px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #2dc864;
}

/*.m-catalog__col > .--with-sublist > .m-catalog__sublist > li > .m-catalog__sublist li:first-child .m-catalog__link:before {
  content: '\27A4';
  color: #2dc864;
  margin-top: -6px;
  background-color: transparent;
  left: 35px;
  font-size: 10px;
}*/

.header__middle .estimate-btn {
  background-color: #FFD739;
  border-radius: 2px;
  padding: 10px 27px;
  font-weight: 450;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-family: 'Futura New', sans-serif;
  margin-left: 10px;
  display: flex;
  align-items: center;
  transition: ease 200ms;
}

.header__middle .estimate-btn::before {
  content: ' ';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background: url('../../img/estimate-icon.svg') no-repeat center;
}

.header__middle .estimate-btn:hover {
  background-color: #ffe785;
}

#m-catalog-item-1, #m-catalog-item-607 {
  padding-top: 5px;
  padding-bottom: 5px;
}

#m-catalog-item-1 > .m-catalog__link {
  display: inline-flex;
  align-items: center;
  margin-left: 5%;
  background-color: #2dc260;
  color: #fff;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}

#m-catalog-item-1 > .m-catalog__link:hover {
  background-color: #26a753;
}

#m-catalog-item-1 > .m-catalog__link .catalog-css-ic {
  display: none;
}

#m-catalog-item-1 > .m-catalog__link::before {
  content: '';
  display: block;
  width: 15px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 15px;
  -ms-flex: 0 0 15px;
  flex: 0 0 15px;
  height: 2px;
  margin-right: 12px;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff;
  box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff;
  -webkit-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
}

/*#m-catalog-item-607 > .m-catalog__link {
  display: inline-flex;
  align-items: center;
  margin-left: 5%;
  background-color: #FFD739;
  color: #000;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 4px;
}

#m-catalog-item-607 > .m-catalog__link:hover {
  background-color: #f9de72;
}

#m-catalog-item-607 > .m-catalog__link::before {
  content: ' ';
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background: url('../../img/estimate-icon.svg') no-repeat center;
}*/

@media (min-width: 1200px) and (max-width: 1293px) {
  .m-catalog__btn {
    width: 152px;
  }
  .header__middle .estimate-btn {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header__middle .search {
    margin-right: 20px;
  }
  .header__middle .tel-link {
    font-size: 16px;
  }
  .header__middle.search-focused .search {
    margin-left: -154px;
    width: 580px;
  }
}

@media (max-width: 1200px) {
  .header__middle .estimate-btn {
    display: none;
  }
}

@media (min-width: 1199px) and (max-width: 1215px) {
  .header__middle .user-controls__txt {
    display: none;
  }
  .header__middle .user-controls {
    max-width: 215px;
  }
  .header__middle .user-controls-number {
    right: -12px;
  }
}