@charset "UTF-8";
@font-face {
  font-family: 'Arima Madurai';
  src: url("../fonts/Arima_Madurai/ArimaMadurai-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Arima Madurai';
  src: url("../fonts/Arima_Madurai/ArimaMadurai-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Arima Madurai';
  src: url("../fonts/Arima_Madurai/ArimaMadurai-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Arima Madurai';
  src: url("../fonts/Arima_Madurai/ArimaMadurai-ExtraBold.ttf");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Arima Madurai';
  src: url("../fonts/Arima_Madurai/ArimaMadurai-Black.ttf");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Arima Madurai';
  src: url("../fonts/Arima_Madurai/ArimaMadurai-Light.ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Arima Madurai';
  src: url("../fonts/Arima_Madurai/ArimaMadurai-ExtraLight.ttf");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Atma';
  src: url("../fonts/Atma/Atma-Light.ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Atma';
  src: url("../fonts/Atma/Atma-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Atma';
  src: url("../fonts/Atma/Atma-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Atma';
  src: url("../fonts/Atma/Atma-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Atma';
  src: url("../fonts/Atma/Atma-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin/Cabin-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin/Cabin-MediumItalic.ttf");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin/Cabin-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin/Cabin-Italic.ttf");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin/Cabin-SemiBoldItalic.ttf");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin/Cabin-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin/Cabin-BoldItalic.ttf");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin/Cabin-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1.5;
  background-color: #fff;
}

/*Los platos del menú*/
.food-items {
  margin: 2rem 0;
  margin-left: 30px;
  margin-right: 30px;
}

@media screen and (min-width: 992px) {
  .food-items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2rem;
            column-gap: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .food-items {
    display: inline;
  }
}

@media (min-width: 1px) and (max-width: 576px) {
  .food-items {
    margin: 0;
    margin-top: 1rem;
  }
}

.food-items .especial {
  border: 1.5px solid #D98587 !important;
}

.food-items .food-item {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 0 5px -4px rgba(0, 0, 0, 0.75);
          box-shadow: 0 0 5px -4px rgba(0, 0, 0, 0.75);
  -webkit-animation: fadeIn 2s;
          animation: fadeIn 2s;
  border: 1.5px solid #C5C5C5;
}

@media screen and (min-width: 600px) {
  .food-items .food-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100% auto;
        grid-template-columns: 100% auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem;
    -webkit-column-gap: 1rem;
            column-gap: 1rem;
    margin-bottom: 20px;
  }
}

@media (min-width: 320px) and (max-width: 576px) {
  .food-items .food-item {
    margin-bottom: 20px;
  }
}

.food-items .food-item .food-content {
  padding: 1rem;
  position: relative;
}

.food-items .food-item .food-content h2, .food-items .food-item .food-content h3 {
  margin-bottom: 0;
}

@media screen and (min-width: 600px) {
  .food-items .food-item .food-content {
    padding: 0;
  }
}

.food-items .food-item .food-content .food-name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.food-items .food-item .food-content .food-name span.titulo-comida {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 1.2px;
  color: #5C6269;
  text-transform: uppercase;
  width: 100%;
}

.food-items .food-item .food-content .food-name .lineas {
  padding-top: 16px;
  width: 100%;
  height: 2px;
  border-bottom: 1px dashed #5C6269;
  content: "";
}

@media (min-width: 320px) and (max-width: 576px) {
  .food-items .food-item .food-content .food-name .lineas {
    display: none;
  }
}

.food-items .food-item .food-content .food-name span.cantidad {
  font-family: 'Arima Madurai';
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 26px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 1.2px;
  color: #D98587;
  margin-left: 8px;
}

@media (min-width: 320px) and (max-width: 576px) {
  .food-items .food-item .food-content .food-name span.cantidad {
    font-size: 16px;
    line-height: 20px;
  }
}

.food-items .food-item .food-content .food-description {
  padding-top: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (min-width: 320px) and (max-width: 576px) {
  .food-items .food-item .food-content .food-description {
    display: -ms-grid;
    display: grid;
  }
}

.food-items .food-item .food-content .food-description span.descripcion {
  font-family: 'Cabin';
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 1.2px;
  color: #8F8F8F;
  margin-right: 10px;
  float: left;
}

@media (min-width: 320px) and (max-width: 576px) {
  .food-items .food-item .food-content .food-description span.descripcion {
    font-size: 16px;
    line-height: 20px;
  }
}

.food-items .food-item .food-content .food-description .alergeno {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 320px) and (max-width: 576px) {
  .food-items .food-item .food-content .food-description .alergeno {
    padding-top: 8px;
  }
}

.food-items .food-item .food-content .food-description .alergeno .icono {
  padding-right: 8px;
}

.food-items .food-item .food-content .menu-label {
  font-family: 'Arima Madurai';
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 1.2px;
  color: #FFFFFF;
  background-color: #D98587;
  left: auto;
  right: -16px;
  top: 49px;
  padding-left: 8px;
  padding-right: 8px;
  position: absolute;
  padding-top: 3px;
}

@media (min-width: 320px) and (max-width: 576px) {
  .food-items .food-item .food-content .menu-label {
    right: 0px;
    top: 130px;
    font-size: 12px;
  }
}

.tab-content .tab-pane > h2 {
  margin-left: 30px;
  margin-right: 30px;
  font-family: "Arima Madurai" !important;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 52px;
  letter-spacing: 1.2000000476837158px;
  text-align: left;
  color: #D98587;
}

/* Caso de "productos" > "flex" */
.col-productos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*Caso de tarifas > "style": "imploded", */
}

@media (max-width: 991px) {
  .col-productos {
    padding: 0px 12px;
  }
}

@media (max-width: 767px) {
  .col-productos {
    padding: 0px 8px;
  }
}

.col-productos > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

@media (max-width: 576px) {
  .col-productos > div {
    margin-bottom: 0.5rem;
  }
}

.col-productos > div p {
  font-family: "Galano Grotesque";
  font-size: 24px;
  font-weight: 600;
  line-height: 46px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #503629;
  margin: 0;
}

@media (max-width: 991px) {
  .col-productos > div p {
    font-size: 21px;
    font-weight: 700;
    line-height: 38px;
  }
}

@media (max-width: 576px) {
  .col-productos > div p {
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: -0.02em;
  }
}

.col-productos > div span {
  display: inline-block;
  margin-left: 32px;
  font-family: "Galano Grotesque";
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  color: #503629;
}

@media (max-width: 576px) {
  .col-productos > div span {
    font-size: 10px;
    font-weight: 400;
    line-height: 10px;
    letter-spacing: -0.04em;
  }
}

/*.row-productos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;       

    /*Caso de tarifas > "style": "imploded", */
/*> div {
        display: flex;

        p {
            @include nombre-plato();
        }
        
        span {
            display: inline-block;
            margin-right: 8px;
            @include precio-imploded();
        }
    }
}*/
/* Caso de "productos" > "table" */
.container-categoria {
  padding: 0 !important;
  background-color: #EFEFEC;
  border: 1px solid #503629;
}

.container-categoria:not(:last-child) {
  border-bottom: none;
}

@media (max-width: 576px) {
  .container-categoria:first-child {
    border-bottom: 1px solid #503629;
  }
  .container-categoria:first-child + div {
    border-top: none !important;
  }
}

.container-categoria.aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container-categoria.aside header {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
  width: auto;
  min-width: 83px;
}

@media (max-width: 576px) {
  .container-categoria.aside header {
    min-width: 28px;
  }
}

.container-categoria.aside header h3 {
  padding: 9px 0px;
  margin: 0;
  font-family: "Galano Grotesque";
  font-size: 60px;
  font-weight: 500;
  line-height: 81px;
  letter-spacing: 0em;
  text-align: center;
  color: #503629;
}

@media (max-width: 576px) {
  .container-categoria.aside header h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
  }
}

.container-categoria.aside header.right {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border-left: 1px solid #503629;
  border-bottom: none;
}

.container-categoria.aside header.right h3 {
  word-wrap: break-word;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.container-categoria.aside header.left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  border-right: 1px solid #503629;
  border-bottom: none;
}

.container-categoria.aside header.left h3 {
  word-wrap: break-word;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.container-categoria.aside > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-categoria header {
  border-bottom: 1px solid #503629;
}

.container-categoria header h3 {
  padding: 9px 0px;
  margin: 0;
  font-family: "Galano Grotesque";
  font-size: 60px;
  font-weight: 500;
  line-height: 81px;
  letter-spacing: 0em;
  text-align: center;
  color: #503629;
  text-transform: uppercase !important;
}

@media (max-width: 576px) {
  .container-categoria header h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
  }
}

.container-categoria > div {
  /*border: 1px solid $color-1;
        border-width: 0px 1px;*/
  padding: 46px 24px;
}

@media (max-width: 576px) {
  .container-categoria > div {
    padding: 16px 0px;
  }
}

.container-categoria > div .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  /*.productos-table {
                width: 100%;
    
                table {
                    th {
                        text-align: right;
                        padding: 0 24px;
                    }
    
                    tr {
                        td {
                            text-align: right;
                            padding: 0 24px;
        
                            &:first-child {
                                width: 100%;
                                text-align: left;
                            }
                        }
                    }
                }
            }*/
}

.container-categoria > div .content .productos-table {
  width: 100%;
}

.container-categoria > div .content .productos-table table {
  margin: 0;
}

.container-categoria > div .content .productos-table table th {
  text-align: right;
  padding: 0 24px;
  font-family: "Galano Grotesque";
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #503629;
}

@media (max-width: 576px) {
  .container-categoria > div .content .productos-table table th {
    padding: 0 8px;
    font-size: 9px;
    font-weight: 500;
    line-height: 9px;
    letter-spacing: 0em;
  }
}

.container-categoria > div .content .productos-table table tr td {
  text-align: right;
  padding: 0 24px;
  vertical-align: bottom;
}

@media (max-width: 576px) {
  .container-categoria > div .content .productos-table table tr td {
    padding: 0 8px;
    padding-bottom: 0.5rem;
  }
}

.container-categoria > div .content .productos-table table tr td p {
  font-family: "Galano Grotesque";
  font-size: 24px;
  font-weight: 600;
  line-height: 46px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #503629;
  margin: 0;
}

@media (max-width: 991px) {
  .container-categoria > div .content .productos-table table tr td p {
    font-size: 21px;
    font-weight: 700;
    line-height: 38px;
  }
}

@media (max-width: 576px) {
  .container-categoria > div .content .productos-table table tr td p {
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: -0.02em;
  }
}

.container-categoria > div .content .productos-table table tr td p.precio-plato {
  font-family: "Galano Grotesque";
  font-size: 21px;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: 0em;
  text-align: left;
  color: #503629;
}

@media (max-width: 576px) {
  .container-categoria > div .content .productos-table table tr td p.precio-plato {
    font-size: 10px;
    font-weight: 400;
    line-height: 9px;
    letter-spacing: 0em;
  }
}

.container-categoria > div .content .productos-table table tr td:first-child {
  width: 100%;
  text-align: left;
}

#container-carta {
  background: url("../img/cuadricula-carta.svg") #EFEFEC;
}

#container-carta.row {
  width: 100%;
  margin: 0;
}
/*# sourceMappingURL=style.css.map */