.no-touch .body--overlay {
  padding-right: 17px;
}

.header {
  margin-bottom: 20px;
}

.header ul {
  margin: 0;
  list-style: none;
}

.header button:focus {
  outline: 0;
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0;
}

.header__logo {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 262px;
  flex: 0 1 262px;
  max-width: 262px;
}

.header__logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.header-search {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 0 30px;
}

.header-search__input {
  position: relative;
  border-color: #00bf83;
}

.header-search .btn-default {
  border-color: #00bf83;
}

.header-search .btn-default:hover {
  color: #fff;
  border-color: #2e6ea5;
  background-color: #2e6ea5;
}

.header-search__btn {
  display: block;
  width: 30px;
  height: 30px;
  margin: auto;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  font-size: 26px;
  line-height: 1;
  color: #00bf83;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}

.header-search__btn:hover {
  color: #2e6ea5;
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 228px;
  flex: 0 0 228px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  max-width: 228px;
}

.header__contacts-link {
  display: block;
  margin-right: 10px;
}

.header__contacts-link:hover .header__contacts-svg {
  fill: #00bf83;
}

.header__contacts-svg {
  display: block;
  min-width: 60px;
  max-width: 100%;
  height: auto;
  -webkit-transition: fill .2s;
  -o-transition: fill .2s;
  transition: fill .2s;

  fill: #00bf83;
}

.header__contacts-btn {
  width: 30px;
  height: 30px;
  margin: auto;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  font-size: 30px;
  line-height: 1;
  color: #00bf83;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}

.header__contacts-btn:hover {
  color: #2e6ea5;
}

.header__contacts-phones {
  max-width: 170px;
  margin-right: auto;
  margin-left: auto;
}

.header__contacts-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 600;
  line-height: 25px;
  color: #00bf83;
}

.header__contacts-phone:hover {
  color: #2e6ea5;
}

.header__contacts-phone:hover,
.header__contacts-phone:focus {
  text-decoration: none;
}

.header__contacts-phone span {
  margin: 0 4px 0 8px;
  color: #2e6ea5;
}

.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-basket {
  position: relative;
  margin-right: 30px;
}

.header-basket__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  font-size: 16px;
  color: #00bf83;
}

.header-basket__link:hover {
  text-decoration: none;
  color: #2e6ea5;
}

.header-basket .glyphicon {
  margin-left: 10px;
  font-size: 26px;
  line-height: 1;
}

.header-basket__label {
  position: absolute;
  top: 4px;
  right: -4px;
  width: 15px;
  height: 15px;
  text-align: center;
  font-size: 11px;
  line-height: 15px;
  color: #fff;
  border-radius: 50%;
  background-color: #f00;
}

.header-basket__dropdown {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: calc(100% - 4px);
  right: 0;
  width: 260px;
  padding: 0;
  -webkit-transition: opacity .1s, visibility .1s, -webkit-transform .2s;
  transition: opacity .1s, visibility .1s, -webkit-transform .2s;
  -o-transition: opacity .1s, transform .2s, visibility .1s;
  transition: opacity .1s, transform .2s, visibility .1s;
  transition: opacity .1s, transform .2s, visibility .1s, -webkit-transform .2s;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  border-radius: 0 0 4px 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);

  will-change: transform;
}

.header-basket__dropdown li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 5px;
}

.header-basket__dropdown li:not(:first-child) {
  border-top: 1px solid #ccc;
}

.header-basket__dropdown .glyphicon-trash {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  font-size: 14px;
}

.header-basket__dropdown a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.header-basket__dropdown a:hover {
  text-decoration: none;
  color: #00bf83;
}

.header-basket__dropdown a span {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 0 5px;
}

.header__lang {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 54px;
  flex: 0 0 54px;
  width: 54px;
  max-width: 54px;
}

.lang__current {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #00bf83;
  border: 0;
  border-radius: 0;
  background-color: #fff;
}

.lang__dropodwn {
  z-index: 1;
  left: 0;
}

.lang__item:not(:first-child) {
  border-top: 1px solid #ccc;
}

.lang__link {
  display: block;
  padding: 10px 16px;
  text-transform: uppercase;
  color: #00bf83;
}

.lang__link:hover {
  text-decoration: none;
  color: #2e6ea5;
}

.hamburger {
  position: relative;
  z-index: 2;
  display: none;
  width: 36px;
  height: 24px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.hamburger:hover .hamburger__line,
.hamburger:hover .hamburger__line::before,
.hamburger:hover .hamburger__line::after {
  background-color: #2e6ea5;
}

.hamburger.hamburger--active .hamburger__line {
  background-color: transparent;
}

.hamburger.hamburger--active .hamburger__line::before {
  top: 10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #2e6ea5;
}

.hamburger.hamburger--active .hamburger__line::after {
  top: 10px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #2e6ea5;
}

.hamburger.hamburger--close {
  z-index: 12;
}

.hamburger.hamburger--close .hamburger__line {
  background-color: transparent;
}

.hamburger.hamburger--close .hamburger__line::before {
  top: 10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #00bf83;
}

.hamburger.hamburger--close .hamburger__line::after {
  top: 10px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #00bf83;
}

.hamburger.hamburger--close:hover .hamburger__line::before,
.hamburger.hamburger--close:hover .hamburger__line::after {
  background-color: #2e6ea5;
}

.hamburger__line {
  display: block;
  height: 4px;
  -webkit-transition: background-color .15s;
  -o-transition: background-color .15s;
  transition: background-color .15s;
  background-color: #00bf83;
}

.hamburger__line::before,
.hamburger__line::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 4px;
  -webkit-transition: background-color .15s, -webkit-transform .15s;
  transition: background-color .15s, -webkit-transform .15s;
  -o-transition: transform .15s, background-color .15s;
  transition: transform .15s, background-color .15s;
  transition: transform .15s, background-color .15s, -webkit-transform .15s;
  background-color: #00bf83;
}

.hamburger__line::before {
  top: 0;
}

.hamburger__line::after {
  bottom: 0;
}

.menu {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-right: 10%;
}

.menu__wrap-for-mobile {
  position: relative;
  z-index: 12;

  will-change: transform;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
}

.menu__item {
  position: relative;
  z-index: 16;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu__link {
  position: relative;
  z-index: 50;
  display: block;
  padding: 10px 0;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #00bf83;
  background-color: #fff;
}

.menu__link:hover {
  text-decoration: none;
}

.menu__btn {
  position: relative;
  z-index: 16;
  width: 30px;
  height: 30px;
  padding: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: color .15s, background-image .15s;
  -o-transition: color .15s, background-image .15s;
  transition: color .15s, background-image .15s;
  font-size: 16px;
  line-height: 1;
  color: #000;
  border: 0;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 185.344 185.344' xml:space='preserve' height='12' width='12'%3E%3Cpath fill='%2300bf83' d='M92.672,144.373c-2.752,0-5.493-1.044-7.593-3.138L3.145,59.301c-4.194-4.199-4.194-10.992,0-15.18c4.194-4.199,10.987-4.199,15.18,0l74.347,74.341l74.347-74.341c4.194-4.199,10.987-4.199,15.18,0c4.194,4.194,4.194,10.981,0,15.18l-81.939,81.934C98.166,143.329,95.419,144.373,92.672,144.373z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50%;
}

.submenu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  overflow: hidden;
  width: 200px;
  -webkit-transition: opacity .1s, visibility .1s, -webkit-transform .2s;
  transition: opacity .1s, visibility .1s, -webkit-transform .2s;
  -o-transition: opacity .1s, transform .2s, visibility .1s;
  transition: opacity .1s, transform .2s, visibility .1s;
  transition: opacity .1s, transform .2s, visibility .1s, -webkit-transform .2s;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);

  will-change: transform;
}

.submenu__list {
  padding: 4px 0 0;
}

.submenu__list li:not(:first-child) {
  border-top: 1px solid #ccc;
  background-color: #fff;
}

.submenu__link {
  display: block;
  padding: 6px 10px;
  -webkit-transition: color .2s, background-color .2s;
  -o-transition: color .2s, background-color .2s;
  transition: color .2s, background-color .2s;
  background-color: #fff;
}

.submenu__link:hover {
  text-decoration: none;
}

.header__basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0;
}

.header__basket .header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 262px;
  flex: 0 1 262px;
  max-width: 262px;
  margin-right: 40px;
}

.footer {
  overflow: hidden;
  margin: 20px 0 0;
  border-radius: 4px 4px 0 0;
}

.footer a {
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  font-size: 16px;
  color: inherit;
}

.footer a:hover {
  text-decoration: none;
  color: #337ab7;
}

.footer__container {
  margin: 0 -10px;
  padding: 30px 15px 20px;
  font-size: 14px;
  color: #333;
  background-color: #e7eff3;
}

.footer__col {
  padding: 0 10px;
}

.footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu li {
  margin-bottom: 8px;
}

.footer__copyright {
  margin: 0;
  padding: 13px 0;
  text-align: center;
  font-weight: 300;
  line-height: 1;
  color: #666;
  background-color: #dce6eb;
}

#slider1 .nivo-box,
#slider1 .nivo-slice {
  z-index: 0;
}

#slider1 .nivoSlider a.nivo-imageLink {
  z-index: 1;
}

#slider1 .nivo-caption {
  z-index: 2;
}

#slider1 .nivo-directionNav a {
  z-index: 3;
}

.order-callback,
.order-project {
  z-index: 10;
}

.js-dropdown {
  position: relative;
}

.js-dropdown__btn {
  position: relative;
  z-index: 1;
  padding: 10px 22px 10px 10px;
  -webkit-transition: color .15s, background-image .15s;
  -o-transition: color .15s, background-image .15s;
  transition: color .15s, background-image .15s;
  font-size: 16px;
  line-height: 1;
  color: #00bf83;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 185.344 185.344' xml:space='preserve' height='12' width='12'%3E%3Cpath fill='%2300bf83' d='M92.672,144.373c-2.752,0-5.493-1.044-7.593-3.138L3.145,59.301c-4.194-4.199-4.194-10.992,0-15.18c4.194-4.199,10.987-4.199,15.18,0l74.347,74.341l74.347-74.341c4.194-4.199,10.987-4.199,15.18,0c4.194,4.194,4.194,10.981,0,15.18l-81.939,81.934C98.166,143.329,95.419,144.373,92.672,144.373z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 95% 10px;
}

.js-dropdown__btn.open {
  color: #2e6ea5;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 185.3 185.3' xml:space='preserve' height='12' width='12'%3E%3Cpath fill='%232e6ea5' d='M92.7,41c2.8,0,5.5,1,7.6,3.1l81.9,81.9c4.2,4.2,4.2,11,0,15.2c-4.2,4.2-11,4.2-15.2,0L92.7,66.9l-74.3,74.3 c-4.2,4.2-11,4.2-15.2,0c-4.2-4.2-4.2-11,0-15.2l81.9-81.9C87.2,42,89.9,41,92.7,41z'/%3E%3C/svg%3E%0A");
}

.js-dropdown__hidden-block {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: calc(100% - 4px);
  right: 0;
  -webkit-transition: opacity .1s, visibility .1s, -webkit-transform .2s;
  transition: opacity .1s, visibility .1s, -webkit-transform .2s;
  -o-transition: opacity .1s, transform .2s, visibility .1s;
  transition: opacity .1s, transform .2s, visibility .1s;
  transition: opacity .1s, transform .2s, visibility .1s, -webkit-transform .2s;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

.js-dropdown__hidden-block.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.js-dropdown__list {
  overflow: hidden;
  padding: 4px 0 0;
  font-size: 13px;
  border-radius: 0 0 4px 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}

.no-touch .js-dropdown:hover .js-dropdown__btn {
  color: #00bf83;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 185.3 185.3' xml:space='preserve' height='12' width='12'%3E%3Cpath fill='%232e6ea5' d='M92.7,41c2.8,0,5.5,1,7.6,3.1l81.9,81.9c4.2,4.2,4.2,11,0,15.2c-4.2,4.2-11,4.2-15.2,0L92.7,66.9l-74.3,74.3 c-4.2,4.2-11,4.2-15.2,0c-4.2-4.2-4.2-11,0-15.2l81.9-81.9C87.2,42,89.9,41,92.7,41z'/%3E%3C/svg%3E%0A");
}

.no-touch .js-dropdown:hover .js-dropdown__hidden-block {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.product_all .well,
.product_all .breadcrumb {
  background-color: rgba(239, 245, 248, .5);
}

.btn-green {
  color: #fff;
  background-color: #48a43f;
}

.btn-green:hover {
  color: #fff;
  background-color: #3c8d34;
}

.product-table {
  width: 100%;
}

.product-table th {
  padding: 10px 5px;
  color: #fff;
  background-color: #56a2cf;
}

.product-table th:not(:first-child) {
  text-align: center;
}

.product-table td {
  padding: 5px;
  -webkit-transition: background-color .15s;
  -o-transition: background-color .15s;
  transition: background-color .15s;
  line-height: 1;
}

.product-table td::before {
  display: inline-block;
  width: 120px;
  font-weight: 700;
}

.product-table td:nth-child(3) {
  font-weight: 700;
}

.product-table td:nth-child(3) span:first-child {
  text-decoration: line-through;
  font-size: 12px;
  color: #ed1f24;
}

.product-table td:nth-child(3) span:not(:empty) {
  margin-right: 6px;
}

.product-table td:not(:first-child) {
  text-align: center;
}

.product-table td:last-child {
  text-align: right;
}

.product-table .btn {
  display: inline-block;
  padding: 10px 10px 10px 36px;
  -webkit-transition: background-color .15s;
  -o-transition: background-color .15s;
  transition: background-color .15s;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #f7fbff;
  border-color: #2e6ea5;
  border-radius: 3px;
  background-color: #2e6ea5;
  background-image: url("../img/product-order/add-cart.png");
  background-repeat: no-repeat;
  background-position: 0 50%;
}

.product-table .btn:hover {
  border-color: #00bf83;
  background-color: #00bf83;
}

.product-table .slick-slide:focus {
  outline: 0;
}

.product-table .slick-dots {
  position: static;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px auto 0;
  list-style: none;
  text-align: left;
}

.product-table .slick-dots li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-table .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 15px;
  -webkit-transition: background-color .2s, -webkit-transform .2s;
  transition: background-color .2s, -webkit-transform .2s;
  -o-transition: transform .2s, background-color .2s;
  transition: transform .2s, background-color .2s;
  transition: transform .2s, background-color .2s, -webkit-transform .2s;
  -webkit-transition-delay: .2s, .2s;
  -o-transition-delay: .2s, .2s;
  transition-delay: .2s, .2s;
  -webkit-transform: scale(.7);
  -ms-transform: scale(.7);
  transform: scale(.7);
  color: transparent;
  border: 0;
  border-radius: 50%;
  background-color: #2e6ea5;
}

.product-table .slick-dots button::before {
  content: none;
}

.product-table .slick-dots button:hover {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background-color: #00bf83;
}

.product-table .slick-active button {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background-color: #00bf83;
}

.product-table .slick-active button:hover {
  cursor: default;
}

.product-info {
  position: relative;
}

.product-info .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.product-info .form-control {
  height: 46px;
  padding: 12px;
}

.product-info .control-label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  padding-top: 0;
  text-align: left;
  white-space: nowrap;
}

.product-info__item {
  margin-bottom: 12px;
}

.product-info__item .scroll-to {
  display: inline-block;
  margin-bottom: 20px;
}

.product-info__order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-info__form {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  padding-right: 20px;
}

.product-info__btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
}

.product-info__btn .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px;
  font-size: 17px;
  line-height: 1;
}

.product-info__btn .glyphicon {
  margin-right: 10px;
  font-size: 20px;
}

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

.product-info__label .price {
  right: 0;
  left: auto;
  display: inline-block;
}

.product-detail .well .btn {
  margin-bottom: 0;
}

.basket__title {
  margin-bottom: 40px;
  font-size: 24px;
  color: #00bf83;
}

.basket__sections-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.basket__group-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
  padding-bottom: 10px;
}

.basket__section {
  margin-bottom: 30px;
}

.basket__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  margin: 10px 0;
  padding-top: 30px;
  border-top: 4px solid #00bf83;
}

.basket-product {
  margin-bottom: 30px;
  border-bottom: 4px solid #00bf83;
}

.basket-product img {
  display: block;
  margin: auto;
}

.basket-product__table {
  width: 100%;
}

.basket-product th {
  padding: 10px 5px;
  text-align: center;
  color: #2e6ea5;
  border-bottom: 1px solid #adafb6;
}

.basket-product td {
  padding: 5px;
}

.basket-product td:not(:first-child) {
  text-align: center;
}

.basket-product td:nth-child(4),
.basket-product td:nth-child(5) {
  font-weight: 700;
}

.basket-product td::before {
  display: block;
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  background-color: rgba(239, 245, 248, .5);
}

.basket-product__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.basket-product__btn {
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  color: #2e6ea5;
  border: 1px solid #eff5f8;
  border-radius: 50%;
  outline: 0;
  background-color: #eff5f8;
}

.basket-product__btn:hover,
.basket-product__btn:focus {
  color: #00bf83;
}

.basket-product__input {
  width: 20px;
  margin: 0 5px;
  padding: 4px 0;
  text-align: center;
  font-size: 16px;
  border: 0;
  background-color: #fff;
}

.basket-product .glyphicon-trash {
  color: #2e6ea5;
  border: 0;
  background-color: transparent;
}

.basket-product .glyphicon-trash:hover {
  color: #00bf83;
}

.form__group {
  position: relative;
  margin: 0 auto 22px;
}

.form__input {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 28px;
  padding: 4px 0;
  -webkit-transition: border-color .2s, -webkit-box-shadow .2s;
  transition: border-color .2s, -webkit-box-shadow .2s;
  -o-transition: box-shadow .2s, border-color .2s;
  transition: box-shadow .2s, border-color .2s;
  transition: box-shadow .2s, border-color .2s, -webkit-box-shadow .2s;
  font-size: 14px;
  line-height: 1;
  color: #2e6ea5;
  border: 0;
  border-bottom: 1px solid #00bf83;
  border-radius: 0;
  outline: 0;
  background-color: transparent;
}

.form__input::-webkit-input-placeholder {
  font-size: 12px;
}

.form__input::-moz-placeholder {
  font-size: 12px;
}

.form__input:-ms-input-placeholder {
  font-size: 12px;
}

.form__input::-ms-input-placeholder {
  font-size: 12px;
}

.form__input::placeholder {
  font-size: 12px;
}

.form__input:focus {
  background-color: transparent;
  -webkit-box-shadow: 0 1px 0 0 #00bf83;
  box-shadow: 0 1px 0 0 #00bf83;
}

.form__input:focus::-webkit-input-placeholder {
  color: transparent;
}

.form__input:focus::-moz-placeholder {
  color: transparent;
}

.form__input:focus:-ms-input-placeholder {
  color: transparent;
}

.form__input:focus::-ms-input-placeholder {
  color: transparent;
}

.form__input:focus::placeholder {
  color: transparent;
}

.form__label {
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 0;
  -webkit-transition: top .3s;
  -o-transition: top .3s;
  transition: top .3s;
  font-size: 14px;
  font-weight: 700;
  color: #2e6ea5;
}

.form__input:hover ~ .form__label,
.form__input:focus ~ .form__label,
.form__input.has-content ~ .form__label {
  top: -14px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  font-size: 12px;
  font-weight: 400;
}

.form__input.error {
  border-color: #f00;
  -webkit-box-shadow: 0 1px 0 0 #f00;
  box-shadow: 0 1px 0 0 #f00;
}

label.error {
  position: absolute;
  right: 0;
  font-size: 12px;
  color: #f00;
}

input:-internal-autofill-selected {
  background-color: transparent !important;
}

.form__label-textarea {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.form__textarea {
  display: block;
  width: 100%;
  height: 180px;
  padding: 10px;
  resize: vertical;
  -webkit-transition: -webkit-box-shadow .2s;
  transition: -webkit-box-shadow .2s;
  -o-transition: box-shadow .2s;
  transition: box-shadow .2s;
  transition: box-shadow .2s, -webkit-box-shadow .2s;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  color: #2e6ea5;
  border: 1px solid #2e6ea5;
  outline: 0;
}

.form__textarea:hover,
.form__textarea:focus {
  -webkit-box-shadow: 0 0 0 1px #2e6ea5;
  box-shadow: 0 0 0 1px #2e6ea5;
}

.radio {
  display: block;
  margin: 0 0 30px;
  cursor: pointer;
}

.radio__input {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
  border: 0;

  -webkit-clip-path: inset(100%);

  clip-path: inset(100%);
}

.radio__input:checked + .radio__text {
  color: #2e6ea5;
}

.radio__input:checked + .radio__text:before {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
  background: #5d9bfb;
}

.radio__input:checked + .radio__text:after {
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  -webkit-transform: scale(.4);
  -ms-transform: scale(.4);
  transform: scale(.4);
}

.radio__text {
  position: relative;
  display: block;
  height: 22px;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  color: #adafb6;
}

.radio__text:not(:empty) {
  padding-left: 30px;
}

.radio__text:before,
.radio__text:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.radio__text:before {
  -webkit-transition: background .2s ease, -webkit-transform .4s cubic-bezier(.175, .885, .32, 2);
  transition: background .2s ease, -webkit-transform .4s cubic-bezier(.175, .885, .32, 2);
  -o-transition: background .2s ease, transform .4s cubic-bezier(.175, .885, .32, 2);
  transition: background .2s ease, transform .4s cubic-bezier(.175, .885, .32, 2);
  transition: background .2s ease, transform .4s cubic-bezier(.175, .885, .32, 2), -webkit-transform .4s cubic-bezier(.175, .885, .32, 2);
  background: #d1d7e3;
}

.radio__text:after {
  -webkit-transition: -webkit-transform .6s cubic-bezier(.175, .885, .32, 1.4);
  transition: -webkit-transform .6s cubic-bezier(.175, .885, .32, 1.4);
  -o-transition: transform .6s cubic-bezier(.175, .885, .32, 1.4);
  transition: transform .6s cubic-bezier(.175, .885, .32, 1.4);
  transition: transform .6s cubic-bezier(.175, .885, .32, 1.4), -webkit-transform .6s cubic-bezier(.175, .885, .32, 1.4);
  -webkit-transform: scale(.78);
  -ms-transform: scale(.78);
  transform: scale(.78);
  background: #fff;
}

.radio:hover .radio__input + .radio__text:before {
  -webkit-transform: scale(.92);
  -ms-transform: scale(.92);
  transform: scale(.92);
}

.radio:hover .radio__input + .radio__text:after {
  -webkit-transform: scale(.74);
  -ms-transform: scale(.74);
  transform: scale(.74);
}

.radio:hover .radio__input:checked + .radio__text:after {
  -webkit-transform: scale(.4);
  -ms-transform: scale(.4);
  transform: scale(.4);
}

.button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color .2s, padding .2s;
  -o-transition: background-color .2s, padding .2s;
  transition: background-color .2s, padding .2s;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  border: 0;
  border-radius: 6px;
  outline: 0;
}

.button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  font-family: FontAwesome;
  color: #fff;
  background-color: rgba(255, 255, 255, .3);
}

.button.btn--icon-left {
  padding-left: 60px;
}

.button.btn--icon-left::before {
  left: 0;
  border-radius: 6px 0 0 6px;
}

.button.btn--icon-right {
  padding-right: 60px;
}

.button.btn--icon-right::before {
  right: 0;
  border-radius: 0 6px 6px 0;
}

.button.btn--icon-cart::before {
  content: "\f07a";
}

.button.btn--icon-refresh::before {
  content: "\f021";
}

.button.btn--icon-chevron-left::before {
  content: "\f053";
}

.button.btn--green {
  background-color: #00bf83;
}

.button.btn--green:hover {
  background-color: #00a06e;
}

.button.btn--yellow {
  background-color: #f28123;
}

.button.btn--yellow:hover {
  background-color: #e9710e;
}

.button.btn--blue {
  background-color: #2e6ea5;
}

.button.btn--blue:hover {
  background-color: #275e8d;
}

.button:hover {
  padding: 14px 40px;
  text-decoration: none;
  color: #fff;
}

.button:hover::before {
  opacity: 0;
  width: 0;
}

@media (min-width: 481px) {
  .header-search__btn {
    display: none;
  }

  .header__contacts-btn {
    display: none;
  }
}

@media (min-width: 640px) {
  .product-table th:last-child {
    padding-right: 20px;
  }
}

@media (min-width: 641px) {
  .product-table tr:hover td {
    background-color: rgba(0, 191, 131, .15);
  }
}

@media (min-width: 768px) {
  .menu__item:not(:first-child) {
    margin-left: 10px;
  }

  .no-touch .menu__item:hover .menu__link {
    color: #2e6ea5;
  }

  .no-touch .menu__item:hover .menu__btn {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 185.3 185.3' xml:space='preserve' height='12' width='12'%3E%3Cpath fill='%232e6ea5' d='M92.7,41c2.8,0,5.5,1,7.6,3.1l81.9,81.9c4.2,4.2,4.2,11,0,15.2c-4.2,4.2-11,4.2-15.2,0L92.7,66.9l-74.3,74.3 c-4.2,4.2-11,4.2-15.2,0c-4.2-4.2-4.2-11,0-15.2l81.9-81.9C87.2,42,89.9,41,92.7,41z'/%3E%3C/svg%3E%0A");
  }

  .no-touch .menu__item:hover .submenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .no-touch .menu__item > .menu__btn {
    pointer-events: none;
  }

  .no-touch .submenu__link:hover {
    color: #00bf83;
    background-color: #f5f5f5;
  }

  .no-touch .header-basket:hover .header-basket__link {
    text-decoration: none;
    color: #2e6ea5;
  }

  .no-touch .header-basket:hover .header-basket__dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .no-touch .submenu.submenu--show {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  .no-touch .menu__item.menu__item--open .menu__link {
    color: #2e6ea5;
  }

  .no-touch .menu__item.menu__item--open .menu__btn {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 185.344 185.344' xml:space='preserve' height='12' width='12'%3E%3Cpath fill='%23337ab7' d='M92.672,144.373c-2.752,0-5.493-1.044-7.593-3.138L3.145,59.301c-4.194-4.199-4.194-10.992,0-15.18c4.194-4.199,10.987-4.199,15.18,0l74.347,74.341l74.347-74.341c4.194-4.199,10.987-4.199,15.18,0c4.194,4.194,4.194,10.981,0,15.18l-81.939,81.934C98.166,143.329,95.419,144.373,92.672,144.373z'/%3E%3C/svg%3E%0A");
  }

  .no-touch .menu__item.menu__item--open:hover .menu__link {
    color: #00bf83;
  }

  .no-touch .menu__item.menu__item--open:hover .menu__btn {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 185.3 185.3' xml:space='preserve' height='12' width='12'%3E%3Cpath fill='%2300bf83' d='M92.7,41c2.8,0,5.5,1,7.6,3.1l81.9,81.9c4.2,4.2,4.2,11,0,15.2c-4.2,4.2-11,4.2-15.2,0L92.7,66.9l-74.3,74.3 c-4.2,4.2-11,4.2-15.2,0c-4.2-4.2-4.2-11,0-15.2l81.9-81.9C87.2,42,89.9,41,92.7,41z'/%3E%3C/svg%3E%0A");
  }

  .menu__item.active .menu__link,
  .menu__item.menu__item--open .menu__link {
    color: #2e6ea5;
  }

  .menu__item.menu__item--open .menu__btn {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 185.3 185.3' xml:space='preserve' height='12' width='12'%3E%3Cpath fill='%232e6ea5' d='M92.7,41c2.8,0,5.5,1,7.6,3.1l81.9,81.9c4.2,4.2,4.2,11,0,15.2c-4.2,4.2-11,4.2-15.2,0L92.7,66.9l-74.3,74.3 c-4.2,4.2-11,4.2-15.2,0c-4.2-4.2-4.2-11,0-15.2l81.9-81.9C87.2,42,89.9,41,92.7,41z'/%3E%3C/svg%3E%0A");
  }

  .submenu__item.submenu__item--active {
    color: #fff;
    background-color: #00bf83;
  }

  .submenu__item.submenu__item--active .submenu__btn::after {
    border-color: transparent transparent transparent #fff;
  }

  .submenu {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  .submenu.submenu--show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding-bottom: 0;
  }

  .product-table tr:nth-child(odd) td {
    background-color: rgba(239, 245, 248, .5);
  }

  .product-table th:first-child {
    padding-left: 20px;
  }

  .product-table td:first-child {
    padding-left: 20px;
  }

  .product-table td:last-child {
    padding-right: 20px;
  }

  .basket-product tr:not(:first-child) td {
    border-top: 1px solid #adafb6;
  }
}

@media (min-width: 992px) {
  .header-search__input {
    padding-left: 40px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%2300bf83' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath clip-rule='evenodd' d='M10 2a8 8 0 1 0 4.906 14.32l5.387 5.387a1 1 0 0 0 1.414-1.414l-5.387-5.387A8 8 0 0 0 10 2zm-6 8a6 6 0 1 1 12 0 6 6 0 0 1-12 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px;
  }

  .header__main {
    margin-bottom: 40px;
  }
}

@media (max-width: 1280px) {
  .product-table .slick-dots {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
  }
}

@media (max-width: 1199px) {
  .header-basket {
    margin-right: 20px;
  }

  .menu {
    margin-right: 20px;
  }
}

@media (max-width: 991px) {
  .header__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .header__contacts {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
  }

  .header-basket__link {
    width: 30px;
    height: 30px;
  }

  .header-basket__text {
    display: none;
  }

  .header-basket .glyphicon {
    margin-left: 0;
  }

  .menu__link {
    font-size: 12px;
  }

  .header__basket .header__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 262px;
    flex: 0 1 262px;
    max-width: 262px;
    margin-right: 40px;
  }

  .basket__group-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 47%;
    flex: 0 0 47%;
    max-width: 47%;
  }
}

@media (max-width: 767px) {
  .body--overlay {
    overflow: hidden;
  }

  .body--overlay::after {
    content: "";
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
  }

  .header__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .header__contacts-link {
    display: none;
  }

  .header-basket {
    margin-right: 0;
  }

  .lang {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .hamburger {
    display: block;
  }

  .menu {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .menu__wrap-for-mobile {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 480px;
    height: 100%;
    min-height: 100%;
    padding: 10px 0;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transform: translateX(-1000px);
    -ms-transform: translateX(-1000px);
    transform: translateX(-1000px);
    background-color: #eff5f8;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  }

  .menu__wrap-for-mobile .hamburger {
    margin: 0 5px 0 auto;
  }

  .menu__list {
    display: block;
    padding-top: 40px;
  }

  .menu__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .menu__item:not(:first-child) {
    border-top: 1px solid #ccc;
  }

  .menu__link {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 10px;
    background-color: transparent;
  }

  .menu__btn {
    margin-right: 5px;
  }

  .submenu {
    opacity: 1;
    visibility: visible;
    position: static;
    overflow-y: auto;
    width: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .submenu__list {
    padding-top: 0;
  }

  .submenu__link {
    -webkit-transition: border-color .2s;
    -o-transition: border-color .2s;
    transition: border-color .2s;
    border-left: 6px solid #2e6ea5;
  }

  .submenu__link:hover {
    border-color: #00bf83;
  }

  .submenu {
    display: none;
  }

  .submenu.submenu--show {
    display: block;
  }

  .menu__wrap-for-mobile {
    z-index: 1001;
  }

  .menu__wrap-for-mobile.menu__wrap-for-mobile--show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .menu__item.menu__item--open .menu__link {
    color: #00bf83;
  }

  .menu__item.menu__item--open .menu__btn {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 185.3 185.3' xml:space='preserve' height='12' width='12'%3E%3Cpath fill='%2300bf83' d='M92.7,41c2.8,0,5.5,1,7.6,3.1l81.9,81.9c4.2,4.2,4.2,11,0,15.2c-4.2,4.2-11,4.2-15.2,0L92.7,66.9l-74.3,74.3 c-4.2,4.2-11,4.2-15.2,0c-4.2-4.2-4.2-11,0-15.2l81.9-81.9C87.2,42,89.9,41,92.7,41z'/%3E%3C/svg%3E%0A");
  }

  .menu__item.menu__item--open .submenu__link {
    background-color: #fff;
  }

  .footer dl {
    margin-bottom: 12px;
  }

  .footer__menu {
    margin-bottom: 20px;
  }

  .product-table thead {
    display: none;
  }

  .basket__sections-group {
    display: block;
  }

  .basket__group-item {
    max-width: 400px;
    margin: auto;
  }

  .basket__buttons {
    display: block;
  }

  .basket__buttons .button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
  }

  .basket-product__table {
    max-width: 400px;
    margin: 0 auto 30px;
  }

  .basket-product th {
    display: none;
  }

  .basket-product tr:not(:first-child) {
    border-top: 3px solid #00bf83;
  }

  .basket-product td {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
  }

  .basket-product td:not(:first-child)::before {
    content: attr(data-th);
  }
}

@media (max-width: 640px) {
  .product-table {
    display: block;
  }

  .product-table tbody {
    display: block;
  }

  .product-table tbody tr {
    display: block;
    padding: 20px 0;
    background-color: rgba(239, 245, 248, .5);
  }

  .product-table td {
    display: block;
    padding: 10px 5px;
    font-size: 16px;
  }

  .product-table td:nth-child(even) {
    background-color: rgba(0, 191, 131, .1);
  }

  .product-table td:not(:last-child)::before {
    content: attr(data-th) ": ";
  }

  .product-table td:not(:first-child) {
    text-align: left;
  }

  .product-table td:last-child {
    margin-left: 120px;
  }
}

@media (max-width: 600px) {
  .header__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 190px;
    flex: 0 0 190px;
    width: 190px;
    margin-right: 50px;
  }

  .header__logo img {
    width: 200px;
    max-width: none;
  }

  .header__basket .header__logo {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .header__basket .header__logo img {
    width: 200px;
    max-width: 100%;
  }

  .header__basket .header__contacts {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .header-search {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0;
  }

  .header__contacts {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .header__contacts-phones {
    max-width: 190px;
  }

  .header__main {
    position: relative;
    padding: 10px;
    background-color: #e7eff3;
  }

  .header__main.fixed {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
  }

  .header-basket {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .menu {
    margin-right: 0;
  }

  .header__basket .header__logo {
    margin-right: 20px;
  }

  .header__basket .header__contacts-phone {
    font-size: 14px;
  }

  .js-dropdown-mobile__btn {
    position: relative;
  }

  .js-dropdown-mobile__btn::before {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-top: 20px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #eff5f8 transparent transparent;
  }

  .js-dropdown-mobile__btn.js-dropdown-mobile__btn--open {
    color: #2e6ea5;
  }

  .js-dropdown-mobile__btn.js-dropdown-mobile__btn--open::before {
    content: "";
  }

  .js-dropdown-mobile__hidden-block {
    position: absolute;
    z-index: 20;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    margin-top: 12px;
    padding: 10px;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  }

  .js-dropdown-mobile__hidden-block.js-dropdown-mobile__hidden-block--show {
    display: block;
    background-color: #fff;
  }
}

@media (max-width: 600px) and (min-width: 421px) {
  .header__top {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media (max-width: 991px) and (min-width: 768px), (max-width: 600px) {
  .product-info__order {
    display: block;
  }

  .product-info__form {
    margin: 30px 0 12px;
    padding-right: 0;
  }

  .product-info__label .price {
    position: static;
  }
}