@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap'); :root {
    --dark-1: #520000;
    --dark-2: #222222;
    --gold-1: #febd59;
    --posada-orange-red: #F46F21;
    --posada-red: #c13607;
}

body {
    font-family: 'Special Elite', sans-serif;
    background-color: var(--gold-1);
}

body.dark {
    background-color: var(--dark-1);
}

h1 {
    /*font-family: 'Cormorant', serif;*/
}

.navbar.flex {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

nav.navbar {
    background-color: #FFFFFF;
    border-top: 1px solid var(--bifor-red);
}

header.example-one-header.scroll.affix-top nav.navbar.flex {
    background: var(--dark-1);
    box-shadow: 0 3px 13px 0px #0000007a;
    margin-bottom: 1px;
}

header.example-one-header.scroll.affix nav.navbar.flex {
    background: var(--dark-1);
    box-shadow: -2px 1px 6px 0px #191818;
}

nav.navbar.flex {
}

.dark nav.navbar {
    background-color: var(--dark-2);
    border-top: 1px solid var(--gold-1);
}

.affix {
    top: 0;
    width: 100%;
    z-index: 9999 !important;
}

.affix~.container-fluid {
    position: relative;
    top: 50px;
}

ul.navbar-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow-x: auto;
    overflow-y: hidden;
    overflow: -moz-scrollbars-none;
    scrollbar-base-color: transparent; -webkit-overflow-scrolling: touch;
    padding: 4px;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    /*means: animate .scrollLeft and .scrollTop */
    -webkit-transition-property: -webkit-scrolling;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-delay: 0.1s;
}

#myNavbar {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    align-content: center;
}

ul.navbar-nav li a.nav-button {
    opacity: 1;
    white-space: nowrap;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: .1s;
    transition-duration: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border: none;
    border-radius: 16px;
    margin: 0;
    padding: 2px 16px;
    /* line-height: 24px; */
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    /*  -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow,-webkit-box-shadow;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;*/
    -webkit-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
    -webkit-transition-timing-function: cubic-bezier(0.56, 0.12, 0.12, 0.98);
    transition-timing-function: cubic-bezier(0.56, 0.12, 0.12, 0.98);
    height: 2.2em;
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
}

ul.navbar-nav li a.nav-button span {
    font-size: 1.2em;
    -webkit-font-smoothing: subpixel-antialiased;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    /* height: 1.3em; */
    /* display: flex; */
    /* align-items: center; */
    /* align-content: center; */
    /* flex-direction: row; */
}

.dark ul.navbar-nav li a.nav-button span {
    color: white;
}

ul.navbar-nav li.active a.nav-button {
    background-color: #ffffff;
    -webkit-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
    -webkit-transition-timing-function: cubic-bezier(0.56, 0.12, 0.12, 0.98);
    transition-timing-function: cubic-bezier(0.56, 0.12, 0.12, 0.98);
    transition-delay: 350ms;
}

ul.navbar-nav li.active a.nav-button span {
    color: #2e3333;
    /* font-weight: 600; */
    -webkit-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
    -webkit-transition-timing-function: cubic-bezier(0.56, 0.12, 0.12, 0.98);
    transition-timing-function: cubic-bezier(0.56, 0.12, 0.12, 0.98);
    transition-delay: 350ms;
}

.scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    /*means: animate .scrollLeft and .scrollTop */
    -webkit-transition-property: -webkit-scrolling;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-delay: 0.1s;
}

header.example-one-header.scroll::-webkit-scrollbar {
    display: none;
}

.wrapper {
    /* margin-top: -120px; */
    /* margin-left: 20px; */
    /* margin-right: 20px; */
    background: white;
    margin-bottom: 0;
    position: relative;
}

.store-info {
    margin: 0;
    box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
    border-radius: 10px;
    background: #fff;
    padding: 14px 10px 24px;
    text-align: center;
    width: 100%;
    height: 100%;
    background: var(--dark-1);
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.dark .wrapper {
    background: transparent;
}

.products__wrap section[id]::before {
    content: '';
    display: block;
    height: 45px;
    margin-top: -50px;
    visibility: hidden;
}

/*HERO*/
.hero {
    width: 90vw;
    height: auto;
    max-height: 600px;
    /* min-height: 400px; */
    /* background-color: var(--dark-1); */
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    overflow: hidden;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* border: 20px solid white; */
    margin: 0 auto;
    align-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.dark .hero {
    background-color: transparent;
}

.orari {
    font-weight: 500;
}

.orari span {
    font-weight: 700;
}

#intro {
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    padding: 24px 24px 28px;
    /* min-height: 119px; */
    background-color: #fff;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .1);
    /* border-radius: 10px; */
    padding: 20px 10px;
    width: 100%;
    text-align: center;
    /* background-color: hsla(0, 0%, 100%, .9); */
    align-self: center;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid var(--bifor-red);
}

#intro p {
    font-size: 16px;
}

.category-name {
    background: var(--posada-red);
    color: white;
    padding: 0px 10px;
    display: flex;
    min-height: 90px;
    color: #ffffff;
    /* background-color: #f4f5f5; */
    padding-top: 20px;
    padding-bottom: 5px;
    position: relative;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
}

.category-name.noProducts {
    background: transparent;
    border: 0;
    color: var(--posada-red);
    font-weight: 900;
    font-size: 1.2em;
    padding-top: 30px;
}

section.category-normal .products-wrapper:last-child {
    margin-bottom: 18px;
}

span.category__parent {
    font-family: 'Special Elite';
    text-transform: uppercase;
    /* position: absolute; */
    font-size: 1.1em;
}

.category-name > div {
    /* position: relative; */
}

category-name.noProducts {
    background: transparent;
    border: 0;
    /* display: none; */
    color: var(--posada-red);
}

.dark .category-name {
    background: var(--dark-1);
    color: white;
    border-top: 1px solid var(--dark-2);
}

.category-name h2.category {
    font-size: 1.5em;
    margin-bottom: 5px;
    font-weight: 500;
    padding-top: 0;
    text-transform: uppercase;
    margin-top: 0;
    font-family: 'Special Elite';
}

.category-name.noProducts h2.category {
    font-size: 2.6rem;
}

.category-name .category-trad {
}

.products-wrapper {
    background: #f4f5f5;
}

.dark .products-wrapper {
    background: var(--dark-1);
}

.products-wrapper .product {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-self: stretch;
    flex: 1 1 100%;
    margin: 0;
    padding: 6px 10px;
    border: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
    /* border: 1px solid #e8ebeb; */
    border-bottom: none;
    background-color: var(--gold-1);
    box-shadow: none;
    outline: none;
    transition: box-shadow 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* margin-bottom: 5px; */
    /* box-shadow: 0px 2px 9px 1px #d4d4d4; */
    padding-top: 10px;
    min-height: 53px;
}

.dark .products-wrapper .product {
    border: 0;
}

.dark .products-wrapper .product {
    background: var(--dark-1);
}

.products-wrapper .product:last-child {
    border-top: 1px solid var(--posada-orange-red);
    /* border-bottom: 1px solid #e8ebeb; */
}

.dark .products-wrapper .product:last-child {
    border-color: var(--dark-2);
}

section#coperto .products-wrapper .product {
    border-top: 0;
}

.product .title {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product .title h3 {
    text-transform: uppercase;
    font-size: 1.3em;
    /* font-weight: 600; */
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.33;
}



.product.special .title h3 {
    text-transform: uppercase;
    font-size: 1.3em;
    /* font-weight: 600; */
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.33;
    color: var(--posada-red);
}

.title h3 span.icons {
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    font-size: 18px;
    position: relative;
    bottom: 3px;
}

i.fas.fa-phone-alt {
    font-size: 24px;
    padding-right: 11px;
    position: relative;
    bottom: 1px;
}

i.fas.fa-leaf {
    color: #82c91e;
}

i.fas.fa-pepper-hot {
    color: var(--bifor-red)
}

.dark .product .title h3, .dark .product .title h4 {
    color: white;
}

.product .title h4 {
    font-size: 14px;
    font-weight: 400;
}
.product.special .title h4 {
    color: #c13607;
}
.prezzo {
    min-height: 1%;
    display: flex;
    align-content: center;
    color: #2e3333;
    align-items: center;
    font-size: 1.3em;
    line-height: 1.3;
    font-weight: 600;
    justify-content: center;
    flex-direction: column;
    -webkit-font-smoothing: subpixel-antialiased;
    color: var(--dark-2);
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.product.special .prezzo{

color: var(--posada-red);
}

.dark .prezzo {
    color: var(--gold-1);
}

.prices span {
    color: rgb(51,51,51);
    font-weight: 500;
    font-size: 12px;
    padding-right: 9px;
    font-family: 'Montserrat', sans-serif;
}

footer.footer {
    height: 70vh;
    background: var(--dark-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    align-content: center;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
}

.seguici {
    font-size: 14px;
    padding-top: 35px;
    padding-bottom: 13px;
    text-transform: uppercase;
    color: antiquewhite;
}

.rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus, .rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus {
    color: #ee2653;
    background: transparent;
    border-color: none;
}

@charset "UTF-8"; .svg-inline--fa {
    vertical-align: -0.200em;
}

.rounded-social-buttons {
    text-align: center;
}

.rounded-social-buttons .social-button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    /*width: 3.125rem;*/
    /*height: 3.125rem;*/
    /* border: 0.125rem solid transparent; */
    padding: 0px 20px;
    text-decoration: none;
    text-align: center;
    color: #ee2653;
    font-size: 1.5625rem;
    font-weight: normal;
    line-height: 2em;
    border-radius: 1.6875rem;
    transition: all 0.5s ease;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-linkedin, .fa-youtube, .fa-instagram {
    font-size: 33px;
}

.rounded-social-buttons .social-button.facebook {
    /* background: #3b5998; */
}

.rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus {
    color: #ed2f51;
    background: #transparent;
    /*     border-color: #3b5998; */
}

.rounded-social-buttons .social-button.twitter {
    background: #55acee;
}

.rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus {
    color: #55acee;
    background: #fefefe;
    border-color: #55acee;
}

.rounded-social-buttons .social-button.linkedin {
    background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus {
    color: #007bb5;
    background: #fefefe;
    border-color: #007bb5;
}

.rounded-social-buttons .social-button.youtube {
    background: #bb0000;
}

.rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus {
    color: #bb0000;
    background: #fefefe;
    border-color: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
    /* background: #125688; */
}

.rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus {
    color: #ed2f51;
    background: #transparent;
}

.wrap {
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

/*accordion*/
.panel {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #fff;
    background: none;
    box-shadow: none;
}

.panel:last-child {
    border-bottom: none;
}

.panel-group>.panel:first-child .panel-heading {
    border-radius: 4px 4px 0 0;
}

.panel-group .panel {
    border-radius: 0;
}

.panel-group .panel+.panel {
    margin-top: 0;
}

.panel-heading {
    background-color: #009688;
    border-radius: 0;
    border: none;
    color: #fff;
    padding: 0;
}

.panel-title a {
    display: block;
    color: #fff;
    padding: 15px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
}

.panel-body {
    background: #fff;
}

.panel:last-child .panel-body {
    border-radius: 0 0 4px 4px;
}

.panel:last-child .panel-heading {
    border-radius: 0 0 4px 4px;
    transition: border-radius 0.3s linear 0.2s;
}

.panel:last-child .panel-heading.active {
    border-radius: 0;
    transition: border-radius linear 0s;
}

/* #bs-collapse icon scale option */
.panel-heading a:before {
    content: '\e146';
    position: absolute;
    font-family: 'Material Icons';
    right: 5px;
    top: 10px;
    font-size: 24px;
    transition: all 0.5s;
    transform: scale(1);
}

.panel-heading.active a:before {
    content: ' ';
    transition: all 0.5s;
    transform: scale(0);
}

#bs-collapse .panel-heading a:after {
    content: ' ';
    font-size: 24px;
    position: absolute;
    font-family: 'Material Icons';
    right: 5px;
    top: 10px;
    transform: scale(0);
    transition: all 0.5s;
}

#bs-collapse .panel-heading.active a:after {
    content: '\e909';
    transform: scale(1);
    transition: all 0.5s;
}

/* #accordion rotate icon option */
#accordion .panel-heading a:before {
    content: '\e316';
    font-size: 24px;
    position: absolute;
    font-family: 'Material Icons';
    right: 5px;
    top: 10px;
    transform: rotate(180deg);
    transition: all 0.5s;
}

#accordion .panel-heading.active a:before {
    transform: rotate(0deg);
    transition: all 0.5s;
}

.foto-prodotto {
    position: relative;
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    margin-top: 0;
    border-radius: 3px;
    margin-left: 16px;
    background-position: center;
    background-color: #e8ebeb;
    background-size: cover;
    /* background-image: url(/assets/images/macaroon/placeholder.svg);*/
}

section.telefono {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 86px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    font-family: 'Montserrat', sans-serif;
}

a.btn.chiama {
    font-size: 21px;
    background: #7CB342;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding: 0 27px;
    border-radius: 7px;
    width: 74%;
    color: #ffffff;
    box-shadow: 5px 2px 9px 1px #00000078;
    font-weight: 500;
}

@media screen and (min-width: 600px) {
    section.telefono {
        display: none;
    }

    .store-info img.img-responsive {
        max-width: 500px;
    }
}

@media screen and (min-width: 1440px) {
    .hero {
        width: 100%;
        height: 50vh;
        /* max-height: 600px; */
        min-height: 400px;
        background-color: #ed2f51;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        overflow: hidden;
        background-size: auto;
        background-position: center;
        background-repeat: no-repeat;
    }

    .products__wrap section[id]::before {
        content: '';
        display: block;
        height: 75px;
        margin-top: -75px;
        visibility: hidden;
    }

    footer.footer .store-info {
        border-radius: 0;
    }
}

/*section[id]::before {
  content: '';
  display: block;
  height:      75px;
  margin-top: -75px;
  visibility: hidden;
}*/
.divider {
    position: relative;
    bottom: -1px;
    width: 100%;
    height: 6vh;
    background-image: url("../assets/img/piadineria-la-posada/footer-divider.svg");
    background-position: 50% 100%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.divider-category {
    position: absolute;
    top: -9px;
    /* width: 100vw; */
    height: 10px;
    background-image: url("../assets/img/piadineria-la-posada/category-divider.svg");
    background-position: 50% 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    border: 0;
    width: 100%;
    background-attachment: scroll !important;
    bottom: -1px;
    width: 100%;
    height: 6vh;
}

.divider-linea {
    position: relative;
    bottom: -1px;
    width: 100%;
    height: 6vh;
    background-image: url("../assets/img/piadineria-la-posada/linea_divider.svg");
    background-position: 50% 100%;
    background-size: 100%;
    background-repeat: no-repeat;
}

/* .divider.version-01 {
    position: absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: -0.5%;
    z-index: 10;
    background-image: url("../assets/img/piadineria-la-posada/divider-1.svg");
    background-position: 50% 100%;
    background-size: 100%;
} */

.divider.version-01 {
    position: absolute;
    left: 0%;
    bottom: auto;
    right: 0%;
    top: -54.5%;
    z-index: 10;
    background-image: url(../assets/img/piadineria-la-posada/divider-1.svg);
    background-position: 50% 100%;
    background-size: 100%;
}
