/* body {
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    font-family: 'Inter', sans-serif;
    overflow-y: hidden;
} */

html {
    overflow-y: hidden;
}

body {
    background-color: #fcfcfc;
}

body#index .center-app-menu {
    height: 100dvh;
    background-image: url('/images/index/image_bg_menu.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-y: hidden;
}

#ajax-loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #FCFCFC;
    width: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.spinner {
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -20px;
    position: absolute;
    z-index: 19 !important;
    animation: loading-bar-spinner 400ms linear infinite;
}

.spinner-icon {
    width: 40px;
    height: 40px;
    border: solid 4px transparent;
    border-top-color: #0D6CA2 !important;
    border-left-color: #0D6CA2 !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* CONTENT APP */
.content-app-menu {
    position: relative;
    height: 100dvh;
}

::-webkit-scrollbar {
    width: 0px;
}

/* TOP APP */
.top-app-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 90;
    text-align: center;
    padding: 12px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* CENTER APP */
.center-app-menu {
    background-color: #FCFCFC;
    padding: 80px 12px;
    height:100%;
    overflow-y: scroll;
}

/* BOTTOM APP */
.bottom-app-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    z-index: 100;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
}

.item-navigation-app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item-navigation-app svg {
    max-width: 20px;
    height: auto;
    margin-bottom: 8px;
}

.item-navigation-app span {
    font-size: 10px;
    line-height: 14px;
}

/* OFFCANVAS */
.offcanvas {
    min-height: 50vh;
    margin: 12px;
    border-radius: 10px;
    bottom: 70px;
    z-index: 91;
}

.offcanvas-header {
    align-items: flex-start;
    margin: 12px;
    padding: 0;
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.offcanvas-title {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 4px;
}

.offcanvas-body {
    padding-top: 0;
}

.heading-offcanvas span {
    font-size: 11px;
    line-height: 14px;
    color: #707070;
}

.offcanvas.offcanvas-bottom {
    border-top: none;
}

.offcanvas-backdrop {
    z-index: 90;
}

.offcanvas-backdrop.show {
    opacity: .2;
}


/*  OFFCANVAS MENU */
.category-item {
    font-size: 14px;
    line-height: unset;
    font-weight: 400;
    color: #212121;
    text-decoration: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-item {
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 1px solid #EEEEEE;
}

.menu-item:first-child {
    padding-top: 0px;
    padding-bottom: 12px;
    border-top: unset;
}


/* PRODUCT LIST */
.product-name {
    flex-basis: 80%;
}

.product-name p,
.wine-name {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: #0D6CA2;
    margin-bottom: 8px;
    padding-right: 12px;
}

.product-price p {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    color: #0D6CA2;
    margin-bottom: 4px;
}

.wine-price {
    font-size: 13px;
    text-wrap: nowrap;
    line-height: 1.3;
    font-weight: 500;
    color: #0D6CA2;
    margin-bottom: 4px;
}

.product-description {
    width: 80%;
}

.product-description p,
.wine-brand {
    font-family: terminal, monaco, monospace;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #545454;
}

.item {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.item:last-child {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: unset;
}

.heading_region {
    padding: 8px 12px;
    background-color: #0D6CA2;
    border-radius: 7.5px;
    margin-bottom: 18px;
}

.heading_region h2 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: normal;
    text-transform: uppercase;
    color: #fff;
}

.chef_name {
    position: absolute;
    top: 10%;
    left: 50%;
    font-size: 14px;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.7px;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

.allergen_details img {
    max-width: 20px;
    margin-right: 4px;
}

.allergen_details:last-child {
    margin-right: unset;
}

.lang_en {
    position: absolute;
    right: 5%;
    top: 20px;
}

body:not(#vini-al-calice) .wine_glass {
    display: none;
}

body#vini-al-calice .wine_bottle {
    display: none;
}
