/**
* Basic resets
*/
blockquote,
body,
caption,
div,
dl,
dt,
dd,
form,
fieldset,
h1,
h2,
h3,
h4,
h5,
h6,
html,
li,
ul,
ol,
p,
pre,
textarea,
table,
td,
th,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}
/**
* HTML5 elements legacy reset
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}
/**
* Reset box sizing
* (inherit from html in order to override easier of need arises)
*/
html {
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}
img {
    border: 0;
    height: auto;
    max-width: 100%;
}
/**
* Body styling
*/
html,
body {
    background: transparent;
    color: #000;
    min-height: 100%;
}

body.deactivate-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
/**
* Fonts & sizes
* Base size set to 13px
*/
html {
    font: 100%/1.5 'Roboto', Helvetica, Arial, sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    //font-size: 0.8125rem !important;
    font-size: 0.9125rem !important;
    -webkit-overflow-scrolling:touch;
}

ul,
ol {
    margin: 0 0 1.5em 2em;
}
dt {
    font-weight: bold;
}
dt,
dd {
    display: inline;
}
dd:after {
    content: '';
    display: block;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
table,
th,
td {
    border: 0;
}
th,
td {
    padding: 0.125em 0.2em;
    vertical-align: top;
}
caption,
th {
    font-weight: bold;
    text-align: left;
}

a {
    cursor: pointer;
    color: #0079C5;
}

a:active {
    outline: none;
}

a:hover,
a:focus,
a:active {
    color: #014c8c;
}

[role=button], a, area, button, input, label, select, summary, textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

h1.page-headline {
    font-size: 2.307692308em;
    line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -.04em;
    margin-bottom: 0.5em;
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
    font-family: 'Poppins', sans-serif;
    color: inherit;
}

h1,
.h1 {
    font-size: 1.846153846em;
    line-height: 1.2;
}

h2,
.h2 {
    font-size: 1.538461538em;
    line-height: 1.2;
}

h3,
.h3 {
    font-size: 1.307692308em;
    line-height: 1.3;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-size: 1.153846154em;
    line-height: 1.3;
}

small,
.small {
    font-size: .846153846em;
    line-height: 1.181818182;
}

p {
    letter-spacing: -.025em;
    line-height: 1.461538462;
    margin-bottom: .75em;
}

p.lead {
    font-size: 1.153846154em;
    line-height: 1.461538462;
}

button,
input,
select {
    font: inherit;
    font-size: 1em;
   
}
input[type="search"] {
    -webkit-appearance: none;
    border-radius: inherit;
}

input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], textarea {
    margin: 0;
    outline: 0;
    color: #333;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 2px;
    height: auto;
    -webkit-border-radius: 2px;
    -webkit-appearance: none;
    padding: .75rem;
    width: 100%;
    box-sizing: border-box;
    transition-property: box-shadow;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0, 1);
}

button {
    cursor: pointer;
}

.block-link,
.block-link:hover,
.block-link:focus,
.block-link:active,
.block-link:visited {
    color: inherit;
    display: block;
    text-decoration: none;
}
b,
strong {
    font-weight: bold;
}
i,
em {
    font-style: italic;
}

img.left {
    float: left;
    margin: 0 1rem 1rem 0;
}
img.right {
    float: right;
    margin: 0 0 1rem 1rem;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.img-round {
    border-radius: 50%;
}

.border-top {
    border-top: 1px solid #eee;
}

.border-right {
    border-right: 1px solid #eee;
}

.border-left {
    border-left: 1px solid #eee;
}

.border-top-dashed {
    border-top: 1px dashed #eee;
}

.border-bottom {
    border-bottom: 1px solid #eee;
}

.padding-top-0 {
    padding-top: 0 !important;
}

.padding-top-0-5 {
    padding-top: 0.5em !important;
}

.padding-top-1 {
    padding-top: 1em !important;
}

.padding-top-2 {
    padding-top: 2em !important;
}

.padding-bottom-1 {
    padding-bottom: 1em !important;
}

.padding-bottom-2 {
    padding-bottom: 2em !important;
}

.padding-right-1 {
    padding-right: 1em !important;
}

.padding-right-1-5 {
    padding-right: 1.5em !important;
}

.padding-right-3 {
    padding-right: 3em !important;
}

.margin-right-0-4 {
    margin-right: .4em !important;
}

.margin-right-0-5 {
    margin-right: .5em !important;
}

.margin-right-1 {
    margin-right: 1em !important;
}

.margin-right-2 {
    margin-right: 2em !important;
}

.margin-right-3 {
    margin-right: 3em !important;
}

.margin-right-4 {
    margin-right: 4em !important;
}

.margin-left-1 {
    margin-left: 1em !important;
}

.margin-left-2 {
    margin-left: 2em !important;
}

.margin-left-3 {
    margin-left: 3em !important;
}

.margin-left-4 {
    margin-left: 4em !important;
}

.margin-top-0-5 {
    margin-top: .5em !important;
}

.margin-top-1 {
    margin-top: 1em !important;
}

.margin-top-1-3 {
    margin-top: 1.3em !important;
}

.margin-top-1-5 {
    margin-top: 1.5em !important;
}

.margin-top-2 {
    margin-top: 2em !important;
}

.margin-top-2-5 {
    margin-top: 2.5em !important;
}

.margin-top-3 {
    margin-top: 3em !important;
}

.margin-top-4 {
    margin-top: 4em !important;
}

.margin-top-5 {
    margin-top: 5em !important;
}

.margin-bottom-0-5 {
    margin-bottom: .5em !important;
}

.margin-bottom-1 {
    margin-bottom: 1em !important;
}

.margin-bottom-1-3 {
    margin-top: 1.3em !important;
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.margin-bottom-1-5 {
    margin-bottom: 1.5em !important;
}

.margin-bottom-2 {
    margin-bottom: 2em !important;
}

.margin-bottom-2-5 {
    margin-bottom: 2.5em !important;
}

.margin-bottom-3 {
    margin-bottom: 3em !important;
}

.margin-bottom-3-5 {
    margin-bottom: 3.5em !important;
}

.margin-bottom-4 {
    margin-bottom: 4em !important;
}

.margin-bottom-4-5 {
    margin-bottom: 4.5em !important;
}

.margin-bottom-5 {
    margin-bottom: 5em !important;
}

.pagecontent {
    background-color: #fff;
    width: 100%;
    z-index: 1;
    position: inherit;
}

.hide{
    display:none;
}

.clear-both {
    clear: both;
}

.inline-list {
    display: inline-block;
    list-style: none outside none;
    margin-bottom: 0;
    padding-left: 0;
}

.inline-list .inline-list-item {
    float: left;
    margin-bottom: 1em;
    margin-right: 1em;
}

.offscreen {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.pagecontent .pagecontent-main {
    margin-right: .5em;
    margin-left: .5em;
}

[role="main"] {
    padding-top: 3.5rem;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0, 1);
}
.section-intro {
    text-align: center;
}

.page-excerpt, .section-excerpt, .range-intro-excerpt {
    font-size: 1em;
}

.page-excerpt, .section-excerpt, .range-intro-excerpt {
    margin: 0 auto 0;
    max-width: 35em !important;
    font-size: 1.0769em;
    line-height: 1.5;
    margin-bottom: 1em;
}

.content > h2, .content > p{
    padding: 0 .75rem;
}

/* button */

.button {
    border: 2px solid transparent;
    border-radius: 3px;
    box-sizing: border-box;
    cursor: pointer;
    line-height: 1;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition-duration: .25s;
    transition-duration: .25s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    outline: 0;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
}

.button.is-fullWidth {
    display: block;
    width: 100%;   
}

.buttonLarge {
    font-size: 1rem;
    height: 50px;
    padding: 0 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.buttonContent {
    pointer-events: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%;
}

.elemento {
    margin: .75rem;
}

.elemento .textos-elemento {
    width: 85%;  
}

.elemento .title-elemento {
    display: table-cell;
    width: 95%;  
}

.elemento .title-elemento h3 {
    margin: 5px 0;
    font-size: 1.2em;
}

.elemento .desc-elemento {
    float: left;
    line-height: 1.2em;
    opacity: .7;
}

.elemento .precio-elemento {
    position: relative;
    top: 15px;
    display: table;
    width: 100%;    
}

.elemento .precio-line {
    height: 3px;
    border-bottom: 1px dashed #a8a8a8;
    display: table-cell;
    width: 98%;
    z-index: 1;
    position: relative;
    bottom: 35px;
    opacity: .7;
}

.elemento.menu .precio-line {
    height: 3px;
    border-bottom: 1px dashed #a8a8a8;
    display: table-cell;
    width: 98%;
    z-index: 1;
    position: relative;
    bottom: 20px;
    opacity: .7;
}

.elemento .precio-holder {
    display: table-cell;
    width: 1%;
    padding-left: .5rem;
    white-space: nowrap;
    bottom: 12px;
    position: relative;
    text-align: right;
}

.elemento .precio-holder h4{    
    font-size: 1.353846154em;
}

.elemento .precio-holder h4 span, .price h3 span{    
    font-size: .7em;
}

.alergenos{
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    margin-top: .5rem;
}

#modal .alergenos{
    float: none;
}
.alergenos li{
    display: inline-block;
    padding-right: .5rem;
}

.alergenos li img{
    width: 28px;
}

.alergenos li span{
    display: table-cell;
    vertical-align: middle;
    font-size: 0.75rem;   
}

.alergenos li span:last-of-type{
    padding-left: .35rem;  
}

.menu-title-wrapper{
    display: table;
    width: 100%;
    padding-bottom: 1rem;
}

.title-menu{
    display: table-cell;
    width: 60%;
}

.precio-menu{
    display: table-cell;
    text-align: right;
    width: 35%;
    vertical-align: middle;
    padding-right: 0.75rem;
}

.content .precio-menu h2{
    //display: inline-block;
    font-size: 2rem;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.content p{
    font-size: 1rem;
}
   

#modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -2001;
}

#modal.active {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2001;
}

#modal.is-scrollable.active {
    overflow-y: auto;
}

#modal.active > div {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100%;
    background: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 100%;
    z-index: 2002;
    position: fixed;
    text-align: left;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 767px){
#modal.active {
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}
#modal.active > div {
    max-width: 500px;
}
}


#modal.active > div.active {
    box-shadow: -7px 0 14px rgba(34,25,36,.2);
}

.modal-content {
    padding-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding-bottom: 0;
    font-size: .9rem;
    overflow-y: auto;
    overflow-y: overlay;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

.StickyContainer {
    position: -webkit-sticky;
    position: sticky;
    z-index: 10;
    top: 0;
    transform: translateZ(0);
}

.Sticky-header {
    width: 33%;
    position: relative;
    top: 0;
    z-index: 10;
    display: block;
    text-align: center;
    float: right;
    margin-right: 15px;
}
.Container-header.is-sticking {
    z-index: 1000;
    top: 0;
}

.Container-header {
    height: 30px;
    width: 100%;
    line-height: 30px;
    position: relative;
    background-color: #000;
    overflow: hidden;
    border-radius: 100px;
    margin: .5rem;
    color: #fff;
}

.Container-header .Header-button--back {
   /* left: 15px;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    z-index: 2;
    font-size: 1.35rem;*/
}

.Modal-contentWrap{
    position: relative;
    margin-top: 0;
}

.Modal-content {
    padding: 3rem 1rem 1rem;
}


.Modal-image~.Modal-content {
    padding: 1rem;
}

.noScroll {
    overflow: hidden;
    position: relative;
    max-height: 100vh;
    -webkit-overflow-scrolling: auto;
}

.Modal-image{
    background-position: center;
    background-size: cover;
    height: 300px;
}

.modal-close--fadeOutRight {
    animation-name: fadeOutClose;
    animation-timing-function: cubic-bezier(.4,0,.6,1);
    animation-duration: .225s;
    animation-fill-mode: forwards
}

.modal-transition--fadeInRight,.modal-transition--fadeOutRight {
    animation-duration: .225s;
    animation-timing-function: cubic-bezier(0,0,.2,1);
    animation-fill-mode: forwards
}

.modal-transition--fadeInRight {
    animation-name: fadeInRight;
}

.modal-transition--fadeOutRight {
    animation-timing-function: cubic-bezier(.4,0,.6,1);
    animation-name: fadeOutRight
}

#modal:focus {
    outline: 0
}

#modal.is-transitioned-right {
    right: 0;
}