*{
  margin:0;
  padding:0;
  outline: none;
  box-sizing:border-box;
}
body {
  font-family: 'ProximaNova', sans-serif;
  font-weight: 400;
  font-size: 18px;
  min-width: 320px;
  position: relative;
  line-height: 1.3;
  -webkit-font-smoothing: antialised; 
  overflow-x:hidden;
  color: #7b7b7b;
  background:#FAFAFA;
}
a{
  text-decoration: none;
  color:#7b7b7b;
}
input, textarea{
  font-family: 'ProximaNova', sans-serif !important;
}
body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: red; 
}

body input:required:valid,
body textarea:required:valid {
  color: green; 
}

.hidden {
  display: none; 
}
.container{
  max-width: 1300px;
  margin: 0 auto;
  width: 95%;
  position: relative;
}
.container-small{
  max-width: 450px;
  margin: 0 auto;
  width: 95%;
  position: relative;
}
h1{
  font-size: 41px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
h2{
  font-size: 32px;
  color: #1c1c1c;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3{
  font-size: 22px;
  color: #4B4B4B;
  font-weight: 700;
  margin-bottom: 30px;
}
img{
  max-width: 100%;
}
select{
  background: transparent;
  border:none;
  font-size: 17px;
  line-height: 20px;
  font-weight: 700;
  color: #848484;
}
section{
  padding: 60px 0;
}
p{
  margin-bottom: 10px;
}
header{
  background: #000;
  width: 100%;
  position: fixed;
  lefT:0;
  top:0;
  padding: 10px 0;
  color:#fff;
  font-size: 16px;
  z-index: 99;
}
header .grid-2{
  align-items: center;
}
header .grid-1-3{
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-column-gap: 20px;
  align-items: center;

}
.right-header{
  text-align: right;
}
.right-header a{
  border-bottom: 1px solid #fff;
  color:#fff;
  display: inline-block;
  margin-bottom: 5px;
}
.right-header p{
  margin-bottom: 0;
}
/*homepage*/
.banners{
 min-height: 90vh;
 background-image: url(img/start-dt.webp);
 background-size: cover;
 background-position: center;
  display: flex;
  height: 100%;
  align-items: end;
}
.banner-content_slider{
  height: 280px;
  background: #E6E6E6;
}
.banner-content_banners{
  display: grid;
  grid-column-gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
}
.banner-content_banners_left{
  background: #fff;
  min-height: 100px;
  display: grid;
  position: relative;
  align-items: center;
}
.banner-content_banners_right{
  background: #fff;
  display: grid;
  position: relative;
  align-items: center;
}
.banner-content_banners_image{
  position: absolute;
  bottom: -2px;
  right: 0;
}
.banner-content_banners_right .banner-content_banners_image{
 bottom: -20px;
}
.banner-content_banners_text{
  width:60%;
  padding:0 30px; 
}
.banner-content_banners_text h2{
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
  color: #F89630;
}
.banner-content_banners_text p{
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  width: 80%;
  color: #2B2B2B;
}
.categories{
  padding: 80px 0;
}
.news-category{
  display: grid;
  grid-column-gap: 30px;
  grid-template-columns: 275px 1fr;
}
.news-container_item{
  height: 180px;
  background: #fff;
  margin-top: 15px;
  padding: 15px 20px;
  position: relative;
}
.news-container_item h4{
  font-size: 22px;
  font-weight: 600px;
  position: absolute;
  bottom: 15px;
  left: 20px;
  text-transform: uppercase;
}
.news-container_item .data{
font-size: 15px;
}
.all_news{
  font-size: 16px;
}
.categories-content_items{
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr;
}
.categories-content_item{
  width: 100%;
  border: 1px solid #ECECEC;
  min-height: 330px;
  transition: .5s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.categories-content_item:hover{
  background: #F89630;
}
.categories-content_item_bg_text{
  position: absolute;
  top: 0;
  left: 0;
  font-size: 100px;
  z-index: 1;
  font-weight: 900;
  color:#F4F4F4;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  transition: .5s;
  line-height: 80px;
}
.categories-content_item:hover .categories-content_item_bg_text{
  color: #F59128;
}
.categories-content_item_name h3{
  text-transform: uppercase;
  font-size: 33px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.categories-content_item_name h4{
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  margin-top: 40px;
  color: #2b2b2b;
  position: relative;
  z-index: 2;
}
.categories-content_item:hover .categories-content_item_name h3, .categories-content_item:hover .categories-content_item_name h4{
  color: #fff;
}
.categories-content_item_image{
  position: relative;
  z-index: 2;
}
.about-container{
  display: grid;
  grid-column-gap: 30px;
  grid-template-columns: 275px 1fr;
  padding: 80px 0;
}
.about-content-items{
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  grid-column-gap: 100px;
}
.about-content-item{
  min-height: 120px;
  position: relative;
  margin-bottom: 80px;
  align-items: center;
  display: grid;
  width: 80%;
}
.about-content-item_bg_text{
  position: absolute;
  font-size: 140px;
  font-weight: 900;
  color: rgba(150, 150, 150, 0.11);
  width: 80%;
  text-align: center;
}
.more-products-container{
  display: grid;
  grid-column-gap: 30px;
  grid-template-columns: 275px 1fr;
}
.more-products{
  padding: 80px 0;
}
.more-products_content{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.more-products_content_item{
  background: #fff;
  min-height: 260px;
  border: 1px solid #ECECEC;
  padding: 20px;
  transition: .5s;
}
.more-products_content_item:hover{
  filter: drop-shadow(0px 0px 28px rgba(0, 0, 0, 0.15));
}
.more-products_content_item h3{
  color: #1C1C1C;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.more-products_content_item ul li{
  list-style-type: none;
  font-size: 16px;
  line-height: 17px;
  margin-bottom:10px;
}
.more-products_content_item ul li a{
  color: #1C1C1C;
  transition: .5s;
}
.more-products_content_item ul li a:hover{
  text-decoration-line: underline;
}
.more-products_content_item:nth-child(1){
  background-image: url(img/more_product1.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}
.more-products_content_item:nth-child(2){
  background-image: url(img/more_product2.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
.more-products_content_item:nth-child(3){
  background-image: url(img/more_product3.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
.more-products_content_item:nth-child(4){
  background-image: url(img/more_product4.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}
.more-products_content_item:nth-child(6){
  background-image: url(img/more_product6.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
.more-products_content_item:nth-child(7){
  background-image: url(img/more_product7.png);
  background-repeat: no-repeat;
  background-position: center right;
}
.more-products_content_item:nth-child(8){
  background-image: url(img/more_product8.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
.more-products_content_item:nth-child(9){
  background-image: url(img/more_product9.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}
.more-products_content_item:nth-child(10){
  background-image: url(img/more_product10.png);
  background-repeat: no-repeat;
  background-position: center right;
}
.more-products_content_item:nth-child(11){
  background-image: url(img/more_product11.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
.more-products_content_item.akcii{
  grid-column-start: 2;
  grid-column-end: 4;
}
.more-products_content_item.akcii .badge_akcii{
  font-size: 29px;
  font-weight: 600;
  padding: 30px 0;
  background: #6D10B6;
  width: 200px;
  color:#fff;
  text-align: center;
  margin-bottom: 40px; 
}
.more-products-container_sidebar_content{
    background: #F89630;
    border: 1px solid #ECECEC;
    box-sizing: border-box;
    padding:100px 25px;
    font-size: 30px;
    color: #fff;
}
.block-sale{
  background: #fff;
  margin: 80px 0;
}
.block-sale_container{
  display: grid;
  align-items: center;
  min-height: 155px;
  grid-template-columns: 1fr 1fr 1fr
}
.block-sale_container_text h3{
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1c1c1c;
}
.block-sale_container_text h4{
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400;
  color: #1c1c1c;
}
a.action{
  padding: 15px 40px 15px 25px;
  background: #6D10B6;
  border-radius: 4px;
  color: #F89630;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
}
a.action img{
  margin-right: 35px;
  position: relative;
  top: 4px;
}
.block-sale_container_image{
  position: relative;
  height: 155px;
}
.block-sale_container_image img{
  position: absolute;
  bottom: 0;
  left: 0;
}


/*page*/
.content-sidebar{
  display: grid;
  grid-column-gap: 30px;
  grid-template-columns: 275px 1fr;
}
.content-no-sidebar{
  display: grid;
  grid-column-gap: 30px;
  grid-template-columns: 1fr 275px ;
}
.bread{
  margin-top: 50px;
  font-size: 16px;
}
.bread a{
  color: #181818;
}
.title_description{
  margin-top: 30px;
  color: #181818;
  font-size: 17px;
  line-height: 20px;
}
aside{
  margin-top: 60px;
}
.widget{
  margin-bottom: 60px;
}
.wiget-title h3{
  font-weight: 600;
  color: #4b4b4b;
  margin-bottom: 15px;
}
.wiget-content{
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border: 1px solid #EEEEEE;
}
.wiget-content a{
  color: #4b4b4b;
  display: block;
}
.wiget-content ul li{
  list-style-type: none;
  padding:10px 20px;
  display: block;
  border-bottom: 1px solid #EEEEEE;
  background: #fff;
}
.wiget-content ul li:last-child{
  border-bottom: none;
}
.sub-category{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  margin-top: 30px;
  align-items: center;
}
.sub-category_item{
  height: 80px;
  border: 1px solid #ECECEC;
  background: #fff;
  font-size:19px; 
  overflow: hidden;
}
.sub-category_item a{
  display: block;
  width: 100%;
  height: 100%;
  line-height: 80px;
  padding:0 50px; 
  color: #1c1c1c;
}
.category-catalog{
  padding: 80px 0;
}
.category-catalog_top{
  margin-bottom: 20px; 
  display: grid;
  grid-template-columns: 1fr 200px 100px;
}
.grid-list{
  text-align: right;
}
.grid-list .list{
  margin-right: 20px;
}
.grid-list .list svg{
stroke:#C4C4C4;
}
.grid-list .list.active svg{
stroke:#6D10B6;
}
.grid-list .grid svg {
fill:#C4C4C4;
}
.grid-list .grid.active svg {
fill:#6D10B6;
}
.category-catalog_content.grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.category-catalog_content.grid .product{
  background: #fff;
  border: 1px solid #dedede;
  padding: 20px;
}
.product-top .code{
  text-align: right;
}
.category-catalog_content.grid .product .product-bottom, .product-top{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.product-top{
  margin-bottom: 10px;
}
.category-catalog_content.grid .product .product-image{
  text-align: center;
  max-height: 195px;
  margin-bottom:20px; 
}
.category-catalog_content .title{
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  color:#181818;
  margin-bottom: 20px;
}
.category-catalog_content .price{
  font-size: 17px;
  font-weight: 700;
  color: #181818;
}
.category-catalog_content .stock, .product-top .stock{
  font-weight: 600;
  color:#19D24D;
  font-size: 16px; 
}
.add-cart{
  height: 45px;
}
.add-cart a{
  background: #FFFFFF;
  border: 1px solid #F89630;
  box-sizing: border-box;
  display: block;
  line-height: 45px;
  text-align:center;
  font-size: 17px;
  color: #323232;
  border-radius: 4px;
  transition: .5s;
  min-width: 120px;
}
.add-cart a:before{
  content: '';
  width: 20px;
  height: 17px;
  position: relative;
  top: 3px;
  display: inline-block;
  margin-right: 10px;
  background-image: url(img/cart_o.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: .5s
}
.add-cart a:hover{
  background: #F89630;
  color:#fff;
}
.add-cart a:hover:before{
  background-image: url(img/cart_w.svg);
}
table{
  width: 100%;
  border:none;
}
thead tr td{
  height: 60px;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  background-color: #F4F4F4;
  text-align: center;
  border: none!important;
}
table tr td:first-child{
  text-align: left;
}
.category-catalog_content.list  .product .product-image{
display: none;
}
.tcontent .product{
  display: grid;
  grid-template-columns: 4fr 1fr 1fr 2fr;
  height: 60px;
}
table tr td{
   height: 60px;
  align-items: center;
  border-bottom: 1px solid #D0D0D0;
  text-align: center;
  padding:0 40px;
}
.category-catalog_content  table tr td .title{
  text-align: left;
  margin-bottom: 0;
}
.category-catalog_content  table tr td .title h4, .category-catalog_content  table tr td .code{
  font-size: 16px;
  font-weight: 400;
  color:#181818;
}
.category-catalog_content  table tr td div{
  display: inline-block;
}
.category-catalog_content  table tr td div.stock{
  padding-right: 20px; 
}
.category-catalog_content  table tr td .add-to-cart {
  height: 40px;
  line-height: 40px;
}
.pagination{
  text-align: center;
  padding:50px 0;
}
.pagination a{
  display: inline-block;
  margin:0 20px;
  color: #bfbfbf;
  font-weight: 600;
}
.pagination span{
color: #424242;
margin:0 20px;
font-weight: 700;
}
.search-result_info{
  padding: 25px 0;
  font-size: 17px;
  line-height: 21px;
}
.search-result_info span{
  color: #181818;
}
.search-result_list_item{
  border-bottom: 1px solid #D0D0D0;
  display: grid;
  grid-template-columns: 50px 1fr;
}
.search-result_list_item.product .search-result_list_item_content{
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 100px;
}
.search-result_list_item_content{
  padding:25px 20px;
}
.search-result_list_item_number{
  padding:25px 10px;
  font-size: 17px;
  color: #181818;
  font-weight: 700;
}
.search-result_list_item.product h3{
 color: #181818;
 font-weight: 400;
 font-size: 16px; 
}
.search-result_list_item.product .stock{
  color:#19D24D;
  font-weight: 600;
  font-size: 16px;
}
.search-result_list_item.post h3{
font-size: 16px;
 color: #181818;
}
.search-result_list_item.post p{
 color: #181818;
 width: 70%;
}
.search-result_list_item.post .read_more{
  font-size: 16px;
  color: #F89630;
  text-decoration: underline;
  display: inline-block;
  margin-top: 15px;
}
.product-content_image-info{
  background: #fff;
  border: 1px solid #DEDEDE;
  padding: 20px;
}
.product-image{
  text-align: center;
}
.product-content_image_info{
  display: grid;
  grid-template-columns: 400px 1fr;
  grid-column-gap: 50px;
}
.product-content_info_price_buy{
  border: 1px solid #DEDEDE;
  padding: 25px;
}
.product-content_info_price .price{
  font-size: 39px;
  color: #1c1c1c;
  margin-bottom: 30px;
  font-weight: 700;
}
.product-content_info_price p{
  font-weight: 600;
  margin-bottom: 10px;
}
.number input{
  width: 40px;
  text-align: center;
  height: 40px;
  margin: 0 20px;
  font-size: 17px;
  font-weight: 700;
  color: #424242;
  border: 1px solid #DEDEDE;
}

.product-content_info_buy a{
  display: block;
  width: 100%;
  padding:18px 0;
  text-align: center; 
}
.buy-one-click{
 font-weight: 600;
font-size: 18px;
line-height: 22px;
text-transform: uppercase;
color: #3C3C3C;
text-align: center;
 padding:10px 0;
 border: 1px solid #F89630;
 border-radius: 4px;
 margin-top: 20px;
 transition: .5s;
}
.buy-one-click:hover{
background: #F89630;
color:#fff;
}
.product-content_info_price_buy{
  display: grid;
  grid-template-columns: 1fr 230px;
  margin-bottom: 30px;
}
.product_description{
  padding:50px 0;
}
.product_description h3{
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 10px;
}
.product_description p{
  font-size:16px;
  color:#181818;
  margin-bottom:20px; 
}
.product_description p:last-child{
  margin-bottom: 0;
}
.product-content_info_table h3{
  font-size: 20px;
  color: #1c1c1c
}
.product-content_info_table table tr td {
    height: 30px; 
    align-items: center; 
    border-bottom: none; 
    text-align: left;
    padding: 0;
}
.product-content_info_table .read_more{
  font-weight: 600;
font-size: 16px;
line-height: 20px;
text-decoration-line: underline;
color: #F89630;
}
.table-info{
  margin-bottom: 10px;
  max-height: 160px;
  overflow: hidden;
  transition: .5s;
}
.table-info.active{
 max-height:600px;
}
.product-content_info_banner_item img{
  margin-bottom: 20px;
  display: block;
}
.product-content_info_table_banner{
  display: grid;
  grid-template-columns: 1fr 110px;
}
.cart{
  padding: 50px 0;
}
.cart h4{
   font-size: 16px;
  font-weight: 400;
  color:#181818;
}
.cart .price{
  font-weight: bold;
font-size: 17px;
line-height: 21px;
color: #181818;
}
.total_checkout{
  display: grid;
  grid-template-columns: 1fr  1fr 260px;
  align-items: center;
  margin-top: 35px;
}
.total{
  font-weight: 600;
font-size: 22px;
line-height: 20px;
color: #848484;
}
.total b{
  color: #000;
}
.no-avtorizate{
  font-weight: 600;
font-size: 18px;
line-height: 22px;
text-decoration-line: underline;
color: #F89630;
text-align: center;
}
.total_checkout a.action{
  padding:15px 25px;
}
.delivery form h2{
  font-size: 24px;
  margin-top: 45px;
}
.contact-delivery_item{
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}
.contact-delivery_item input{
  background: #FFFFFF;
border: 1px solid #DADADA;
box-sizing: border-box;
height: 55px;
font-size: 15px;
line-height: 20px;
color: #B7B7B7;
padding: 0 40px;
width: 100%;
}
.input_icon{
  position: relative;
}
.input_icon img{
  position: absolute;
  top: 50%;
    margin-top: -8px;
    left: 15px;
}
.payment-method label{
  display: block;
  color:#181818;
  font-weight: normal;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 15px;
}
input[type="checkbox"]{
  width: 15px;
  height: 15px;
  background: #FFFFFF;
  border: 1px solid #DADADA;
  box-sizing: border-box;
  margin-right: 10px;
  position: relative;
  top: 2px;
}
input.action{
  padding: 15px 25px 15px 25px;
  background: #6D10B6;
  border-radius: 4px;
  color: #F89630;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  border:none;
}
.politic_submit{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding:30px 0 50px; 
}
.politic_submit .submit{
  text-align: right;
}

/*filial*/
.pickup h2{
  padding: 40px 0;
  font-weight: bold;
font-size: 24px;
color: #1C1C1C;
}
.filials{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}
.filial h3{
  font-weight: 600;
font-size: 20px;
line-height: 21px;
text-transform: uppercase;
color: #7D7D7D;
margin-bottom: 15px;
}
.filial p{
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #181818;
  margin-bottom: 10px;
}
.filial a{
  font-weight: 700;
  color: #F89630
}
.filial img{
  margin-right: 5px;
  position: relative;
  top:5px;
}
.delivery p{
 font-size: 17px;
line-height: 28px;
color: #000000;
}
.delivery{
  padding: 80px 0;
}
.delivery h2{
  margin-bottom: 0;
}
/*contact*/
.contact{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  padding: 60px 0;
}
.requisites{
  padding: 60px 0;
}
.contact .filial{
margin-bottom: 40px;
}
.contect-form h2, .requisites h2{
font-weight: bold;
font-size: 24px;
margin-bottom: 10px;
color: #1C1C1C;
}
.contect-form p,.requisites p{
font-weight: normal;
font-size: 16px;
line-height: 19px;
color: #181818;
margin-bottom: 10px;
}
.contect-form input{
  background: #FFFFFF;
border: 1px solid #DADADA;
box-sizing: border-box;
height: 55px;
font-size: 15px;
line-height: 20px;
color: #B7B7B7;
padding: 0 40px;
width: 100%;

}
.contect-form .input_icon{
margin-bottom: 10px;
}
textarea{
  background: #FFFFFF;
  border: 1px solid #DADADA;
  padding: 10px 20px;
  height: 85px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px; 
  font-size: 15px;
line-height: 20px;
}
.contect-form input[type="submit"]{
  width: auto;
  font-size: 16px;
  line-height: 21px;
  color: #323232;
  border: 1px solid #F89630;
box-sizing: border-box;
border-radius: 4px;
}
.maps img{
  width: 100%;
  height: auto;
}
/*lc_menu*/
.lc_menu{
  border-right: 1px solid #DADADA;
}
.lc_menu ul li{
  list-style-type: none;
  transition: .5s;
}
.lc_menu ul li:hover, .lc_menu ul li.active{
  background: #F89630;
}
.lc_menu ul li a{
  display: block;
  padding:20px 30px;
}
.lc_menu ul li:hover a, .lc_menu ul li.active a{
  color:#fff;
}
.login-page{
  margin:60px 0;
  padding:20px 0;  
}
.login-page p, .login-page b{
  font-size: 17px;
line-height: 21px;
color: #181818;
margin-bottom: 10px;
}
.login-page  a.underline{
  font-size: 16px;
line-height: 21px;
text-decoration-line: underline;
color: #F89630;
}
.login-page  a.underline img{
  margin-right: 10px;
  position: relative;
  top: 2px;
}
.lc-delivery{
  margin-bottom: 20px;
}
.lc-delivery b, .lc-delivery-new b{
  display: block;
}
.lc-delivery p{
  display: inline-block;
  margin-right: 40px;
}
.lc-delivery-new{

}
.lc-delivery-new form{
  width: 100%;
  max-width: 425px;
}
.lc-delivery-new input{
  width: 100%;
  max-width: 200px;
  height: 45px;
  margin-bottom: 10px;
  margin-right: 10px;
  font-size: 15px;
  line-height: 21px;
  color: #848484; 
  border: 1px solid #DADADA;
  display: inline-block;
  padding-left: 15px;
    box-sizing: border-box;
    background: #fff;
}
.lc-delivery-new input[type="submit"]{
  padding-left: 0;
  width: auto;
  background: #FFFFFF;
  border: 1px solid #F89630;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 16px;
  line-height: 21px;
  color: #323232;
padding:0 25px ;
}
.new_adress p{
  text-decoration-line: underline;
}
.new_adress{
  max-height: 0;
  overflow: hidden;
  transition: .5s
}
.new_adress.active{
  max-height: 1000px;
}
/*lc-history*/
.table-history-head{
  background: #F4F4F4;
  display: none;
  grid-template-columns: 1fr 1fr 3fr 1fr 1fr;
  padding:20px 0;
  text-align: center;
}
.table-history-body{
  margin-top: 25px;
  border-top: 1px solid #D0D0D0;
  display: grid;
  grid-template-columns: 1fr 1fr 3fr 1fr 1fr;
  text-align: center;
   padding:20px 0;
}
.table-history-body .sostav{
  text-align: left;
}
.table-history-footer{
  background: #F4F4F4;
  padding:10px 25px; 
}
.table-history-footerb{
  color:#848484;
}
.table-history:first-child .table-history-head{
  display: grid;
}
.status .ok{
font-weight: 600;
font-size: 16px;
line-height: 21px;
color: #19D24D;
}
.status .not-ok{
  font-weight: 600;
font-size: 16px;
line-height: 21px;
color: #727272;
}


/*news*/
.news{
  padding: 40px 0;
}
.news h2{
  font-weight: bold;
font-size: 24px;
color: #1C1C1C;
margin-bottom: 10px;
}
.news p{
  font-size: 17px;
line-height: 24px;
color: #000000;
margin-bottom: 15px;
}
.news data{
	font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-bottom: 5px;
display: block;
color: #ADADAD;
}
.read-more{
	font-weight: normal;
font-size: 16px;
line-height: 21px;
text-decoration-line: underline;
color: #F89630;
}
.news-with-img{
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-column-gap: 30px;
}
.news-image{
	background: #fff;
	border: 1px solid #DEDEDE;
	min-height: 175px;
}
.news-item{
	margin-bottom: 35px;
}


.akcii{
  padding: 40px 0;
}
.akcii h2{
  font-weight: bold;
font-size: 24px;
color: #1C1C1C;
margin-bottom: 10px;
}
.akcii p{
  font-size: 17px;
line-height: 24px;
color: #000000;
margin-bottom: 15px;
}
.akcii data{
	font-weight: 600;
font-size: 14px;
line-height: 17px;
margin-bottom: 5px;
display: block;
color: #ADADAD;
}
.akcii-with-img{
	display: grid;
	grid-template-columns: 1fr;
	grid-row-gap: 15px;
}
.akcii-image{
	background: #fff;
	border: 1px solid #DEDEDE;
	min-height: 225px;
}
.akcii-item{
	margin-bottom: 35px;
}



.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gap-30{
  grid-column-gap: 30px;
}
.tabs_wrapper .tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    margin-top: 25px;
}
.tabs_wrapper .tabs .tab {
    font-weight: 300;
    text-transform: uppercase;
    height: 60px;
    border: 1px solid rgba(73, 89, 102, 0.3);
    width: 100%;
    font-style: normal;
    font-size: 20px;
    line-height: 20px;
    color: #495966;
    text-align: center;
    display: grid;
    align-items: center;
    cursor: pointer;
}
.tabs_wrapper .tabs .tab:first-child {
    border-radius: 5px 0px 0px 5px;
}
.tabs_wrapper .tabs .tab.active {
    background: #495966;
    color: #fff;
}
.tabs_wrapper .tabs .tab:last-child {
    border-radius: 0 5px 5px 0;
}
.list_dots {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}
.list_dots:before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #495966;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    left: 0;
}


.kompl_name {
    font-style: normal;
    font-weight: 700;
    min-height: 55px;
    font-size: 26px;
    line-height: 26px;
    color: #495966;
    border-bottom: 1px solid rgba(73, 89, 102, 0.3);
    padding-bottom: 10px;
}
.kompl_text {
    font-style: normal;
    font-weight: 400;
    line-height: 130.6%;
    color: #495966;
    margin-bottom: 20px;
}
.kompl_text li {
    margin-bottom: 10px;
    margin-left: 20px;
}
.kompl_text b {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    display: block;
    line-height: 18px;
    color: #495966;
    margin-bottom: 30px;
}
.complectacii .grid-item{
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
form{
  margin-top: 20px;
}
form input{
  font-family: 'ProximaNova', sans-serif;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(73, 89, 102, 0.3);
  padding: 0 20px;
  margin-bottom: 20px;
  font-size: 18px;
  border-radius: 10px;
}
form input[type=submit]{
  background: #495966;
  color: #fff;
}
.text-center{
  text-align: center;
}
h2.text-center {
  margin-bottom: 0px;
}

footer{
  background: #000;
  color:#fff;
  padding: 60px 0;
}
footer p{
  margin-top: 40px;
}
.flex{
  display: flex;
  align-items: center;
  justify-content: end;
}
.text-left.flex{
  justify-content: start;
}
.left-header{
  margin-left: 20px;
}
.left-header p{
  margin-bottom: 0;
}
.init-popup{
  margin-right: 40px;
  color: #fff;
  border-bottom: 1px solid;
}
#popup{
  max-width: 450px;
  padding: 20px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  background: #FAFAFA;
}
.grid-2-1{
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 20px;
  margin-bottom: 20px;
}
.grid-4{
  display: grid;
  grid-template-columns: 1fr 1fr  1fr 1fr;
  grid-column-gap: 20px;
}