a {
  color: #4ccc4c;
  font-weight: 500;
  text-decoration: none;
}

footer a:hover {
  color: #c4c4c4;
}

.btn {
  background-color: #4ccc4c;
  padding: 1em 2em;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: Arial,sans-serif;
  font-size: .9em;
  font-weight: 700;
  display: inline-block;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  background-color: #32ae32;
}

.secondary {
  background-color: #333;
}

.secondary:hover {
  background-color: #4ccc4c;
}

.main-button {
  font-size: 1.2em;
  color: #131313;
  text-align: center;
  max-width: 350px;
  background-color: #38c438;
  -webkit-border-radius: 2em;
  border-radius: 2em;
  display: inline;
  position: absolute;
  top: 55%;
  left: 0;
  letter-spacing: 1px;
  right: 0;
  margin: auto;
  padding: 1.4em 2em;
  z-index: 2;
  -webkit-transition: all .2s ease-in;
  -moz-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  -ms-transition: all .2s ease-in;
  transition: all .2s ease-in;
  opacity: 0;
  animation: fadeIn 1.5s ease-in;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}

.main-button:hover {
  color: #000;
  -webkit-box-shadow: -1px 18px 41px -18px rgba(0,0,0,.75);
  box-shadow: -1px 18px 41px -18px rgba(0,0,0,.75);
}
* {
  box-sizing: border-box;
}

body,
html {
  font-family: sans-serif;
  font-weight: 300;
  margin: 0;
  height: 100%;
  background-color: #f2f2f2;
}

.bg-full {
  background-image: url("../video/bg.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 100%;
}

#container {
  position: relative;
  min-height: 100%;
}

video#bgvid {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url("../video/bg.jpg") no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

img {
  vertical-align: middle;
}

h1 {
  font-family: 'Work Sans',sans-serif;
  font-weight: 600;
  font-size: 3em;
  text-align: center;
  letter-spacing: 5px;
  margin: .7em;
  color: grey;
}

h2 {
  text-align: center;
  font-family: 'Work Sans',sans-serif;
  font-weight: 400;
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
  font-family: 'Libre Baskerville',serif;
  font-style: italic;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1em 0;
  font-weight: 400;
}

li {
  margin: 1em 0;
  list-style-type: none;
}

p {
  margin: 1em 0;
}

select {
  font-size: .9em;
  padding: .6em;
}

input,
textarea {
  font-size: .9em;
  margin: 1em 0;
  outline: 0;
  clear: both;
  padding: .6em;
  display: block;
}

.underline {
  padding: 0 0 .7em 0;
  border-bottom: 1px solid grey;
}

.white-header {
  top: 40px;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 400;
  z-index: 2;
}

.white-header li {
  text-align: center;
  color: #fff;
  padding: 1em 0;
  margin: 1.1em;
  display: inline-block;
  cursor: pointer;
  font-family: 'Work Sans',sans-serif;
  font-size: .9em;
  font-weight: 700;
  position: relative;
}

.white-header li a {
  color: #fff;
}

.white-header li::after {
  content: '';
  width: 100%;
  height: 4px;
  background-color: #4ccc4c;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale3d(0,1,1);
  -moz-transform: scale3d(0,1,1);
  -o-transform: scale3d(0,1,1);
  -ms-transform: scale3d(0,1,1);
  transform: scale3d(0,1,1);
  -webkit-transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -o-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: -webkit-transform .2s;
  -moz-transition: -moz-transform .2s;
  -o-transition: -o-transform .2s;
  -ms-transition: -ms-transform .2s;
  transition: transform .2s;
}

.white-header li:hover::after {
  -webkit-transform: scale3d(1,1,1);
  -moz-transform: scale3d(1,1,1);
  -o-transform: scale3d(1,1,1);
  -ms-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
}

.white-header .current::after {
  -webkit-transform: scale3d(1,1,1);
  -moz-transform: scale3d(1,1,1);
  -o-transform: scale3d(1,1,1);
  -ms-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
}

.cookies-modal {
  font-size: 14px;
  width: 500px;
  background-color: rgba(0,0,0,.8);
  color: #fff;
  position: fixed;
  padding: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 10px;
  z-index: 4;
  text-align: center;
}

.cookies-modal a {
  text-decoration: underline;
}

.cookies-modal .cookies-close {
  margin: 0 auto;
  width: 40px;
  padding: .5em;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  color: #4ccc4c;
}

.quote {
  font-family: 'Libre Baskerville',serif;
  font-style: italic;
  display: block;
  color: #fff;
  font-size: 3em;
  position: absolute;
  top: 40%;
  text-align: center;
  z-index: 4;
  margin: 0 auto;
  left: 0;
  right: 0;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px #000;
  opacity: 0;
  animation: intro 1.5s ease-in;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes intro {
  from {
    opacity: 0;
    top: 46%;
  }

  to {
    opacity: 1;
    top: 40%;
  }
}

.black-header {
  top: 0;
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
  padding: 2em 3em;
  overflow: hidden;
  z-index: 2;
}

.black-header #logo {
  float: left;
  width: 111px;
  height: 97px;
}

.black-header nav {
  float: right;
}

.black-header li {
  text-align: center;
  color: #fff;
  padding: 1em 0;
  margin: 1.1em;
  display: inline-block;
  cursor: pointer;
  font-family: 'Work Sans',sans-serif;
  font-weight: 400;
  font-size: .9em;
  position: relative;
}

.black-header li:hover {
  color: grey;
}

.black-header li::after {
  content: '';
  width: 100%;
  height: 4px;
  background-color: #4ccc4c;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale3d(0,1,1);
  -moz-transform: scale3d(0,1,1);
  -o-transform: scale3d(0,1,1);
  -ms-transform: scale3d(0,1,1);
  transform: scale3d(0,1,1);
  -webkit-transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -o-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: -webkit-transform .2s;
  -moz-transition: -moz-transform .2s;
  -o-transition: -o-transform .2s;
  -ms-transition: -ms-transform .2s;
  transition: transform .2s;
}

.black-header li:hover::after {
  -webkit-transform: scale3d(1,1,1);
  -moz-transform: scale3d(1,1,1);
  -o-transform: scale3d(1,1,1);
  -ms-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
}

.black-header .current {
  color: #4ccc4c;
}

.black-header .current::after {
  -webkit-transform: scale3d(1,1,1);
  -moz-transform: scale3d(1,1,1);
  -o-transform: scale3d(1,1,1);
  -ms-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
}

.white-header-right {
  top: 0;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1em 2em;
  overflow: hidden;
  z-index: 2;
}

.white-header-right #logo {
  float: left;
  width: 111px;
  height: 97px;
}

.white-header-right nav {
  float: right;
}

.white-header-right li {
  text-align: center;
  color: #fff;
  padding: 1em 0;
  margin: 1em;
  display: inline-block;
  cursor: pointer;
  font-family: 'Work Sans',sans-serif;
  font-weight: 400;
  font-size: .9em;
  position: relative;
}

.white-header-right li:hover {
  color: grey;
}

.white-header-right li::after {
  content: '';
  width: 100%;
  height: 4px;
  background-color: #4ccc4c;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale3d(0,1,1);
  -moz-transform: scale3d(0,1,1);
  -o-transform: scale3d(0,1,1);
  -ms-transform: scale3d(0,1,1);
  transform: scale3d(0,1,1);
  -webkit-transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -o-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: -webkit-transform .2s;
  -moz-transition: -moz-transform .2s;
  -o-transition: -o-transform .2s;
  -ms-transition: -ms-transform .2s;
  transition: transform .2s;
}

.white-header-right li:hover::after {
  -webkit-transform: scale3d(1,1,1);
  -moz-transform: scale3d(1,1,1);
  -o-transform: scale3d(1,1,1);
  -ms-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
}

.white-nav .current a {
  color: #fff;
}

.white-header-right .current {
  color: grey;
}

.white-header-right .current::after {
  -webkit-transform: scale3d(1,1,1);
  -moz-transform: scale3d(1,1,1);
  -o-transform: scale3d(1,1,1);
  -ms-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
}

.black-nav a {
  color: #000;
}

.black-nav a:hover {
  text-decoration: none;
}

.white-nav a {
  color: #fff;
}

.white-nav a:hover {
  text-decoration: none;
}

.fixed {
  position: fixed;
}

label {
  clear: both;
  font-size: .7em;
}

footer {
  width: 100%;
  padding: 1.5em;
  font-size: .8em;
  color: #fff;
  position: absolute;
  bottom: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 2;
}

footer .content-right {
  float: right;
}

footer .content-right .social {
  text-align: right;
  margin: 10px 10px;
}

footer .content-right .avisos {
  margin: 10px 10px;
}

footer .content-right .avisos a {
  margin-left: 1em;
}

footer .info {
  float: left;
  margin: 1em 0;
}

footer a {
  color: #fff;
}

footer li {
  list-style-type: none;
  margin: .86em 0;
}

footer .languages {
  text-align: right;
  margin: 10px;
}

footer .languages img {
  margin-left: .3em;
  width: 26px;
}

footer .languages a {
  color: #8c8c8c;
  padding: .2em;
}

footer .languages a:hover {
  color: #fff;
}

footer .languages .selected {
  color: #fff;
  border-bottom: 1px solid #fff;
}

input:invalid {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 4px solid #dc1414;
}

input:required {
  border-bottom: 4px solid #fff;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.black-footer {
  position: relative;
  bottom: 0;
  display: block;
  overflow: hidden;
  background-color: #131313;
}

.white-box {
  padding: 2em;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 1px #cecece;
  box-shadow: 0 0 10px 1px #cecece;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 1em 2em;
  overflow: hidden;
}

.border-box {
  margin: 1em 0;
  padding: 1em;
  border: 1px dashed grey;
}

#reservas {
  padding: 2em;
}

.clear {
  display: block;
  clear: both;
  overflow: hidden;
  margin: 1em 0;
}

#tarifas {
  text-align: center;
  margin: 0 auto;
}

.prices-group {
  display: flex;
  flex-direction: row;
}

.bg-2 {
  display: block;
  padding: 2em;
  height: 300px;
  width: 100%;
  overflow: hidden;
  background-image: url("../img/bg2.png");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center top;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.pricing-box {
  font-size: 1rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 1px #cecece;
  box-shadow: 0 0 10px 1px #cecece;
  text-align: center;
  margin: 1rem auto;
  max-width: 500px;
  height: 31em;
  color: #000;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1rem;
}

.pricing-box .price {
  margin: .8em 0;
  font-weight: 600;
  font-size: 2.9em;
}

.pricing-box .price:after {
  font-size: .6em;
  content: '€';
}

.pricing-box header {
  font-size: 1.3em;
  font-weight: 600;
  padding: 1em;
  text-align: center;
  color: #4ccc4c;
  margin: 1em;
}

.pricing-box .btn-pricing {
  -webkit-border-radius: 2em;
  border-radius: 2em;
  width: 150px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 20px;
  display: inline-block;
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.pricing-box:hover .btn-pricing {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}

.pricing-box:hover header {
  background-color: #fff;
}

.reservation-access {
  display: block;
  clear: both;
  background-color: #000;
  text-align: center;
  padding: 3em;
}

.confirmation-reservas img {
  margin: 1.5em;
}

.col-5 li {
  list-style-type: circle;
  padding-left: 1em;
  margin-left: 1em;
}

.planta {
  display: block;
  margin: 3em 0;
  overflow: hidden;
}

.info-planta {
  font-size: .9em;
  padding: 2em;
  height: 350px;
}

.info-planta:nth-child(even) {
  background-color: #fff;
}

.info-planta:nth-child(odd) {
  color: #fff;
  background-color: #000;
}

#lightSlider li {
  margin: 0;
}

.bg-menu {
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20,20,20,.95);
  color: #fff;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
}

.menu-res {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
}

.social-menu {
  position: absolute;
  z-index: 7;
  margin-top: 50px;
  width: 100px;
  left: 0;
  right: 0;
  margin: auto;
}

#fourcero {
  color: #fff;
  text-align: center;
  width: 500px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  z-index: 2;
  top: 30%;
}

#fourcero .btn {
  margin: 2em;
}

.fourcero {
  margin: 1em;
  color: #fff;
  font-size: 4em;
  font-weight: 400;
}

#cierruco {
  height: 100%;
}

.texto-cierruco {
  font-size: 2em;
  padding: .5em 1em;
  margin: 0 1em;
  z-index: 2;
  line-height: 40px;
}

.texto-cierruco h2 {
  font-weight: 600;
  font-family: 'Open sans',sans-serif;
  font-size: 1.2em;
}

#header-santillana {
  color: #fff;
  padding: 12em 0 1em;
  background-color: #1d263b;
  background-image: url("../img/entorno/altamira.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center top;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  overflow: hidden;
}

#header-santillana h1 {
  color: #f0f0f0;
}

#santillana {
  background-color: #000;
  font-size: 1.2em;
  color: #fff;
  padding: 10em 0 5em;
  background-image: url("../img/entorno/bg-santillana.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center center;
  width: auto;
  height: 960px;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

#santillana h1 {
  margin: 1.5em;
  color: #f8f8f8;
}

#santillana h3 {
  text-align: center;
  margin: 2em;
}

#santillana hr {
  margin: 2em 0;
  color: #fff;
  width: 50px;
  border: 2px solid;
  height: 1px;
}

.texto-santillana {
  margin: 2em;
}

#imagenes-santillana {
  display: block;
}

#imagenes-santillana img {
  width: 220px;
}

#entorno {
  max-width: 1100px;
  margin: 0 auto;
}

#entorno h2 {
  font-size: 1.8em;
}

#entorno h3 {
  color: #6a6a6a;
  font-size: 2em;
  font-family: 'Open Sans',sans-serif;
  font-weight: 600;
  margin: 2em;
  font-style: normal;
  text-align: center;
}

#cabarceno {
  display: inline-block;
  margin: 1em 10px;
  width: 340px;
  height: 600px;
  background-image: url("../img/entorno/cabarceno/cabarceno-bg.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #000;
  position: relative;
  color: #fff;
}

#cabarceno .content {
  font-family: 'Open Sans',sans-serif;
  font-size: .8em;
  position: absolute;
  bottom: 0;
  margin: 2em;
}

#soplao {
  display: inline-block;
  margin: 1em 10px;
  width: 340px;
  height: 600px;
  background-image: url("../img/entorno/cuevas-soplao/cuevas-soplao-bg.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #000;
  position: relative;
  color: #fff;
}

#soplao .content {
  font-family: 'Open Sans',sans-serif;
  font-size: .8em;
  position: absolute;
  bottom: 0;
  margin: 2em;
}

#fuentede {
  display: inline-block;
  margin: 1em 10px;
  width: 340px;
  height: 600px;
  background-image: url("../img/entorno/fuentede/teleferico-bg.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #000;
  position: relative;
  color: #fff;
}

#fuentede .content {
  font-family: 'Open Sans',sans-serif;
  font-size: .8em;
  position: absolute;
  bottom: 0;
  margin: 2em 2em;
}

.imagenes-entorno img {
  margin: 0 .3em;
}

.entorno h2 {
  margin: 0;
  padding: 0;
  text-align: left;
}

#first {
  color: #fff;
  padding: 12em 0 5em;
  background-color: #1d263b;
  background-image: url("../img/bg-cierruco.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  width: auto;
  height: auto;
  max-height: 1100px;
  min-height: 95%;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.overlay-first {
  position: absolute;
  z-index: 1;
  background-color: rgba(0,0,0,.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#second {
  color: #000;
  text-align: left;
  position: relative;
  padding: 5em 0;
  font-size: .7em;
  max-height: 1100px;
  min-height: 600px;
  height: auto;
  background-color: #f2f2f2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

#second h2 {
  font-style: italic;
  font-size: 2.5em;
  margin: 2em;
  font-weight: 600;
}

#third {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  padding: 5em 0;
  font-size: .8em;
  background-color: #489542;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#third .col-6 {
  text-align: center;
}

.vcenter {
  position: absolute;
  top: 40%;
  display: block;
}

.lSPager li {
  margin: 1em .5em;
}

#paso3 {
  display: none;
}

#map_canvas {
  height: 300px;
  margin: 2em;
}

.contact-form {
  margin: 1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#correct-message {
  display: none;
}

#incorrect-message {
  display: none;
  font-size: .9em;
  background-color: #ebb6b6;
  padding: .3em 1em;
}

.banner {
  padding: 1em;
  margin: 2em;
}

.bg-full-cierruco {
  background-image: url("../img/cierruco/2.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.stick {
  position: fixed;
  top: 0;
}

.content-cierruco {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

.content-cierruco h1 {
  position: fixed;
  text-align: center;
  font-family: 'Libre Baskerville',serif;
  color: #fff;
  font-style: italic;
  border-bottom: 1px solid #fff;
  padding-bottom: .5em;
  z-index: 2;
  font-size: 2.5em;
  width: 100%;
}

.bloque {
  width: 100%;
  position: absolute;
  height: 100%;
  font-size: 1.2em;
  color: #fff;
  font-weight: 400;
  background-color: #0ff;
}

.bg-3 {
  background-image: url("../img/bg-cierruco2.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.black-label {
  position: absolute;
  color: #fff;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2em;
}

.black-label li img {
  margin: 0 1em 0 0;
}

.black-label h4 {
  margin: 1em 0;
  color: #b3b3b3;
}

.black-label .social {
  margin-top: 1em;
}

.content-contact {
  margin: 1em 2em;
  padding: 1.7em;
  position: relative;
  overflow: hidden;
  height: 220px;
}

.bg-overlay {
  position: absolute;
  z-index: 1;
  background-color: rgba(22,22,22,.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .2s all;
}

.bg-overlay-index {
  position: fixed;
  z-index: 1;
  background-color: rgba(0,0,0,.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.g-recaptcha {
  margin: 1em 0;
}

#aviso {
  margin: 6em 0;
}

#faq {
  margin: 6em 0;
  text-align: center;
}

.fotos-cierruco {
  display: inline-block;
  margin: 1em;
}

a:hover {
  text-decoration: underline;
}

.respuesta {
  font-weight: 800;
  margin: 1.5em;
  color: grey;
  font-size: 1.2em;
}

#cookies {
  margin: 0 auto 4em;
}

#cookies li {
  list-style-type: disc;
  margin-left: 1em;
}

@-moz-keyframes zoomIn {
  0% {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
  }

  100% {
    -webkit-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    -o-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
  }

  100% {
    -webkit-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    -o-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
  }
}

@-o-keyframes zoomIn {
  0% {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
  }

  100% {
    -webkit-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    -o-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
  }

  100% {
    -webkit-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    -o-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
  }
}

@-moz-keyframes bgzoomIn {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -o-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
  }
}

@-webkit-keyframes bgzoomIn {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -o-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
  }
}

@-o-keyframes bgzoomIn {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -o-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
  }
}

@keyframes bgzoomIn {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -o-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
  }
}

.reservas {
  max-width: 500px;
  margin: 1.5em 0;
  padding: 1.5em 4em;
}

.ico-menu-res {
  cursor: pointer;
  top: -50px;
  right: 0;
  position: fixed;
  width: 54px;
  height: 54px;
  padding: .8rem;
}

.ico-menu-res-black {
  cursor: pointer;
  top: 10px;
  right: 10px;
  position: fixed;
  width: 54px;
  height: 54px;
  z-index: 4;
  padding: .8rem;
}

.ico-close {
  position: fixed;
  z-index: 6;
  right: 0;
  top: 10px;
  width: 54px;
  height: 54px;
  padding: .8rem;
}

.ico-facebook {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 .2em;
}

.ico-googleplus {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 0 .2em;
}

.ico-phone {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0 .7em;
}

.ico-mail {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0 .7em;
}

.ico-house {
  width: 20px;
  height: 20px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 .7em;
}

.responsive-options {
  top: 50px;
  max-width: 300px;
  left: 0;
  right: 0;
  margin: auto;
  position: fixed;
  z-index: 6;
}

.responsive-options li {
  position: relative;
  z-index: 7;
  margin: 1.2em;
  display: block;
  font-size: 1.3em;
  font-style: italic;
  font-family: "Libre Baskerville",serif;
}

.responsive-options li a {
  color: #fff;
}

.responsive-options li a:active {
  color: #4ccc4c;
}

.main-btn {
  margin: 1em;
  background-color: #4ccc4c;
  width: 200px;
  -webkit-border-radius: 3em;
  border-radius: 3em;
  padding: 2em;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.main-btn:hover:before {
  content: ' ';
  width: 90px;
  height: 90px;
  background-color: red;
  position: absolute;
  top: 0;
  left: 40px;
  bottom: 0;
  right: 0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: filll-width .6s ease-in forwards;
  -moz-animation: filll-width .6s ease-in forwards;
  -o-animation: filll-width .6s ease-in forwards;
  -ms-animation: filll-width .6s ease-in forwards;
  animation: filll-width .6s ease-in forwards;
}

.main-btn:hover:after {
  content: ' ';
  width: 20px;
  height: 100px;
  background-color: red;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  right: 0;
  -webkit-animation: filll .6s ease-in forwards;
  -moz-animation: filll .6s ease-in forwards;
  -o-animation: filll .6s ease-in forwards;
  -ms-animation: filll .6s ease-in forwards;
  animation: filll .6s ease-in forwards;
}

@-moz-keyframes filll {
  0% {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    left: 0;
  }

  100% {
    -webkit-transform: scale(15,1);
    -moz-transform: scale(15,1);
    -o-transform: scale(15,1);
    -ms-transform: scale(15,1);
    transform: scale(15,1);
    left: 120px;
  }
}

@-webkit-keyframes filll {
  0% {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    left: 0;
  }

  100% {
    -webkit-transform: scale(15,1);
    -moz-transform: scale(15,1);
    -o-transform: scale(15,1);
    -ms-transform: scale(15,1);
    transform: scale(15,1);
    left: 120px;
  }
}

@-o-keyframes filll {
  0% {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    left: 0;
  }

  100% {
    -webkit-transform: scale(15,1);
    -moz-transform: scale(15,1);
    -o-transform: scale(15,1);
    -ms-transform: scale(15,1);
    transform: scale(15,1);
    left: 120px;
  }
}

@keyframes filll {
  0% {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    left: 0;
  }

  100% {
    -webkit-transform: scale(15,1);
    -moz-transform: scale(15,1);
    -o-transform: scale(15,1);
    -ms-transform: scale(15,1);
    transform: scale(15,1);
    left: 120px;
  }
}

@-moz-keyframes filll-width {
  0% {
    left: 0;
  }

  100% {
    left: 220px;
  }
}

@-webkit-keyframes filll-width {
  0% {
    left: 0;
  }

  100% {
    left: 220px;
  }
}

@-o-keyframes filll-width {
  0% {
    left: 0;
  }

  100% {
    left: 220px;
  }
}

@keyframes filll-width {
  0% {
    left: 0;
  }

  100% {
    left: 220px;
  }
}

.hidden {
  display: none;
  visibility: hidden;
}

.menu-res {
  display: none;
}

.ico-menu-res {
  display: none;
}

.ico-menu-res-black {
  display: none;
}

.logo-responsive {
  position: absolute;
  top: -30px;
  margin: 0 1.5em;
  display: none;
  width: 90px;
  height: 80px;
}

.bg-full {
  display: none;
}

.privacidad {
  padding: .6em;
  font-size: .8em;
  display: inline-block;
}

.ratings {
  margin: 2rem;
  display: flex;
  justify-content: space-around;
}

.banner-telefono {
    background-color: #fff;
    margin: 1rem auto;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.rating {
  text-align: center;
  padding: 2rem 3rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  margin: 1rem auto;
  font-family: Montserrat,sans-serif;
  font-weight: 700;
}

span {
  font-size: 1rem;
}

.rating-stars {
  margin: .8rem;
  display: flex;
}
.reserva-box {
  width: 800px;
  height: 540px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  display: flex;
  margin: 1em auto;
}

.input-group .input-daterange label {
  display: block;
}

.input-group {
  justify-content: space-around;
}

.datepicker table tr td.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
  background-image: none;
  background-color: #48e448;
}

.form-control {
  display: block;
}

.check-block {
  margin: 1em;
}

.reserva-img {
  width: 300px;
  overflow: hidden;
}

#reservas h1 {
  font-family: Montserrat,sans-serif;
  font-size: 2em;
  letter-spacing: 2px;
  font-weight: 700;
  color: #23ae39;
  margin: 2em;
}

#page_loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

#step_confirm {
  margin: 0 auto;
}

.input-group {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}

.input-daterange input:last-child {
  padding: 1.6em;
  border-radius: 6px;
}

.input-block {
  position: relative;
}

.reservas-input-group {
  display: block;
  text-align: left;
  display: block;
  text-align: left;
}

input,
select,
textarea {
  margin: .4rem;
  text-align: left;
}

select {
  text-align: left;
  padding: .2rem;
}

#personas {
  display: inline;
  text-align: left;
}

.input-icon {
  position: absolute;
  left: 24px;
  top: 14px;
  color: #828282;
}

.datepicker table tr td.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
  background-color: #48e448;
  background-image: none;
  border-color: #04c #04c #002a80;
  border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,.25);
}

.datepicker table tr td.day.focused,
.datepicker table tr td.day:hover {
  background-color: #48e448;
}

.reserva-content .btn-big {
  text-align: center;
  margin: 0 auto;
}

.day {
  padding: 1em;
}

.datepicker table tr td.disabled {
  background-color: #ccc;
  color: #000;
}

.datepicker table tr td.disabled:hover {
  background-color: #ccc;
  color: #000;
}

.datepicker table tr td.disabled {
  background-color: #c3f6c9;
}

.legend {
  font-size: .8rem;
  text-align: left;
  margin-bottom: 1rem;
  color: #4e4e4e;
}

.legend-point {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #c3f6c9;
  border: 1px solid #4e4e4e;
  margin-left: .4rem 0;
}

.btn-big {
  display: inline;
  color: #fff;
  font-size: 1.2em;
  padding: .8rem 3rem;
  border-radius: 4px;
  margin: 0 auto;
  background-color: #38c438;
}

.btn-big-disabled {
  background-color: #d5d5d5;
}
@media (max-width:80em) {
  .quote {
    font-size: 3em;
  }

  .month {
    margin: 2em 3em;
    width: 300px;
  }

  .white-header li {
    padding: .8em 0;
    margin: .9em;
  }
}

@media (max-width:40em) {
  .quote {
    margin: 10px;
    text-shadow: none;
    font-size: 1.4em;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.6em;
  }

  .wrap {
    padding: 1em;
  }

  .bg-full {
    background-image: url("../video/bg-res.jpg");
    background-position: center top;
  }

  .black-nav,
  .white-nav {
    display: none;
  }

  .ico-menu-res,
  .ico-menu-res-black {
    display: block;
  }

  .social {
    display: none;
  }

  .ico-house,
  .ico-mail,
  .ico-phone {
    width: 16px;
  }

  .logo-responsive {
    display: block;
  }

  #logo img {
    width: 85px;
  }

  footer {
    padding: .2em;
  }

  .languages {
    margin: 10px;
  }

  .avisos {
    margin: 10px;
  }
  .reserva-content[data-v-0962eb9e] {
    width: auto !important;
  }
  .reserva-img {
    display: none;
  }
}

footer .content-right .avisos a {
  margin-left: .6em;
}

footer .content-right {
  float: none;
  text-align: center;
}

footer .info {
  float: none;
}

.black-header,
.white-header-right {
  padding: 1em 1em 1em;
}

.black-label {
  font-size: .8em;
  margin: 1em;
}

.white-box {
  margin: .3em;
}

.pricing-box {
  font-size: .8em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 2em .6em;
  width: 95%;
  height: auto;
  padding: 0;
}

.pricing-box header {
  margin: .2em;
}

.pricing-box .price {
  font-size: 2.5em;
}

.pricing-box .btn-pricing {
  border-radius: 0;
  width: auto;
  position: relative;
  margin: 1em 0 0 0;
  bottom: auto;
  display: block;
  opacity: 1;
  transition: all .3s ease-out;
}

.pricing-box:hover .btn-pricing {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}

.white-box {
  padding: 1em;
  margin: 1em;
}

input,
textarea {
  width: 100%;
  margin: 1em 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-form {
  margin: 0;
}

#reservas {
  padding: .5em;
}

select {
  display: block;
}

.main-button {
  font-size: .9em;
  padding: 1.2em;
}

.bg-2 {
  height: 150px;
}

#map_canvas {
  margin: 1em;
}

#bgvid {
  display: none;
}

.bg-full {
  display: block;
}

.texto-cierruco {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 30px;
}

#first {
  padding: 5em 0;
}

#second {
  text-align: center;
}

#second h2 {
  font-size: 1.5em;
}

#third img {
  max-width: 100%;
}

.vcenter {
  position: absolute;
  top: 20%;
  display: block;
}

.lSAction>.lSPrev {
  left: -10px;
}

.lSAction>.lSNext {
  right: -10px;
}

.lSAction>a {
  top: 40px;
}

#santillana {
  font-size: 1em;
  padding: 6em 0 4em;
  height: auto;
}

#cabarceno,
#fuentede,
#soplao {
  width: 100%;
  min-height: 600px;
  margin: 0;
}

#imagenes-santillana {
  display: none;
}

.imagenes-entorno {
  display: none;
}

#entorno h3 {
  margin: 1em;
}

.texto-santillana {
  margin: 1em;
}

#first {
  min-height: 80%;
}

.cookies-modal {
  width: auto;
  font-size: 10px;
}

.day {
  padding: .6rem;
}

.reserva-box {
  max-width: 100%;
  height: auto;
  padding: 1rem;
}

.v-application__wrap {
    min-height: 0 !important;
}
.input-group {
  flex-direction: column;
}

.rating {
  padding: 1rem 2rem;
}

#reservas h1 {
  font-size: 1.6rem;
  margin: 1.4rem;
}