.category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 316px;
    gap: 10px;
    width: 100%;
}

.category-list__item_big {
    grid-column: span 2;
    position: relative;
    display: flex;
    border: 1px #d9d9d9 solid;
    background: #fff;
}

.category-list__image-link {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.category-list__button {
    display: inline-block;
    padding: 5px 15px;
    background: #d2681c;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    align-self: flex-end;
    white-space: nowrap;
    margin-top: auto;
    z-index: 1;
    font-size: 16px;
}

.category-list__label {
    padding: 15px;
    box-sizing: border-box;
    text-align: right;
    display: flex;
    flex-direction: column;
    margin-right: 5px;
    height: 100%;
}

.category-list__label_big {
    max-width: 230px;
    z-index: 1;
}

.category-list__title-link_big {
    color: #444444;
    font-size: 24px;
    transition: all .3s ease-out;
}

.category-list__title-link_big:hover {
    color: #004e98;
}

.category-list__description {
    font-size: 13px;
}

.category-list__item_with-image {
    background: #fff;
    border: 1px #d9d9d9 solid;
    position: relative;
}

.category-list__img,
.category-list__img_top{
    position: absolute;
    top: 0;
    left: 0;
}
    
.category-list__img {
    max-width: 280px;
}

.category-list__title-link {
    color: #444444;
    transition: all .3s ease-out;
    z-index: 1;
    font-size: 18px;
}

.category-list__title-link:hover {
    color: #004e98;
}

.category-list__ul {
    display: contents;
}

@media (max-width: 1200px) {
    
    .category-list__img_top {
        max-width: 340px;
    }
    
    .category-list__item_big {
        grid-column: span 1;
    }

    .category-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-list__description {
        display: none;
    }

    .category-list__title-link_big {
        font-size: 18px;
    }

    .category-list__label_big {
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .category-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .category-list__img {
        width: 100%;
    }

    .category-list__img_top {
        top: 40px;
    }
}

/* СТИЛИ ДЛЯ БЛОКА INDIVIDUAL */

.individual__container {
    display: flex;
    justify-content: space-between;
}

.individual__text {
    display: block;
    max-width: 300px;
    color: #fff;
    font-size: 16px;
}

.individual__title {
    margin-top: 30px;
    color: #fff;
}

.individual__bg {
    width: 705px;
    height: 330px;
    margin-top: -35px;
    margin-bottom: -24px;
    position: relative;
    z-index: 10;
    background: url(./img/individual.webp) left top no-repeat;
}

@media (max-width: 1200px) {
    
    .individual__container {
        flex-direction: column;
        align-items: center;
    }
    
    .individual__column {
        text-align: center;
    }
}

@media (max-width: 800px) {
    
	.individual__bg {
		width: 100%;
		aspect-ratio: 705 / 330;
		background-size: cover;
		height: auto;
	}
}

@media (max-width: 620px) {
	
	.individual__bg {
		display: none;
	}
}

/* СТИЛИ ДЛЯ БЛОКОВ COL */

.col_right {
	width: 100%;
	margin-top: 39px;	
}

.col_left {
	max-width: 270px;	
}

.col_left_white {
	max-width: 600px;
}

.categories_white,
.categories_production {
	display: flex;
	column-gap: 30px;
}

@media (max-width: 1200px) {
    
    .categories_white {
    	flex-direction: column;
    	align-items: center;
    }
    
    .categories_production {
        flex-direction: column;
    }
    
    .col_right_white {
    	max-width: 600px;
    }
}


@media (max-width: 1024px) {
    
	.col_right {
		margin-top: 0;
	}
}

@media (max-width: 620px) {

	.col_left {
		max-width: none;
	}

    .col_right {
		margin-top: 15px;
	}
}

/* --- buttons ---*/

.button {
	display: inline-block;
	padding: 5px 10px;
	background: #d2681c;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
    z-index: 1;
	transition: all .3s ease-out;
}

.button:before  {
    content: '';
    line-height: 99%;
    position: absolute;
    top: 0;
    left: 0;
    width: 135%;
    height: 100%;
    background: #000;
    z-index: -1;
    transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform: translateX(-100%) skewX(-45deg);
    -ms-transform: translateX(-100%) skewX(-45deg);
    -webkit-transform: translateX(-100%) skewX(-45deg);
    transition: transform .2s;
}

.button:hover:before {
    transform: translateX(0) skewX(-45deg);
    -ms-transform: translateX(0) skewX(-45deg);
    -webkit-transform: translateX(0) skewX(-45deg);
}

.button.big {
	font-size: 18px;
	line-height: 32px;
	padding: 0 15px 0 15px;
}

.button.trans  {
	border: 2px #fff solid;
	color: #fff;
	background: none;
	transition: all .3s ease-out;
}

.button:hover.trans {
	color: #d2681c;
}

.button.trans:before {
	background: #fff;
}

.button.green, .button.orange {
	background: #41c951;
	font-size: 16px;
	text-align: center;
	display: block;
}

.button.orange {
	background: #d2681c;
	color: #fff!important;
}

.button.orange:hover {
	text-decoration: none!important;
}

.button.blue {
	background: none;
	color: #004e98!important;
	border: 1px #004e98 solid;
	font-size: 10px;
}

.button.big.blue {
	font-size: 16px;	
}

.button.blue:hover {
	color: #fff!important;
}

.button.blue:before {
	background: #004e98;
}

.button.small {
	font-size: 12px!important;
	line-height: 18px!important;
	height: 18px!important;
	padding: 0 10px 0 10px!important;
}

 .button_more {
    margin-top: 20px;
    text-align: center;
 }

/* --- /buttons ---*/

.production__title {
    color: #fff;
}

@media (max-width: 800px) {
	
	.production__title {
	    margin: 0;
	    font-size: 22px;
	}
}

/* ------------ NEWS -------------- */

.news li, .catlist li {
	min-height: 110px;
	margin-bottom: 10px;	
}

.catlist .img {
	position: absolute;
	z-index: 3;
	width: 100px;
	height: 100px;
	background: #d2681c;	
}

.news .img:hover:after, .catlist .img:hover:after {
	background: #004e98;
}

.news .img img, .catlist .img img {
	position: absolute;
	z-index: 10;
}

.news .img:after, .catlist .img:after {
	content: '';
	position: absolute;
	width: 100px;
	height: 100px;
	background: #eeeeee;
	margin: 10px 0 0 10px;
	z-index: 1;
	transition: 1s;
}

.news .text, .news .list {
	padding: 0 0 0 120px;	
}

.news .text a, .catlist .text a {
	color: #023769;
	font-weight: bold;
	text-transform: uppercase;
	transition: all .3s ease-out;
}

.news .text a:hover, .catlist .text a:hover {
	color: #d2681c;
}

.news .text p, .catlist .text p {
	margin: 5px 0 5px 0;
}

.bg_white-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* ------------ CATEGORY LIST -------------- */

.catlist li {
	min-height: 170px;
	position: relative;
}

.catlist .img {
	width: 150px;
	height: 150px;
	border: 1px #eeeeee solid;
	transition: 1s;
}

.catlist .img:hover {
	border: 1px #004e98 solid;
}

.catlist .img:after {
	width: 150px;
	height: 150px;
}

.catlist li li {
	min-height: 0px;
	margin: 0 0 3px 15px;	
	color: #696969;
	font-size: 12px;
}

.catlist li li:before {
    content: '';
    z-index: 10;
	position: absolute;
    width: 4px;
  	height: 4px;
	margin: 7px 0 0 -10px;
	background: #0b88ff;
}

.catlist .text {
    display: flex;
    flex-direction: column;
    position: relative; 
    padding: 0 0 0 180px;
}

.catlist .text .button {
    margin-left: auto;
    margin-top: 20px;
    align-self: flex-start;
    padding: 5px 10px;
}

.catlist_big,
.production-flex {
	display: flex;
}

.catlist_big {
    max-width: 600px;
    column-gap: 5px;
}

.production-flex {
    justify-content: space-between;
    row-gap: 20px;
}

@media (max-width: 1200px){
    
    .production-flex {
        align-items: center;
        flex-direction: column;
    }
}

.catlist_big .text a {
	color: #023769;
	font-size: 24px;
}

.catlist_big-text {
    display: flex;
    flex-direction: column;
}

.catlist_big .text {
    padding-bottom: 15px;
}

.catlist_big .button {
    margin-top: auto;
    align-self: flex-start;
}

.catlist_big .text a:hover {
	color: #d2681c;
}

.catlist_big .text {
	font-size: 16px	
}

.catlist_big li {
	min-height: 0px;
	margin: 0 0 3px 15px;	
	color: #696969;
	font-size: 13px;
}

.catlist_big li:before {
    content: '';
    z-index: 10;
	position:absolute;
    width: 4px;
  	height: 4px;
	margin: 7px 0 0 -10px;
	background: #0b88ff;
}

.catlist_big .img img {
    display: block;
    margin: 0 auto;
    height: auto;
}

@media (max-width: 620px){
    
    .catlist_big {
    	flex-direction: column;
    }
    
    .catlist_big .img {
        margin-top: 20px;
    }
}

@media (max-width: 420px){
    
    .catlist_big .img img {
        max-height: 300px;
        width: 100%;
    }
    
    .catlist li {
        display: flex;
        flex-direction: column;
    }
    
    .catlist .text {
        padding: 0;
        margin-top: 30px;
    }
    
    .catlist .img {
        position: static;
    }
    
    .catlist .text .button {
        margin-left: 0;
    }
}

/* ------------ /CATEGORY LIST -------------- */

/* ------------ PRODUCT -------------- */

.product {
	width: 100%;
	padding: 15px 25px 35px 25px;
	background: #fff;
	box-sizing: border-box;
	margin-top: 40px;
	display: flex;
	font-size: 14px;
	column-gap: 10px;
}

.col_left_product {
    width: 100%;
}

.product h1, .category h1, .page h1, .news-list h1 {
	margin: 0 0 20px 0;
	color: #023769;
	font-size: 24px;
}

.product .label {
	position: absolute;
	top: 0px;
	right: 0px;	
}

.product h5 {
	margin: 0 0 10px 10px;
	color: #023769;
	font-size: 16px;
	font-weight: bold;
}

.product h5:before {
    content: '';
    z-index: 10;
	position: absolute;
    width: 0;
  	height: 0;
	margin: 5px 0 0 -10px;
  	border: 5px solid transparent;
	border-left-color:#d2681c;
	border-right: 0;
}

#description_block a, .page .text a {
	color: #004e98;
}

#description_block a:hover, .page .text a:hover {
	text-decoration: underline;
}

#description_block ul, ul.ullist, .page .text ul {
	margin: 0 0 10px 40px;	
}

#description_block ul li, ul.ullist li, .page .text ul li {
	margin: 0 0 5px 0;
}

#description_block ul li:before, ul.ullist li:before, .page .text ul li:before {
    content: '';
    z-index: 10;
	position: absolute;
    width: 4px;
  	height: 4px;
	margin: 8px 0 0 -10px;
	background: #0b88ff;
}

#features h3, #model_list h3 {
	text-align: center;
	margin: 10px 15px 25px 15px;
}

#features table, #model_list table {
	width: 100%;
	border-top: 3px solid #d2681c;
}

#features table tr th, #model_list table tr th {
	text-align: center;
}

#features table td, #model_list table td {
	font-size: 16px;
	color: #676768;
	padding: 5px;
	vertical-align: middle;
}

#features table td {
	width: 50%;
}

#features table tr td, #model_list tr td {
    background: #ededed;
  	color: #505050;
	padding: 7px 15px 7px 15px;
}

#features table tr td, #model_list table tr td {
    background: #fff;
  	color: #505050;
}

#features table tr td:nth-child(1), #model_list table tr td:nth-child(1) {
	font-weight: bold;
}

#features table tr:nth-child(2n) td, #model_list table tr:nth-child(2n) td {
	background: #fbfbfb;
  	color: #505050;
}

#features table tr:hover td, #model_list table tr:hover td {
	background: #ecf6ff!important;
  	color: #505050;
}

#model_list table {
	width: 100%;
	border-top: 3px solid #d2681c;
}

#model_list .green {
	color: #41c951;
}

#model_list table tr th, #features table tr th {
	font-size: 16px;
	color: #000;
	padding: 10px 15px 10px 15px;
	vertical-align: middle;
	background: #d6d3d3;
}

#model_list table tr td {
    background: #f9f8f8;
  	color: #505050;
	text-align: center;
}

#model_list table tr td:first {
	text-align: left;
}

#model_list table tr:nth-child(2n) td {
	background: #eee;
  	color: #505050;
}

.line {
	height: 2px;
	width: 100%;
	background: #dddddd;
	margin-bottom: 20px;
}

.addlinks a {	
	display: flex;
	column-gap: 5px;
	align-items: center;
}

.addlinks a:not(:first-child) {	
	margin-top: 5px;
}

.addlinks a span {
	padding: 9px 10px;
	background: #dce3ec;
	font-size: 16px;
	color: #023769;
	width: 100%;
}

.small_description {
	margin-top: 30px;
}

.small_description .addlinks a span {
	width: 100%;
}

.addlinks a span:hover {
	color: #fff;
}

@media (max-width: 800px) {
    
    .product {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .addlinks a span {
        font-size: 12px;
    }
    
    #description_block ul, ul.ullist, .page .text ul {
        margin: 0 0 10px 10px;
    }

    .b-product-gallery,
    .b-product-gallery-bigimg,
    .b-product-gallery-small-list {
        width: 100% !important;
        max-width: 100% !important; 
    }

    .b-product-gallery-bigimg img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
    }

    .b-product-gallery-small-list__item {
        width: 20vw;
        height: 20vw;
        margin-right: 2vw;
        margin-bottom: 2vw;
    }

    .b-product-gallery-small-list__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .col_left_product {
        max-width: 100%;
        width: 100%;
    }
    
    .product h1 {
        font-size: 20px;
        margin: 0 0 10px 0;
    }
    
    .line {
        margin-bottom: 10px;
    }
    
    #features table tr td {
        padding: 3px;
        font-size: 14px;
    }
    
    #features table tr th {
        padding: 3px; 
        font-size: 14px;
    }
}

/* ------------ /PRODUCT -------------- */

/* ----------- MODEL LABEL ------------ */

#model_form .container {
	max-width: 1120px;
}

#model_form {
    font-size: 14px;
}

#model_form p a {
	color: #004e98;
	border-bottom: 1px #004e98 dashed;
}

#model_form p a:hover {
	border: none;
}

#model_form h3 {
	text-align: center;	
}

#model_form h5 {
	margin: 0 0 10px 0;
    color: #023769;
    font-size: 16px;
    font-weight: bold;
}

.model_table, .model {
    color: #666;
	border-spacing: 1px!important;
}

.model_table td, .model td {
	line-height: 25px;
	min-height: 10px;
	height: 10px;
}

.model_table td.model_label, .model th {
	padding: 10px 15px 10px 15px;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	background: #004e98!important;
	white-space: nowrap;
	width: 1%;
	text-align: center;
	border-right: 2px #fff solid;
}
	
.model_spacer {
	padding: 10px 15px 10px 15px;
	font-size: 18px;
	color: #989898;
	font-weight: bold;
	white-space: nowrap;
	width: 1%;
	text-align: center;
}
	
.model_table b {
	font-size: 18px;
	color: #004e98;
}

.model_table span {
	font-size: 16px;
	color: #000;
	font-weight: bold;
}

.model_desc {
	background: #fff;
	padding: 7px 10px 7px 15px;
	border-radius: 4px;
	border: 1px #c7d4e0 solid;
}
	
.model_line_v {
	background: url(./img/model_bg.png) 50% top !important;
}

.model_line_c, .model_line_c {
	background: url(./img/model_bg.png) 50% 50% !important;
}

.product-marking-wrapper__text {
    margin-top: 0;
}

@media (max-width: 620px) {
    
    .model_spacer, 
    .model_desc,
    .model_table td.model_label, .model th {
        padding: 5px;
    }
    
    
    .model_desc,
    .model_desc span {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    
    #model_form .model_table {
        display: block;
        width: 100%;
    }
    
    #model_form .model_table > tbody > tr:first-child {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
      
    #model_form .model_table > tbody > tr:first-child td {
        flex: 1;
        min-width: calc(50% - 5px);
        display: inline-block;
    }
      
    
    #model_form .model_table > tbody > tr:not(:first-child) {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #c7d4e0;
        border-radius: 4px;
        background: #fff;
        overflow: hidden;
    }
      
    #model_form .model_table > tbody > tr:not(:first-child) td {
        display: block;
        width: 100% !important;
        border: none !important;
        background: none !important;
        height: auto !important;
        min-height: auto !important;
        line-height: normal !important;
    }
    
    #model_form .model_table > tbody > tr:not(:first-child) td:empty {
        display: none;
    }
    
    #model_form .model_table > tbody > tr:not(:first-child) td[height="10px"],
    #model_form .model_table > tbody > tr:not(:first-child) td[style*="height:10px"] {
        display: none;
    }
      
    #model_form .model_table td.model_label {
        background: #004e98 !important;
        color: #fff !important;
        font-size: 16px;
        text-align: center;
        padding: 12px 15px !important;
        margin: 0 2.5px 10px;
        border-radius: 4px;
    }
      
    .model_table td {
        height: auto;
    }
}
/* ---------- INTALLATION ------------ */

.col_left_model p img{
    width: 100%;
}

#installation h5, #features h5 {
    margin: 0 0 10px 0;
    color: #023769;
    font-size: 16px;
    font-weight: bold;
	text-align: left;
}

#installation ul, #model_form ul {
	margin: 0 0 10px 30px;	
}

#installation ul li, #model_form ul li {
	margin: 0 0 5px 0;
}

#installation ul li:before, #model_form ul li:before {
    content: '';
    z-index: 10;
	position: absolute;
    width: 4px;
  	height: 4px;
	margin: 8px 0 0 -10px;
	background:#0b88ff;
}

#installation i, .warning {
	font-size: 12px;
	color: #023769;
	font-style: italic;
}

.colors th {
	background: #eeeeee;
	text-align: center;
	height: 28px;
}

.colors td {
	min-width: 20px;
	padding: 3px;
	font-size: 12px;
	background: #f9f8f8;
	color: #023769;
}

.colors tr:nth-child(2n) td {
	background: #fff;
}

.color_l, .color_r {
	width: 9px;
    height: 17px;
	border: 1px solid #eee;
	border-radius: 100% 0 0 100% / 50% 0 0 50%;
	background: #000;
	float: left;
	border-right: none;
}

.color_r {
	border-radius: 0 100% 100% 0 / 0 50% 50% 0;
	border-left: none;
	border-right: 1px;
}

.cff0 {
	background: #ffea04;
}

.c999 {
	background: #999999;
}

.c7f0 {
	background: #7f0000;
}

.c0f0 {
	background: #0f0;
}

.cfff {
	background: #fff;
}

.cf00 {
	background: #f00;
}

.c00f {
	background: #00f;
}

.cf0f {
	background: #f0f;
}

.cf90 {
	background: #f90;
}

.c639 {
	background: #639;
}

.c0ff {
	background: #0ff;
}

.col_right_model{
    max-width: 50%;
}

.categories_color {
    display: flex;
    column-gap: 10px;
}

@media (max-width: 620px) {

    #product-features-wrapper {
        width: 100%;
        overflow-x: auto;
    }
    
    #model_form ul li:before {
        position: static;
    }
}

@media (max-width: 920px) {

    .categories_color {
        flex-direction: column;
        align-items: center;
    }
    
    .col_right_model {
        max-width: 100%;
    }
}

/* ---------- /INTALLATION ------------ */

a.gallery img {
  width: 130px;
  display: inline-block;
  border: 1px solid #f3f3f3;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

a.gallery img:hover {
  border: 1px solid black;
}

.b-product-gallery {
	max-width: 363px;
	min-height: 363px;
	margin-bottom: -12px;
	position: relative;
}

.b-product-gallery-bigimg {
	max-width: 363px;
	height: 300px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	display: table-cell;
}

.b-product-gallery-bigimg img {
	max-width: 360px;
	max-height: 300px;
}

.b-product-gallery-bigimg a {
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.b-product-gallery-small-list {
	width: 363px;
	min-height: 62px;
	margin: 8px 0 0;
}

.b-product-gallery-small-list__item {
	width: 62px;
	height: 62px;
	margin-right: 15px;
	margin-bottom: 15px;
	overflow: hidden;
	display:inline-block;
	border: solid 2px #dce3ec;
}

.b-product-gallery-small-list__item.active, .b-product-gallery-small-list__item:hover { 
	border: solid 2px #fde403;
}

.b-product-gallery-small-list__item img { 
	width: 62px;
	max-width: 62px;
}

.b-product-gallery p {
	margin: -10px 0 20px 0;
}

/* ---------- PRODUCTS TABS ------------ */

.product-tabs {
	border-top: 5px #d2681c solid;
	margin-top: 30px;
	width: 100%;
    display: block;
    position: relative;
    z-index: 10;
    clear: both;
}

.product-tabs li {
	display: inline-block;
	position: relative;
	width: 50%;
	margin: 0;
	padding: 0;
}

.product-tabs li.active:before {
    transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    pointer-events: none;
    position: absolute;
    z-index: 10;
    content: '';
    border-style: solid;
    transition-duration: .3s;
    -ms-transition-duration: .3s;
    -webkit-transition-duration: .3s;
    transition-property: transform;
    -ms-transition-property: transform;
    -webkit-transition-property: transform;
    left: calc(50% - 10px);
    bottom: 0;
    border-width: 10px 10px 0 10px;
    border-color: #d2681c transparent transparent transparent;
}

.product-tabs li a {
	color: #d2681c;
    text-transform: uppercase;
    font-size: 15px;
    text-decoration: none;
    display:block;
	box-sizing:border-box;
    height: 39px;
	line-height: 39px;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
}

.product-tabs li path {
	fill: #bc682f;
}

.product-tabs li.active path {
	fill: #fff;
}

.product-tabs li.active a {
	background: #d2681c;
	color: #fff;
}

.product-tab-content {
	padding: 15px;
	background: #eeeeee;
	border-bottom: 3px #d7d4d4 solid;
}

.product-tab-content a {
	display: block;
	margin-top: 15px;
}

.product-tab-content a:first-child {
	margin-top: 0;
}

.product-tabs li svg {
	display: inline-block;
	margin: 0 4px -4px 0;
}

.product-tab-content a {
	color: #444;	
}

.product-tab-content a:hover {
	text-decoration: underline;
}

/* ---------- /PRODUCTS TABS ------------ */

/* ---------- AUTOCOMPLITE ------------ */

.ui-autocomplete {
    width: 100% !important;
	max-width: 925px !important;
    z-index: 9999 !important;
    border-bottom: 1px solid #d2681c !important;
    border-left: 1px solid #d2681c !important;
    border-right: 1px solid #d2681c !important;
	border-radius:0px !important;
	border-top:none !important;
}

.ui-state-hover {
	border-radius: 0px !important;
	border: none !important;
	background: #ecf6ff !important;
}

.ui-menu-item {
	border-top: 1px solid #eeeeee;
}

.ui-menu-item:nth-child(2n) {
	background: #fbfbfb !important;
}

.autocomplete_img {
    float: left;
	width: 60px;
	padding-top: 5px;
}

.autocomplete_content {
    padding-left: 20px;
    float: left;
	width: 800px;
	font-size: 12px;
}

.autocomplete_desc {
	 margin-top: 5px;
}

.autocomplete_name {
	font-weight: bold;
	color: #004e98;
}

.autocomplete_clear {
    clear: both
}
    
a.autocomplete_link {
    color: {$autocomplete_text_color} !important;
}

a.autocomplete_link:hover {
    background: #000 !important;
}
    
.autocomplete_price {
    color: #FDE403;
    font-weight: bold;
    padding: 2px 3px;
    background: #000;
}

/* ---------- /AUTOCOMPLITE ------------ */

/* ------------- ERROR -------------- */

.error_block {
	padding: 95px 0 160px 200px;
	font-size: 14px;
	background: url(./img/404.webp) right bottom no-repeat;
	background-color: rgba(255, 255, 255, 0.7);
	margin-top: 38px;
}

.error_block a {
	color: #004e98;
}

.error_block .border {
	margin-top: 40px;
	background: #d2681c;
	max-width: 500px;
	height: 4px;
}

.error_block a:hover {
	text-decoration: underline;
}

.error_block h1 {
	color: #004e98;
	font-size: 32px;
}

.error_block h1 span {
	color: #d2681c;
	font-size: 64px;
}

@media (max-width: 620px){
    
    .error_block {
    	padding: 95px 10px 160px 20px;
    	margin-top: 0;
    }
    
    .error_block h1 {
    	font-size: 22px;
    }
    
    .error_block h1 span {
    	font-size: 32px;
    }
}

/* ------------ /ERROR -------------- */

/* ------------ CATEGORY -------------- */

.category {
    width: 100%;
    padding: 15px 25px 15px 25px;
    background: #fff;
    box-sizing: border-box;
    margin-top: 10px;
    font-size: 14px;
    position: relative;
}

.category h3 {
    color: #023769;
    font-size: 18px;
}

#product-list {
    margin-top: 10px;
    width: 100%;
}

.product_list {
    margin-bottom: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

#product-list li {
    height: 456px;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-sizing: border-box;
    border: 1px #d9d9d9 solid;
    text-align: left;
    overflow: hidden;
    padding: 15px;
    position: relative;
}

.product-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.left-block {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.product_img_link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.product_img_link img {
    max-height: 200px;
    max-width: 200px;
    display: block;
    margin-top: 15px;
}

.product-name {
    font-size: 14px;
    font-weight: bold;
    color: #004e98;
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
}

.product-name:hover {
    text-decoration: underline;
}

.description {
    font-size: 13px;
    color: #4a4a4a;
    margin-bottom: 15px;
    flex-grow: 1;
}

#product-list .button {
    margin-top: auto;
    align-self: flex-end;
}

.label.button {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #4CAF50;
    padding: 3px 8px;
    font-size: 12px;
    z-index: 1;
}

.label.button.small {
    font-size: 11px;
}

@media (max-width: 1200px) {
 
    .product_list {
        grid-template-columns: repeat(2, 1fr);
    }

    #product-list li {
        text-align: center;
    }

    .product-name {
        text-align: center;
    }
}

@media (max-width: 800px) {
 
    .product_list {
        grid-template-columns: 1fr;
    }
 
    #product-list li {
        height: auto;
        min-height: 400px;
    }
 
    .product_img_link img {
        margin-top: 0;
    }
}

.sub-links li {
	display: inline-block;
}

.sub-links li:before {
	display: none;
}

.sub-links li a {
	color: #fff!important;
}

.sub-links li a:hover {
	text-decoration: none!important;
}

.intro {
	background: url(./img/cover.png) #004e98 left top repeat;
	max-width: 420px;
	color: #fff;
	padding: 20px;
	box-sizing: border-box;
	font-size: 14px;
	position: relative;
	margin-top: 15px;
}

.intro-block__wrapper {
    display: flex;
    column-gap: 15px;
}

.intro_img {
    max-width: 100%;
    margin: 20px 20px 0 0;
    width: 100%;
}

.intro ul {
    margin: 0 0 20px 0 !important;
}

.intro li {
    position: relative;
    padding-left: 18px;
    margin-top: 5px;
}

.intro li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #d2681c;
    background: none !important;
    margin: 0 !important;
    padding: 0;
}

@media (max-width: 1200px) {
    
    #description_block p:first-child {
        margin-top: 10px;
    }
    
    .intro_img img {
        max-width: 100%;
    }
    
    .intro-right {
        width: 50%;
        max-width: 520px;
        flex-shrink: 0;
    }
}

@media (max-width: 980px) {
    
    .intro-block__wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .intro_img {
        margin: 0;
    }
    
    .intro-right {
        width: 100%;
        text-align: center;
    }
    
    .intro {
    	margin: 0 auto;
    	text-align: left;
    }
    
    .category h1 {
        font-size: 18px;
    }
    
    .category h3 {
        font-size: 16px;
    }
}

/* ------------ /CATEGORY -------------- */

/* -------------- PAGE ---------------- */

.page{
	width: 100%;
	padding: 15px 25px 15px 25px;
	background: #fff;
	box-sizing: border-box;
	margin-bottom: 20px;
	font-size: 14px;
}

/* -------------- /PAGE ---------------- */

/* -------------- BUY FORM ---------------- */

#buy-form {
	max-width: 500px;
	padding: 30px;	
}

#buy-form .form-intro {
	font-size: 14px;
	text-align: center;
	font-weight: bold;	
}

#buy-form a {
    color: #004e98;
}

#buy-form a:hover {
	text-decoration: underline;
}

/* -------------- /BUY FORM ---------------- */

/* ---------------- NEWS ------------------ */

.news-list {
	width: 100%;
	padding: 15px 25px 20px 25px;
	background: #fff;
	box-sizing: border-box;
	margin-top: 40px;
	margin-bottom: 10px;
	font-size: 14px;
	clear: both;
}

.news-block{
	width: 100%;
	padding: 15px 25px 35px 25px;
	background: #fff;
	box-sizing: border-box;
	margin-bottom: 10px;
	font-size: 14px;
	clear: both;
}

.news-block .news{
	display: flex;
	flex-wrap: wrap;
}

.news-block .news li {
	width: 50%;
}

.news-latest {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.news-latest li {
	max-width: 307px;
    height: 490px;
    display: block;
    background: #fff;
    margin: 10px 10px 10px 0;
    box-sizing: border-box;
    border: 1px #d9d9d9 solid;
    text-align: left;
	padding: 10px;
	position: relative;
}

.news-latest li:nth-child(4n) {
	margin: 10px 0 10px 2px;
}

.news-latest .img {
	width: 290px;
	height: 290px;
	background: #d2681c;
	margin: -20px 0 25px -10px;
	position: relative;
    z-index: 3;
}

.news-latest .img:after {
    content: '';
    position: absolute;
    width: 295px;
    height: 295px;
    background: #eeeeee;
    margin: 6px 0 0 -286px;
    z-index: -11;
}
.news-latest .img img.active {
	width: 290px;
	height: 290px;
}

.news-latest .text .button {
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.news-latest .img .user {
	position: absolute;
	text-align: right;
	right: 10px;
	bottom: 10px;
	color: #868686;
}

.news-latest .img .user span, .credentials span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 0;
}

.news-latest .img .date {
	position: absolute;
	top: 10px;	
}

@media (max-width: 620px) {
    
    .news-block .news{
    	flex-direction: column;
    }
    
    .news-block .news li {
    	width: 100%;
    }
}

@media (max-width: 420px) {
    
    .news-block .news{
    	flex-direction: column;
    }
    
    .news-block .news li {
    	width: 100%;
    }
    
    .news .text {
        padding: 0;
        margin-top: 25px;
    }
    
    .news .img img {
        position: relative;
    }
    
    .news .img:after {
        left: 40px;
    }
    
     .news-latest li {
        width: 100%;
        max-width: 100%;
        margin: 10px 0 !important;
    }
    
    .news-latest li:nth-child(4n) {
        margin: 10px 0 !important;
    }
    
    .news-latest .img {
        width: 100%;
        margin: -20px 0 25px 0;
    }
    
    .news-latest .img:after {
        width: 255px;
        margin: 6px 0 0 -246px;
    }
    
    .news-latest .img img.active {
        width: 100%;
    }
}

.credentials span {
	color: #868686;
}

.credentials .date {
	display: inline-block;
	color: #fff !important;
	margin-left: 10px;	
}

.news-latest .text a.title {
    color: #023769;
    font-weight: bold;
    text-transform: uppercase;
}

.news-latest .text a.title:hover {
    color: #d2681c;
}

.col_left .news-latest li {
	width: 270px;
	height: 450px;
	margin-left: 0px;
}

.col_left .news-latest .img {
	width: 250px;
	height: 250px;
	margin: -20px 0 25px -11px;
}

.col_left .news-latest .img:after {
    width: 251px;
    height: 256px;
    margin: 6px 0 0 -240px;
}

.col_left .news-latest .img img.active {
	width: 250px;
	height: 250px;
}

/* ---------------- /NEWS ------------------ */

.company-img {
    float: left; 
    margin: 0px 10px 10px 0px;  
}

a.gallery img {
    margin-top: 5px;
}

@media (max-width: 800px) {
    
    .company-img {
        float: none;
        width: 100%;
    }
}