/* Global Styles */

@font-face {
	font-family: 'DINPro-Regular';
	src: url('../fonts/DINPro-Regular.otf');
}
@font-face {
	font-family: 'DINPro-Medium';
	src: url('../fonts/DINPro-Medium.otf');
}
@font-face {
	font-family: 'DINPro-Bold';
	src: url('../fonts/DINPro-Bold.otf');
}

html,
body {
	height: 100%;
	width: 100%;
	font-family: 'DINPro-Regular', -apple-system,BlinkMacSystemFont,
	"Segoe UI",Roboto,"Helvetica Neue"
	,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",
	"Segoe UI Symbol","Noto Color Emoji";
	background-color: #f6f6f6;
}
/*********************************************************/

/*********************************************************/
a{color:#000; outline: none;}
a:hover, a:focus{color:#000; text-decoration:none;}
button, button:active, button:focus {outline: none;}

/* img */
img{width: 100%; height: auto;}

/* ul */
ul{list-style: none; margin: 0; padding: 0}

h1, .h1 {
	font-size: 36px;
}

h2, .h2 {
	font-family: 'DINPro-Bold';
	font-size: 36px;
	color: #000;
}

p{font-size: 14px;}

address {
	margin-bottom: 0;
	line-height: 1;
}

.content{
	width: 100%;
	float: left;
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;	
}

/*****************************************/
/* Header */
/*****************************************/
.header .logo {
	background: unset;
	height: unset;
	margin-right: unset;
	float: unset;
}
.header {
	background: #fff;
	padding: 0;
}
.header__row {
	display:flex;
	align-items:center;
	padding:5px 0px;
	min-height:103px;
}
.header__logo {
	display:flex;
	align-items:center;
}
.header__logo-img {
	padding:10px 0;
	position:relative;
}
.header__logo-img a {
	display: block;;
}
.header__desc {
	min-width:350px;
}
.header__desc h1, .header__desc h2, .header__desc p {
	font-size:18px;
	margin:0 0 4px;
	font-family:'DINPro-Bold';
	max-width: 320px;
}
.header__contact {
	text-align:center;
}
.header__contact address {
	margin:0;
	display:inline-block;
}
.header.contact__address-phone {
	font-size:18px;
	text-align:right;
	margin:0 0 5px;
	font-family:'DINPro-Bold';
}
.header.contact__address-email {
	font-size:18px;
	text-align:right;
	margin:0;
	color:rgb(117, 117, 117);
}
.header.contact__address-email:hover {
	cursor: pointer;
	color: #000;
}
.header__button {
	text-align:right;
	float:right;
	margin-left: auto;
}
.button-link {
	font-size:17px;
	font-family:'DINPro-Medium';
	padding:6px 14px 7px;
	border:2px solid #757575;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;		
}
.button-link:hover {
	background: #ffd54f;
	border-color: #ffd54f;
}
.button-link:active {
	box-shadow: unset;
	background: #ffc929;
	border-color: #ffc929;	
}
.header__navbar {
	background:#ffca28;
}
.container.navbar__container {
	position: relative;
}
.navbar__row {
	height:64px;
	display:flex;
	align-items:center;
}
.navbar-toggle {
	display: block;
	float: left;
	margin: 0;
	padding: 9px 10px 9px 0px;
	padding-right: 0;
}
button.navbar-toggle:before {
	content: "";
	background-image: url(../fonts/menu.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
	position: absolute;
	left: -15px;
	top: 5px;
}
.icon-bar {
   background: transparent;
}
.navbar__left {
	padding: 15px;
	cursor: pointer;
}
.navbar__left > .navbar__brand {
	font-family: 'DINPro-Bold';
	font-size: 18px;
	line-height: 32px;
}
.collapse.navbar-collapse {
	position: absolute;
	top: 100%;
	z-index: 100;
	padding: 0;
	background: #fff;
	max-height: unset;
	transition: .3s linear; 
	visibility: hidden;
	opacity: 0; 
	transform-origin: 0% 0%;
	transform: rotateX(-90deg);
	width: 100%;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, .1);	
}
.collapse.in {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.navbar__mobile.logo {
	width: calc(25% - 64px);
	padding: 0 15px;
}
.navbar__mobile.desc h1, .navbar__mobile.desc p {
	font-size: 18px;
	margin: 0;
	font-family: 'DINPro-Bold';
}
.navbar__mobile.right-block {
	display: flex;
	padding: 0 15px;
	width: 20%;
	justify-content: space-around;
}
.navbar__mobile-phone, .navbar__mobile-search {
	width: 20px;
	height: auto;
	margin-left: auto;
}
.navbar__search-form {
	position: relative;
	max-width:490px;
}
.input-group {
	width: 100%;
}
.navbar__search-form.mobile {
	margin: auto;
}
.form-control.search {
	border-radius: 4px!important;
	padding: 6px 18px;
	border: 1px solid #ccc;
}
.input-group-btn.search {
	position: absolute;
	top: 4px;
	right: 30px;
	z-index: 5;
}
.btn-search {
	background: #767576;
	border-radius: 4px;
	padding: 4px 8px;
}
.btn-search:hover {
	background:#000;
}
.fa-search {
	color:#fff;
	font-size:16px!important;
}
.navbar-right__list {
	display:flex;
	flex-direction:row;
	flex-wrap:nowrap;
	justify-content:space-between;
	font-size:15px;
}
.navbar-right__list .menu-item__link:hover {
	color: #757575;
}
.navbar__search-mobile {
	position: absolute;
	top: 100%;
	z-index: 99;
	padding: 15px;
	background: #fff;
	transition: .3s linear;
	visibility: hidden;
	opacity: 0;
	transform-origin: 0% 0%;
	transform: rotateX(-90deg);
	width: 100%;
	left: 0;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.input-group.mobile {
	width: 100%;
}
input.form-control.search.mobile {
	border: 1px solid #747474;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
button.btn.btn-search.mobile {
	position: absolute;
	top: 4px;
	background: transparent;
}
button.btn.btn-search.mobile .fa-search {
	color: #757575;
}
.navbar__search-mobile.in {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
}

@media screen and (max-width: 767px) {
	button.navbar-toggle:before {
		left: 0;
	}
	.navbar__full-catalog {
		width: 100%;
		display: flex;
		align-items: center;
		box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.1);
		position: relative;
		z-index: 10;
	}
	.navbar__search {
		display: block;
		position: absolute;
		top: 100%;
		width: 100%!important;
		padding: 20px 15px 15px;
		background: #fff;
		box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
		transition: .3s linear;
		visibility: hidden;
		opacity: 0;
		transform-origin: 0% 0%;
		transform: rotateX(-90deg);
	}
/* 	.input-group {
		width: 100%;
	} */
	.input-group .form-control.search {
		border-bottom-right-radius: 4px;
		border-top-right-radius: 4px;
		border: 1px solid #747474;
	}
	.input-group-btn.search {
		position: absolute;
		right: 32px;
		top: 4px;
		left: unset;
	}
	.btn-search {
		background: #ffffff;
	}
	.btn-search:hover {
		background: #ffffff;
	}
	.fa-search {
		color: #000;
	}
	.navbar__search.is-mobile {
		visibility: visible;
		opacity: 1;
		transform: translateY(0px);
		display: block;
	}
}
/*****************************************/
/* Результаты поиска */
/*****************************************/
#search__box-result {
	position: absolute;
	top: 100%;
	width: 100%;
	background: #fff;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	box-shadow: 0px 4px 6px -2px rgb(0, 0, 0, 0.4);
	z-index: 999;
}
.search_result {
	padding: 6px 12px;
	max-height: 235px;
	overflow: auto;
}
.search_result li {
	border-bottom: 1px solid #ddd;
}
.search_result li:last-child {
	border-bottom: none;
}
.search_result li a {
	display: block;
	padding: 10px 0 15px;
	color: #626262;
}
.search_result li a:hover {
	text-decoration: underline;
}
.search__table_result {
	width: 100%;
	vertical-align: top;
	max-width: 100%;
	overflow-x: auto;
	white-space: nowrap;	
}
.search__table_result th {
	font-family: 'DINPro-Medium';
}
.search__table_result th, .search__table_result td {
	font-weight: normal;
	color: #626262;
	padding: 12px 5px;
}
.search__table_result a {
	color: #626262;
}
.search__table_result a:hover {
	text-decoration: underline;
}
.search__table_result tbody tr {
	border-top: 1px solid #ddd;
}
/*****************************************/
/* Основное меню */
/*****************************************/
.primary-menu__list .menu-item__link {
	padding: 12px 20px 12px 25px;
	border-bottom: 1px solid #ccc;
	display: flex;
	align-items: center;
	font-size: 18px;
}
.navbar-collapse .primary-menu__list .menu-item__link:hover {
	background: #f5f5f5;	
}
.navbar-collapse .primary-menu__list .in-active .menu-item__link {
	background: #f5f5f5;
	cursor: default;	
}
.sidebar-nav .primary-menu__list .menu-item__link:hover {
	background: #ffca28;	
}
.sidebar-nav .primary-menu__list .in-active .menu-item__link {
	background: #ffca28;
	cursor: default;	
}
.menu-image.menu-image-title-after {
   width: 45px;
   height: auto;
}
.menu-image-title-after.menu-image-title {
	font-family: 'DINPro-Regular';
	font-size: 18px;
	padding-left: 8px;
}

/*****************************************/
/* Хлебные крошки */
/*****************************************/
.breadcrumbs {
	margin: 36px 0 52px;
	font-size: 16px;
}
.breadcrumbs ul li {
	display: inline-block;
}
.breadcrumbs__link span {
	color: #626262;
}
.breadcrumbs li+li:before {
	content: '-';
	display: inline-block;
	padding: 0 5px;
}
.breadcrumbs__current {
	color: #212121;	
}

ul.breadcrumbs li {
	display: inline-block;
}
/*****************************************/
/* Постраничная навигация(wp_pagenavi) */
/*****************************************/
.prev-next-posts {
	text-align: center;
	width: 100%;
	float: left;	
}
.wp-pagenavi {
	clear: both;
	font-size: 16px;
}

.wp-pagenavi a, .wp-pagenavi span {
	padding: 5px 11px;
	margin: 2px;
	border: unset;
	background: #fff;
	color: #757575;
	border-radius: 4px;
	display: inline-block;
}

.wp-pagenavi a:hover {
	background: #bdbdbd;
	color: #fff;
}

.wp-pagenavi span.current {
	font-family: 'DINPro-Bold';
	padding: 5px 11px;
	background: #ffca28;
	color: #fff;
	border-radius: 4px;
}

a.prev, a.next {
	background: none;
}


@media screen and (max-width: 749px) {
	.wp-pagenavi .pages, .last, .first {
		display: none;
	}
}
@media screen and (max-width: 640px) {
	.wp-pagenavi {
		font-size: 14px;
	}
}
@media screen and (max-width: 360px) {
	.wp-pagenavi span.current, .wp-pagenavi a, .wp-pagenavi span {
		padding: 3px 8px;
	}
}

/*****************************************/
/* Sidebar  */
/*****************************************/
.aside {
	padding: 0 15px;
	float: left;
}
.sidebar {
	width: 360px;
	background: #fff;
	box-shadow: 0px 0px 29px rgba(0, 0, 0, .1);
}

/*****************************************/
/* Страница категории  */
/*****************************************/
#content-category {
	padding-bottom: 70px;
}
.category__content-product {
	padding: 0 15px;
	width: calc(100% - 390px);
	max-width: 680px;
	float: right;
}
.category__content-product h1 {
	font-family: 'DINPro-Bold';
	margin-top: 0;
	/* text-align: center; */
}
.category__content-link {
	padding-top: 35px;
}
.category.content-link__list li {
	padding: 5px 0;
	display: inline-block;
}
.category.content-link__list li a, .category.content-link__list li > span {
	background: #fff;
	padding: 5px 10px;
	margin-right: 10px;
	font-size: 16px;
	font-family: 'DINPro-Regular';
	color: #757575;
	border-radius: 4px;
	display: block;
}
.category.content-link__list li a:hover {
	color: #fff;
	background: #bdbdbd;
}
.category.content-link__list li > span {
	color: #fff;
	background: #ffca28;
}
.category__content.product__list.before-after {
	padding: 30px 0 15px;
}
.category__content.product__list.before-after p {
	font-size: 18px;
	color: #333;
}
.category__content.product__list.before-after .tags-categories a {
	background: #fff;
	padding: 5px 10px;
	margin: 5px 10px 5px 0px;
	font-size: 16px;
	font-family: 'DINPro-Regular';
	color: #757575;
	border-radius: 4px;
	display: inline-block;
}
.category__content.product__list.before-after .tags-categories a:hover {
	color: #fff;
	background: #bdbdbd;
}
.category__content.product__list.before-after .tags-categories a.is-active {
	color: #fff;
	background: #ffca28;
}
.category__content.product__list {
	width: 100%;
	float: left;
	padding-top: 15px;
	display: flex;
	flex-wrap: wrap;
}
.category.product__item {
	padding: 10px 0;
	width: 100%;
}
.category.product__item-in {
	padding: 15px;
	background: #fff;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .15);
	overflow: auto;
	position: relative;
	height: auto;
}
.category.product__item:hover .product__item-in {
	box-shadow: unset;
}
.category.product__name {
	width: 100%;
	float: left;
}
.category.product__image {
	width: 40%;
	float: left;
	margin-top: 10px;	
}
.category.product__name a {
	font-size: 18px;
	font-family: 'DINPro-Bold';
	display: block;
	margin: 0 0 10px;
}
.category.product__name a:hover {
	text-decoration: underline;
}

.category.product__price-month {
	/* float: left; */
	float: none;
	/* padding-left: 35px; */
	display: inline-block;	
}
.category.product__price-day {

	float: left;
	margin: 0 40px;
}
.category.product__price p {
	font-size: 18px;
	font-family: 'DINPro-Bold';
	/*margin: 10px 0;*/
	color: #000;
}
.category.product__price span {
	display: block; 
	font-size: 14px;
	font-family: 'DINPro-Regular';
	color: #757575;
	/*margin-right: 10px;*/
}
.category.product__desc {
/*	padding-top: 10px; */
	float: left;
	width: 100%;

}
.category.product__technical p {
	color: #757575;
	margin: 0;
}
.category.product__technical span {
	font-family: 'DINPro-Medium';
	color: #333;

}
@media screen and (max-width: 670px) {
.category.product__technical span {
	font-family: 'DINPro-Medium';
	color: #333;
	float: right;
}
}
.category.product__action {

	display: flex;
	flex-direction: column;
	margin: 5px 15px 0 0;
	width: 37%;
	float: left;

}
.category.btn-yellow {
		padding: 8px 16px;
	float: left;
	margin: 0 15px 10px 0;
		width: 100%;
}
.description__post .tags-categories a {
	background: #bdbdbd;
	padding: 5px 10px;
	margin: 5px 10px 5px 0px;
	font-size: 16px;
	font-family: 'DINPro-Regular';
	color: #4d4d4d;
	border-radius: 4px;
	display: inline-block;
	line-height: normal;
}
.description__post .tags-categories a:hover {
	color: #fff;
	background: #757575;
}
.description__post .tags-categories a.is-active {
	color: #fff;
	background: #ffca28;
}

@media screen and (max-width: 749px) {
	#content-category {
		padding-bottom: 40px;
	}
}
@media screen and (max-width: 670px) {
	.category.product__name {
		width: 100%;
		text-align: center;
	}
}
@media screen and (min-width: 671px) {
	.category.product__name a {
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}	
	.category .product__image {
		min-height: 100px;
		position: relative;
	}
	.category.product__image img {
		position: absolute;
		margin: auto;
		left: 0;
		top: 0;
		bottom: 0;
		right: 0;
		padding-right: 20px;
	}
.category.product__desc {
	margin-top: 5px;
	width: 100%;
	padding: 15px 0;
		min-height: 170px;
	}
}
@media screen and (max-width: 360px) {
	.category.product__name p, .category.product__price span, .category.product__technical p, .category.btn-yellow {
		font-size: 14px;
	}

}

/*****************************************/
/* Меню категории  */
/*****************************************/
.menu-item__link.link-category {
	font-size: 18px;
}

/*****************************************/
/* Страница карточки оборудования  */
/*****************************************/
.page__breadcrumbs {
	background: #fff;	
}
.main {
	background: #fff;
	padding-bottom: 60px;
}
.row-flex {
	display: flex;
	flex-wrap: wrap;
}
.single__product {
	padding-bottom: 50px;
}
.single.product__item-slide {
	min-height: 150px;
}
.item__image-thumbnails {
	width: 70%!important;
	margin: 0 auto;
}
.item__image-thumb {
	padding: 7px;
}
.item__image-thumb:hover {
	cursor: pointer;
}
.item__image-thumb img {
	padding: 10px;
	border: 1px solid #ccc;
}
.current .item__image-thumb img {
	border: 2px solid #ffca28;
}

#sync1.owl-theme {
	position: relative;
}
.owl-theme .owl-nav [class*=owl-] {
	color: #FFF;
	font-size: 14px;
	margin: 5px;
	padding: 8px 7px;
	background: rgb(214 214 214 / 50%);
	display: inline-block;
	cursor: pointer;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 50%;
}
.owl-theme .owl-nav [class*=owl-]:hover {
	background: rgb(214 214 214 / 75%);
	color: #FFF;
	text-decoration: none;
}
.owl-next, .owl-prev {
	width: 45px;
	height: 45px;
	margin-top: -20px;
	position: absolute;
	top: 50%;
}
.owl-prev {
	left: 10px;
}
.owl-next {
	right: 10px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #ffca28;
}
.owl-theme .owl-dots,
.owl-theme .owl-nav {
	display: none;
}

.single.product__name {
	font-family: 'DINPro-Bold';
	margin-top: 0;
	margin: 15px;
}
.single.product__item-caption {
	float: right;
	margin-top: 30px;
}
.single.product__article {
	margin: 15px;
}
.single.product__article p {
	font-size: 18px!important;
	font-family: 'DINPro-Regular'!important;;
	color: #757575;
}
.single.product__article span {
	display: inline-block!important;
}
.single.product__price-month {
	/* float: left; */
	float: none;
	padding-left: 60px;
	display: inline-block;
}
.single.product__price p {
	font-size: 30px;
	font-family: 'DINPro-Bold';
	margin: 0;
}
.single.product__price span {
	display: block;
	font-size: 18px;
	color: #757575;
	font-family: 'DINPro-Regular';
}
.single.product__price-day {
	/* float: none;
	padding-left: 60px;
	display: inline-block; */
	float: left;
}
.single.product__price p {
	font-size: 30px;
	font-family: 'DINPro-Bold';
	margin: 0;
}
.single.product__action {
	padding-top: 30px;
	padding-bottom: 20px;
}
.single.btn-yellow {
	max-width: 165px;
	width: 100%;
}
.single.product__desc {
	padding-top: 40px;
}
.single.product__technical p {
	color: #757575;
	margin: 0;
	font-size: 18px;
}
.single.product__technical span {
	font-family: 'DINPro-Bold';
}
.single__product-description {
	float: none;
	padding: 0 70px 0 15px;
}
.single__product-desc.text {
	padding-bottom: 20px;
	padding-top: 70px;
}
.headline h2 {
	font-size: 24px;
	margin-bottom: 40px;
}
.single__product-description p {
	margin: 0;
	font-size: 18px;
	line-height: 30px;
}
.single__product-technical p {
	margin: 0;
	color: #757575;
	font-size: 18px;
	line-height: 24px;
}
.single__product-technical span {
	color: #000;
}
.single-product__info {
	padding-top: 20px;
}
.single__product-delivery h3 {
	font-size: 18px;
	font-family: 'DINPro-Bold';
}
.single__product-delivery p {
	font-size: 18px;
	margin: 0;
	line-height: 30px;
}
.single__product-delivery p.stock {
	color: #4caf50;
}
.product-delivery__cost h3 {
	font-size: 18px;
	font-family: 'DINPro-Bold';
}
.product-delivery__cost p{
	font-size: 18px;
	margin: 0;
	line-height: 30px;
	color: #757575;
}
.product-delivery__cost span {
	color: #000;
	font-family: 'DINPro-Bold';
}
.single.product-map__img-big {
	display: none;
}

@media screen and (max-width: 991px) {
	.main {
		padding-top: 20px;
	}
	.single__product {
		padding: 0 50px;
	}	
	.single.product__name {
		float: inherit;
		text-align: center;
	}
	.single.product__name h1 {
		font-size: 30px;
	}
	.owl-theme .owl-dots, .owl-theme .owl-nav {
		display: block;
	}
	.single.product__desc {
		display: none;
	}
	.item__image-thumbnails {
		display: none!important;
	}
	.single.product__item-caption {
		width: 100%;
		margin-bottom: 10px;
	}
	.single.product__price {
		float: left;
	}
	.single.product__action {
		padding-top: 15px;
		float: right;
		width: 165px;
	}
	.single__product-delivery {
		padding-bottom: 20px;
	}
	
	.single__product-description {
		position: relative;
	}
	.single__product-desc.headline {
		display: inline-block;
	}
	.headline h2 {
		margin-bottom: 10px;
	}
	.headline.color.is-active {
		border-bottom: 2px solid rgba(255, 202, 40, 1);;
	}	
	.headline.color {
		border-bottom: 2px solid rgba(255, 202, 40, 0);
	}
	.single__product-desc.text {
		padding-bottom: 0;
		padding-top: 70px;
	}
	.single__product-desc {
		top: 0;
	}
	.single__product-technical.headline {
		position: absolute;
		top: 0;
		left: 150px;
	}
	.single__product-technical.specifications {
		padding-top: 70px;
	}
	.hidden-mobile {
		display: none;		
	}
	
	@media screen and (min-width: 900px) {
  .desktop_hiden {
	display: none!important;
  }
}

}
@media screen and (max-width: 991px) {
	.single.product__article {
		display: none;
	}
}
@media screen and (min-width: 750px) and (max-width: 991px) {
	.single.product-map__img {
		display: none;
	}
	.single.product-map__img-big {
		display: block;
	}	
}
@media screen and (max-width: 749px) {
	.main {
		padding-bottom: 20px;
	}
	.single__favorite {
		display: none;
	}
	.single__product {
		padding: 0;
	}
	.single.product__action {
		width: 100%;
	}
	.single.btn-yellow {
		max-width: 100%;
	}
	.headline h2 {
		margin-bottom: 15px;
	}
	.single.product__item-caption {
		display: flex;
		flex-wrap: wrap;
	}
	.single.product__price {
		margin: 0 auto;
	}
	.single__product-delivery {
		padding-bottom: 20px;
	}	
}
@media screen and (max-width: 375px) {
	.single.product__name h1 {
		font-size: 22px;
	}
	.single.product__price p {
	font-size: 22px;
	}
	.single.product__price span {
		font-size: 16px;
	}
	.single.product__price-day {
		/* padding-left: 50px; */
	}
	.single.product__price-month {
		padding-left: 50px;
	}
	.single__product-description p, .single__product-technical p {
		font-size: 16px;
		line-height: 22px;
	}
	.single__product-delivery p {
		font-size: 16px;
		line-height: 24px;
	}
	.product-delivery__cost p {
		font-size: 14px;
		line-height: 24px;
	}
}
@media screen and (max-width: 360px) {
	.headline h2 {
		font-size: 16px;
	}
	.single__product-delivery h3 {
		font-size: 16px;
	}
}

/*****************************************/
/* Страница условия аренды */
/*****************************************/
.post__description p {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(0, 0, 0, 0.7);
}
.post__description h1 {
	font-family: 'DINPro-Bold';
	margin: 0 0 40px;
}
.post__description h2 {
	font-family: 'DINPro-Bold';
	font-size: 24px;
	margin: 40px 0;
}
.page.contract__link {
	padding: 50px 0;
}
@media screen and (max-width: 767px) {
	.post__description h1 {
		font-size: 30px;
		margin: 15px 0 25px;
	}
	.post__description h2 {
		font-size: 22px;
		margin: 25px 0;
	}
	.page.contract__link {
		padding: 30px 0;
	}
	.page.contract__link a {
		width: 100%;
	}	
}
@media screen and (max-width: 360px) {
	.post__description h1 {
		font-size: 22px;
	}
	.post__description h2 {
		font-size: 18px;
	}
	.post__description p {
		font-size: 16px;
		line-height: 1.5;
	}
}

/*****************************************/
/* Страница контакты */
/*****************************************/
.page__contact {
	padding-top: 15px;
}
.page__heading-title h1{
	font-family: 'DINPro-Bold';
	margin: 0;
	/* text-align: center; */
}
.page__contact-info h3, .page__contact-requisites h3 {
	font-size: 18px;
	font-family: 'DINPro-Bold';
	margin: 25px 0 15px;
}
.page__contact-info p, .page__contact-requisites p {
	font-size: 18px;
	margin: 0;
	line-height: 30px;
}
.company__email {
	color: rgb(117, 117, 117);
}
.page.contact__link {
	padding-top: 30px;
}
.page__contact-requisites h3 {
	font-size: 18px;
	font-family: 'DINPro-Bold';
	margin: 30px 0 20px;
}

@media screen and (max-width: 991px) {
	.page.contact__link {
		padding-bottom: 30px;
	}
}
@media screen and (max-width: 767px) {
	.page__heading-title h1 {
		text-align: center;
		font-size: 30px;
	}
}
@media screen and (max-width: 670px) {
	.page__heading-title h1 {
		font-size: 22px;
	}
	.page.contact__link .btn-yellow {
		width: 100%;
	}
}
@media screen and (max-width: 360px) {
	.page__contact-info h3, .page__contact-requisites h3 {
		font-size: 16px;
		margin: 20px 0 10px;
	}
	.page__contact-info p, .page__contact-requisites p {
		font-size: 16px;
		line-height: 24px;
	}	
}

/*****************************************/
/* Страница поиска  */
/*****************************************/
.row.page__search {
	padding-top: 20px;
}
.page__search-result p{
	margin: 0;
	font-size: 18px;
	color: #757575;
}
.page__search-result span{
	color: #000;
}
.row.page__contract, .row.page__content {
	padding-top: 40px;
}

/* Table column sizing
================================== */
.article-cell {
  width: 17%;
}

.name-cell {
  width: 47%;
}

.price-cell {
  width: 18%;
}

.deposit-cell {
  width: 18%;
}


/* Apply styles
================================== */
.rtable {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 3em 0;
	padding: 0;
	font-size: 18px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.rtable .rtable-row {
	width: 100%;
	display: -webkit-box;
	display: flex;
}
.rtable .rtable-row .rtable-cell {
	box-sizing: border-box;
	-webkit-box-flex: 1;
	flex-grow: 1;
	padding: 0.8em 1.2em;
	overflow: hidden;
	list-style: none;
	border-bottom: 1px solid #ccc;
}
.rtable-cell.name-cell {
	border-left: 1px solid #ccc;
}
.rtable-cell.price-cell {
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.rtable .rtable-row .rtable-cell.column-heading {
	background-color: #ccc;
	color: #000;
	padding: 1em;
}
.rtable .rtable-row .rtable-cell .rtable-cell--heading {
	display: none;
}
.rtable .rtable-row .rtable-cell .rtable-cell--content a {
	font-size: 18px;
	color: #333;
}
.rtable .rtable-row .rtable-cell .rtable-cell--content a:hover {
	text-decoration: underline;
}
.rtable .rtable-row .rtable-cell .rtable-cell--content .webinar-date {
	font-weight: 700;
}

/* Responsive
==================================== */
@media all and (max-width: 750px) {
	.is-striped {
		background-color: white;
	}

	.rtable--collapse {
		display: block;
		width: 100%;
		box-shadow: none;
	}
	.rtable--collapse .rtable-row {
		box-sizing: border-box;
		width: 100%;
		display: -webkit-box;
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 2em;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	}
	.rtable--collapse .rtable-row .rtable-cell {
		width: 100% !important;
		display: -webkit-box;
		display: flex;
		-webkit-box-align: center;
		align-items: center;
	}
	.rtable--collapse .rtable-row .rtable-cell .rtable-cell--heading {
		display: inline-block;
		-webkit-box-flex: 1;
		flex: 1;
		max-width: 160px;
		min-width: 80px;
		color: #757575;
		border-right: 1px solid #ccc;
		margin-right: 1em;
	}
	.rtable--collapse .rtable-row .rtable-cell .rtable-cell--content {
		-webkit-box-flex: 2;
		flex: 2;
		padding-left: 1em;
	}
	.rtable--collapse .name-cell {
		background-color: #ccc;
		color: #000;
		-webkit-box-ordinal-group: 0;
		order: -1;
	}
	.rtable--collapse .name-cell .rtable-cell--content {
		padding-left: 0 !important;
	}
	.rtable--collapse .rtable-row--head {
		display: none;
	}
	.rtable, .rtable-cell.price-cell {
		border-left: 0px solid #ccc;
		border-right: 0px solid #ccc;
	}  
}
.no-flexbox .rtable {
	display: block;
}
.no-flexbox .rtable.rtable-cell {
	width: 100%;
}

/*****************************************/
/* Блок категорий на главной странице  */
/*****************************************/
#category {
	background: url(../images/home-bg.jpg) no-repeat;
	background-size: cover;	
}
.category__content {
	width: 100%;
	float: left;
	padding: 35px 0;	
}
.category.content__box {
	padding: 15px;
}
.category .content__wrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
	padding-bottom: 80%;
}
.category .content__wrapper.gray {
	background-color: #767576;	
}
.category .content__wrapper.gray:hover {
	background-color: #9e9e9e;	
}
.category .content__wrapper.yellow {
	background-color: #ffc929;	
}
.category .content__wrapper.yellow:hover {
	background-color: #ffd54f;	
}
.category .content__wrapper.white {
	background-color: #ffffff;	
}
.category .content__wrapper.white:hover {
	background-color: #f5f5f5;	
}
.category .content__item {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	display: table;
	padding: 20px;	
}
.category .item__wrapper {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.category .item__img {
	width:65px;
	display:inline-block;	
}
.category .item__img svg {
	width: 65px;
	height: 65px;
	fill: #fff;
}
.category .item__desc {
	padding-top: 18px;	
}
.category .item__desc p {
	font-family: 'DINPro-Medium';
	font-size:20px;	
	margin:0;
	height: 56px;	
}
.gray .category .item__desc p {
	color:#f9f9f9;
}

/*****************************************/
/* Блок наши преимущества */
/*****************************************/
#privilege{
	padding-top:45px;
	padding-bottom:55px;
	background:#fff;
}
.privilege__container h2 {
	text-align:center;	
}
.privilege__content {
	padding-top:50px;	
	display:flex;
	flex-wrap:wrap;		
}
.privilege__item {
	text-align:center;
}
.privilege.item__img {
	width:65px;
	display:inline-block;	
}
.privilege.item__desc {
	padding-top:22px;	
}
.privilege.item__desc p {
	font-size:18px;
	font-family: 'DINPro-Medium';
}

/*****************************************/
/* Блок аренда техники и оборудования */
/*****************************************/
#rental {
	padding:40px 0 55px 0;
}
.rental__headline {
	text-align:center;
}
.rental__headline h2 {
	margin-bottom: 12px;
}
.rental__headline p {
	font-size:18px;
	font-family: 'DINPro-Medium';
}
.rental__form {
	padding-top:18px;
	margin:0 auto;
	float:unset;
}
.rental.contact-form {
	background-image: none;
	padding: 0;
	display:flex;
	flex-flow:row wrap;
	justify-content:space-between;	
}
.rental.form-group__tel {
	width:calc(100% - 195px);
}
.form-control.rental {
	line-height: 1.428571429;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	letter-spacing: 0;
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.rental.form-control__tel {
	font-size:18px;	
	font-family: 'DINPro-Regular';	
	padding:8px 12px;
	width: 100%;	
}
.rental.btn-yellow {
	padding: 8px 18px;
}
.t-submit.btn.rental.btn-yellow {
	padding: 8px 19px;
	margin-top: 0;
	margin-left: 0;
	border: none;
	letter-spacing: 0;
	font-family: 'DINPro-Medium';
	font-size: 17px;
	font-weight: unset;
	line-height: 1;
	background: #ffca28;
}
.t-submit.btn.rental.btn-yellow:hover {
	background: #ffd54f;
}
.rental.form-group__check {
	padding-top:22px;
}
.rental.form-group__check .form-check-input {
	float:left;
	margin-top:5px;
}
.rental.form-group__check .form-check-label {
	font-size:16px;
	font-family: 'DINPro-Regular';
	font-weight:unset;
	line-height:1.6;
	color:rgba(0, 0, 0, 0.5);
	margin-left:18px;
	display:block;
}

/*****************************************/
/* Блок описание страницы */
/*****************************************/
#description {
	padding: 50px 0;
	background: #fff;
}
.description__post {
	float: unset;
	margin: 0 auto;
	color: #212121;
}
.description__post p {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(0, 0, 0, 0.7);
}
.description__post a {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	color: rgba(0, 0, 0, 0.5);
}
.description__post a:hover {
	color: rgba(0, 0, 0, 0.7);
}

/*****************************************/
/* Блок лидеры проката, с этим выбирают  */
/*****************************************/
#favorite {
	padding: 25px 0 70px 0;
}
.favorite__row h2 {
	text-align: center;
}
.favorite__content.product__list {
	width: 100%;
	float: left;
	padding-top: 50px;
	display: flex;
	flex-wrap: nowrap;
}
.favorite.product__item-in {
	text-align: center;
	padding: 20px 20px 30px;
	background: #fff;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .15);
}
.favorite.product__item-in p {
	margin: 0 0 5px;
} 
.favorite.product__name p {
	font-size: 18px;
	font-family: 'DINPro-Bold';
}
.favorite.product__image {
	padding: 0 20px;
}
.favorite.product__desc {
	padding-top: 20px;
}
.favorite.product__technical p {
	color: #757575;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.favorite.product__price p {
	font-size: 22px;
	font-family: 'DINPro-Bold';	
}
.favorite.product__price span {
	display: block;
	font-size: 16px;
	color: #757575;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.favorite.product__action {
	padding-top: 15px;
}
.btn-yellow {
	font-family: 'DINPro-Medium';
	font-size: 16px;
	font-weight: unset;
		border: solid 1px #ffca28;
	padding: 8px 18px;
	background: #ffca28;
	color: #000;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-yellow:hover {
	background: #ffd54f;
}
.favorite.btn-yellow {
	padding: 11px 18px;
}

.clearboth {
	clear: both;
}


.btn-1click {
	width: 100%;
	font-family: 'DINPro-Medium';
	font-size: 16px;
	font-weight: unset;
		margin: 0;
	padding: 8px 18px;
	background: #ffffff;
	color: #000;
		border: solid 1px #757575;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 670px) {
.btn-1click {

		float: right;
}
}
/*****************************************/
/* Блок c нами работают */
/*****************************************/
#company {
	padding: 25px 0 50px 0;
}
.company__row h2 {
	text-align: center;
}
.company__content {
	padding-top: 60px;
}
.company.item__img {
	padding: 0px;
	background: #fff;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .15);	
}
.company.item__img img{
	filter: grayscale(1);
	opacity: .7;
}

/*****************************************/
/* Footer */
/*****************************************/
.footer.content__top {
	padding: 35px 0;
	background: url(../images/footer-bg.jpg) no-repeat center;
	background-size: cover;
}
.footer-menu__list.level > li {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	float: left;
	width: 33.33333333333333%;
}
.footer-menu__list.level li span {
	font-size: 18px;
	font-family: 'DINPro-Bold';
	color: #fff;
	cursor: default;
}
.footer-menu__list > li > a {
	font-size: 18px;
	font-family: 'DINPro-Bold';
	color: #fff;
	cursor: default;
}
.footer-menu__list.level > li > a {
	cursor: pointer;
}
.footer-menu__list > li > ul {
	padding-top: 10px;
}
.footer-menu__list > li > ul > li {
	padding-top: 12px;
}
.footer-menu__list.level > li > ul > li {
	padding-top: 0px;
}
.footer-menu__list > li > ul > li > a {
	font-size: 18px;
	font-family: 'DINPro-Regular';	
	color: rgba(255, 255, 255, 1.0);
	cursor: default;
}
.footer-menu__list.level > li > ul > li > a {
	font-size: 16px;
	font-family: 'DINPro-Regular';	
	color: #bdbdbd;
	line-height: 26px;
	cursor: pointer;
	display: block;
}
.footer-menu__list.level > li > ul > li > a:hover {
	color: #ffd54f;
}
.footer-menu__list > li > ul > li > ul > li > a {
	font-size: 16px;
	font-family: 'DINPro-Regular';	
	color: #bdbdbd;
	line-height: 26px;
}
.footer-menu__list > li > ul > li > ul > li > a:hover {
	color: #ffd54f;
}

.footer-menu__list.level.two > li > ul > li > ul > li > a {
	font-size: 18px;
	font-family: 'DINPro-Bold';
	color: #fff;
	/* cursor: default; */
}
.footer-menu__list.level.two > li > ul > li > ul > li > ul > li > a {
	font-size: 16px;
	font-family: 'DINPro-Regular';
	color: #bdbdbd;
	line-height: 26px;
	cursor: pointer;
	display: block;
	padding-left: 15px;
}
.footer-menu__list.level.two > li > ul > li > ul > li > ul > li > a:hover {
	color: #ffd54f;
}
.footer-menu__list.level.two > li > ul > li > a {
	padding-left: 15px;
}

.footer-menu__nav_index .footer-menu__list > li > a:hover {
	text-decoration: underline;
}
.footer-menu__nav_index .footer-menu__list > li > ul > li {
	padding-top: 12px;
}
.footer-menu__nav_index .footer-menu__list > li > ul > li > a {
	font-size: 18px;
	font-family: 'DINPro-Regular';
	color: rgba(255, 255, 255, 1.0);
	line-height: inherit;
}
.footer-menu__nav_index .footer-menu__list > li > ul > li > a:hover {
	color: rgba(255, 255, 255, 1.0);
	text-decoration: underline;
}
.footer-menu__nav_index .footer-menu__list.level.two > li > ul > li > a {
	padding-left: 0;
}
.footer-menu__nav_index .footer-menu__list.level.two > li > ul > li > ul > li > a {
	font-size: 16px;
	font-family: 'DINPro-Regular';
	color: #bdbdbd;
	line-height: 26px;
}
.footer-menu__nav_index .footer-menu__list.level.two > li > ul > li > ul > li > a:hover {
	color: #ffd54f;
}

.footer {
	background: unset;
	font-size: inherit;	
	padding: 0;
}
.footer.content__bottom {
	padding: 35px 0;
}
.footer.content__company, .footer.content__requisites, .footer.content__contact {
}
.footer.company__name {
	font-size: 18px;
	font-family: 'DINPro-Regular';
}
.footer.company__copyrite {
	font-size: 18px;
}
.footer.content__requisites p, .footer.content__contact p {
	font-size: 18px;
}
.footer.content__contact address {
	margin: 0;
}
.footer.row__content-bottom {
	padding-top: 25px;
}
.footer.info__pay {
	display: inline-block;
	margin: 0;
	font-size: 18px;
}
.footer.info__pay-img {
	width: 270px;
	padding: 0 30px;
	filter: grayscale(1);
}
.footer.contact-address__email, .footer.info__contract {
	font-size: 18px;
	margin: 0;
	color: #757575;
	display: inline-block;
	float: left;
}
.footer.contact-address__email:hover {
	cursor: pointer;
	color: #000;
}
.footer.info__contract {
	padding: 0 30px;	
}

/*****************************************/
/* Fancybox */
/*****************************************/
#fancybox-overlay {
	background-color: rgb(0, 0, 0)!important;
}
#fancybox-close {
	right: 6px !important;
	top: 7px !important;
	background-image: url(../images/close_1.png) !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}
#fancybox-outer {
	border: unset;
}

/*****************************************/
/* modal-dialog */
/*****************************************/
#one_click,
#contact_form_callback_pop {
	width:460px;
}
.contact-form .form-title {
	max-width: initial;
	margin: 0;
	padding-top: 15px;
}
.form-title h3 {
	font-size: 22px;
	text-align: center;
	font-family: 'DINPro-Bold';
}
.contact-form .t-form {
	max-width: initial;
	padding: 10px 40px 30px;
}
.contact-form {
	display: block;
	margin: 0;
}
#one_click .contact-form ,
#contact_form_callback_pop .contact-form {
	padding: 0;
}
.t-form__submit {
	padding: 20px 0 10px;
	text-align: center;
}
.contact-form .t-form__submit .t-submit {
	font-family: 'DINPro-Medium';
	font-size: 17px;
	font-weight: unset;
	padding: 12px 17px;
	background: #ffca28;
	color: #000;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-transform: unset;
	width: auto;
	margin: 0;
}
.contact-form .t-form__submit .t-submit:hover {
	background: #ffd54f;
}
.contact-form .t-input-content {
	margin: 0;
	padding: 10px 0;
}
input.t-input.form-control {
	box-shadow: unset;
	padding: 6px 12px;
	letter-spacing: unset;
}
input.t-input.form-control:focus {
	border-color: rgba(0, 0, 0, 0.5)!important;
}

@media screen and (max-width: 460px) {
	#one_click,
	#contact_form_callback_pop {
		max-width: 100%;
	}
	.contact-form .t-form {
		padding: 10px 10px 30px;
	}	
	.contact-form .t-form__submit .t-submit {
		width: 100%;
	}	
}
/*****************************************/
/* страница 404 */
/*****************************************/
.error__content-page {
	padding: 0 15px;
	width: calc(100% - 390px);
	max-width: 680px;
	float: right;	
}
.error__content-page h1 {
	font-family: 'DINPro-Bold';
	margin-top: 0;
	text-align: center;	
}
.notfound {
  width: 100%;
  line-height: 1.4;
  text-align: center;
  padding-top: 30px;
}

.notfound .notfound-404 {
  position: relative;
  height: 220px;
}

.notfound .notfound-404 h2 {
  font-family: 'Montserrat', sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
	  -ms-transform: translate(-50%, -50%);
		  transform: translate(-50%, -50%);
  font-size: 220px;
  font-weight: 900;
  margin: 0px;
  color: #213978;
  color: #525252;
  text-transform: uppercase;
  letter-spacing: -40px;
  margin-left: -20px;
}

.notfound .notfound-404 h2>span {
  text-shadow: -8px 0px 3px rgba(0, 0, 0, 0.5);
}

.notfound .notfound-404 {
  font-family: 'Cabin', sans-serif;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #262626;
  margin: 0px;
  letter-spacing: 3px;
  padding-left: 6px;
}

.notfound h3 {
  font-family: 'Cabin', sans-serif;
  margin-top: 0px;
  margin-bottom: 25px;
  position: relative;
  z-index: 100;
}
h3 a{
	cursor: pointer;
	text-decoration: none;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	font-weight: normal;
}

h3 a:hover{text-decoration: underline;}

@media screen and (max-width: 991px) {
	.error__content-page {
		width: 100%;
		max-width: 100%;
		float: none;
		margin: 0 auto;
		padding-top: 30px;
	}
}
@media screen and (max-width: 767px) {
	.error__content-page {
		padding-bottom: 30px	
	}
	.error__content-page h1 {
		font-size: 30px;
	}
  .notfound .notfound-404 {
	height: 200px;
  }
  .notfound .notfound-404 h2 {
	font-size: 200px;
  }	
}
@media screen and (max-width: 670px) {
	.notfound {
		padding-top: 0;
	}	
	.notfound h3 {
		margin-top: 25px;
	}
}
@media screen and (max-width: 480px) {
  .notfound .notfound-404 {
	height: 162px;
  }
  .notfound .notfound-404 h2 {
	font-size: 162px;
	height: 150px;
	line-height: 162px;
  }
  .notfound h3 {
	font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
	.error__content-page h1 {
		font-size: 26px;
	}	
}
@media screen and (max-width: 320px) {
.notfound .notfound-404 h3{font-size: 12px;}
}

/*****************************************/
/* нопка наверх */
/*****************************************/
.scroll__bottom--top {
	position: fixed;
	bottom: 50px;
	display:none;
}
.scroll__bottom--top .fa-angle-up {
	font-size: 72px;
	color: #ffca28;
	cursor: pointer;
}

/*****************************************/
/* Стили для форм */
/*****************************************/
/* Плавное удаление placeholder при фокусе*/
input::-webkit-input-placeholder {opacity: 1; transition: opacity 0.3s ease;}
input::-moz-placeholder{opacity: 1; transition: opacity 0.3s ease;}
input:-moz-placeholder {opacity: 1; transition: opacity 0.3s ease;}
input:-ms-input-placeholder {opacity: 1; transition: opacity 0.3s ease;}
input:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
input:focus::-moz-placeholder{opacity: 0; transition: opacity 0.3s ease;}
input:focus:-moz-placeholder{opacity: 0; transition: opacity 0.3s ease;}
input:focus:-ms-input-placeholder{opacity: 0; transition: opacity 0.3s ease;}

textarea::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.3s ease;}
textarea::-moz-placeholder                {opacity: 1; transition: opacity 0.3s ease;}
textarea:-moz-placeholder                 {opacity: 1; transition: opacity 0.3s ease;}
textarea:-ms-input-placeholder            {opacity: 1; transition: opacity 0.3s ease;}
textarea:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
textarea:focus::-moz-placeholder          {opacity: 0; transition: opacity 0.3s ease;}
textarea:focus:-moz-placeholder           {opacity: 0; transition: opacity 0.3s ease;}
textarea:focus:-ms-input-placeholder      {opacity: 0; transition: opacity 0.3s ease;}

/* Удаление цвета фона ввода для автозаполнения Chrome */
input {outline: none;}
input:-webkit-autofill {
	-webkit-box-shadow: inset 0 0 0 50px #fff !important; /* Цвет фона */
	-webkit-text-fill-color: rgba(0, 0, 0, 0.8) !important; /* цвет текста */
	color: rgba(0, 0, 0, 0.8) !important; /* цвет текста */
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
	transition: all 5000s ease-in-out 0s;
}

*{outline: none !important}
/* убрать свечение вокруг текстового поля */
*:focus {outline: none;}

input[type=text], input[type=tel], input[type=email] {
	box-shadow: unset;
	font-size: 17px;
	height: auto;
}

/* цвет рамки вокруг текстового поля */
input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus{
	box-shadow: none;
	border-color: rgba(0, 0, 0, 0.5);
	background: rgba(255, 255, 255, 1.0);
}
input[type=text].error, input[type=tel].error, input[type=email].error{border-color: #F44336; background: rgba(255, 255, 255, 1.0);}
input[type=text].error:focus, input[type=tel].error:focus, input[type=email].error:focus{border-color: #F44336; background: rgba(255, 255, 255, 0.8);}
textarea:focus{border-color: rgba(0, 0, 0, 0.5); background: rgba(255, 255, 255, 1.0);}
textarea.error{border-color: #F44336; background: rgba(255, 255, 255, 1.0);}
textarea.error:focus{border-color: #F44336; background: rgba(255, 255, 255, 1.0);}

		.category.product__price {
		padding-top: 20px; 
		}		


/*****************************************/
/* Media screen */
/*****************************************/
@media (min-width: 1200px) {
  .container {
	width: 1170px;
  }
}
@media screen and (min-width: 1170px) {
	.navbar-right__list {
		font-size: 18px;
	}
	.footer.info__pay-img {
		width: 300px;
	}
}

@media screen and (max-width: 1024px) {
	.category .item__desc p{
		font-size: 18px;
	}	
}

@media screen and (min-width: 992px) {
	.category .content__wrapper{
		box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.35);
	}
	.category .content__wrapper:hover {
		box-shadow: unset;
	}
}
@media screen and (max-width: 991px) {
	.header__logo {
		max-width: 120px;
	}
	.header__desc {
		min-width: auto;
	}
	.header__desc h1, .header__desc h2, .header__desc p {
		font-size: 13px;
		max-width: 226px;
	}
	.button-link {
		padding: 6px 10px 7px;
	}
	.navbar__left {
		width: 20%;
	}
	.navbar__search {
		width: 50%;
	}
	.navbar__right {
		width: 30%;
	}
	.navbar-right__list {
		font-size: 14px;
	}
	h2, .h2 {
		font-size: 30px;
	}
	.breadcrumbs {
		display: none;
	}
	.aside {
		display: none;
	}	
	#category {
		background: none;
	}
	.category__content {
		padding: 15px 15px;
	}
	.category__content-product {
		width: 100%;
		float: none;
		margin: 0 auto;
		padding-top: 30px;
	}
	
	
	.category.content__box {
		padding: 0;
		width: 25%;
		float: left;
	}
	.category .item__desc {
		padding-top: 5px;
	}
	.category .item__desc p {
		font-size: 16px;
		height: 44px;
	}
	#favorite {
		background: #fff;
		padding: 10px 0 30px 0;
	}
	.favorite__content.product__list {
		padding-top: 15px;
	}
	.favorite.product__item {
		width: 33.33333333333333%;
		padding: 15px;
	}
	#privilege, #rental, #description, #company, .footer.content__top,
	.footer.content__requisites, .footer.content__contact, .footer.row__content-bottom{
		display: none;
	}
	.footer.content__company {
		text-align: center;
	}
	.footer.company__name,.footer.company__copyrite {
		font-size: 17px;
		margin: 0;
	}
	.footer.company__name {
		font-family: 'DINPro-Medium';
	}
	.footer.content__bottom {
		padding: 10px 0;
	}
}

@media screen and (min-width: 750px) and (max-width: 991px) {
	.favorite__content.product__list .favorite.product__item:nth-child(n+4) {
		display: none;
	}
}

@media screen and (min-width: 768px) {
	.navbar__mobile.logo, .navbar__mobile.desc, .navbar__mobile.right-block, .navbar__search-mobile {
		display: none;
	}
	.collapse.navbar-collapse {
		max-width: 360px;
	}
}

@media screen and (max-width: 767px) {
	.header__navbar {
		background: #ffffff;
	}
	.header-container, .navbar__left > .navbar__brand, .navbar__right {
		display: none;
	}
	.navbar__row {
		height: 73px;
		box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.1);
		position: relative;
		z-index: 100;
	}
	.navbar__left {
		padding: 19px 15px;
		width: 64px;
	}
	.collapse.navbar-collapse {
		box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
		z-index: 98;
	}
	.category__content-product h1 {
		font-size: 30px;
		text-align: center;
	}
}

@media screen and (max-width: 749px) {
	.header__row {
		display: block;
	}
	.category .content__wrapper {
		border: 1px solid #E0E0E0;
	}
	.category .item__desc p {
		font-size: 14px;
		height: auto;
	}	
	.favorite.product__item {
		width: 50%;
	}
	.favorite.product__technical, .favorite.product__price span {
		display: none;
	}
	.favorite.product__price p {
		font-size: 16px;
	}
	.header__logo {
		max-width: 110px;
	}
	.navbar__mobile.logo {
		padding: 0 15px;
		position: absolute;
		left: 50%;
		margin-left: -65px;
		width: auto;
	}
	.navbar__mobile.desc {
		display: none;
	}
	.navbar__mobile.right-block {
		margin-left: auto;
		width: 30%;
	}
}



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

	
	.category.content__box {
		width: 50%;
	}
	.category.product__image {
		width: 100%;
		padding: 0 15px 0 0;
		margin-top: 0;
	}
	.category.product__price {
		width: 100%;
		float: left;
	display: flex;
		align-content: stretch;
		padding-top: 30px;
	}
	.category.product__price p {
		font-size: 18px;
		text-align: center;
	}
	.category.product__price-month {
		/* width: 100%; */
		padding-left: 0;
	}	
	.category.product__price-day {
		/* padding-left: 0; */
		width: 50%;
		margin: 0;
	}
	.category.product__desc {
		width: 100%;
		padding: 15px 0;
	}
	.category.product__action {
		width: 100%;
		text-align: center;
	}
	.category.product__price span {
		display: flex;
	white-space: nowrap;
	text-align: center;
	justify-content: space-evenly;
	flex-direction: row;
	flex-wrap: nowrap;
	}
}

@media screen and (max-width: 414px) {
	.favorite.btn-yellow {
		width: 100%;
	}
	.category__content-link {
		padding-top: 15px;
	}
}

@media screen and (max-width: 375px) {
	.category .item__img {
		width: 50px;
	}
	.favorite.btn-yellow {
		font-size: 16px;
		padding: 8px 10px;
	}
	.category__content-product h1 {
		font-size: 26px;
	}
	.category.content-link__list li a {
		font-size: 14px;
	}	
}

@media screen and (max-width: 360px) {
	h2, .h2 {
		font-size: 22px;
	}
	.category__content-product h1 {
		font-size: 22px;
	}
	.category.content-link__list li a {
		margin-right: 5px;
		padding: 5px 6px;
	}
	.category .item__img {
		width: 40px;
	}
	.category .item__desc p {
		font-size: 12px;
	}	
	#favorite {
		padding: 0px 0 20px 0;
	}
	.favorite__content.product__list {
		padding-top: 0px;
	}
	.favorite.product__item-in {
		padding: 20px 10px;
	}
	.favorite.product__image {
		padding: 0 10px;
	}
	.favorite.product__name p {
		font-size: 14px;
	}
	.favorite.btn-yellow {
		font-size: 14px;
		padding: 8px 10px;
	}
	.footer.company__name, .footer.company__copyrite {
		font-size: 14px;
	}
	
}

@media screen and (min-width: 320px) {
	.navbar-collapse.collapse {
		display: block !important;
		height: auto !important;
		padding-bottom: 0;
		overflow: visible !important;
	}
}
/*****************************************/
/* CSS для записей
/*****************************************/
.page.content__post ul, .description__post ul {
	list-style: disc;
	font-size: 18px;
	padding-left: 30px;
}
ul.category.content-link__list {
	padding-left: 0;
}
.description__post .tags-categories a {
	background: #bdbdbd;
	padding: 5px 10px;
	margin: 5px 10px 5px 0px;
	font-size: 16px;
	font-family: 'DINPro-Regular';
	color: #4d4d4d;
	border-radius: 4px;
	display: inline-block;
	line-height: normal;
}
.description__post .tags-categories a:hover {
	color: #fff;
	background: #757575;
}
.description__post .tags-categories a.is-active {
	color: #fff;
	background: #ffca28;
}
/*****************************************/
/* CSS для стандартных классов wp img
/*****************************************/
img.alignright { float: right; margin: 0.4em 0 0 1em; width: auto; }
img.alignleft { float: left; margin: 0.4em 1em 0 0; width: auto; }
img.aligncenter { display: block; margin-left: auto; margin-right: auto; width: auto; }
.alignright { float: right; }
.alignleft { float: left; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* .header__desc p {
	max-width: none  !important;
	font-size: 20px;
} */

.category-sorting {
	margin: 20px 0 0 0;
}

.brends__item {
	padding: 0;
}
.brends__item span {
	display: block;
	margin: 7px 0 0 0;
	text-align: center;
	font-size: 18px;
}
.brends__item:hover span {
	text-decoration: underline;
}

.absolute {
	position: absolute!important;
}