  #minidelivery {
    position: relative;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    overflow: auto;
    margin: 10px;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "tnum" on;
    width: 95%;
  }
  
  #minidelivery * {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    font-family: Arial, Helvetica, sans-serif;
  }

  #minidelivery .invoice-result{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    height: 80vh;
    width: 100%;
  }

  #minidelivery .invoice-actions{
    margin-top: 20px !important;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  #minidelivery .invoice-actions button{
    font-size: 1.2em !important;
    margin: 10px !important;
  }
  
  #minidelivery .error-container{
    width: auto;
    height: 100%;
    margin: auto;
    display: flex;

    flex-direction: column;
    justify-content: space-around;
    height: 90vh;
  }
  
  #minidelivery .error-message{
    font-weight: 600;
    font-size: 2rem;
    align-self: center;
    text-align: center;
  }

  #minidelivery .loading-container{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 90vh;
  }

  #minidelivery .carbis-footer{
    font-size: 11px;
    font-weight: 200;
    color: #888;
    /*background-color: silver;*/
    width: 100%;
    height: auto;
    margin-top: 20px !important;
    margin-bottom: 10px !important;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px !important;
  }

  #minidelivery .info-block a {
      font-weight: 200;
      color: #888;
      text-decoration: none;

  }

  #minidelivery .lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    align-self: center;
  }
  #minidelivery .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background-color: #f39c12;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  #minidelivery .lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
  }
  #minidelivery .lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
  }
  #minidelivery .lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
  }
  @keyframes lds-facebook {
    0% {
      top: 8px;
      height: 64px;
    }
    50%, 100% {
      top: 24px;
      height: 32px;
    }
  }

  #minidelivery .menu-head{
    position: absolute;
    padding: 10px;
    line-height: 2em;
    left: 0px;
    top:0;
    background: linear-gradient(0deg, rgba(200,198,198,1) 0%, rgba(254,254,254,1) 2%, rgba(254,254,254,1) 100%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 3;
  }

  #minidelivery .fixed{
    position: fixed;
    width: 100%;
    top:0;
  }

  #minideilvery .cart-widget{
    position: relative;
  }

  #minidelivery .cart-list{
    max-height: 75vh;
    overflow-y: auto;
    border-bottom: solid 1px #666;
  }

  #minidelivery .cart-list li{
    border-radius: 4px;
    border: solid 1px #eee;
    padding: 5px;
    margin-bottom: 5px;
  }

  #minidelivery .cart-list li pre{
    white-space: pre-line;
    font-weight: 400 !important;
  }

  #minidelivery .cart-widget-button{
    margin: 2px ;
    padding: 5px 8px;
    line-height: 1em;
    font-size: 1em;
    background-color: #fefefe;
    text-decoration: none;
    color: black;
    white-space: nowrap;

    height: 3em;

    border:none;
    outline: none;
    cursor: pointer;
  }

  #minidelivery .cart-widget-button svg{
    height: 90%;
    width: auto;
  }

  #minidelivery .cart-widget-window{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 660px;
    height: auto;
    background-color: #fefefe;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }

  #minidelivery .cart-widget-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 10px;
  }

  #minidelivery .cart-widget-window button{
    outline: none;
    border: none;
    /*background-color: #fefefe;*/
    padding: 10px;
    border-radius: 8px;
    line-height: 1em;
    height: 45px;
  }

  #minidelivery .cart-widget-window .apply:hover{
    background-color: #27ae60;
    color: #fefefe;
  }

  #minidelivery .cart-widget-window .deny:hover{
    background-color: #c0392b;
    color: #fefefe;
  }


  #minidelivery .cart-widget-window ul {
    max-height: 60vh;
    overflow-y: auto;
  }

  #minidelivery .cart-widget-window li {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    align-self: center;
    margin:auto;

    list-style: none;

    margin-bottom: 8px;
  }

  #minidelivery .cart-widget-window span {
    flex-grow: 3;
    width: 100%
  }

  #minidelivery .menu-categories {
    height: 90vh;
    display: block;
    z-index: 1000;
    overflow-y: auto;
  }
  
  #minidelivery .menu-categories li {
    display: block;
    max-height: 100%;
    overflow-y: auto;
  }

  #minidelivery .checkview {
    margin-top: 10px;
    width: auto;
  }
  
  #minidelivery .checkview table {
    width: 100%;
  }

  #minidelivery .menu-category-link{
    margin: 2px ;
    padding: 5px 8px;
    background-color: #fefefe;
    text-decoration: none;
    line-height: 1.5em;
    font-size: 1.3em;
    color: black;
    display: block;
    white-space: pre-line;
    border-bottom: solid 1px #eee;
    cursor: pointer;
  }

  #minidelivery .menu-category-link:hover{
      background-color: #Dce0e1;
  }

  #minidelivery .check-data tr td{
    font-weight: 600;
    white-space: nowrap;
  }

  #minidelivery .guest-container{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 10px;
    width: 80%;
  }

  #minidelivery .guest-row-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  #minidelivery .guest-input-block{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1.5em;
  }

  #minidelivery .form__input {
    font-family: inherit;
    color: #333;
    font-size: 1rem;
    margin: 0 10px;
    padding: 10px 15px;
    border-radius: 0.2rem;
    /*background-color: rgb(255, 255, 255);*/
    border: none;
    width: 100%;
    display: flex;
    border-bottom: 0.3rem solid transparent;
    transition: all 0.3s;
    border-bottom: 2px solid silver;
  }

  #minidelivery .form__input:invalid {
    border-bottom: 2px solid red;
  }

  
  #minidelivery hr{
    margin-bottom: 5px;
  }

  #minidelivery h1{
    margin-top: 10px;
  }

  #minidelivery .radio {
    padding-left: 10px;
    cursor: pointer;
  }

  #minidelivery .radio input {
    opacity: 0;
    position: absolute;
  }

  #minideluvery .radio-label{
    cursor: pointer;
  }

  #minidelivery .radio input[type="radio"] + .radio-label:before {
    margin: auto;
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: -0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
  }
  #minidelivery .radio input[type="radio"]:checked + .radio-label:before {
    background-color: black;
    box-shadow: inset 0 0 0 4px #f4f4f4;
  }
  #minidelivery .radio input[type="radio"]:focus + .radio-label:before {
    outline: none;
    border-color: black;
  }
  #minidelivery .radio input[type="radio"]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
  }
  #minidelivery .radio input[type="radio"] + .radio-label:empty:before {
    margin-right: 0;
  }

  #minidelivery .menu-items-grid {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /*display: grid;
    grid-template-columns: repeat( auto-fill, minmax(250px, 1fr) );
    grid-gap: 5px;*/
  }

  #minidelivery .menu-item {
    /*background-color: #fefefe;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    width: 250px;
    min-width: 250px;
    min-height: 300px;
    margin: 0 auto;
    padding: 10px;
    position: relative;
    z-index: 1;

    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    transition: all 0.2s ease;*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    width: 100%;
    margin: 5px 10px;
    padding: 5px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    height: auto;
  }

  #minidelivery .menu-item:hover{
    /*box-shadow: 0 0 10px rgba(0,0,0,0.5);*/
  }

  #minidelivery .menu-item-image-container {
    align-self: center;
    width: 40%;
    margin: 0;
  }

  #minidelivery .menu-item-data{
    max-width: 60%;
    width: 100%;
  }

  #minidelivery .menu-item-data pre {
    white-space: pre-line;
    height: 20px;
    margin: 5px;
  }


  #minidelivery .menu-item-image-container img {
    height: auto;
    width: 100%;
    border-radius: 5px;
  }

  #minidelivery .menu-item-name{
    font-size: 1.2rem;
    font-weight: 300;
    margin: 10px;
    max-width: calc(100% - 10px);
    overflow-wrap: break-word;  /* не поддерживает IE, Firefox; является копией word-wrap */ 
    word-wrap: break-word;
    word-break: keep-all;  /* не поддерживает Opera12.14, значение keep-all не поддерживается IE, Chrome */ 
    line-break: auto;  /* нет поддержки для русского языка */ 
    hyphens: manual;  /* значение auto не поддерживается Chrome */ 
    text-align: center;
    min-height: 3.3em;
  }

  #minidelivery .menu-item-price{
    font-size: 1.2rem;
    font-weight: 300;
    margin: 10px;
    max-width: calc(100% - 10px);
    overflow-wrap: break-word;  /* не поддерживает IE, Firefox; является копией word-wrap */ 
    word-wrap: break-word;
    word-break: keep-all;  /* не поддерживает Opera12.14, значение keep-all не поддерживается IE, Chrome */ 
    line-break: auto;  /* нет поддержки для русского языка */ 
    hyphens: manual;  /* значение auto не поддерживается Chrome */ 
    text-align: center;
  }


  #minidelivery .menu-item-recipe{
    max-width: 230px;
    white-space: pre-line;
    text-overflow: ellipsis;
    overflow: hidden;

    margin: 8px 0;
    z-index: 2;
    background-color: white;
  }

  #minidelivery .menu-item-footer {
    z-index: 2;
    /*display: flex;*/
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    bottom: 10px;
    width: 100%;
    padding: 10px;
    display: none;
  }

  #minidelivery .menu-item-hover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 2;
    background-color: white;
    border-radius: 5px;

    padding-bottom: 10px;
    
    display: flex;
    opacity: 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.1s ease ;
  }

  #minidelivery .exceptor{
    display: none;
  }

  #minidelivery .menu-item:hover .exceptor:not(:empty) + .menu-item-hover{
    display: flex;
    opacity: 1;
    height: 100%;
  }

  #minidelivery .menu-item:hover .exceptor:not(:empty) + .menu-item-hover > .menu-item-footer{
    display: flex;
  }

  #minidelivery .deliveryzone{
    box-sizing: border-box !important;
    position: relative;
    width: 100%;
    margin: 0 10px;
    padding: 5px;
    border-radius: .2rem;
    display: block;
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #minidelivery .deliveryzone pre{
    white-space: pre-line;
  }

  #minidelivery .menu-item-spin {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-weight: 500;
    font-size: 1.1em;
    width: 100%;
    padding: auto;
  }

  #minidelivery .button-container{
    /*background-color: #ecf0f1;*/
    /*background-color: #Dce0e1;*/
    border-radius: 4px;
    white-space: nowrap;
    margin-bottom: 10px;
    height: 45px;
  }

  #minidelivery .sum-container{
    opacity: 0;
    margin-right: 8px;
  }

  #minidelivery .sidebar {
    position: fixed;
    
    width: 100vw;
    height: 150vh;
    /*max-width: 425px;*/
    top: 0;
    /*bottom: 0;*/

    z-index: 1000;
    transition: all 0.3s ease-in-out;
    box-shadow: none;

    overflow: visible;
  }

  #minidelivery .lh {
    left: -100%;
  }

  #minidelivery .rh {
    right: -100%;
  }

  #minidelivery .sidebar-left {
    background-color: white;
    max-width: 425px;
    width: 75%;
    height: 100%;
    padding: 10px;
    box-shadow: 1px 0px 30px 0px rgba(0,0,0,0.75);
  }

  #minidelivery .sidebar-right {
    position: absolute;
    max-width: 425px;
    background-color: white;
    max-width: 425px;
    right: 0;
    width: 80%;
    height: 100%;
    padding: 10px;
    box-shadow: -1px 0px 30px 0px rgba(0,0,0,0.75);
  }

  #minidelivery .sidebar-left-visible {
    left: 0;
  }

  #minidelivery .sidebar-right-visible {
    right: 0;
  }

  #minidelivery .spin-button {
    /*outline: none;
    cursor: pointer;
    background-color: #ecf0f1;
    border:none;
    border-radius: 8px;
    min-width: 40px;
    padding: 5px;
    font-weight: 500;
    font-size: 1.1em;*/
    font-size: .9em;
    line-height: 26px !important;
    font-weight: 500;
    letter-spacing: .0892857143em;
    text-decoration: none;
    text-transform: uppercase;
    /*padding: 5px 8px 5px 8px;*/
    padding: 8px;
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 24px;
    border: none;
    outline: none;
    line-height: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    overflow: visible;
    vertical-align: middle;
    border-radius: 4px;
    background-color: #f3f3f3;
    /*background-color: white;*/
    box-shadow: 0px 5px 5px -5px rgba(0,0,0,0.75);
  }

  #minidelivery .spin-button-spin{
    border-radius: 50%;
    Padding: 8px;
  }

  #minidelivery .rotate-l {
    transform: rotate(-90deg);
  }

  #minidelivery .rotate-r {
    transform: rotate(90deg);
  }
  
  #minidelivery .spin-value {
    margin: 10px;
    color: black;
  }

  #minidelivery .visible{
    opacity: 1;
  }

  #minidelivery .menu-category-container{
    margin: 5px;
  }

  #minidelivery .menu-category-button{
    display: none;
    margin: 2px ;
    padding: 5px 8px;
    line-height: 1em;
    font-size: 1em;
    background-color: #fefefe;
    text-decoration: none;
    color: black;
    white-space: nowrap;

    height: 3em;

    border:none;
    outline: none;
    cursor: pointer;
  }

  #minidelivery .validate-container{
    position: relative;
    min-height: 70vh;
  }

  #minidelivery .validate-table-scroller {

    display: flex;
    flex-direction: row;
    justify-content: center;
    max-height: 40vh;
    overflow-y: auto;
  }



  #minidelivery .validate-container table td {
    padding-left: 2em;
    padding-bottom: 5px;
  }

  #minidelivery .validate-actions {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }

  #minidelivery .validate-actions button {
    white-space: nowrap;
    margin-left: 3em;
    margin-right: 3em;

  }

  #minidelivery .validate-container button{
    outline: none;
    border: none;
    /*background-color: #fefefe;*/
    padding: 10px;
    border-radius: 8px;
    line-height: 1em;
    height: 45px;
  }

  #minidelivery .validate-container .apply:hover{
    background-color: #27ae60;
    color: #fefefe;
  }

  #minidelivery .validate-container .deny:hover{
    background-color: #c0392b;
    color: #fefefe;
  }

  #minidelivery .shoplist-page{
    height: 90vh;
    width: 100%;

    display: flex;
    flex-direction: column;
  }

  #minidelivery .shoplist-container {   
    font-size: 1.3em;
    margin:auto;
    height: 100%;
    max-width: 800px;
    width: 100%;
    /*display: flex;*/
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    overflow-y: auto;
  }

  #minidelivery .shoplist {
    margin-top: 2em;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax(300px, 350px) );
    grid-gap: 10px;
  }

  #minidelivery .shop {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
  }

  #minidelivery .shop:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }

  #minidelivery .shop-offline{
    cursor: default;
    background-color: rgba(0,0,0,0.05);
    box-shadow: 0 0 10px inset rgba(0,0,0,0.5);
  }

  #minidelivery .central-block {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  #minidelivery .shop-offilne-span{
    color: #c0392b;
  }

  #minidelivery .shop-online-span{
    color: #27ae60;
  }

  #minidelivery .shop-offline:hover{
    cursor: default;
    box-shadow: 0 0 10px inset rgba(0,0,0,0.5);
  }

  #minidelivery .hidden {
    display: none;
  }

  #minidelivery .shop .shopname{
    white-space: nowrap;
    font-size: 1.4em;
    font-weight: 500;
  }

  #minidelivery .shop .shopaddr{
    font-size: .9em;
    font-weight: 300;
    white-space: normal;
  }

  #minidelivery .shop .shopdesc{
    margin-top: 10px;
    font-size: .8em;
    font-weight: 100;
    white-space: pre-wrap;
  }

  #minidelivery .validate-blocks {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }


  