*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Corbel; /* Имя шрифта */
    src: url(fonts/Corbel.ttf); /* Путь к файлу со шрифтом */
}

/*Исходные стили*/
@font-face{
    font-family:rouble;
    src:url(fonts/rouble/rouble.eot);
    src: local('☺'), url(fonts/rouble/rouble.eot?#iefix) format('embedded-opentype'), url(fonts/rouble/rouble.ttf) format('truetype');
}

.rubl {
    font-family: rouble, serif;
    text-transform: none;
}

body{
    font-family: Inter, serif;
    font-size: 14px;
    line-height: 1.42857143;
}

h1,h2{
    margin: 10px 0;
}

.title{
    text-align: center;
    width:100%;
}

ul, li{
    padding: 0;
    list-style-type: none;
}

a{
    text-decoration: none;
    color: black;
}

.container {
    padding-left: 8px;
    padding-right: 8px;
}

.content{
    position: relative;
    margin-top: 50px;
    z-index: 1;
}

.row {
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.header{
    position:fixed;
    top: 0;
    width: 100%;
    background-color:black;
    z-index: 2;
}

.header-row {
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.header-row button{
    margin: 7px 0;
}

.header-row input{
    color: #fff;
    background-color: #393737;
    border: 1px solid #222;
    height: 20px;
    padding: 6px 12px;
    min-width: 180px;
    max-width: 60vw;
    width: 58vw;
}
.header-row input::placeholder{
    font-weight: bold;
    opacity: 1;
}
.header-inner{
    position: relative;
    height: 40px;
    padding: 5px 0;
}

/*общие стили значка-гамбургера, самого лэйбла*/
.burger-menu{
    height: 33px;
    display: flex;
    align-items: center;
}

.btn-menu {
    display: block;
    color: white;
    background-color: black;
    position: relative;
    cursor: pointer;
    transition: left .23s;
    z-index: 3;
    width: 20px;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}
/*общие стили полосок*/
.btn-menu span {
    display: block;
    height: 2px;
    background-color: white;
    margin: 5px 0 0;
    transition: all .1s linear .23s;
    position: relative;
}
/*прибиваем к верху лэйбла первую полоску*/
.btn-menu span.first {
    margin-top: 0;
}

.btn-menu.open {
    /*position: absolute;*/
    /*right: 10px;*/
    /*top: 58px;*/
}
.btn-menu.open span.first {
    -webkit-transform: rotate(45deg);
    top: 7px;
    background-color: #fff;
}
.btn-menu.open span.second {
    opacity: 0;
}

.btn-menu.open span.third {
    -webkit-transform: rotate(-45deg);
    top: -7px;
    background-color: #fff;
}

.hidden-menu {
    position: fixed;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    background-color: black;
    height: 100%;
    top: 50px;
    left: 0;
    transition: left .2s;
    z-index: 2;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    overflow-y: auto;
}

.hidden-menu h3{
    color: white;
    text-decoration: underline;
}

.hidden-menu a{
    font-size: 15px;
    color: white;
}

.hidden-menu li{
    margin: 6px 2px;
}

.product-item{
    box-sizing: border-box;
    position: relative;
    width: calc(50% - 1px);
    display: flex;
    flex-flow: row nowrap;
    flex: 0 1 auto;
    transition: box-shadow .3s ease;
   /* border-right: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
    */
    border-right: 3px solid #ffffffba;
    border-bottom: 3px solid #ffffffba;
    background-color: #cec7c730;
}

.product-item .inner {
    display: flex;
    flex-flow: column;
    padding: 10px;
    position: relative;
    width: 100%;
}

.product-item .inner .title{
    font-weight: 700;
    line-height: 18px;
    font-size: 13px;
    text-align: left;
    text-transform: uppercase;
    word-wrap: break-word;
}

.price{
    font-family: Arial, serif;
    font-size: 14px;
    line-height: 24px;
    color: #dc2121;
}
.dish-show .price{
    margin: 10px 0;
}

.price-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin: 8px 0;
    width: 106px;
}

.price-container i{
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.add-to-cart{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 5px 5px 0;
}

button,
.add-to-cart .a-btn,
.remove-btn
{
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 6px 12px;
    line-height: 15px;
    display: block;
    border: none;
    border-radius: 4px;
}

.button-add,
.add-to-cart .a-btn,
.remove-btn
{
    background: #ab6161;
}

.button-add,
.add-to-cart
{
    width: 106px;
}

.add-to-cart input{
    width: 35px;
    border-radius: 4px;
    border: 1px #ab6161 solid;
    margin: 0 2px;
    text-align: center;
}

p.desc{
    font-size: 16px;
    margin: 8px 0;
}

.button-back{
    background-color: black;
    border: 1px white solid;
}

.cart-main{
    width: 100%;
}

.cart-main select{
    line-height: 15px;
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 10px;
}

.cart-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #dfd8cd;
}

.cart-item .name{
    width:100%;
    margin-bottom: 6px;
}

.cart-item .price{
    width: 25%;
}

/*
  стили для модального окна
*/

.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 2000;
    opacity: 0;
    background: rgba(0,0,0,.55);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.md-modal-msg {
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 800px;
    min-width: 300px;
    width: auto;
    height: auto;
    z-index: 2500;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.md-show {
    visibility: visible;
}

.md-show ~ .md-overlay {
    opacity: 1;
    visibility: visible;
}

.md-show .info {
    background: white;
    padding: 20px;
}
/* Content styles */
.md-content {
    color: black;
    background: white;
    position: relative;
    margin: 0 auto;
}

.md-content h1{
    margin-top: 10px;
    font-size: 30px;
}

.md-content button {
    display: block;
    margin: 0 auto;
    font-size: 0.8em;
    outline: none;
}

.md-content .md-close {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 40px;
    height: 39px;
    border: none;
    cursor: pointer;
    background: #ab6161;
    border-radius: 0;
}

/* Effect 1: Fade in and scale up */
.md-effect-1 .md-content {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.md-show.md-effect-1 .md-content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.bottom-sales-points{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: black;
    padding-top: 5px;
    padding-bottom: 0px;
    z-index: 1;
    color: white;
}

/*.bottom-sales-points.scroll{*/
/*    padding: 0;*/
/*}*/

.bottom-sales-points .inner{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.bottom-sales-points .inner i{
    font-size: 18px;
    margin-left: 5px;
}

/*.bottom-sales-points.scroll .inner i{*/
/*    font-size: 14px;*/
/*}*/

.sps-hidden-block{
    text-align: center;
}

.sps-hidden-block p{
    color: white;
    border-bottom: 1px white dashed;
    display: inline-block;
    width: 100%;
    padding: 6px 0;
}