body {
    margin: 0;
    background: #111111;
    border: double 7px #ececec;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    position: absolute;
    overflow: auto;
}

h1, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 45px;
}

h2, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

h3 {
    font-size: 25px;
}

h1, h2, h3 {
    margin: 0;
    color: white;
    text-align: center;
}

ul {
    text-align: left;
}

@font-face {
    font-family: 'Cafe Francoise';
    src: url(../../fonts/Cafe_Francoise_D.otf);
}

@font-face {
    font-family: 'Skia';
    src: url(../../fonts/skia.ttf) format('woff');
}

.noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.noSelect:focus {
    outline: none !important;
}

#layout-content {
    overflow: auto;
    height: 100%;
}

.logo-container {
    text-align: center;
}

.logo-container p {
    color: white;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
    white-space: pre;
    font-size: 14px;
}

.row {
    display: flex;
}

/* picanteria resto bar */
.categories-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

.categories-wrapper .category {
    display: inline-flex;
    width: 100%;
    padding: 10px 0;
    margin: 5px 0;
    background: #1a1a1a;
    justify-content: center;
    cursor: pointer;
}

.categories-wrapper .category .title-wrapper {
    width: 100%;
}

.category h2 {
    font-size: 14px;
    text-align: right;
    background: #111111;
    border-top: 2px solid #e9a424;
    border-right: 2px solid #e9a424;
    border-bottom: 2px solid #e9a424;
    padding: 10px;
}

.category h2 span {
    border-bottom: 2.5px solid #e9a424;
}

.categories-wrapper .category .thumbnail {
    width: 100%;
}

.categories-wrapper .category .thumbnail img {
    height: 45px;
}

#menu {
    height: 100%;
    width: 100%;
}

#menu .content {
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

#menu .content .offer {
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    width: 100%;
}

#menu .about {
    color: #b7b7b7;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
}

#menu .about p {
    margin: auto 1.1rem;
}

#menu .about p.hidden {
    max-height: 70px;
    overflow: hidden;
}

#menu .about strong {
    text-align: center;
    color: #e9a42e;
    cursor: pointer;
    display: block;
    margin: auto;
    padding: 0.5rem 1rem;
}

#modal {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #111111b8;
    display: none;
}

#modal.show {
    display: block;
}

.modal-container {
    margin: 20px 10px;
    width: calc(100% - 20px);
    height: calc(100% - 40px);
    display: inline-flex;
    overflow: auto;
}

.modal-wrapper {
    background: #111111;
    margin: auto auto;
    max-width: 600px;
    width: 100%;
}

.modal-wrapper > .header {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 2px solid #e9a42e;
    background: #111111;
    position: sticky;
    top: 0;
}

.modal-wrapper .header h2 {
    text-align: left;
    margin: 0 15px;
    width: 100%;
}

.modal-wrapper .header .close {
    width: 65px;
    margin: 0;
    text-align: center;
    font-size: 20px;
    line-height: 45px;
    background: #e9a424;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
}

.modal-wrapper .body .items {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.modal-wrapper .body .items .header {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 2px dotted white;
}

.modal-wrapper .body .items .item {
    margin: 10px 15px;
}

.modal-wrapper .body .items .item h3 {
    font-weight: 100;
    font-size: 16px;
    text-transform: uppercase;
    text-align: left;
}

.modal-wrapper .body .items .item h4 {
    color: #e9a42e;
    font-style: italic;
    font-size: 18px;
    margin: auto 0 0 0;
}

.modal-wrapper .body .items .item p {
    margin: 0;
    color: white;
    font-weight: 100;
    font-family: 'Oswald', sans-serif;
}

@media (min-width: 650px) {
    .categories-wrapper .category {
        width: 45%;
        margin: 5px;
    }
}