@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&subset=cyrillic');
@import url('font/stylesheet.css');

::-webkit-scrollbar-button {
    background-image: url('');
    background-repeat: no-repeat;
    width: 5px;
    height: 0px
}
/* iframe{
       margin-left:30%;
} */
::-webkit-scrollbar-track {
    background-color: #ecedee
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-color: #f89e82;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 175, 159, 0.88);
}

::-webkit-resizer {
    background-image: url('');
    background-repeat: no-repeat;
    width: 4px;
    height: 0px
}

::-webkit-scrollbar {
    width: 4px;
}


.nav-cart{
 position:fixed;
    /* абсолютно позиционируем */

    /* относительно левого края панели */
    right: calc( 50px);
    /* отступ от верхнего края панели */
    top: 85px;
    
    font-size: 29pt;
    line-height: 1;
    /* всегда поверх других элементов страницы */
    z-index: 2001;
    /* анимируем цвет текста при наведении */

        transform: rotate(0deg) scale(1);
    animation: pulse 2s linear infinite;



 
       }
       
     .nav-cart::after {
    /* background:blue; */
    background:inherit;
    border-radius: 50%; /* To make circle */
    content:'';
    position:absolute;
    /* top: -100px;*/
    top: -50%; /* Inherit properties of parent */
    /* left: -100px; */
    left:0;
    height: 100px;
    width:100px;
}
.nav-cart::before {
  /*  background:green; */
    background:inherit; 
    border-radius: 50%; /* To make circle */
    content:'';
    position:absolute;
    top:0; 
    right:-50%; /* Inherit properties of parent */
    height: 100px;
    width:100px;
}

@keyframes pulse{
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }10% {
        transform: rotate(0deg) scale(1.3);
    }
    20% {
        transform: rotate(0deg) scale(1);
    }
    30% {
        transform: rotate(0deg) scale(1);
    }
    40% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate( 0deg) scale(1);
        opacity: 1;
    }60% {
        transform: rotate( 0deg) scale(1);
    }
     70% {
     transform: rotate(0deg) scale(1);
     }
    100% {
        transform: rotate( 0deg) scale(1);
        opacity: 1;
    }
}
       
      

       
       


.mappc{
       margin-top: 30px;
       
}

body {
    background-color: #f5f8ef;
    font-family: 'Helvetica';
    color: rgb(#595959);
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    font: inherit;
}
h1.glav{
    text-align:center;
    font-size:2em;
    font-weight:600;
     font-family: Helvetica;
    
}

  .payform-tinkoff {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 2px auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 250px;
    }
    .payform-tinkoff-row {
        margin: 2px;
        border-radius: 4px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        border: 1px solid #DFE3F3;
        padding: 15px;
        outline: none;
        background-color: #DFE3F3;
        font-size: 15px;
    }
    .payform-tinkoff-row:focus {
        background-color: #FFFFFF;
        border: 1px solid #616871;
        border-radius: 4px;
    }
    .payform-tinkoff-btn {
        background-color: #FBC520;
        border: 1px solid #FBC520;
        color: #3C2C0B;
    }
    .payform-tinkoff-btn:hover {
        background-color: #FAB619;
        border: 1px solid #FAB619;
    }
</style>
<script src="https://securepay.tinkoff.ru/html/payForm/js/tinkoff_v2.js"></script>
<form class="payform-tinkoff" name="payform-tinkoff" onsubmit="pay(this); return false;">
    <input class="payform-tinkoff-row" type="hidden" name="terminalkey" value="TinkoffBankTest">
    <input class="payform-tinkoff-row" type="hidden" name="frame" value="false">
    <input class="payform-tinkoff-row" type="hidden" name="language" value="ru">
    <input class="payform-tinkoff-row" type="text" placeholder="Сумма заказа" name="amount" required>
    <input class="payform-tinkoff-row" type="hidden" placeholder="Номер заказа" name="order">
    <input class="payform-tinkoff-row" type="text" placeholder="Описание заказа" name="description">
    <input class="payform-tinkoff-row" type="text" placeholder="ФИО плательщика" name="name">
    <input class="payform-tinkoff-row" type="email" placeholder="E-mail" name="email">
    <input class="payform-tinkoff-row" type="tel" placeholder="Контактный телефон" name="phone">
    <input class="payform-tinkoff-row payform-tinkoff-btn" type="submit" value="Оплатить">
</form>  
Сумма заказа указывается в рублях.

Установка виджета с чеком
Вставьте блоки кода ниже на ваш сайт в место, где должна располагаться кнопка "Оплатить":

<style>
    .payform-tinkoff {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 2px auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 250px;
    }
    .payform-tinkoff-row {
        margin: 2px;
        border-radius: 4px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        border: 1px solid #DFE3F3;
        padding: 15px;
        outline: none;
        background-color: #DFE3F3;
        font-size: 15px;
    }
    .payform-tinkoff-row:focus {
        background-color: #FFFFFF;
        border: 1px solid #616871;
        border-radius: 4px;
    }
    .payform-tinkoff-btn {
        background-color: #FBC520;
        border: 1px solid #FBC520;
        color: #3C2C0B;
    }
    .payform-tinkoff-btn:hover {
        background-color: #FAB619;
        border: 1px solid #FAB619;
    }



@media screen and (min-width: 768px)
{
       .mappc{
             display: block;
    margin-left: auto;
    margin-right: auto;
       margin-top: 50px;
       width:1200px;
       height:600px;
       
}



.modalp{
    display:flex;
    max-width:39%;
    margin-top:5px;
    margin-left:15px;
    margin-right:10px;
}
}
.tovar-page-product-img{
      margin-right:10px;
}
.primg{
      margin-top: 20px;
     display: flex;
}
.imggal{
       	display: flex;
	flex-direction: row;

}
/* .imggal3 {
       margin-left:-30px;
      
     

} */


.imggal1{
    max-width: 595px;
    max-height: auto;
    margin-top: 5px;
 
    
}

.pc{
    margin-top:-50px;
    max-width:300px;
    position:fixed
}
.pc2{
       margin-left:80px;
}

.product-head {
    min-height: 100vh;
}

.product-head-block-border {
    z-index: 9999;
    padding: 15px;
    border: 1px solid white;
    width: 90%;
    margin: auto;
  
}

.product-head-block {
    background: rgba(255, 255, 255, 0.81);
    min-height: 400px;
    padding: 15px;
    -webkit-box-shadow: 1px 1px 14px 0px rgba(50, 50, 50, 1);
    -moz-box-shadow: 1px 1px 14px 0px rgba(50, 50, 50, 1);
    box-shadow: 1px 1px 14px 0px rgba(50, 50, 50, 1);

}

.product-head-block-category {
    font-family: "Helvetica";
    font-style: italic;
    color: #777777;
    font-size: 0.875em;
}

.product-head-block-category a {
    font-family: "Helvetica";
    text-decoration: underline;
    font-style: italic;
    color: #777777;
    /*font-size: 0.875em;*/
}

.product-head-block-title {
    font-size: 1.75em;
    font-weight: bold;
    text-align: center;
    margin-top: 25px;
}

.product-head-block-description {
    margin-top: 25px;
 
    font-family: "Helvetica";
    font-size: 1em;
}

.product-head-block-volume {
     margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 2px solid #b7cbbf;
    border-bottom: 2px solid #b7cbbf;
    font-family: "Helvetica";
    font-size: 0.875em;
    color: #777777;
}

.product-head-block-old-price {
    font-family: "Helvetica";
    margin-top: 50px;
    /*font-size: 0.75em;*/
    font-weight: 600;
    text-decoration: line-through;
}

.product-head-block-promo-price {
    font-family: "Helvetica";
}

.product-head-block-promo-price h3 {
    font-family: "Helvetica";
    color: #bd2424;
    margin-top: 5px;
    font-size: 1.5em;
}

.product-head-block-price {
    font-family: "Helvetica";
   color: rgb(59, 59, 59);
    margin-top: 15px;
    font-size: 1.25em;
}

.product-head-block-price span#sum {
    font-weight: 600;
}

.product-head-block-button {
    margin-top: 15px;
    display: block;
    background: #b7cbbf;
    color: white;
    font-family: "Helvetica";
    padding: 12px 30px;
    text-align: center;
}

.composition {
    margin-top: 50px;
}

.title-line {
    color: #b7cbbf;
    height: 3px;
    background: #b7cbbf;
    width: 100%;
    position: relative;
    top: 32px;
    z-index: -1;
}

.title-text {
    text-align: center;

    background: white;
    font-size: 2em;
    font-weight: bold;
    z-index: 3;
    /*height: 50px;*/
    /*width: 250px;*/
    margin: auto;
    display: table;
    padding: 5px 30px;
}

.composition-block-title {
    margin-top: 25px;
    font-size: 1.875em;
}

.composition-block-description {
    font-size: 0.875em;

    margin-top: 10px;
    color: #f8ab9c;
    font-family: "Helvetica";
    font-style: italic;
}

.composition-block-number {
    margin-top: 45px;
    font-size: 1.875em;
}

.composition-final {
    font-size: 6em;
    text-align: center;
}

.composition-block {
    padding-bottom: 25px;
}

.other-products {
    margin-top: 100px;
}
.product-img {
   
    border-radius: 5.2% 5.2%  0px 0px;
   
}


.product-img-description {
    
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center; 
    font-family: "Helvetica";
    font-style: italic;
}

.product-block {
    background-color:#ffffff;
    border-radius: 6%;
    border: 1px solid #f5f8ef;
    max-height: 560px;
    margin-bottom: 35px;
}

.product-title {
    max-height: 80px;
    min-height:70px;
     display:table;
   
    font-size: 1em;
    font-weight: bold;
      margin-left: auto;
  margin-right: auto;
     
}
.title{
  

      display: table-cell;
  vertical-align: middle;
    
    
}

.product-title a {
         margin-left: 10px;
  margin-right: 10px;
       
    

   
   
    transition: all 0.5s ease 0s;
    border-radius: 5px;
    color: rgb(59, 59, 59);
}


.product-description {
    font-family: "Hesaedrus";
    font-style: italic;
    font-size: 0.875em;
    margin-top: 15px;
    min-height: 63px;
}
.float1{
    display: flex;
    margin: auto;
    align-items: center;
    
}


.product-price {
     font-size: 1.3em;
    color: rgb(0 0 0 / 89%);
      font-family: Hesaedrus;
      
    font-weight:bold;
   
   

    
 
    
}

.product-old-price {
    font-family: "Hesaedrus";
    margin-top: -10px;
    margin-left:5px;
    font-size: 0.75em;
    text-decoration: line-through;
}

.product-promo-price {
    font-family: "Hesaedrus";
    color: #bd2424;
   
    font-size: 1.3em;
 font-weight:BOLD;

}
.product-phone-button{
    float: left;
  
    

}

.product-button {

   
    display: inline-block;
    background: #b7cbbf;
    color: white;
    font-family: "Hesaedrus";
    padding: 10px 45px;
    text-align: center;
    font-size: 0.9125em;
    text-shadow: 2.194px 2.046px 2.52px rgba(68, 75, 71, 0.49);
    transition: 0.5s;
}
#customLink1{
    margin-bottom:15px;
}

.flex{
  margin:0 5% 5%  ;
   max-width: 350px;
    display:flex;
    border: 1px solid rgb(183, 203, 191);
    border-radius: 12PX;
    justify-content: space-between;

}
.imgw{
    max-height: 35px;
  
   

}

.product-add {
    
    
    border-radius: 0px 10px 10px 0px;
    float: left;
   
    
    background: #b7cbbf;
    color: white;
    font-family: "Helvetica";
    padding: 10px 45px;
    text-align: center;
    font-size: 0.9125em;
    text-shadow: 2.194px 2.046px 2.52px rgba(68, 75, 71, 0.49);
    transition: 0.5s;
}

   


.product-block a:hover {
    text-decoration: none;
    background: #b7cbbf;
    color: white;
   
}

.product-head-menu {
    z-index: 3;
    width: 100%;
    display: table;
}

.product-head-menu ul {
    margin: 0;
    padding: 0;
    margin-top: 25px;
    width: 100%;
}

.product-head-menu ul li {
    display: inline-block;
    width: 10.89%;
    /*margin: auto;*/
    text-align: center;
}

.product-head-menu ul li a {
    font-size: 1.5em;
    font-weight: bold;
    color: #2f2f2f;
}

.product-head-menu-line {
    color: #b7cbbf;
    height: 2px;
    background: #b7cbbf;
    width: 100%;
    position: relative;
    top: 3px;
    /*top: -10px;*/
    /*z-index: -1;*/
}

.head-logo {
    margin-bottom:10px;
    margin-top:-60px;
    
    z-index: 5;
    padding: 10px;
   
 
    background: none;
}

.head-menu-content {
    z-index: 3;
    width: 100%;
    display: table;
}

.head-menu-content ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    margin-top: 50px;
    width: 100%;
}

.head-menu-content ul li {
    display: inline-block;
    width: 10.89%;
    /*margin: auto;*/
    text-align: center;
}

.head-menu-content ul li a {
    font-size: 1.5em;
    font-weight: bold;
    color: #2f2f2f;
}

.head-menu-content-line {
    color: rgb(109 130 65);
    height: 2px;
    background: rgb(109 130 65);
    width: 100%;
    position: relative;
    top: -11px;
    z-index: -1;
}

.category-menu {
    margin-top: 25px;
    /*background: rgba(183, 203, 191, 0.4);*/
}

.category-menu-content {

    padding-top: 15px;
    text-align: center;
}

.category-menu-content ul {

}

.category-menu-content ul li {
    display: inline-block;
}

.category-menu-content ul li a {
    font-family: "Helvetica";
    color: #4b4b4b;
    padding: 5px 15px;
    font-size: 0.925em;
    /*font-weight: bold;*/
}

.index-slider {
    height: 710px;
    background: url("index-head.jpg");
    background-size: cover;
}

.index-slider-block1-name {
    text-align: center;
    font-size: 1.75em;
    margin-top: 25px;
    font-weight: bold;
    color: #bd2424;

}

.index-slider-block1-text {
    margin-top: 15px;
    font-family: "Helvetica";
    font-size: 0.875em;
    text-align: center;
    min-height: 200px;
}

.index-slider-block1-button {
    text-align: center;
    margin: auto;
    display: table;
    background: #b7cbbf;
    padding: 10px 55px;
    /*font-family:"Helvetica";*/
    font-size: 1.25em;
    font-weight: bold;
    margin-top: 20px;
    color: #4b4b4b;
}

.index-slider-block {
}

.index-slider-block-name {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    color: #bd2424;

}

.index-slider-block-text {
    margin-top: 15px;
    font-family: "Helvetica";
}

.index-slider-block-title {
    margin-top: 7px;
    font-size: 1.35em;
    font-weight: bold;
    text-align: center;
}

.index-slider-block-img {
    text-align: center;
}

.index-slider-block-price {
    position: relative;

    /*width: 100%;*/
    display: grid;
    text-align: center;
    margin-top: 15px;
}

.index-slider-block-old-price {
    text-align: center;
    position: relative;
    font-family: "Helvetica";
    float: left;
    text-decoration: line-through;
    font-size: 0.875em;
    display: inline-block;
}

.index-slider-block-promo-price {
    position: relative;
    font-family: "Helvetica";
    float: left;
    font-size: 1.125em;
    color: #bd2424;
    display: inline-block;
}

.index-slider-block-button {
    text-align: center;
    margin: auto;
    display: table;
    background: #b7cbbf;
    padding: 10px 35px;
    /*font-family:"Helvetica";*/
    font-size: 1.35em;
    font-weight: bold;
    margin-top: 10px;
    color: #4b4b4b;
}

.advantages {
    margin-top: 50px;
}

/* .advantage-block {
    margin-bottom: 50px;

} */

.advantage-block-img {
    float: left;
    width: 30%;
}

.advantage-block-content {
    background: #b7cbbf;
    height:250px;
}

.advantage-block-content-border {
    width: 70%;
    border: 2px solid #b7cbbf;
    padding: 15px;
   
}

.advantage-block-content {
    min-height: 210px;
}

.advantage-block-content-title {
    font-size: 1.5em;
   
    margin-left: 25px;
    padding-top: 15px;
    font-weight: bold;
}

.advantage-block-content-text {
    margin-left: 25px;
 text-align: center;
    margin-top: 15px;
    font-family: "Helvetica";
    font-size: 0.875em;
    padding-right: 25px;
    color: #787878;
}

.text-and-product-text-block-title {
  
    font-weight: bold;
    font-size: 1.75em;
    padding-top: 50px;
    padding-bottom: 25px;
}

/* .text-and-product-text-block {
    background: #f4bfad;
    padding-bottom: 35px;
    min-height: 525px;

} */

.text-and-product-text-block-text {
    background: #f8ab9c;
    padding-top: 50px;
    padding-bottom: 35px;
    padding-left: 25px;
    padding-right: 35px;
    font-family: "Helvetica";
    font-size: 0.9125em;

}

.text-and-product {
    margin-top: 50px;
}

.index-products {
   margin-top:150px;
    padding-bottom: 75px;
    background: #f5e8da;
}

.index-title {
    /* margin-bottom: 30px; */
}

.index-title-line {
    color: rgb(109, 130, 65);
    height: 2px;
    background: rgb(109, 130, 65);
    width: 100%;
    position: relative;
    top: -11px;
    z-index: -1;
}

.error-block {
    padding: 35px;
    background: #e5e5e5;
    font-weight: 600;
    margin-bottom: 15px;
}

.index-title-text {
    font-family: Hezaedrus;
    text-align: center;
    background: rgb(245, 248, 239);
    font-size: 1.75em;
    font-weight: bold;
    z-index: 3;
    margin: auto;
    display: table;
    padding: 50px 0 30px 5px;
}

.index-subtitle{
    font-size: 1.5em;
    font-weight: bold;
    font-family: "Helvetica";
}

.search-result-block{
    margin-top: 30px;
}
.search-result-block-img img{
    width: 100%;
}
.search-result-block-title a{
    font-size: 1.5em;
    font-weight: bold;
    color: inherit;
}
.search-result-block-description{
    font-family: "Helvetica";
    font-size: 0.8em;
    color: #484848;
    font-style: italic;
    margin-top: 15px;

}
.search-result-block-price{
    font-family: "Helvetica";
    margin-top: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}
.search-result-block-link a{
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: underline;
}


.index-category-block1 {
    background: url("category.jpg") center;
    background-size: cover;
    height: 262px;
    text-align: center;
    margin-bottom: 30px;

}

.index-category-block2 {
    background: url("category2.jpg") center;
    background-size: cover;
    height: 555px;
    text-align: center;

}

.index-category-block3 {
    background: url("category3.jpg") center;
    background-size: cover;
    height: 262px;
    text-align: center;

}

.index-category-title-border {
    padding: 7px;
    border: 2px solid white;
    display: inline-block;
    margin-top: 70px;
}

.index-category-block2 > .index-category-title > .index-category-title-border {
    margin-top: 200px;
}

.opt-line {
    height: 20px;
    width: 100%;
    background: #f5dabd;
}

.opt-line-text {
    font-family: "Helvetica";
    text-align: center;
    font-size: 0.85em;
}

.index-category-title-content {

    background: rgba(255, 255, 255, 0.81);
    min-height: 10px;
    padding: 15px;
    height: 100px;
    width: 256px;
    font-size: 1.65em;
    font-weight: bold;
    padding-top: 30px;
    color: rgb(35, 35, 35);

}

.index-category {
    margin-top: 75px;
}

.index-seo-title {
    margin-top: 25px;
    font-size: 1.5em;
    font-weight: bold;
}

.index-seo-text {
    font-family: "Helvetica";
    margin-top: 25px;
    font-size: 0.875em;

}

.bottom {
    margin-top: 20px;
    background: #f5dabd;
    background: #7E8B83;
    color: black;
    color: white;
    padding-top: 15px;
    padding-bottom: 75px;
}

.bottom-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 25px;
}

.bottom-menu {
    font-family: "Helvetica";
    font-size: 0.875em;
}

.bottom-menu ul {
    /*margin: 0;*/
    padding: 0;
}

.bottom-menu ul li {
    list-style: circle;
}

.bottom-menu ul li a {
    /*padding: 5px;*/
    color: white;
}

.bottom-contact-border {
    width: 100%;
    border: 1px solid white;
    padding: 10px;
    float: left;
}

.bottom-contact {
    padding: 10px;
    min-height: 210px;
    background: white;
}

.bottom-contact-input {
    padding: 5px 20px;
    display: block;
    border: none;
}

.bottom-contact-textarea {
    padding: 5px 20px;
    display: block;
    border: none;
    width: 90%;
}

.bottom-contact-submit {
    display: table;
    border: none;
    padding: 2px 30px;
    background: #8a886f;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    margin: auto;
}

.bottom-contact-input, .bottom-contact-textarea, .bottom-contact-submit ::placeholder {
    font-family: "Helvetica";
    font-size: 0.875em;
    color: #232323;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    background-color: transparent;
    outline: none;
}

.cart-title {
    margin-bottom: 30px;
}

.cart-title-line {
    color: #b7cbbf;
    height: 2px;
    background: #b7cbbf;
    width: 100%;
    position: relative;
    top: 23px;
    z-index: -1;
}

.cart-title-text {
    text-align: center;

    background: white;
    font-size: 1.5em;
    font-weight: bold;
    z-index: 3;
    /*height: 50px;*/
    /*width: 250px;*/
    margin: auto;
    display: table;
    padding: 5px 30px;
    padding-top: 0;
}

.cart-block-title {
    font-size: 1.2em;
    font-weight: bold;

}

.cart-block-price {
    margin-top: 1px;
    font-size: 0.875em;
    font-family: "Helvetica";
    color: #656565;
}

.cart-block-price span {
    font-weight: bold;
}

.cart-block-composition {
    margin-top: 2px;
    font-size: 0.875em;
    font-family: "Helvetica";
    color: #656565;
}

.cart-block-product-a {
    display: block;
    /*position: absolute;*/
    bottom: 25px;
    font-weight: bold;
    font-size: 0.875em;
    font-family: "Helvetica";
    color: #656565;
}

.delivery-error {
    font-family: "Helvetica";
    margin-top: 35px;
    font-style: italic;
    color: red;
}

.cart-block-delete-a {
    display: block;
    position: absolute;
    bottom: 1px;
    font-size: 0.875em;
    font-family: "Helvetica";
    color: #656565;
}

.cart-block {
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 2px solid #b7cbbf;
    
}

.cart-other-block-title {
    font-size: 1.250em;
    font-weight: bold;
}

.cart-other-block-price {
    margin-top: 1px;
    font-size: 0.875em;
    font-family: "Helvetica";
    color: #656565;
}

.cart-other-block-button {
    margin-top: 15px;
    display: inline-block;
    background: #b7cbbf;
    color: white;
    font-family: "Helvetica";
    font-weight: bold;
    padding: 7px 25px;
    text-align: center;
    font-size: 0.813em;
    text-shadow: 2.194px 2.046px 2.52px rgba(68, 75, 71, 0.49);
}

.cart-button {
    margin-top: 50px;
    text-align: center;
    background: #b7cbbf;
    font-size: 1.5em;
    padding: 10px 100px;
    font-weight: bold;
    display: block;
    color: white;
}

.catalog-category-title {
    margin-top: 50px;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    border: 2px solid #b7cbbf;
    border-radius:5px;
}

.catalog-category-menu {
    margin-top: 15px;

}

.catalog-category-menu ul {

}

.catalog-category-menu ul li:nth-child(2n) {
    /*list-style: square ;*/
    color: #b7cbbf;
}

.catalog-category-menu ul li:nth-child(2n+1) {
    /*list-style: square ;*/
    color: #b7cbbf;
}


.catalog-category-menu ul li a {
    font-family: "Helvetica";
    /*font-size: 0.875em;*/
    /*font-size: 1.325em;*/
    /*font-weight: bold;*/
    /*text-transform: uppercase;*/
    color: #656565;

}

.page-head {

   
    height: auto;

}

.page-head-menu {
    background-color:#f5f8ef;
}

.page-seo {
    margin-top: 150px;

}

.page-seo-content {
    font-family: "Helvetica";
    font-size: 0.9125em;
    flex-shrink: 1.51;
    text-align: center;
}

.price-sum-text {
    margin-top: 15px;
    float: right;
    font-family: "Helvetica";
    font-size: 1.125em;
}

.order-info {
    margin-top: 50px;
   
}

.order-info-user-block {
    /* text-align: center; */
}

.order-info-user-block table {
    width: 100%;
    font-family: "Helvetica";
}

.order-info-user-block label {
    font-family: "Helvetica";
    width: 100%;
    /*font-size: 1.350em;*/
    /*font-weight: bold;*/
    color: #4b4b4b;
}

.order-info-content {
    width: 100%;
    background: rgba(245, 218, 189, 0.51);
    padding: 10px;
}

.order-info-user-block input, textarea {
    margin-top: 4px;
    font-family: "Helvetica";
    font-size: 16px;
    height: 35px;
    padding: 7px;
    border: none;
    width: 100%;
    background: white;
    border: 1px solid #b7cbbf;
}

.order-info-user-block input:disabled, textarea:disabled {
    /*margin-top: 3px;*/
    font-family: "Helvetica";
    font-size: 16px;
    height: 35px;
    padding: 7px;
    border: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    /*background: whitesmoke;*/
    border: none;
}

.order-info-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 25px;
}

.order-info-description {
    font-family: "Helvetica";
    width: 100%;
    /* font-size: 1.350em; */
    /*font-weight: bold;*/
    color: #4b4b4b;
    margin-bottom: 15px;
}

.inputBlock {
    margin-top: 10px;
    display: inline-block;
}

.inputBlock input {
  background: #ffffff;
    border: 2px solid #b7cbbf;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 900;
    /*font-size: 14px;*/
    float: left;
    width: 50px;
     color: #595959;
}

.minus {
    font-size: 34px;
    font-weight: 500;
    margin: -7px 10px 0px 0px;
    float: left;
    cursor: pointer;
     color: #595959;
}

.plus {
    font-size: 34px;
    font-weight: 500;
    margin: -7px 0px 0px 10px;
    float: left;
    cursor: pointer;
     color: #595959;
}

.get-type {
    width: 100%;
    border: 2px #b7cbbf solid;
    border-radius: 5px;
    min-height: 100px;
    text-align: center;
}

.get-type-content {
    font-family: "Helvetica";
    /*font-size: 1.5em;*/
    padding: 5px;
    width: 100%;
    background: #b7cbbf;
    color: white;
    padding-top: 25px;
    padding-bottom: 25px;
    min-height: 230px;
    /*letter-spacing: 0.07em;*/
}

.get-type-ta {
    background: none;
    border: none;
    border-bottom: 2px solid white;
}

.get-type-title {
    text-transform: uppercase;
    min-height: 41px;
    /*text-decoration: underline;*/
    font-size: 105%;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;

}

.get-type-time {
    margin-bottom: 15px;
}

.get-type-price {

}

input[type="radio"], input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

.all-product-text {
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    color: white;
    background: #b7cbbf;
    display: inline-block;
    font-size: 1.25em;
    padding: 10px 50px;
    border: none;
}

.all-product-text a {
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    color: white;
    background: #b7cbbf;
    display: inline-block;
    padding: 5px 20px;
}

.all-product-text:disabled {
    background: grey;
}

.product-img {
  
.product-img {
    border-radius: 5.2% 5.2% 0px 0px;
    overflow: hidden;
   
}
    overflow: hidden;
   
}
.product-img img:hover{
    transition: 1s; /* Время эффекта */

 transform: scale(1.2);
 
}

.product-img img {
    
 
    max-height: 380px;
    max-width: 100%;
}

.my-button {
    text-align: center;
    /*float: left;*/
    margin: 10px;
}

.all-product-text:hover {
    color: white;
    text-decoration: underline;
}

.band-small {
    width: 100%;
    height: 1px;
    background: #242021;
}

.pay_info {
    font-size: 13pt;
    font-family: "Helvetica";
}

.order-info-user-block-textarea {
    width: 50%;
    height: 150px;
}

.saved-table {
    margin-left: 25px;
    font-size: 14pt;
    color: #871c2e;
    font-family: 'Helvetica', sans-serif;
    width: 400px;
}

.catalog-name {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 50px;
}

.question {
    margin-top: 100px;
    padding-top: 100px;
    background: rgb(245 248 239);
}

.question-input {
    width: 100%;
    height: 40px;
    border: 1px solid #382d2f;
    margin: 5px 0;
    padding-left: 15px;
    font-family: "Helvetica";
}

.question-input-question {
    width: 100%;
    height: 220px;
    border: 1px solid #382d2f;
    margin: 5px 0;
    padding-left: 15px;
    padding-top: 15px;
}

::-webkit-input-placeholder {
    /*text-transform: uppercase;*/
}

.question-submit {
    text-transform: uppercase;
    float: right;
    height: 40px;
    width: 30%;
    border: 1px solid #382d2f;
    background: #382d2f;
    color: white;
    margin: 5px 0;
}

.question-submit:hover {
    background: white;
    color: #382d2f;
    border: 1px solid #382d2f;
}

.question-name {
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.5em;
    margin-bottom: 50px;
}

.sub-block {
    margin-top: 50px;
    padding-bottom: 100px;
}

.sub-block-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-top: 100px;
    text-align: center;
}

.sub-block-text {

    font-family: "Helvetica";
    width: 500px;
    margin: auto;
    margin-top: 25px;
    line-height: 1.65;
    text-align: center;
}

.sub-block1-icon {
    float: left;
    width: 90px;
}

.sub-block1 {
    margin-bottom: 50px;
    width: 100%;
    display: inline-block;
}

.sub-block1-content {
    width: calc(100% - 90px);
    float: left;
    padding-left: 15px;
}

.sub-block1-content-title {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.375em;
    font-family: 'Amatic SC';
}

.sub-block1-content-text {
    font-family: "Helvetica";
    font-size: 0.875em;
    margin-top: 10px;

}

.sub-block0 {
/*     margin-top: 75px; */
}

.reviews {
       font-size:15pt;
    padding-top: 25px;
    /*background: #f9dbd2;*/
    padding-bottom: 25px;
    color: black;

}

.reviews label {
    font-size: 1.25em;
    color: #232323;
    font-weight: 600;
    width: 100%;
    margin-bottom: 10px;

}

.reviews label input {
    font-family: "Helvetica";

    width: 100%;
    height: 34px;
    padding: 4px;
    font-weight: 500;
    font-size: 11pt;
    background: none;
    border: none;
    border-bottom: 2px solid #ffab9d;
}

.reviews label textarea {
    font-family: "Helvetica";
    width: 100%;
    height: 170px;
    background: #ffab9d;
    padding: 4px;
    border: none;
    text-align: center;
    font-size: 11pt;
    background: none;
    border: none;
    border-bottom: 2px solid #ffab9d;
}

.reviews input {
    font-family: "Helvetica";
    display: block;
    text-align: center;
    margin: auto;
    margin-top: 10px;
    width: 200px;
    height: 35px;
    background: #ffab9d;
    padding: 4px;
    font-size: 11pt;
    background: none;
    border: none;
    border-bottom: 2px solid #ffab9d;
}

.reviews-list {
    margin-top: 75px;

}

.reviews-block {
    margin-bottom: 25px;
    min-height: 400px;
    background: #b7cbbf
}

.reviews-button ul {
    margin: 0;
    padding: 0;
}

.reviews-button ul li {
    list-style: none;
}

.reviews-button-a {
    margin: auto;
    text-align: center;
    display: inline-block;
    padding: 8px 14px;
    font-family: "Helvetica";
    color: white;
    background: #595959;
}

.reviews-button-a:hover {
    color: #595959;
    background: #f5f8ef;
}

.reviews-button-a-hover {
    display: inline-block;
    padding: 8px 14px;
    border: #b7cbbf 1px solid;
    color: white;
    background: #b7cbbf;
    width: 100%;
    font-family: "Helvetica";
}

.reviews-button-a-hover:hover, .reviews-button-a-hover:focus {
    color: white;
}

.reviews-block-content {
    transition: background 0.5s ease;
    background: rgba(0, 0, 0, 0.41);
    height: 400px;
    overflow: auto;
}

.reviews-block-content:hover {
    background: none;
}

.reviews-block-title {
    text-align: center;
    /*font-family: "Helvetica";*/
    margin-top: 25px;
    font-weight: bold;
    font-size: 1.5em;
    color: white;

}

.reviews-block-title span {

}

.reviews-block-text {
    /*margin-top: 15px;*/
    text-align: center;
    font-family: "Helvetica";
    color: white;
    padding: 15px;

}

.reviews-block-a_product {
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    position: absolute;
    bottom: 45px;
    right: calc(50% - 59px);
}

.reviews-block-a_product a {
    color: white;
}

.product-head-block-img {
    display: none;
}

.blog-block {
    border: 1px #b7cbbf solid;
    padding: 15px;
    margin-bottom: 25px;
}

.blog-block-img {
}

.blog-block-img img {
    width: 100%;
}

.blog-block-title {
    font-size: 1.5em;
    /*text-align: center;*/
    font-weight: BOLD;
}

.blog-block-title a {
    color: #232323;
}

.blog-block-description {
    font-family: "Helvetica";
    font-size: 0.875em;
    margin-top: 15px;
}

.blog-block-button {
    text-align: right;
    font-family: "Helvetica";
    margin-top: 25px;
}

.article-content {
    line-height: 150%;
    font-family: "Helvetica";
}

/*Слайдер*/
.main-slider_img4, .main-slider_img3, .main-slider_img2, .main-slider_img1 {
    z-index: 1;
    height: 585px;
    width: 100%;
    position: absolute;
border-radius:20px;
    background-size: cover;
    background-position: center;
}

.main-slider-content4, .main-slider-content3, .main-slider-content2, .main-slider-content1 {
    height: 390px;
    width: 100%;
    position: relative;
    z-index: 2;
    color: #232323;
}

.main-slider {
    width: 100%;
    color: white;
    position: relative;
    height: 60%;
    background-size: cover;

}

.main-slider-date {
    font-size: 1.250em;
    padding-top: 52px;
    line-height: 0.8em;
}

.main-slider-info {
    margin-top: 6px;
    /*line-height: 0.8em;*/
    font-weight: 600;
    font-size: 1.750em;
    text-transform: uppercase;
}

.main-slider-text {
    font-size: 1.875em;
    margin-top: 26px;
    /*margin-top: 196px;*/
}



.d7 {
    /*background: #7BA7AB;*/
    font-family: "Helvetica";
}

.d7:after {
    content: "";
    clear: both;
    display: table
}

.d7 form {
    width: auto;
    float: right;
    /*margin-right: 30px;*/
}
.search-form {
    position: relative;
    width: 400px;
    margin: 0 auto;
}
.d7 input {
    width: 350px;
    height: 42px;
    padding-left: 15px;
    border-radius: 42px;
    border: 2px solid #324b4e;
    background: #F9F0DA;
    outline: none;
    position: relative;
    transition: .3s linear;
}

.d7 input:focus {
    width: 450px;
}

.d7 button {
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    position: absolute;
    top: -2px;
    right: 0;
}

.d7 button:before {
    content: "\f002";
    font-family: FontAwesome;
    color: #324b4e;
}

/**/
#modal_form2 #modal_close2 {
    width: 21px;
    height: 21px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    display: block;
}

/* Пoдлoжкa */
#overlay2 {
    z-index: 1990; /* пoдлoжкa дoлжнa быть выше слoев элементoв сaйтa, нo ниже слoя мoдaльнoгo oкнa */
    position: fixed; /* всегдa перекрывaет весь сaйт */
    background-color: #000; /* чернaя */
    opacity: 0.8; /* нo немнoгo прoзрaчнa */
    -moz-opacity: 0.8; /* фикс прозрачности для старых браузеров */
    filter: alpha(opacity=80);
    width: 100%;
    height: 100%; /* рaзмерoм вo весь экрaн */
    top: 0; /* сверху и слевa 0, oбязaтельные свoйствa! */
    left: 0;
    cursor: pointer;
    display: none; /* в oбычнoм сoстoянии её нет) */
}

#modal_form2 {
    width: 400px;
    /*height: 300px; !* Рaзмеры дoлжны быть фиксирoвaны *!*/
    /*width: 90%;*/

    margin-left: calc(50% - 200px);
    /*margin: 5%;*/
    margin-top: 5%;
    border-radius: 5px;
    border: 3px #000 solid;
    background: #fff;
    position: fixed; /* чтoбы oкнo былo в видимoй зoне в любoм месте */
    /*top: 45%; !* oтступaем сверху 45%, oстaльные 5% пoдвинет скрипт *!*/
    /*left: 50%; !* пoлoвинa экрaнa слевa *!*/

    /*margin-top: -150px;*/
    /*margin-left: -150px; !* тут вся мaгия центрoвки css, oтступaем влевo и вверх минус пoлoвину ширины и высoты сooтветственнo =) *!*/
    display: none; /* в oбычнoм сoстoянии oкнa не дoлжнo быть */
    opacity: 0; /* пoлнoстью прoзрaчнo для aнимирoвaния */
    z-index: 2000; /* oкнo дoлжнo быть нaибoлее бoльшем слoе */
    padding: 20px 10px;
    font-family: "Helvetica";
}

.phone {
    display: none;
}


#modal_form #modal_close {
    width: 21px;
    height: 21px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    display: block;
    z-index: 9999;
    font-weight: 700;
    font-size: 1.5em;
    font-family: sans-serif;
    color: red;
}

.tovar-page {
    margin-top: 5px;
    padding: 15px;
    text-align: center;
    max-height: 80vh;
}

.tovar-page-product-img {
         margin-bottom:5px;
    max-height: 70vh;
}

/* Пoдлoжкa */
#overlay {
    z-index: 3; /* пoдлoжкa дoлжнa быть выше слoев элементoв сaйтa, нo ниже слoя мoдaльнoгo oкнa */
    position: fixed; /* всегдa перекрывaет весь сaйт */
    background-color: #000; /* чернaя */
    opacity: 0.8; /* нo немнoгo прoзрaчнa */
    -moz-opacity: 0.8; /* фикс прозрачности для старых браузеров */
    filter: alpha(opacity=80);
    width: 100%;
    height: 100%; /* рaзмерoм вo весь экрaн */
    top: 0; /* сверху и слевa 0, oбязaтельные свoйствa! */
    left: 0;
    cursor: pointer;
    display: none; /* в oбычнoм сoстoянии её нет) */
}

#modal_form {
    /*width: 300px;*/
    /*height: 300px; !* Рaзмеры дoлжны быть фиксирoвaны *!*/
    width: 90%;
    margin: 5%;
    border-radius: 5px;
    border: 3px #000 solid;
    background: #fff;
    position: fixed; /* чтoбы oкнo былo в видимoй зoне в любoм месте */
    /*top: 45%; !* oтступaем сверху 45%, oстaльные 5% пoдвинет скрипт *!*/
    /*left: 50%; !* пoлoвинa экрaнa слевa *!*/

    /*margin-top: -150px;*/
    /*margin-left: -150px; !* тут вся мaгия центрoвки css, oтступaем влевo и вверх минус пoлoвину ширины и высoты сooтветственнo =) *!*/
    display: none; /* в oбычнoм сoстoянии oкнa не дoлжнo быть */
    opacity: 0; /* пoлнoстью прoзрaчнo для aнимирoвaния */
    z-index: 5; /* oкнo дoлжнo быть нaибoлее бoльшем слoе */
    padding: 20px 10px;
    overflow: auto;
}

@media screen and (max-width: 768px) {
       
       .nav-cart{
    position:fixed;
    /* абсолютно позиционируем */

    /* относительно левого края панели */
    right: calc( 10px);
    /* отступ от верхнего края панели */
    top: 195px;
    
    font-size: 20pt;
    line-height: 1;
    /* всегда поверх других элементов страницы */
    z-index: 2001;
    /* анимируем цвет текста при наведении */
        transform: rotate(0deg) scale(1);
    animation: pulse 2s linear infinite;



 
       }
       
     .nav-cart::after {
    /* background:blue; */
    background:inherit;
    border-radius: 50%; /* To make circle */
    content:'';
    position:absolute;
    /* top: -100px;*/
    top: -50%; /* Inherit properties of parent */
    /* left: -100px; */
    left:0;
    height: 100px;
    width:100px;
}
.nav-cart::before {
  /*  background:green; */
    background:inherit; 
    border-radius: 50%; /* To make circle */
    content:'';
    position:absolute;
    top:0; 
    right:-50%; /* Inherit properties of parent */
    height: 100px;
    width:100px;
}

@keyframes pulse{
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }10% {
        transform: rotate(0deg) scale(1.3);
    }
    20% {
        transform: rotate(0deg) scale(1);
    }
    30% {
        transform: rotate(0deg) scale(1);
    }
    40% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate( 0deg) scale(1);
        opacity: 1;
    }60% {
        transform: rotate( 0deg) scale(1);
    }
     70% {
     transform: rotate(0deg) scale(1);
     }
    100% {
        transform: rotate( 0deg) scale(1);
        opacity: 1;
    }
}
       
       
       
       
       
              .mappc{
       display: block;
    margin-left: auto;
    margin-right: auto;
       margin-top: 30px;
       width:260px;
       height:300px;
       
       
}

       
       
       .index-products {
    margin-top: 200px;
       }


    .head-search{
        margin-top: 25px;
    }
    .phone {
        display: block;
    }
    h1.glav {
    margin-top:35px;
}

    .product-head {
        min-height: 0;
    }
    .main-slider {
        margin-top: 25px;
        width: 100%;
        color: white;
       /*  position: relative; */
        height: 30%;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .main-slider_img4, .main-slider_img3, .main-slider_img2, .main-slider_img1 {
        z-index: 1;
        height: 200px;
        width: 100%;
        /* position: absolute; */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .product-head-block-img {
        display: block;
        margin-top:5px;
    }
    .modalp{
    
    max-width:39%;
    margin-top:5px;
    margin-left:15px;
    margin-right:10px;
}

    .product-head-mobile {
        background: rgba(255, 255, 255, 0.3);
    }

    .saved-table {
        margin-left: 0;
        font-size: 12pt;
        width: 100%;
    }

    .order-info-title {
        margin-top: 35px;
    }

    .product_photo1 {
        /*height: 100px;*/
        height: auto;
        width: 100%;
    }

    .product_photo2 {
        display: none;
    }

    .cart-block-title {
        text-align: center;
    }

    .cart-block-price {
        text-align: center;
    }

    .cart-block-composition {
        text-align: center;
    }

    .cart-block-product-a {
        margin-top: 15px;
        text-align: center;
        display: block;
        position: relative;
        font-weight: bold;
        bottom: 0;
        font-size: 0.875em;
        font-family: "Helvetica";
        color: #656565;
    }

    .cart-block-delete-a {
        display: block;
        position: relative;
        bottom: 0;
        font-size: 0.875em;
        font-family: "Helvetica";
        color: #656565;
    }

    .cart-block-title {
        margin-top: 0px;
    }

    .order-info-user-block-textarea {
        width: 100%;
    }

    .order-info-user-block textarea:disabled {
        height: 75px;
    }

    .get-type {
        width: 100%;
        min-height: 100px;
        text-align: center;
        border-width: 2px;
        border-style: solid;
        border-color: rgb(183, 203, 191);
        border-image: initial;
        border-radius: 5px;
    }

    .bottom {
        padding-top: 0;
    }

    .bottom-title {
        margin-top: 50px;
    }

    .product-block {
        text-align: center;
        min-height: 0;
        margin-bottom: 35px;
        height: auto;
    }

    .product-title {
        height:auto;
        font-family: "Helvetica";
        font-size: 0.90em;
    }
/*     .product-img {

    min-height: 120px;
} */
    .product-img-mobile{
        display: none;
    }
    .product-title a {

        color: inherit;
    }

    .product-description {
        min-height: 0;
    }

    .product-price {
        min-height: 0;
      
        font-size: 90%;
    }

   /*  .product-old-price {
        margin-top: 15px;
    } */

    .index-title {
        margin-top: 35px;
    }

    .index-title-text {
        font-size: 2em;
    }

    .product-button {
        padding: 15px 60px;
    }

    .product-head {
        background: none;
    }

    .product-head-block-border {
        margin-top: 107px;
        margin-bottom: 25px;
        width: 100%;
        padding: 0;
    }

    .product-button {
        text-align: center;
        margin: auto;
        width: 100%;
    }

    .product-head-block {
        /*padding: 0;*/
        /*padding-bottom: 25px;*/
        /*min-height: 0;*/
    }

    .index-slider-block-button {
        padding: 10px 70px;
    }

    .advantage-block-img {
        display: none;
    }

    .advantage-block-content-border {
        padding: 0;
        border: none;
        width: 100%;
    }

    .advantage-block-content {
        padding-bottom: 25px;
    }

    .advantage-block {

        margin-bottom: 25px;
    }

    .text-and-product-text-block {
        min-height: 0;
    }

    .cart-button {
        margin-top: 50px;
        text-align: center;
        background: #b7cbbf;
        font-size: 1.75em;
        padding: 10px 10px;
        font-weight: bold;
        display: block;
        color: white;
    }

    .page-head {
        margin-bottom: 0;
    }

    .catalog-category-title {
        margin-top: 25px;
    }

    .page-seo {
        /*margin-top: 25px;*/
    }

    #modal_form {
        /* width: 300px; */
        width: 94%;
        overflow: auto;
        margin: 3%;
        border-radius: 5px;
        border: 3px #000 solid;
        background: #fff;
        position: fixed;
        /* margin-top: -150px; */
        display: none;
        opacity: 0;
        z-index: 5;
        padding: 5px 5px;
        height: 90vh;
    }
    .product-add {
        padding: 7px 7px;
        font-size: 0.85em;
    }
}

/******************Стили мобильного меню*************/

nav {
    padding: 15px;
    display: none;
    top: 0;
}

.list-menu {
    padding-top: 10px;
    display: flex;
    list-style: none;
}

.list-menu {
    margin-bottom: 0;
    padding-bottom: 0;
}

.list-menu > li > a {
    color: #fff;
    display: block;
    padding: 5px 15px;
}

.list-menu > li > a:hover {
    background: #98ab9f;
}

#btn-menu {
    display: none;
}

#btn-menu + label {
    display: none;
    position: relative;
    color: #fff;
    height: 20px;
    z-index: 1;
    cursor: pointer;
}

#btn-menu + label:before {
    content: '\f0c9';
    display: inline-block;
    font-family: 'FontAwesome';
    font-size: 22px;
}

#btn-menu:checked + label:before {
    content: '\f00d';
    color: #b7cbbf;
}
.product-none{
    font-family: "Helvetica";
    font-size: 1.10em;
    font-weight:600;
    margin-top: 15px;
    color: red;
}
@media screen and (max-width: 768px) {
    .head-menu {
           
        display: none;
    }
    
    
    .modalp{

    max-width:100%;
    margin-top:5px;
    margin-left:15px;
    margin-right:10px;
}
    h1.glav {
    margin-top:35px;
}

    .head-menu-content {
        display: none;
    }

    .product-head-menu-line {
        display: none;
    }

    .category-menu {
        display: none;
    }

    nav {
        position: fixed;
        width: 100%;
        background: #b7cbbf;
        padding: 15px;
        display: block;
        z-index: 999;
        font-family: "Helvetica";
    }

    #btn-menu + label {
        display: inline-block;
        width: 100%;
    }

    #btn-menu + label + .list-menu {
        display: none;
    }

    #btn-menu:checked + label + .list-menu {
        display: block;

    }

    .btn-menu-div {
        /*display: block;*/
        text-align: right;
        float: right;
    }

    .btn-menu-phone {
        margin-left: 10px;
        font-family: "Helvetica";
        /*font-weight: bold;*/
        font-size: 1.125em;
    }

    .btn-menu-phone a {
        color: white;
    }

    .search-form {
        position: relative;
        width: 100%;
        margin: 0 auto;
        margin-top: 50px;
    }
    .d7 form {
        width: auto;
        float: right;
        width: 100%;
        /* margin-right: 30px; */
    }
    .d7 input {
        width: 100%;
        height: 42px;
        padding-left: 15px;
        border-radius: 42px;
        border: 2px solid #324b4e;
        background: #F9F0DA;
        outline: none;
        position: relative;
        transition: .3s linear;
    }

    .d7 input:focus {
        width: 100%;
    }
    .pc{
           display:none;
    }
    .pc2{
       margin-left:1px;
}


.imggal{
       	display: inline-block;

}



.imggal1{
 max-width:100%;
    max-height: auto;
    margin-top: 5px;
 
    
}



}


