@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(../fonts/Roboto.woff) format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(../fonts/RobotoBold.woff) format('woff');
}
body {
  min-width: 960px;
}
body * {
  font-size: 15px;
  line-height: 30px;
  font-family: 'Roboto';
  font-weight: 400;
}
body,
html {
  height: 100%;
}
#main {
  display: table;
  height: 100%;
}
header,
#container,
footer {
  display: table-row;
}
header,
footer {
  height: 1px;
}
.row_12 {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
}
h1 {
  font-size: 2em;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #0091ea;
  padding-bottom: 15px;
}
h2 {
  font-size: 1.67em;
  margin-top: 30px;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.47em;
  margin-top: 30px;
  margin-bottom: 20px;
}
h4 {
  font-size: 1.13em;
  margin-top: 30px;
  margin-bottom: 20px;
}
p {
  line-height: 25px;
  margin: 20px 0;
}
.description table {
	border: 1px solid #000;
	border-collapse: collapse;
	width: 100%;
}
.description td {
	border: 1px solid #000;
	vertical-align: middle;
	text-align: center;
}
/* Шапка */
header * {
  color: #4b5a61;
}
.top-header {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3f7f9;
  border-bottom: 1px solid #c3c7c9;
  -webkit-box-shadow: inset 0px -2px 3px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0px -2px 3px 0px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0px -2px 3px 0px rgba(0, 0, 0, 0.15);
}
.top-header #description {
  height: 60px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding-left: 30px;
}
.top-header #tel {
  margin-top: 20px;
  padding-left: 40px;
  position: relative;
}
.top-header #tel .icon-tel {
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/sprite.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
}
.top-header #tel > div {
  margin-bottom: 5px;
}
.top-header #tel > div a {
  color: #263238;
  font-size: 1.33em;
}

#links {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;

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

  margin: 19px -10px 0;
}
#links a {
  display: block;
  height: 30px;
  margin: 0 10px;
  font-size: 0.93em;
}
#links i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;

  position: relative;
  top: 4px;
}
#links i.icon-pdf {
  background-image: url('../images/pdf.svg');
}
#links i.icon-instagram {
  background-image: url('../images/instagram.svg');
}

#search {
    position: relative;
    margin-top: 19px;
}
#search input {
    border:  1px solid #c3c7c9;
    border-right: 0;
    padding-left: 10px;
    font-size: 0.93em;
    color: #93a0a6;
    height: 30px;
    width: 180px;
}
#search .button-search {
    position: absolute;
    right: 1px;
    top: 0;
    width: 38px;
    height: 30px;
    background-color: #0091ea;
    border: 1px solid #0b7bbf;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}
#search .button-search:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 15px;
    margin-left: -7px;
    margin-top: -7px;
    background-image: url(../images/sprite.png);
    background-position: -23px 0;
    background-repeat: no-repeat;
}
#menu {
  border-bottom: 1px solid #c3c7c9;
}
#menu .menu > li {
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
}
#menu .menu > li:first-child {
  margin-left: 0;
}
#menu .menu > li:last-child {
  margin-right: 0;
}
#menu .menu > li.sub-menu > a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 6px;
  margin-top: -1px;
  background-image: url(../images/sprite.png);
  background-position: -38px 0;
  background-repeat: no-repeat;
}
#menu .menu > li > a {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 19px;
  padding-bottom: 12px;
  display: block;
  border-bottom: 3px solid transparent;
  font-size: 0.93em;
}
#menu .menu > li.sub-menu > a {
  padding-right: 15px;
}
#menu .menu > li:hover > a,
#menu .menu > li.active > a {
  color: #0068a7;
  border-bottom-color: #0091ea;
}
#menu li.sub-menu > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f3f7f9;
  z-index: 9;
  border: 1px solid #93989a;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
}
#menu .menu > li.sub-menu:hover > ul {
  display: block;
}
#menu li.sub-menu > ul li {
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: left;
}
#menu li.sub-menu > ul a {
  display: block;
  padding-left: 10px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 7px;
  white-space: nowrap;
}
#menu li.sub-menu > ul a:hover,
#menu li.sub-menu > ul li.active a {
  background-color: #cdd2d4;
}
.box {
  border: 1px solid #b7bdc0;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.box .box-heading {
  border-bottom: 1px solid #0091ea;
  padding-bottom: 10px;
  font-size: 1.27em;
}
.box .box-content {
  margin-top: 20px;
}
.box .box-content ul {
  list-style: none;
  padding-left: 0;
}
.box .box-content ul li {
  margin-top: 10px;
  margin-bottom: 10px;
}
.box .box-content ul a {
  color: #263238;
  font-size: 0.93em;
}
.box .box-content ul a:hover,
.box .box-content ul li.active a {
  color: #0068a7;
}

/* Контент */
.important-text {
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: #ced7dc;
  margin-bottom: 40px;
}
.important-text ul {
    padding-left: 30px;
    list-style: disc;
}
.content {
  padding-top: 40px;
  padding-bottom: 30px;
}
.content strong {
    font-weight: 600;
}
#slideshow {
    margin-top: 48px;
}
    
    
/* Каталог */
.category-info h1 {
  margin-top: 16px;
}
.product-grid > div {
  float: left;
  width: 220px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.product-grid > div:first-child {
  margin-left: 0;
}
.product-grid > div:last-child {
  margin-right: 0;
}
.product-grid a {
  color: #4b5a61;
}
.product-grid a .product-box {
  border: 1px solid #b7bdc0;
  background-color: #f3f7f9;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.product-grid a .product-box .image {
  overflow: hidden;
  border: 1px solid #b7bdc0;
  background-color: #fff;
  width: 198px;
  height: 198px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.product-grid a .product-box .name {
  height: 50px;
  display: table-cell;
  vertical-align: middle;
}
.product-grid__name {
	width: 150px;
	display: inline-block;
	line-height: 100%;
}
.product-grid__price {
	font-size: 18px;
}
.product-grid a:hover > .product-box {
  border-color: #93989a;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
}
.category .product-grid > div:nth-child(3n) {
  margin-right: 0;
}
.category .product-grid > div:nth-child(3n+1) {
  margin-left: 0;
  margin-right: 10px;
}
.product-info h1 {
  margin-top: 16px;
}
.product-info > div {
  padding: 10px;
  border: 1px solid #b7bdc0;
  background-color: #f3f7f9;
}
.product-info > div .image > a {
    display: block;
  border: 1px solid #b7bdc0;
  width: 368px;
  height: 368px;
  overflow: hidden;
}
.product-info > div .image-additional {
	min-height: 60px;
}
.product-info > div .image-additional > a {
  display: inline-block;
  border: 1px solid #b7bdc0;
  width: 74px;
  height: 74px;
  overflow: hidden;
  margin-top: 10px;
}
.product-info > div .fright {
    min-height: 370px;
    position: relative;
}
.product-info > div .fright > div {
  width: 290px;
}
.product-info > div .attribute > div .attribute-title {
  font-size: 1.2em;
  margin-bottom: 10px;
}
.product-info > div .attribute > div ul {
  list-style: none;
  padding-left: 0;
}
.product-info > div .attribute > div ul li {
  color: #4b5a61;
  font-size: 1em;
  margin-top: 10px;
  margin-bottom: 10px;
}
.product-info > div .prices {
    position: absolute;
    bottom: -65px;
    left: 0;
}
.product-info > div .prices p {
	text-align: right;
	font-size: 20px;
}
#colorbox {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
/* Подвал */
footer {
  background-color: #607d8b;
}
footer * {
  color: #ffffff;
}
footer .footer {
  padding-top: 40px;
  padding-bottom: 40px;
}
footer .footer .name-site {
  margin-top: 4px;
}
footer .footer .copyright {
  font-size: 0.87em;
  margin-top: 10px;
}
footer .footer .logo-footer {
  text-align: center;
}
footer .footer .createART6 {
  display: table-cell;
  height: 60px;
  vertical-align: bottom;
}
footer .footer .createART6 a {
  font-size: 0.8em;
  position: relative;
  top: -2px;
}
footer .footer .createART6 a img {
  position: relative;
  top: 2px;
}
/* Форма */
.form-container {
  width: 100%;
  background: #f2f7fa;
  padding: 30px 70px;
  border: 1px solid #b6bec1;
  box-sizing: border-box;
}
.form-h {
  text-align: center;
  margin-top: 0px;
}
.form-input {
  border: 1px solid #b6bec1;
  width: 100%;
  box-sizing: border-box;
  height: 36px;
  padding: 10px;
  margin-bottom: 15px;
}
.form-input-textarea {
  resize: none;
  height: 100px;
  margin-bottom: 30px;
}
.form-input-container-left {
  width: 260px;
  float: left;
}
.form-input-container-right {
  width: 260px;
  float: right;
}
.form-btn-container {
  float: left;
  width: 100%;
  text-align: center;
}
.form-btn {
  display: inline-block;
  padding: 8px 65px;
  color: #fff;
  background: #0192ed;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.form-textarea-container {
  float: left;
  width: 100%;
}
.form-input-label {
  float: left;
}