@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:300,400|Lora:400i);/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/projects/calisidre/custom/themes/100x100/assets/images/vendor/owl.carousel/src/owl.video.play.png?4a37f8008959c75f619bf0a3a4e2d7a2) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* ------------------------------------------------------------------------- */

/* WordPress WYSIWYG Editor Styles */

/* ------------------------------------------------------------------------- */

.entry-content img {
  margin: 0 0 1.5em 0;
}

.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.alignnone,
img.alignnone {
  /* not sure about this one */
}

.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/* ------------------------------------------------------------------------- */

/* VARIABLES 100X100 */

/* ------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------- */

/* GENEREAL STYLE FRO 100X100 */

/* ------------------------------------------------------------------------- */

.center-content {
  text-align: center;
}

.left-content {
  text-align: left;
}

.right-content {
  text-align: right;
}

/* ------------------------------------------------------------------------- */

/* 100X100 GRID SYSTEM */

/* ------------------------------------------------------------------------- */

.column-container {
  font-size: 0;
}

.column {
  display: inline-block;
  padding: 0.5%;
  vertical-align: top;
}

.column-1 {
  width: 8.3333333333%;
}

.column-2 {
  width: 16.6666666667%;
}

.column-3 {
  width: 25%;
}

.column-4 {
  width: 33.333333333%;
}

.column-5 {
  width: 41.666666667%;
}

.column-6 {
  width: 50%;
}

.column-7 {
  width: 58.333333333%;
}

.column-8 {
  width: 66.666666667%;
}

.column-9 {
  width: 75%;
}

.column-10 {
  width: 83.33333333%;
}

.column-11 {
  width: 91.66666667%;
}

.column-12 {
  width: 100%;
}

/* Special Grids */

.column-margin {
  display: inline-block;
  vertical-align: top;
}

.column-1_11 {
  width: 8.5%;
  margin-left: 0.29545455%;
  margin-right: 0.29545455%;
}

@media only screen and (max-width: 1100px) {
  .column-1-tablet {
    width: 8.3333333333%;
  }

  .column-2-tablet {
    width: 16.6666666667%;
  }

  .column-3-tablet {
    width: 25%;
  }

  .column-4-tablet {
    width: 33.333333333%;
  }

  .column-5-tablet {
    width: 41.666666667%;
  }

  .column-6-tablet {
    width: 50%;
  }

  .column-7-tablet {
    width: 58.333333333%;
  }

  .column-8-tablet {
    width: 66.666666667%;
  }

  .column-9-tablet {
    width: 75%;
  }

  .column-10-tablet {
    width: 83.33333333%;
  }

  .column-11-tablet {
    width: 91.66666667%;
  }

  .column-12-tablet {
    width: 100%;
  }
}

@media only screen and (max-width: 800px) {
  .column-1-mobile {
    width: 8.3333333333%;
  }

  .column-2-mobile {
    width: 16.6666666667%;
  }

  .column-3-mobile {
    width: 25%;
  }

  .column-4-mobile {
    width: 33.333333333%;
  }

  .column-5-mobile {
    width: 41.666666667%;
  }

  .column-6-mobile {
    width: 50%;
  }

  .column-7-mobile {
    width: 58.333333333%;
  }

  .column-8-mobile {
    width: 66.666666667%;
  }

  .column-9-mobile {
    width: 75%;
  }

  .column-10-mobile {
    width: 83.33333333%;
  }

  .column-11-mobile {
    width: 91.66666667%;
  }

  .column-12-mobile {
    width: 100%;
  }

  .column-0-mobile {
    display: none;
  }
}

/* ------------------------------------------------------------------------- */

/* VARIABLES */

/* ------------------------------------------------------------------------- */

/* 300 y 400*/

/* ==========================================================================
   RESET CSS
   ========================================================================== */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
figure,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  list-style: none;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
}

body {
  background-color: white;
}

a {
  text-decoration: none;
  outline: 0;
}

a:hover {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

p a {
  text-decoration: underline;
  outline: 0;
  color: black;
  font-weight: bold;
}

p a:hover {
  text-decoration: underline;
  color: #555;
}

input[type=submit],
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html,
body {
  overflow-x: hidden;
}

/* ------------------------------------------------------------------------- */

/* GENEREAL STYLE - Classes used throught all the project */

/* ------------------------------------------------------------------------- */

body {
  background-color: white;
  min-height: 100%;
  font-family: "Josefin Sans", sans-serif;
  color: #140000;
  font-size: 17px;
  line-height: 130%;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

p {
  font-size: 16px;
  line-height: 130%;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-mini {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

a,
button {
  cursor: pointer;
}

.clearfix,
.clear {
  clear: both;
}

strong {
  font-weight: 400;
}

p a,
a {
  text-decoration: none;
}

p i,
i {
  font-style: italic;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

.no_padding {
  padding: 0px !important;
}

@media only screen and (max-width: 800px) {
  .container {
    padding: 0 0px;
  }
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  border-radius: 10px;
  background-color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  background-color: #4a4a4a;
}

/* ------------------------------------------------------------------------- */

/* COOKIES POP UP STYLES */

/* ------------------------------------------------------------------------- */

.cookies {
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 50px;
  z-index: 100;
  background-color: #6c0001;
  color: white;
  text-align: center;
  line-height: 50px;
}

.cookies__container {
  width: 90%;
  margin: 0 auto;
  display: table;
  height: 100%;
}

.cookies__text {
  display: table-cell;
  vertical-align: middle;
  font-weight: 300;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
}

.cookies__text a {
  color: white;
}

.cookies__text a:hover {
  color: white;
}

@media only screen and (max-width: 800px) {
  .cookies {
    height: 60px;
  }

  .cookies__text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 500px) {
  .cookies {
    height: 100px;
  }
}

/* ------------------------------------------------------------------------- */

/* HEADER STYLES */

/* ------------------------------------------------------------------------- */

header.header {
  position: fixed;
  height: 90px;
  padding: 20px 0 0;
  box-sizing: border-box;
  width: 100%;
  z-index: 100;
  background-color: white;
  top: 0px;
}

/* LOGO */

a.web-logo {
  display: block;
  float: left;
  margin-top: 0px;
}

a.web-logo img {
  width: 80%;
}

/* SOCIALES */

ul.header-navbar__social-navbar {
  display: inline-block;
  float: right;
  margin-left: 25px;
  margin-top: 10px;
}

ul.header-navbar__social-navbar li {
  display: inline-block;
  margin: 0 5px;
}

ul.header-navbar__social-navbar li a {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  opacity: 1;
  background-repeat: no-repeat;
  background-color: #6C0001;
  background-position: center;
  background-size: 60%;
  transition: all 0.2s;
}

ul.header-navbar__social-navbar li a:hover {
  opacity: 0.7;
}

ul.header-navbar__social-navbar li a span {
  display: none;
  visibility: hidden;
}

ul.header-navbar__social-navbar li a.instagram {
  background-image: url(/projects/calisidre/custom/themes/100x100/assets/images/icon_instagram.svg?c58e06ea31068d77e9c87015c7cd7a4b);
}

ul.header-navbar__social-navbar li a.facebook {
  background-image: url(/projects/calisidre/custom/themes/100x100/assets/images/icon_facebook.svg?ee05f391ecd3e8d85c71760c48553ba0);
}

/* IDIOMAS */

.header_idiomas {
  float: right;
  text-align: right;
  margin-top: 10px;
}

.header_idiomas ul li {
  display: inline-block;
  margin: 0 1px;
}

.header_idiomas ul li a {
  color: #140000;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 3px 5px 1px;
  background-color: white;
  transition: all 0.2s;
}

.header_idiomas ul li a:hover,
.header_idiomas ul li.wpml-ls-current-language a {
  font-weight: 400;
}

/* MENU */

.header_menu {
  float: right;
  margin-top: 8px;
  margin-right: 20px;
  padding-right: 15px;
  border-right: 1px solid #6C0001;
}

.header_menu ul li {
  display: inline-block;
  margin: 0 1px;
}

.header_menu ul li a,
.header_menu ul li.book-item a {
  color: #140000;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 5px 8px 3px;
  border-radius: 5px;
  background-color: white;
  transition: all 0.2s;
}

.header_menu ul li a:hover {
  font-weight: 400;
}

/* MENU - RESERVA */

.header_menu-reserva {
  float: right;
  margin-top: 4px;
  margin-right: 20px;
  padding-right: 15px;
  border-right: 1px solid #6C0001;
  display: none;
}

.header_menu-reserva ul li {
  display: inline-block;
  margin: 0 5px;
}

.header_menu-reserva ul li a {
  color: white;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 5px 10px 3px;
  border-radius: 5px;
  background-color: white;
  transition: all 0.2s;
}

.header_menu-reserva ul li a:hover,
.header_menu-reserva ul li.current-menu-item a,
.header_menu-reserva ul li.book-item a {
  background: #6C0001;
}

/* MOBILE */

#negroID {
  z-index: 10;
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
}

#menu-desplegable {
  display: block;
  z-index: 11;
  height: 100%;
  width: 200px;
  background-color: white;
  position: fixed;
  top: 0;
  right: -200px;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.9s;
}

.menu-mobile {
  display: inline-block;
  transition: all 0.5s;
}

.menu-mobile ul {
  display: inline-block;
  margin: 65px 0 20px;
  position: relative;
}

.menu-mobile ul li {
  display: block;
  margin: 6px 0px;
  position: relative;
}

.menu-mobile ul li a {
  font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  letter-spacing: 0px;
  color: #14000094;
  text-transform: uppercase;
  padding: 4px 10px 2px 30px;
  position: relative;
  overflow: hidden;
  display: block;
}

.menu-mobile ul li a:hover,
.menu-mobile ul li.current-menu-item a {
  color: #140000;
}

/* SOCIALES */

ul.social-mobile {
  display: inline-block;
  margin-left: 25px;
}

ul.social-mobile li {
  display: inline-block;
  margin: 0 5px;
}

ul.social-mobile li a {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  opacity: 1;
  background-repeat: no-repeat;
  background-color: #6C0001;
  background-position: center;
  background-size: 60%;
  transition: all 0.2s;
}

ul.social-mobile li a:hover {
  opacity: 0.7;
}

ul.social-mobile li a span {
  display: none;
  visibility: hidden;
}

ul.social-mobile li a.instagram {
  background-image: url(/projects/calisidre/custom/themes/100x100/assets/images/icon_instagram.svg?c58e06ea31068d77e9c87015c7cd7a4b);
}

ul.social-mobile li a.facebook {
  background-image: url(/projects/calisidre/custom/themes/100x100/assets/images/icon_facebook.svg?ee05f391ecd3e8d85c71760c48553ba0);
}

#nav-open-close {
  position: relative;
  float: right;
  margin-left: 35px;
  margin-top: 10px;
  z-index: 12;
  width: 30px;
  height: 22px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}

#nav-open-close span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #222;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-open-close span:nth-child(1) {
  top: 0px;
}

#nav-open-close span:nth-child(2) {
  top: 10px;
}

#nav-open-close span:nth-child(3) {
  top: 20px;
}

#nav-open-close.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
  width: 30px;
  left: 0px;
}

#nav-open-close.open span:nth-child(2) {
  opacity: 0;
  left: 0px;
}

#nav-open-close.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
  width: 30px;
  left: 0px;
}

/* BUTTON FLOTANTE */

.button-flotante {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  line-height: 130%;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  background: #6C0001;
  z-index: 2;
}

@media only screen and (max-width: 1300px) {
  header.header {
    padding: 5px 0 0;
  }

  a.web-logo {
    margin-top: 15px;
  }

  .header_idiomas {
    margin-left: 20%;
  }

  .header_menu {
    margin-top: 2px;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
}

@media only screen and (max-width: 1100px) {
  .header_menu ul li a {
    font-size: 15px;
    padding: 5px 5px 3px;
  }

  .header_menu ul li {
    margin: 0;
  }

  ul.header-navbar__social-navbar {
    margin-left: 10px;
  }

  .header_idiomas ul li a {
    font-size: 15px;
    padding: 3px 3px 1px;
  }

  .header_menu-reserva {
    margin-right: 10px;
    padding-right: 0;
    border-right: none;
  }

  .header_menu-reserva ul li {
    margin: 0 2px;
  }

  .header_menu-reserva ul li a {
    font-size: 15px;
    padding: 5px 5px 3px;
  }
}

@media only screen and (max-width: 1000px) {
  /*header.header { height: 70px; }*/

  a.web-logo {
    margin-top: 0;
    max-width: 130px;
  }

  a.web-logo img {
    width: 100%;
  }

  .header_menu ul li a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 800px) {
  header.header {
    height: 65px;
    padding: 12px 0 0;
  }

  a.web-logo {
    max-width: 120px;
  }

  .header_idiomas {
    text-align: right;
    margin-top: 5px;
  }

  #nav-open-close {
    display: block;
  }

  .header_menu,
  ul.header-navbar__social-navbar,
  .header_idiomas {
    display: none;
  }

  .header_menu-reserva {
    display: block;
  }

  header .container {
    padding: 0 20px;
  }

  .idiomas-mobile {
    float: left;
    text-align: right;
    margin-top: 0px;
    margin-left: 25px;
    margin-bottom: 10px;
  }

  .idiomas-mobile ul li {
    display: inline-block;
    margin: 0 1px;
  }

  .idiomas-mobile ul li a {
    color: #140000;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: block;
    padding: 3px 5px 1px;
    border-radius: 5px;
    background-color: white;
    transition: all 0.2s;
  }

  .idiomas-mobile ul li a:hover,
  .idiomas-mobile ul li.wpml-ls-current-language a {
    font-weight: 400;
  }

  .button-flotante {
    display: block;
  }
}

/* ------------------------------------------------------------------------- */

/* SINGLE PHP STYLES */

/* ------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------- */

/* HOME STYLES */

/* ------------------------------------------------------------------------- */

/*  POPUP ANUNCIO  */

.popup-anuncio {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.popup-anuncio.visible {
  opacity: 1;
  visibility: visible;
}

.popup-anuncio.invisible {
  display: none;
}

.popup-anuncio .popup-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90%;
  padding-top: 20px;
  padding-right: 20px;
}

.popup-anuncio .popup-box .close-popup-anuncio {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
  cursor: pointer;
  border: 1px solid white;
  z-index: 1;
}

.popup-anuncio .popup-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 13%;
  background: white;
  display: flex;
}

.popup-anuncio .popup-container:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid black;
}

.popup-anuncio .popup-container .popup-content {
  z-index: 1;
}

.popup-anuncio .popup-container .popup-content p {
  font-size: 20px;
  font-weight: 300;
}

.popup-anuncio .popup-container .popup-content p.big {
  font-size: 28px;
  line-height: 150%;
}

.popup-anuncio .popup-container .popup-content .botones {
  margin: 20px 0 40px;
}

.popup-anuncio .popup-container .popup-content .botones .calltoaction {
  display: inline-block;
  background: #6C0001;
  padding: 15px 25px 10px;
  color: white;
  border-radius: 6px;
  font-size: 18px;
  line-height: 100%;
  margin: 0 10px 10px 0;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

.popup-anuncio .popup-container .popup-content .botones .calltoaction:hover {
  background: #ae7375;
}

.owl-carousel,
.page-header {
  margin-top: 90px;
}

.owl-dots {
  text-align: center !important;
  margin-top: 3px !important;
}

.owl-dot {
  width: 12px !important;
  height: 12px !important;
  background-color: white !important;
  border: 1px solid #b9b7b7 !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  margin: 0 2px !important;
}

.owl-dot.active {
  background-color: #b9b7b7 !important;
}

.main-image {
  height: 500px;
  background-size: cover;
  background-position: center;
}

.main-image img {
  display: none !important;
}

.quote {
  padding: 80px 0;
}

.quote p {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  color: #140000;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  padding: 0 30px;
  text-transform: uppercase;
}

.map-section__map {
  min-height: 500px;
}

a.map-image {
  display: block;
  height: 500px;
  background: transparent url(/projects/calisidre/custom/themes/100x100/assets/images/map.gif?246affe50e57f3bc4b9557d3975dde71) no-repeat center;
  text-decoration: none;
  margin-top: 80px;
}

.menus {
  margin-bottom: 80px;
}

a.menus__item-link .menus__item {
  position: relative;
  height: 350px;
  margin: 2%;
  background-size: cover;
  background-position: center;
}

a.menus__item-link .menus__item div {
  text-transform: uppercase;
  position: absolute;
  display: table;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(108, 0, 1, 0.8);
  transition: all 0.2s;
}

a.menus__item-link .menus__item div span {
  text-transform: uppercase;
  display: table-cell;
  vertical-align: middle;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  color: white;
  text-align: center;
  line-height: 130%;
  font-weight: 300;
}

a.menus__item-link:hover .menus__item div,
a.menus__item-link.selected .menus__item div {
  background-color: rgba(108, 0, 1, 0.2);
}

div.menus__item-title span.parent-span span {
  display: inline;
  font-weight: 400;
}

@media only screen and (max-width: 1000px) {
  a.menus__item-link .menus__item {
    height: 250px;
  }

  a.menus__item-link .menus__item div span {
    font-size: 20px;
  }

  .owl-carousel,
  .page-header {
    margin-top: 70px;
  }
}

@media only screen and (max-width: 800px) {
  .owl-carousel,
  .page-header {
    margin-top: 65px;
  }

  .main-image {
    height: 400px;
  }

  .quote {
    padding: 60px 0;
  }

  .quote p {
    font-size: 20px;
  }

  a.map-image {
    height: 400px;
    background-size: auto 100%;
  }

  a.menus__item-link .menus__item {
    height: 250px;
  }

  .menus {
    margin-bottom: 60px;
  }

  a.map-image {
    margin-top: 60px;
  }

  a.menus__item-link .menus__item div,
  a.menus__item-link:hover .menus__item div {
    background-color: rgba(108, 0, 1, 0.4);
  }

  a.menus__item-link .menus__item {
    width: 96%;
  }
}

@media only screen and (max-width: 600px) {
  .popup-anuncio .popup-container .popup-content p {
    font-size: 16px;
  }

  .popup-anuncio .popup-container .popup-content p.big {
    font-size: 22px;
    line-height: 140%;
  }

  .popup-anuncio .popup-container .popup-content .botones .calltoaction {
    font-size: 14px;
    margin: 0 5px 5px 0;
  }

  .main-image {
    height: auto;
    background: none;
  }

  .main-image img {
    display: block !important;
  }

  .quote {
    padding: 40px 0;
  }

  .quote p {
    font-size: 20px;
    padding: 0 30px;
  }

  a.menus__item-link .menus__item {
    height: 210px;
  }

  a.map-image {
    height: 500px;
  }

  a.menus__item-link .menus__item div span {
    font-size: 25px;
  }

  a.menus__item-link .menus__item div span span {
    font-size: 25px;
  }
}

@media only screen and (max-width: 400px) {
  .popup-anuncio .popup-container .popup-content p.big {
    font-size: 16px;
    line-height: 140%;
  }

  .popup-anuncio .popup-container .popup-content .botones .calltoaction {
    width: 100%;
    text-align: center;
  }
}

/* ------------------------------------------------------------------------- */

/* PAGE PAGE STYLES */

/* ------------------------------------------------------------------------- */

.page-header {
  height: 500px;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.page-header__container {
  padding-right: 50px;
  margin-top: 50px;
}

.page-header__title {
  text-align: left;
  font-size: 20px;
  color: #000000;
  font-weight: 300;
  text-transform: uppercase;
}

.page-header__title span {
  font-weight: 400;
}

.page-header__title_bottom {
  margin-bottom: 30px;
}

.container .column-container .center-content {
  padding: 0;
}

.page {
  padding: 150px 0 50px;
}

@media only screen and (max-width: 800px) {
  .page-header {
    height: 300px;
  }

  .page-header__container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .page-header__title {
    text-align: center;
  }

  .container .column-container .center-content {
    padding: 0;
  }
}

/* ------------------------------------------------------------------------- */

/* PAGE ABOUT STYLES */

/* ------------------------------------------------------------------------- */

.about {
  overflow: auto;
  margin-top: 60px;
  margin-bottom: 60px;
}

section.container.about:first-child {
  margin-top: 10px;
}

.about-item {
  font-weight: 300;
}

.about-item p {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 20px;
}

.about-item h2,
.about-item h3 {
  font-size: 30px;
  line-height: 44px;
  text-transform: uppercase;
}

.about-item__text,
.about-item__title {
  display: table-cell;
  vertical-align: middle;
}

.about-item__text {
  text-align: left;
}

.about-item__text_big p {
  font-size: 47px;
  width: 65%;
  margin: 0 auto;
}

.about-item__title {
  line-height: 110px;
  font-size: 100px;
  color: #c59090;
}

.about-item__title_right {
  text-align: right;
}

.about-item__title_left {
  vertical-align: baseline;
}

.about-item_full {
  min-height: 170px;
}

.full-image {
  min-height: 400px;
  background-size: cover;
  background-position: center center;
}

.full-image-mobile {
  display: none;
}

@media only screen and (max-width: 1600px) {
  .about-item__text_big p {
    font-size: 3vw;
  }
}

@media only screen and (max-width: 1100px) {
  .about-item__text-container_big {
    min-height: 100px;
    height: auto;
    margin-bottom: 30px;
  }

  .about-item__text_big p {
    font-size: 45px;
    width: 100%;
  }

  .about-item {
    min-height: 100px;
    height: auto;
    margin-bottom: 20px;
  }

  .about-item__title_right {
    float: none;
    text-align: center;
  }
}

@media only screen and (max-width: 800px) {
  .about-item__title {
    line-height: 90px;
    font-size: 80px;
  }

  .about {
    min-height: 300px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .about-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-item__title-container_right {
    min-height: 200px;
  }

  .about-item_full {
    min-height: 120px;
  }

  .full-image {
    min-height: 300px;
  }

  .about-item__text_big p {
    font-size: 30px;
  }

  .about-item p {
    font-size: 16px;
    line-height: 20px;
  }

  .about-item h2,
  .about-item h3 {
    font-size: 28px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 500px) {
  .about-item__title {
    line-height: 65px;
    font-size: 55px;
  }

  .about {
    min-height: 350px;
  }

  .about-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .full-image {
    display: none;
  }

  .full-image-mobile {
    display: block;
  }

  .about-item_full,
  .about-item__title-container_right {
    min-height: 100px;
  }

  .about-item h2 {
    font-size: 30px;
    line-height: 30px;
  }

  .about-item h3 {
    font-size: 25px;
    line-height: 120%;
  }
}

@media only screen and (max-width: 400px) {
  .about-item_full {
    min-height: 150px;
  }
}

/* ------------------------------------------------------------------------- */

/* CONTACT ABOUT STYLES */

/* ------------------------------------------------------------------------- */

/*  PARA LLEVAR  */

.section-parallevar {
  margin-bottom: 50px;
}

.section-parallevar h1 {
  color: #140000;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
}

.section-parallevar h1 span {
  font-weight: 400;
}

.section-parallevar h2 {
  color: #140000;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  margin: 40px 0 30px;
}

.section-parallevar hr {
  width: 80px;
  height: 1px;
  border: none;
  background: #140000;
  margin: 30px 0;
}

.section-parallevar p {
  font-size: 18px;
  line-height: 130%;
  font-weight: 300;
  margin-bottom: 20px;
}

.section-parallevar .item-parallevar {
  display: inline-block;
  width: 100%;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 130%;
  font-weight: 300;
}

.section-parallevar .item-parallevar .plato {
  float: left;
  width: 70%;
  padding-right: 15px;
}

.section-parallevar .item-parallevar .precio {
  float: right;
  width: 30%;
  vertical-align: top;
  text-align: right;
  line-height: 30px;
}

.content-parallevar {
  margin-bottom: 50px;
}

.section-parallevar .item-parallevar .button {
  border: 1px solid #f1f1f1;
  margin: 0 0 0 5px;
  text-indent: -9999px;
  cursor: pointer;
  border-radius: 50%;
  width: 29px;
  height: 29px;
  float: right;
  text-align: center;
  background: url(/projects/calisidre/custom/themes/100x100/assets/images/icon-mas.svg?20b690a0a80c717f3b5bebad72df44c2) no-repeat center;
  background-size: 50%;
}

.section-parallevar .item-parallevar .dec {
  background: url(/projects/calisidre/custom/themes/100x100/assets/images/icon-menos.svg?eefdb1a1ebbc7739c5b9a954bac45e2c) no-repeat center;
  background-size: 50%;
  margin-left: 20px;
}

.section-parallevar .sumatotal {
  text-align: right;
  font-size: 25px;
}

/*DATE PICKER*/

.cmp-date-time-picker .cmp-dp-date-wrapper .cmp-dp-date-item-cur,
.cmp-date-time-picker .cmp-dp-date-wrapper .cmp-dp-date-item-cur:hover {
  background-color: #9e0000 !important;
}

.cmp-date-time-picker .cmp-dp-btn-wrap .cmp-dp-btn {
  background: #9e0000 !important;
  border: 1px solid #9e0000 !important;
}

/*  CHEQUE REGALO  */

.box-chequeregalo {
  border: 1px solid rgba(158, 8, 8, 0.3);
  padding: 30px 25% 20px 40px;
  text-align: right;
  margin-bottom: 50px;
  position: relative;
}

.box-chequeregalo p {
  font-size: 25px;
  font-weight: 400;
}

.box-chequeregalo span.minimo-bebida {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 20px;
  font-size: 16px;
  font-weight: 300;
}

.box-chequeregalo input[type=text] {
  border: 2px solid #6C0001;
  font-size: 30px;
  max-width: 100px;
  margin-left: 20px;
  margin-bottom: 0px;
  text-align: right;
  padding: 5px 10px 0;
}

.afortunados-chequeregalo input.afortunado-campo1 {
  width: 45%;
  float: left;
  margin-right: 10px;
  margin-bottom: 0;
}

.afortunados-chequeregalo input.afortunado-campo2 {
  width: 30%;
  float: left;
  margin-right: 10px;
  margin-bottom: 0;
}

.afortunados-chequeregalo input.afortunado-campo3 {
  width: 20%;
  float: left;
  margin-bottom: 0;
}

.afortunados-chequeregalo .afortunado {
  margin-bottom: 15px;
}

a.add-afortunados {
  display: inline-block;
  padding: 10px 20px 7px 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  background: white url(/projects/calisidre/custom/themes/100x100/assets/images/add.svg?9209cc343c05bdc369ee9112375d246b) no-repeat 8px center;
  border-radius: 5px;
  font-size: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  line-height: 130%;
  color: #6C0001;
  text-transform: uppercase;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}

ul.cheque-list {
  padding-left: 20px;
  margin: 30px 0;
}

ul.cheque-list li {
  list-style-type: disc;
  margin-bottom: 15px;
}

.afortunado span.columna1 {
  display: inline-block;
  min-width: 100px;
  font-weight: 300;
}

span.precio-resumen {
  margin: 0 0 0 10px;
  font-size: 25px;
  display: inline-block;
  min-width: 60px;
}

/*   FORMS    */

.submit_loader {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

#alert {
  margin-top: 30px;
  font-weight: 700;
  font-size: 12px;
  color: #ff3b3b;
  text-transform: uppercase;
}

#alert p {
  font-size: 16px;
  color: #ff3b3b;
  font-weight: 700;
}

.contact-form_input__error {
  border-bottom: 3px solid #ff3b3b !important;
}

label.contact-form_label__error:before {
  border-color: #ff3b3b !important;
}

form label.contact-form_label__error {
  color: #ff3b3b !important;
}

form label.contact-form_label__error a {
  color: #ff3b3b !important;
  border-color: #ff3b3b !important;
}

.obligatorios {
  font-size: 13px;
  color: #666;
  text-align: right;
}

.columna {
  float: left;
}

.columna2 {
  width: 49%;
  margin-right: 1%;
}

.columna2-last {
  margin-left: 1%;
  margin-right: 0;
}

.columna4 {
  width: 24%;
  margin-right: 1%;
}

.columna4-last {
  margin-left: 1%;
  margin-right: 0;
}

form input[type=mail],
form input[type=text],
form input[type=date],
form textarea.textarea {
  border: 1px solid rgba(158, 8, 8, 0.3);
  margin-bottom: 25px;
  padding: 7px 15px;
  color: #140000;
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  background: transparent;
  outline: 0;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  -webkit-appearance: none;
}

form input[type=text].quantity {
  border: 1px solid rgba(158, 8, 8, 0.3);
  margin-bottom: 0px;
  margin-left: 10px;
  padding: 7px 0;
  text-align: center;
  width: 30px;
  float: right;
}

form input[type=date] {
  height: 32px;
}

form textarea.textarea {
  resize: none;
  height: 90px;
}

form input[type=checkbox] {
  display: none;
}

form label {
  color: #140000;
  cursor: pointer;
  display: block;
  font-size: 16px;
  vertical-align: middle;
  padding-left: 30px;
  margin-top: 15px;
  position: relative;
}

form label:before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #6C0001;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}

form label a {
  color: #140000;
  border-bottom: 1px solid #140000;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}

form input[type=checkbox]:checked + label {
  color: #140000;
}

form input[type=checkbox]:checked + label:before {
  border-color: #6C0001;
  background-color: #6C0001;
}

form button[type=submit] {
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  background: white;
  border-radius: 5px;
  font-size: 20px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  width: 100%;
  cursor: pointer;
  line-height: 130%;
  color: #6C0001;
  text-transform: uppercase;
  opacity: 1;
  margin-top: 30px;
  outline: 0;
  padding: 12px 25px 8px;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  -webkit-appearance: none;
}

form button[type=submit]:hover {
  color: white;
  background-color: #6C0001;
}

::-webkit-input-placeholder {
  color: #140000;
  opacity: 0.7;
}

:-moz-placeholder {
  color: #140000;
  opacity: 0.7;
}

::-moz-placeholder {
  color: #140000;
  opacity: 0.7;
}

:-ms-input-placeholder {
  color: #140000;
  opacity: 0.7;
}

form p.floatleft {
  display: block;
  width: 35%;
  float: left;
}

form input.floatright {
  width: 60%;
  float: right;
}

form ul.preferencias {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  margin-bottom: 27px;
}

form ul.preferencias li {
  color: #140000;
  display: block;
  position: relative;
  padding: 3px 0;
  margin-bottom: 13px;
}

form ul.preferencias li input[type=radio] {
  position: absolute;
  visibility: hidden;
}

form ul.preferencias li label {
  display: block;
  z-index: 2;
  position: relative;
  font-size: 16px;
  line-height: 130%;
  padding-left: 30px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  margin-top: 0;
}

form ul.preferencias li label:before {
  display: none;
}

form ul.preferencias li:hover label {
  color: #140000;
}

form ul.preferencias li .check {
  display: block;
  position: absolute;
  border: 1px solid #6C0001;
  height: 22px;
  width: 22px;
  border-radius: 20px;
  top: 0;
  left: 0;
  transition: border 0.25s ease-in-out;
  -webkit-transition: border 0.25s ease-in-out;
}

/*form ul.preferencias li .check::before { display: block; position: absolute;   content: ''; border-radius: 100%; height: 5px; width: 5px; top: 45%; left:15px; margin: auto;   transition: background 0.25s ease-in-out;  -webkit-transition: background 0.25s ease-in-out;}*/

form ul.preferencias li input[type=radio]:checked ~ .check {
  background-color: #6C0001;
}

/*form ul.preferencias li input[type=radio]:checked ~ .check::before{ }*/

form ul.preferencias li input[type=radio]:checked ~ label {
  color: #140000;
}

@media only screen and (max-width: 800px) {
  form ul.preferencias li.columna2 {
    float: left;
    width: 49%;
    margin-left: 0;
    margin-right: 1%;
  }

  form ul.preferencias li.columna2-last {
    float: left;
    width: 49%;
    margin-left: 1%;
    margin-right: 0;
  }

  .columna2,
  .columna2-last {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .columna4 {
    width: 49%;
    margin-bottom: 30px;
  }

  .section-parallevar .item-parallevar {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
  }

  .section-parallevar .item-parallevar .plato {
    width: 100%;
    padding-right: 0;
    padding-bottom: 5px;
  }

  .section-parallevar .item-parallevar .precio {
    width: 100%;
  }

  .section-parallevar .page-header__container,
  .section-parallevar .about-item {
    padding: 0;
  }
}

@media only screen and (max-width: 600px) {
  .afortunados-chequeregalo input.afortunado-campo1,
  .afortunados-chequeregalo input.afortunado-campo2,
  .afortunados-chequeregalo input.afortunado-campo3 {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 480px) {
  form input[type=submit] {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
  }

  form input[type=mail],
  form input[type=text],
  form input[type=date] {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .columna4,
  .columna4-last {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .box-chequeregalo {
    padding: 30px 20px 30px 40px;
  }

  .box-chequeregalo p {
    font-size: 22px;
  }

  .box-chequeregalo input[type=text] {
    font-size: 25px;
  }
}

/* ------------------------------------------------------------------------- */

/* MENUS STYLES */

/* ------------------------------------------------------------------------- */

a.descargar-menu {
  display: block;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 0 5px;
  color: #6C0001;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  margin: 20px 0 40px;
  border-radius: 5px;
  background-color: white;
  transition: all 0.2s;
}

a.descargar-menu:hover {
  color: white;
  background-color: #6C0001;
}

.section-carta {
  margin-bottom: 50px;
}

.section-carta h1 {
  color: #140000;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
}

.section-carta h1 span {
  font-weight: 400;
}

.section-carta h2 {
  color: #140000;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  margin: 40px 0 30px;
}

.section-carta hr {
  width: 80px;
  height: 1px;
  border: none;
  background: #140000;
  margin: 30px 0;
}

.section-carta p {
  font-size: 18px;
  line-height: 130%;
  font-weight: 300;
  margin-bottom: 20px;
}

.section-carta .item-carta {
  display: inline-block;
  width: 100%;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 130%;
  font-weight: 300;
}

.section-carta .item-carta .plato {
  float: left;
  width: 80%;
  padding-right: 15px;
}

.section-carta .item-carta .precio {
  float: right;
  width: 20%;
  vertical-align: top;
  text-align: right;
}

@media only screen and (max-width: 800px) {
  .section-carta h1,
  .section-carta h2,
  .section-carta .item-carta,
  .section-carta p {
    font-size: 16px;
  }

  .section-carta p {
    margin-bottom: 13px;
  }
}

@media only screen and (max-width: 500px) {
  .section-carta h1,
  .section-carta h2,
  .section-carta .item-carta,
  .section-carta p {
    font-size: 14px;
  }

  .section-carta .item-carta .plato {
    width: 70%;
  }

  .section-carta .item-carta .precio {
    width: 30%;
  }
}

/* ------------------------------------------------------------------------- */

/* INSTAGRAM MODULE STYLES */

/* ------------------------------------------------------------------------- */

.instagram-container {
  min-height: 500;
  position: relative;
  margin-top: 50px;
}

.instagram-container p {
  position: absolute;
  top: -60px;
  left: 0px;
  margin-left: 10px;
  font-size: 20px;
  line-height: 30px;
  color: black;
  font-weight: 300;
}

.instagram-container p span {
  font-weight: 400;
}

#lastposts {
  color: #49468b;
  width: 100%;
  text-align: center;
  height: 500px;
}

#lastposts li {
  float: left;
  list-style: none;
  margin: 0;
  text-align: center;
  width: 25%;
  height: 50%;
}

#lastposts a.gal {
  position: relative;
  display: block;
  background: #000;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

#lastposts .cor,
#lastposts span {
  display: none;
}

/*
#lastposts .cor { position:absolute; top:20px; left:43px; width:94px; height:87px; background:url(../inc/instagram/like_big.png) 0px 0px no-repeat; background-size:94px 87px; opacity:0.8; filter:alpha(opacity=80); z-index:2; display:none; }

#lastposts span { position:absolute; top:110px; left:0px; width:180px; height:30px; z-index:3; color:#fff; text-align:center; opacity:0.9; filter:alpha(opacity=90); font-size:1.8em; font-weight:bold; display:none; }

#lastposts .corfixe { position:absolute; top:20px; left:43px; width:94px; height:82px; background:url(../inc/instagram/like_big_red.png) 0px 0px no-repeat; background-size:94px 82px; opacity:0.8; filter:alpha(opacity=80); z-index:9;  }

#lastposts .liked img { opacity:0.6 !important; filter:alpha(opacity=60) !important;}
#lastposts .liked:hover img { opacity:0.4 !important; filter:alpha(opacity=40) !important;}

*/

@media (max-width: 600px) {
  #lastposts li:nth-child(7),
  #lastposts li:nth-child(8) {
    display: none;
  }

  .instagram-container p {
    width: 100%;
    font-size: 28px;
  }

  #lastposts li {
    width: 50%;
  }
}

/* ------------------------------------------------------------------------- */

/* PAGE LEGAL STYLES */

/* ------------------------------------------------------------------------- */

.legal {
  margin-top: 30px;
  margin-bottom: 150px;
}

.legal-item {
  display: table;
  font-weight: 300;
}

.legal-item p {
  font-size: 18px;
  line-height: 25px;
}

.legal-item h2 {
  font-size: 34px;
  line-height: 44px;
  text-transform: uppercase;
}

.legal-item__text,
.legal-item__title {
  display: table-cell;
  vertical-align: middle;
}

.legal-item__text {
  text-align: left;
}

.legal-item__text_big p {
  font-size: 47px;
  width: 65%;
  margin: 0 auto;
}

.legal-item__title {
  line-height: 110px;
  font-size: 100px;
  color: #c59090;
}

.legal-item__title_right {
  text-align: right;
}

.legal-item__title_left {
  vertical-align: baseline;
}

.legal-item_full {
  min-height: 170px;
}

.full-image {
  min-height: 400px;
  background-size: cover;
  background-position: center center;
}

@media only screen and (max-width: 1600px) {
  .legal-item__text_big p {
    font-size: 3vw;
  }
}

@media only screen and (max-width: 1100px) {
  .legal-item__text-container_big {
    min-height: 100px;
    height: auto;
    margin-bottom: 30px;
  }

  .legal-item__text_big p {
    font-size: 45px;
    width: 100%;
  }

  .legal-item {
    min-height: 100px;
    height: auto;
    margin-bottom: 20px;
  }

  .legal-item__title_right {
    float: none;
    text-align: center;
  }
}

@media only screen and (max-width: 800px) {
  .legal-item__title {
    line-height: 90px;
    font-size: 80px;
  }

  .legal {
    min-height: 300px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .legal-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .legal-item__title-container_right {
    min-height: 200px;
  }

  .legal-item_full {
    min-height: 120px;
  }

  .full-image {
    min-height: 300px;
  }

  .legal-item__text_big p {
    font-size: 30px;
  }

  .legal-item p {
    font-size: 16px;
    line-height: 20px;
  }

  .legal-item h2 {
    font-size: 28px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 500px) {
  .legal-item__title {
    line-height: 65px;
    font-size: 55px;
  }

  .legal {
    min-height: 350px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .legal-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .legal-item_full,
  .legal-item__title-container_right {
    min-height: 100px;
  }

  .legal-item h2 {
    font-size: 30px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 400px) {
  .legal-item_full {
    min-height: 150px;
  }
}

/* ------------------------------------------------------------------------- */

/* FOOTER STYLES */

/* ------------------------------------------------------------------------- */

.footer-contact {
  padding: 50px 10%;
}

.footer-contact__item {
  text-transform: uppercase;
  float: left;
  width: 30%;
  margin: 0 1.5%;
  text-align: left;
}

.footer-contact__item h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: #6C0001;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 130%;
}

.footer-contact__item p {
  font-weight: 300;
  font-family: "Josefin Sans", sans-serif;
  color: #140000;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 130%;
}

.footer-contact__item p a {
  font-weight: 300;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  background-color: #140000;
  text-align: center;
  font-weight: 300;
}

.footer-bottom p {
  display: inline-block;
  font-family: "Lora", serif;
  color: white;
  font-size: 15px;
  line-height: 130%;
}

.footer-bottom nav {
  display: inline-block;
  margin-left: 30px;
}

.footer-bottom nav ul li {
  display: inline-block;
  margin: 0 5px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-bottom nav ul li:first-child {
  border: none;
  padding-left: 0;
}

.footer-bottom nav ul li a {
  font-family: "Josefin Sans", sans-serif;
  color: white;
  font-size: 15px;
  line-height: 130%;
  text-decoration: none;
}

.footer-bottom nav ul li a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1100px) {
  .footer-contact {
    padding: 50px 0;
  }

  .footer-bottom p,
  .footer-bottom nav ul li a {
    font-size: 15px;
  }
}

@media only screen and (max-width: 900px) {
  .footer-bottom p,
  .footer-bottom nav ul li a {
    font-size: 15px;
  }

  .footer-bottom p {
    display: block;
  }

  .footer-bottom nav {
    display: block;
    margin: 10px 0;
    margin-left: 0px;
  }
}

@media only screen and (max-width: 850px) {
  .footer-contact__item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footer-contact__item p {
    font-size: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .footer-contact {
    padding: 30px 0;
  }

  .footer-contact__item h3 {
    font-size: 18px;
  }

  .footer-contact__item p {
    font-size: 14px;
    line-height: 110%;
    margin-bottom: 10px;
  }

  .footer-contact__item {
    float: none;
    width: 100%;
    margin: 20px 0;
    text-align: center;
  }

  .footer-bottom nav ul li {
    display: block;
    margin: 5px 0;
    padding-left: 0;
    border: none;
    text-align: center;
  }

  .footer-bottom p,
  .footer-bottom nav ul li a {
    font-size: 18px;
    text-align: center;
  }

  .footer-bottom {
    padding: 50px 0 80px;
  }
}


/*# sourceMappingURL=100x100.min.css.map*/