﻿.transition {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.absolute-center {
  position: absolute;
  left: 0;
  right: 0;
  display: table;
  margin: 0 auto;
}
.vertical-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex-container-just {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-container-center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.appearance {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
}
.height-float:after {
  content: '';
  display: table;
  clear: both;
}
/* normalize */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
}
/* menu */
/* Grid system */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
/* slick */
.slider-home {
  width: 100%;
  overflow-x: hidden;
}
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/*! nouislider - 11.1.0 - 2018-04-02 11:18:13 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
  direction: ltr;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* Offset direction
 */
html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  position: absolute;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 10px;
}
.noUi-horizontal .noUi-handle {
  width: 22px;
  height: 22px;
  left: -11px;
  top: -6px;
  z-index: 99 !important;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #e5e5e5;
  margin: 0 0 28px 10px;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3b7cb3;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  background: #fff;
  border: 8px solid #2a4468;
  border-radius: 50%;
  background: #FFF;
  cursor: pointer;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%, 0);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  font-family: 'Arial';
  font-size: 15px;
  cursor: pointer;
  display: block;
  position: absolute;
  border-radius: 3px;
  color: #666666;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: -34px;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
td,
button,
input,
textarea,
select,
label {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
a,
button,
input[type="submit"] {
  display: inline-block;
  text-decoration: none;
  transition: all .5s;
}
  input[type="submit"] {
  background-color: #003a70;
    border: none;
    color: white;
    padding: 12px 26px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    margin-top: 22px;
 
}
a:hover,
button:hover,
input[type="submit"]:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
section,
div,
article {
  padding: 0;
  margin: 0;
}
input,
a {
  text-decoration: none;
  outline: 0;
}
input:hover,
a:hover,
input:focus,
a:focus {
  text-decoration: none;
  outline: 0;
}
/* commons-theme */
:focus {
  outline: 0;
}
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  outline: 0 !important;
}
input[type="radio"]:before {
  width: 19px;
  height: 19px;
  transition: all .5s;
  outline: 0;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: url('../images/icon-radio.png') no-repeat center;
  content: '';
  display: inline-block;
  margin-right: 6px;
  top: 2px;
}
input[type="radio"]:checked:before {
  background: url('../images/icon-radio-checked.png') no-repeat center;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  outline: 0 !important;
  border: none;
  background: none;
}
input[type="checkbox"]:before {
  width: 12px;
  height: 13px;
  transition: all .5s;
  outline: 0;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: url('../images/landing-icon-checkbox.png') no-repeat center;
  content: '';
  display: inline-block;
  margin-right: 6px;
  top: 3px;
}
input[type="checkbox"]:checked:before {
  background: url('../images/landing-icon-checked.png') no-repeat center;
}
.container:after {
  content: '';
  display: table;
  clear: both;
}
#cookie-notice .cn-button {
  font-family: 'Arial';
  font-size: 13px;
  font-size: 0.8125rem;
  background: #fe5000;
  color: #fff;
  padding: 7px 20px 5px 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  padding: 5px 12px 3px 12px;
}
#cookie-notice .cn-button:hover {
  background: #428bc6;
}
.lucida {
  font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
}
.open {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.bold {
  font-weight: 700;
}
.extralight {
  font-weight: 200;
}
.light {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.semi {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.btn-orange {
  font-family: 'Arial';
  font-size: 13px;
  font-size: 0.8125rem;
  background: #fe5000;
  color: #fff;
  padding: 7px 20px 5px 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
}
.btn-orange:hover {
  background: #428bc6;
}
.btn-blue {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: 'Arial';
  background: #428bc6;
  border-radius: 3px;
  color: #fff;
  line-height: 13px;
  padding: 9px 12px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
}
.btn-blue:hover {
  background: #003a70;
}
.btn-blue-dark {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: 'Arial';
  background: #003a70;
  border-radius: 3px;
  color: #fff;
  line-height: 13px;
  padding: 9px 12px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
}
.btn-blue-dark:hover {
  background: #428bc6;
}
h2.title {
    text-transform: uppercase;
	border-bottom: 1px solid #002C5F!important;
	font-size: 20px;
    margin: 30px 0 20px;
	color: #002C5F;
}
.greyform {
    background-color: #f2f1ef;
    color: #576067;
	padding: 20px;
	
}

.companyform label {font-size: 0.7em; margin-bottom:5px; color: #576067}
.companyform .wpcf7-date {display:block; height:35px; padding:5px}

.one-column {
  -webkit-column-count: 1;
  /* Chrome, Safari, Opera */
  -moz-column-count: 1;
  /* Firefox */
  column-count: 1;
  -webkit-column-gap: 0;
  /* Chrome, Safari, Opera */
  -moz-column-gap: 0;
  /* Firefox */
  column-gap: 0;
}
.two-columns {
  -webkit-column-count: 2;
  /* Chrome, Safari, Opera */
  -moz-column-count: 2;
  /* Firefox */
  column-count: 2;
  -webkit-column-gap: 40px;
  /* Chrome, Safari, Opera */
  -moz-column-gap: 40px;
  /* Firefox */
  column-gap: 40px;
}
/* 404 */
/* Datepicker */
/* Date Picker Default Styles */
.ui-widget.ui-widget-content {
  margin-left: -30px;
  z-index: 999999 !important;
}
.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  background: none;
}
.ui-datepicker {
  padding: 0;
  margin: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-top: none;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
  min-width: 17em;
  width: auto;
}
.ui-datepicker * {
  padding: 0;
  font-family: "Open Sans", sans-serif;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ui-datepicker table {
  font-size: 13px;
  margin: 0;
  border: none;
  border-collapse: collapse;
  width: 100%;
}
.ui-datepicker .ui-widget-header,
.ui-datepicker .ui-datepicker-header {
  background-image: none;
  border: none;
  color: #fff;
  font-weight: normal;
}
.ui-datepicker .ui-datepicker-header .ui-state-hover {
  background: transparent;
  border-color: transparent;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0;
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: relative;
  top: 0;
  height: 34px;
  width: 34px;
}
.ui-datepicker .ui-state-hover.ui-datepicker-prev,
.ui-datepicker .ui-state-hover.ui-datepicker-next {
  border: none;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-prev-hover {
  left: 0;
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-next-hover {
  right: 0;
}
.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  display: none;
}
.ui-datepicker .ui-datepicker-prev {
  float: left;
}
.ui-datepicker .ui-datepicker-next {
  float: right;
}
.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-next:before {
  content: '';
  padding-left: 7px;
  width: 34px;
  height: 34px;
  display: inline-block;
}
.ui-datepicker .ui-datepicker-prev-hover:before,
.ui-datepicker .ui-datepicker-next-hover:before {
  opacity: 0.7;
}
.ui-datepicker .ui-datepicker-prev:before {
  background: url(../images/datepicker-prev.png) no-repeat center;
  background-size: 18px;
}
.ui-datepicker .ui-datepicker-next:before {
  background: url(../images/datepicker-next.png) no-repeat center;
  background-size: 18px;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 33%;
}
.ui-datepicker thead {
  color: #fff;
  font-weight: 600;
}
.ui-datepicker th {
  padding: 10px;
}
.ui-datepicker td {
  padding: 0;
  border: 1px solid #f4f4f4;
}
.ui-datepicker td.ui-datepicker-other-month {
  border: transparent;
}
.ui-datepicker td.ui-datepicker-week-end {
  background-color: #f4f4f4;
  border: 1px solid #f4f4f4;
}
.ui-datepicker td.ui-datepicker-today {
  background-color: #fff;
}
.ui-datepicker td.ui-datepicker-current-day {
  background: #003a70;
}
.ui-datepicker td.ui-datepicker-current-day a {
  color: #fff;
}
.ui-datepicker td .ui-state-default {
  background: transparent;
  border: none;
  text-align: center;
  text-decoration: none;
  width: auto;
  display: block;
  padding: 5px 10px;
  font-weight: normal;
  color: #444;
}
.ui-datepicker td.ui-state-disabled .ui-state-default {
  opacity: 0.5;
}
/* Default Color Scheme */
.ui-datepicker .ui-widget-header,
.ui-datepicker .ui-datepicker-header {
  background: #428bc6;
}
.ui-datepicker thead {
  background: #32373c;
}
.ui-datepicker td .ui-state-hover {
  background: #003a70;
  color: #fff;
}
/* COOKIES */
#barracookies {
  position: fixed;
  bottom: 0px;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  padding: 17px;
  z-index: 999999999;
  width: 100%;
}
#barracookies p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  width: 100%;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#barracookies .btn.btn-black {
  margin-left: 15px;
  padding: 11px 15px;
}
#barracookies .link-page {
  text-decoration: underline!important;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 900;
  margin-left: 10px;
}
/* error 404 */
.error-404 {
  background: url(../images/bg-sombreros.jpg) repeat;
  padding: 220px 0 150px 0;
  text-align: center;
}
.error-404 h1 {
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  color: grey;
  text-transform: uppercase;
}
.error-404 p {
  font-size: 39px;
  font-size: 2.4375rem;
  color: grey;
  padding-top: 15px;
}
.error-404 .mas a {
  background: green;
}
.error-404 .mas a:hover {
  color: pink;
}
/* legal */
.content-gen {
  padding: 80px 0 140px 0;
}
.content-gen .mod-legal .title {
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  color: red;
  margin-bottom: 35px;
  text-transform: uppercase;
}
.content-gen .mod-legal h2 {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  color: red;
  margin-bottom: 20px;
}
.content-gen .mod-legal p {
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  color: red;
  margin-bottom: 15px;
}
/* header */
.pre-menu-mobile {
  background: #003a70;
  padding: 23px 15px;
  text-align: center;
  position: relative;
  display: none;
}
.pre-menu-mobile .rewards-mobile {
  position: absolute;
  top: 23px;
  right: 20px;
}
.pre-menu-mobile .btn-menu {
  cursor: pointer;
  text-align: center;
  position: absolute;
  top: 20px;
  left: 25px;
}
.pre-menu-mobile .btn-menu div {
  width: 20px;
  display: inline-block;
}
.pre-menu-mobile .btn-menu div span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  margin-bottom: 3px;
}
.pre-menu-mobile .btn-menu div span:last-child {
  margin-bottom: 0;
}
.pre-menu-mobile .btn-menu .name-menu {
  padding-top: 4px;
  font-family: 'Arial';
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  text-transform: uppercase;
  display: block;
  text-align: center;
}
.pre-header-white {
  background: #fff;
  padding: 12px 0 10px 0;
}
.pre-header-white nav {
  text-align: right;
}
.pre-header-white nav > ul {
  font-size: 0;
}
.pre-header-white nav > ul > li {
  border-left: 1px solid #cccccc;
  display: inline-block;
  line-height: 11px;
  padding-top: 5px;
  padding: 0 10px;
  position: relative;
}
.pre-header-white nav > ul > li:first-child {
  border-left: none;
}
.pre-header-white nav > ul > li span {
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  color: #808080;
}
.pre-header-white nav > ul > li > a {
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  color: #428bc6;
}
.pre-header-white nav > ul > li > a:hover {
  color: #003a70;
}
.pre-header-white nav > ul > li .sub-menu {
  background-color: #fff;
  background: #fff;
  display: none;
  left: 0;
  margin: 2px 0 0;
  position: absolute;
  top: 100%;
  z-index: 99;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  padding: 5px 0;
}
.pre-header-white nav > ul > li .sub-menu li {
  border: none;
  display: block;
  padding: 0;
}
.pre-header-white nav > ul > li .sub-menu li a {
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  display: block;
  clear: both;
  color: #333;
  font-weight: 400;
  line-height: 1.428571429;
  padding: 3px 20px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.pre-header-white nav > ul > li .sub-menu li a:hover {
  color: #428bc6;
}
.pre-header-white nav > ul .telephone-list > a,
.pre-header-white nav > ul .languages-list > a {
  pointer-events: none;
  cursor: pointer;
}
.pre-header-white nav > ul .telephone-list:after,
.pre-header-white nav > ul .languages-list:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 6px;
  position: relative;
  transition: all .5s;
  outline: 0;
  background: url(../images/ph-arrow.svg) no-repeat center;
  background-size: 100%;
  cursor: pointer;
  margin-left: 4px;
}
.pre-header-white nav > ul .telephone-list .sub-menu {
  width: 100%;
}
.pre-header-white nav > ul .languages-list .sub-menu {
  width: 135px;
}
.pre-header-rewards {
  background: #003a70;
  padding: 20px 0;
  position: relative;
  z-index: 9;
}
.pre-header-rewards:after {
  content: '';
  display: table;
  clear: both;
}
.pre-header-rewards .container {
  padding: 0;
}
.pre-header-rewards .logo {
  float: left;
  padding-top: 3px;
}
.pre-header-rewards .menu-rewards {
  float: right;
  font-size: 0;
}
.pre-header-rewards .menu-rewards nav,
.pre-header-rewards .menu-rewards .nh-rewards {
  display: inline-block;
  vertical-align: top;
}
.pre-header-rewards .menu-rewards nav {
  padding: 6px 140px 0 0;
}
.pre-header-rewards .menu-rewards nav ul {
  font-size: 0;
}
.pre-header-rewards .menu-rewards nav ul li {
  display: inline-block;
  vertical-align: top;
}
.pre-header-rewards .menu-rewards nav ul li a {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  color: #fff;
  font-weight: 600;
  padding: 0 17.5px;
}
.pre-header-rewards .menu-rewards nav ul li a:hover {
  color: #70d0ec;
}
.pre-header-rewards .menu-rewards nav ul li:first-child a {
  padding-left: 0;
}
.pre-header-rewards .menu-rewards nav ul li:last-child a {
  padding-right: 0;
}
#menu {
  -moz-box-shadow: 0px -5px 22px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px -5px 22px 0px rgba(0, 0, 0, 0.75);
  background: #fff;
  box-shadow: 0px -5px 22px 0px rgba(0, 0, 0, 0.75);
  position: relative;
  text-align: center;
  display: none;
}
#menu .cont-menu {
  width: 1200px;
  display: inline-block;
  position: relative;
}
#menu .cont-menu .close-menu {
  display: none;
}
#menu .cont-menu .menu-idiomas-mobile,
#menu .cont-menu .h-buscador-mobile {
  display: none;
}
#menu .h-desktop {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
#menu nav {
  display: inline-block;
  padding: 20px 0 18px 0;
  position: relative;
  vertical-align: top;
  z-index: 9;
}
#menu nav ul {
  font-size: 0;
}
#menu nav ul li {
  display: inline-block;
  padding: 0 30px;
  vertical-align: top;
}
#menu nav ul li a {
  font-family: 'Arial';
  font-size: 16px;
  font-size: 1rem;
  color: #808080;
}
#menu nav ul li a:hover {
  color: #428bc6;
}
#menu nav ul li.current-menu-item a {
  color: #428bc6;
}
#menu nav ul li:first-child {
  padding-left: 0;
}
#menu nav ul li.menu-item-has-children > a:after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 8px;
  position: relative;
  transition: all .5s;
  outline: 0;
  background: url(../images/arrow-submenu.png) no-repeat;
  margin-left: 2px;
  top: -1px;
}
@media screen and (min-width: 1025px) {
  #menu nav ul li.menu-item-has-children {
    position: relative;
  }
  #menu nav ul li.menu-item-has-children > a {
    cursor: pointer;
    pointer-events: none;
  }
  #menu nav ul li.menu-item-has-children > a:after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 8px;
    position: relative;
    transition: all .5s;
    outline: 0;
    background: url(../images/arrow-submenu.png) no-repeat;
    margin-left: 2px;
    top: -1px;
  }
  #menu nav ul li.menu-item-has-children > a:hover:after {
    background: url(../images/arrow-submenu-hover.png) no-repeat;
  }
  #menu nav ul li.menu-item-has-children .sub-menu {
    opacity: 0;
  }
  #menu nav ul li.menu-item-has-children:hover:before {
    display: none;
  }
  #menu nav ul li.menu-item-has-children:hover a {
    background: #fff;
    color: #428bc6;
    position: relative;
    z-index: 9;
  }
  #menu nav ul li.menu-item-has-children:hover a:after {
    background: url(../images/arrow-submenu-hover.png) no-repeat;
  }
  #menu nav ul li.menu-item-has-children:hover .sub-menu {
    display: block;
    left: auto !important;
    visibility: visible;
    max-height: 500px;
    margin-left: -15px;
    opacity: 1;
  }
  #menu nav ul li.menu-item-has-children .sub-menu {
    left: -9999px;
    max-height: 0;
    position: absolute;
    top: 29px;
    margin-top: 0;
    -webkit-transition: opacity 1s;
    -ms-transition: opacity 1s;
    transition: opacity 1s;
    visibility: hidden;
    width: 235px;
    z-index: 999;
    -moz-box-shadow: 0px 3px 22px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 3px 22px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 22px 2px rgba(0, 0, 0, 0.2);
  }
  #menu nav ul li.menu-item-has-children .sub-menu:before {
    content: '';
    display: inline-block;
    width: 235px;
    height: 10px;
    position: relative;
    transition: all .5s;
    outline: 0;
    position: absolute;
    left: 0;
    top: -10px;
  }
  #menu nav ul li.menu-item-has-children .sub-menu li {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    display: block;
    text-align: left;
    padding: 0;
    position: relative;
    margin: 0;
  }
  #menu nav ul li.menu-item-has-children .sub-menu li:before,
  #menu nav ul li.menu-item-has-children .sub-menu li:after {
    display: none;
  }
  #menu nav ul li.menu-item-has-children .sub-menu li:last-child {
    border: none;
  }
  #menu nav ul li.menu-item-has-children .sub-menu li a {
    font-family: 'Arial';
    font-size: 16px;
    font-size: 1rem;
    color: #808080;
    background: none;
    cursor: pointer;
    display: block;
    padding: 15px 15px;
    pointer-events: all;
    text-transform: inherit;
    line-height: 1;
    transition: all .3s;
    width: 100%;
  }
  #menu nav ul li.menu-item-has-children .sub-menu li a:hover {
    color: #428bc6;
  }
  #menu nav ul li.menu-item-has-children .sub-menu li:first-child {
    padding-top: 4px;
  }
  #menu nav ul li.menu-item-has-children .sub-menu li:last-child {
    padding-bottom: 4px;
  }
  #menu nav ul li.menu-item-has-children .sub-menu li:last-child:before,
  #menu nav ul li.menu-item-has-children .sub-menu li:last-child:after {
    display: none;
  }
}
#menu .h-buscador-rrss-ir {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding-right: 160px;
}
#menu .h-buscador {
  position: relative;
  height: 25px;
}
#menu .h-buscador span {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  transition: all .5s;
  width: 100%;
  max-width: 155px;
  display: block;
}
#menu .h-buscador span input[type="text"] {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: 'Arial';
  background: #fff;
  border: none;
  color: #808080;
  height: 100%;
  outline: 0;
  padding-left: 5px;
  padding: 0 5px;
  width: calc(100% - 25px);
  z-index: 99;
}
#menu .h-buscador span input[type="text"].active {
  display: inline-block;
  opacity: 1;
}
#menu .h-buscador span input[type="submit"] {
  display: inline-block;
  opacity: 1;
  background: url(../images/h-buscador.png) no-repeat 3px 4px;
  border: none;
  height: 25px;
  transition: none;
  width: 25px;
  transition: all .5s;
}
#menu .h-buscador span input[type="submit"]:hover {
  background: url(../images/h-buscador-hover.png) no-repeat 3px 4px;
}
#menu .h-rrss {
  margin-left: 30px;
}
#menu .h-rrss ul li {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
}
#menu .h-rrss ul li a {
  display: block;
}
#menu .h-rrss ul li object,
#menu .h-rrss ul li img {
  max-width: 25px;
  width: 100%;
  cursor: pointer;
  display: block;
}
#menu .h-rrss ul li object:hover .cls-1,
#menu .h-rrss ul li img:hover .cls-1 {
  fill: red;
}
#menu .h-ir-nh {
  position: absolute;
  top: 0;
  right: -17px;
}
#menu .h-ir-nh .ir-mobile {
  display: none;
}
header.header {
  position: relative;
  background: white;
  z-index: 91;
  transition: all .5s;
}
header.header.menu-fijo {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
}
header.header.menu-fijo .pre-header-white,
header.header.menu-fijo .pre-header-rewards {
  display: none;
}
.logged-in header.header.menu-fijo {
  top: 32px;
}
.header-general #menu .h-buscador {
  position: relative;
  z-index: 9;
}
.header-general #menu .ir-nh-meetings {
  left: inherit;
  right: -22px;
  margin: 0;
}
/* footer */
.c-logos {
  padding: 50px 0;
}
.c-logos .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.c-logos .o-nh-group {
  max-width: 260px;
  width: 100%;
  border-right: 1px solid #cccccc;
}
.c-logos .o-all {
  width: calc(100% - 260px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.c-pie {
  background: #003a70;
  padding: 45px 0;
}
.c-pie .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-pie .o-principios {
  max-width: 210px;
  width: 100%;
}
.c-pie .o-principios .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 9;
  font-size: 0;
  border: none;
  margin-top: -12px;
}
.c-pie .o-principios .slick-prev {
  background: url(../images/pf-arrow-prev.png);
  width: 24px;
  height: 24px;
  left: 0;
}
.c-pie .o-principios .slick-next {
  background: url(../images/pf-arrow-next.png);
  width: 24px;
  height: 24px;
  right: 0;
}
.c-pie .o-principios__slider__item {
  text-align: center;
  position: relative;
}
.c-pie .o-principios__slider__item__text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  left: 0;
  padding: 18px 35px;
}
.c-pie .o-principios__slider__item__text h3 {
  font-family: 'Arial';
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  padding-top: 5px;
}
.c-pie .o-principios__slider__item__num {
  font-family: 'Arial';
  font-size: 125px;
  font-size: 7.8125rem;
  color: rgba(0, 0, 0, 0.15);
  text-align: center;
  line-height: .9;
  height: 96px;
}
.c-pie .o-principios__slider__item__text__icon.o-icon1 img {
  max-width: 30px;
  width: 100%;
}
.c-pie .o-principios__slider__item__text__icon.o-icon2 img {
  max-width: 63px;
  width: 100%;
}
.c-pie .o-principios__slider__item__text__icon.o-icon3 img {
  max-width: 34px;
  width: 100%;
}
.c-pie .o-principios__slider__item__text__icon.o-icon4 img {
  max-width: 72px;
  width: 100%;
}
.c-pie .o-principios__slider__item__text__icon.o-icon5 img {
  max-width: 37px;
  width: 100%;
}
.c-pie .o-principios__slider__item__text__icon.o-icon6 img {
  max-width: 38px;
  width: 100%;
}
.c-pie .o-principios__slider__item__text__icon.o-icon7 img {
  max-width: 40px;
  width: 100%;
}
.c-pie .o-principios__slider__item__text__icon.o-icon8 img {
  max-width: 38px;
  width: 100%;
}
.c-pie .o-principios__slider__item__text__icon.o-icon9 img {
  max-width: 46px;
  width: 100%;
}
.c-pie .o-principios__slider__item__text__icon.o-icon10 img {
  max-width: 32px;
  width: 100%;
}
.c-pie .o-menu {
  padding-top: 10px;
}
.c-pie .o-menu ul {
  padding-bottom: 25px;
}
.c-pie .o-menu ul li {
  display: inline-block;
  padding: 2px 12px 4px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  line-height: .8;
}
.c-pie .o-menu ul li:last-child {
  border: none;
}
.c-pie .o-menu ul li:first-child {
  padding-left: 0;
}
.c-pie .o-menu ul li a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
}
.c-pie .o-menu ul li a:hover {
  color: #428bc6;
}
.c-pie .o-menu__copyright {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
}
.c-pie .o-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 14px;
}
.c-pie .o-logos__geotrust {
  padding-right: 50px;
}
.c-pie .o-logos__geotrust p {
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  padding-bottom: 14px;
}
.c-pie .o-logos__tripadvisor {
  max-width: 135px;
}
.c-pie .o-logos__tripadvisor p {
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  padding-bottom: 12px;
  line-height: 1.3;
}
/* home */
.c-principal {
  position: relative;
}
/*.c-principal .o-image {
  background: rgba(0, 0, 0, 0.25);
}*/
.c-principal .o-image img {
  width: 100%;
  display: block;
  min-height: 300px;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.c-principal .o-recorte {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.c-principal .o-recorte img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-principal .o-recorte__borde {
  background: #fff;
  height: 100%;
  -webkit-clip-path: polygon(17.5% 5%, 82.5% 13%, 80.5% 85%, 19.5% 93%);
  clip-path: polygon(17.5% 5%, 82.5% 13%, 80.5% 85%, 19.5% 93%);
}
.c-principal .o-recorte__borde__interior {
  height: 100%;
  -webkit-clip-path: polygon(18.5% 8.4%, 81.5% 16%, 79.7% 81.6%, 20.4% 89.5%);
  clip-path: polygon(18.5% 8.4%, 81.5% 16%, 79.7% 81.6%, 20.4% 89.5%);
}
.c-seo {
  padding: 55px 0 85px 0;
}
.c-seo h1 {
  font-family: 'Arial';
  color: #003a70;
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 1;
  padding-bottom: 12px;
}
.c-seo h2 {
  font-family: 'Arial';
  color: #003a70;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1;
  padding-bottom: 25px;
}
.c-seo .o-desc {
  position: relative;
}
.c-seo .o-desc.js-active .o-desc__cont {
  max-height: 99999999px;
  transition: all .5s;
}
.c-seo .o-desc.js-active .o-desc__gradient {
  opacity: 0;
  transition: all .5s;
}
.c-seo .o-desc.js-active .o-desc__more {
  transition: background-image 0.5s;
  background: url(../images/landing-menos-blue.svg) no-repeat center;
  background-size: 100%;
}
.c-seo .o-desc.js-active .o-desc__more:hover {
  background: url(../images/landing-menos-blue-hover.svg) no-repeat center;
  background-size: 100%;
}
.c-seo .o-desc p, 
.c-seo .o-desc p ul,
.c-condiciones .o-desc__cont p,
.c-condiciones .o-desc__cont ul {
  font-family: 'Arial';
  font-weight: 400;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #666666;
  margin-bottom: 25px;
}
.c-seo .o-desc h2,
.c-seo .o-desc h3,
.c-seo .o-desc h4,
.c-seo .o-desc h5,
.c-seo .o-desc h6,
.c-condiciones h2,
.c-condiciones h3,
.c-condiciones h4,
.c-condiciones h5,
.c-condiciones h6 {
  margin-bottom: 10px;
  font-family: 'Arial';
  color: #003a70;
  line-height: 1.4;
}
.c-seo .o-desc li,
.c-condiciones .o-desc__cont li {
  font-family: 'Arial';
  font-weight: 400;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #666666;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}
.c-seo .o-desc li:before,
.c-condiciones .o-desc__cont li:before {
  content: "";
  position: absolute;
  top: 7px;
  border-radius: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #666666;
  display: inline-block;
}
.c-seo .o-desc p:last-child {
  padding-bottom: 0;
}
.c-seo .o-desc__cont {
  max-height: 150px;
  overflow: hidden;
  transition: all .5s;
}
.c-seo .o-desc__gradient {
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  width: 100%;
  height: 86px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all .5s;
}
.c-seo .o-desc__more {
  background: url(../images/landing-mas-blue.svg) no-repeat center;
  background-size: 100%;
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  transition: background-image 0.5s;
  cursor: pointer;
}
.c-seo .o-desc__more:hover {
  background: url(../images/landing-mas-blue-hover.svg) no-repeat center;
  background-size: 100%;
}
.c-hoteles-listado {
  padding-bottom: 75px;
}
.c-hoteles-listado .o-listado {
  margin: 0 -28px;
}
.c-hoteles-listado .o-listado__item {
  padding: 0 28px;
  margin-bottom: 50px;
}
.c-hoteles-listado .o-listado__item__image {
  padding-bottom: 20px;
}
.c-hoteles-listado .o-listado__item__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: 236px;
}
.c-hoteles-listado .o-listado__item__title {
  font-family: 'Arial';
  font-size: 17px;
  font-size: 1.0625rem;
  color: #003a70;
  line-height: 1;
  padding-bottom: 15px;
}
.c-hoteles-listado .o-listado__item__tel {
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  color: #999999;
  padding-bottom: 7px;
}
.c-hoteles-listado .o-listado__item__tel:before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 17px;
  position: relative;
  transition: all .5s;
  outline: 0;
  background: url(../images/landing-tel.svg) no-repeat center;
  background-size: 100%;
  top: 3px;
}
.c-hoteles-listado .o-listado__item__tel a {
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  color: #666666;
}
.c-hoteles-listado .o-listado__item__tel a:hover {
  color: #428bc6;
}
.c-hoteles-listado .o-listado__item__loc {
  background: url(../images/landing-loc.svg) no-repeat left top;
  background-size: 13px;
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  color: #666666;
  padding-left: 22px;
  min-height: 45px;
}
.c-hoteles-listado .o-listado__item__btn-price {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d9d9d9;
  margin-top: 15px;
  padding-top: 15px;
}
.o-listado__item__btn-price p{
  cursor: pointer;
}
.c-hoteles-listado .o-listado__item__btn-price__btn a {
  font-family: 'Arial';
  font-size: 13px;
  font-size: 0.8125rem;
  background: #fe5000;
  color: #fff;
  padding: 7px 20px 5px 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
}
.c-hoteles-listado .o-listado__item__btn-price__btn a:hover {
  background: #428bc6;
}
.c-hoteles-listado .o-listado__item__btn-price__price {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
}
.c-hoteles-listado .o-listado__item__btn-price__price i {
  font-family: 'Arial';
  font-size: 13px;
  font-size: 0.8125rem;
  text-transform: uppercase;
  color: #666666;
  font-style: normal;
  line-height: 1;
}
.c-hoteles-listado .o-listado__item__btn-price__price strong {
  font-family: 'Arial';
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  color: #428bc6;
  padding-left: 8px;
  position: relative;
  top: 1px;
}
.c-hoteles-listado .o-listado__item__btn-price__price span {
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
  color: #428bc6;
  padding-left: 5px;
}
.c-modal-gen {
  display: none;
  width: 620px;
}
.c-modal-gen .fancybox-close-small svg {
  stroke: #003a70;
  stroke-width: 2.5px;
}
.c-modal-gen .o-content {
  background: #fff;
  padding: 60px;
}
.c-modal-gen .c-form--gen .o-form__checkbox label {
  margin-bottom: 0;
}
.c-modal-gen .c-form--gen .o-form__submit {
  padding-bottom: 0;
}
.c-form--gen .o-form {
  margin: 0 -30px;
}
.c-form--gen .o-form form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
}
.c-form--gen .o-form p {
  padding: 0 30px 30px 30px;
}
.c-form--gen .o-form input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  border-radius: 0;
  color: #666666;
  padding: 15px 15px 12px 15px;
  background: #f2f2f2;
  border: none;
  border-bottom: 1px solid #cccccc;
  width: 100%;
  float: none;
  margin: 0;
  transition: all .5s;
}
.c-form--gen .o-form input[type="text"]:focus {
  border-bottom: 1px solid #428bc6;
}
.c-form--gen .o-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  border-radius: 0;
  border: none;
  color: #666666;
  padding: 14px 15px 10px 15px;
  background: url(../images/landing-arrow.svg) no-repeat 95% center #f2f2f2;
  background-size: 14px;
  border-bottom: 1px solid #cccccc;
  width: 100%;
  transition: all .5s;
}
.c-form--gen .o-form select:focus {
  border-bottom: 1px solid #428bc6;
}
.c-form--gen .o-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #666666;
}
.c-form--gen .o-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #666666;
}
.c-form--gen .o-form :-ms-input-placeholder {
  /* IE 10+ */
  color: #666666;
}
.c-form--gen .o-form :-moz-placeholder {
  /* Firefox 18- */
  color: #666666;
}
.c-form--gen .o-form__datepicker.js-disabled {
  opacity: .6;
  pointer-events: none;
}
.c-form--gen .o-form__datepicker input[type="text"] {
  background: url(../images/landing-calendar.svg) no-repeat 15px center #f2f2f2;
  background-size: 17px;
  padding: 15px 35px 12px 50px;
}
.c-form--gen .o-form__checkbox label {
  font-family: 'Arial';
  font-size: 11px;
  font-size: 0.6875rem;
  color: #666666;
  cursor: pointer;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}
.c-form--gen .o-form__label-gen label {
  font-family: 'Arial';
  font-size: 17px;
  font-size: 1.0625rem;
  color: #003a70;
  display: block;
  width: 100%;
  padding-bottom: 20px;
}
.c-form--gen .o-form__habitacion input[type="text"] {
  cursor: pointer;
}
.c-form--gen .o-form__submit input.buscar-destino,
.c-form--gen .o-form__submit .o-form__submit__btn,
.c-form--gen .o-form__submit input.boton-enviar-azul {
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: 'Arial';
  border: none;
  background: #428bc6;
  border-radius: 4px;
  color: #fff;
  line-height: 13px;
  padding: 17px 25px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.c-form--gen .o-form__submit input.buscar-destino:hover,
.c-form--gen .o-form__submit .o-form__submit__btn:hover,
.c-form--gen .o-form__submit input.boton-enviar-azul:hover {
  background: #003a70;
}
.c-formulario {
  padding-bottom: 65px;
}
.c-formulario .o-form__datepicker {
  width: 21.5%;
}
.c-formulario .o-form__checkbox--fechas {
  width: 15.33%;
}
.c-call-responsive {
  background: #003a70;
  padding: 35px 35px 38px 35px;
  text-align: center;
  display: none;
  margin-bottom: 55px;
}
.c-call-responsive h3 {
  font-family: 'Arial';
  font-size: 17px;
  font-size: 1.0625rem;
  color: #fff;
  line-height: 1.2;
  padding-bottom: 15px;
}
.c-call-responsive p a {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: 'Arial';
  background: #428bc6;
  border-radius: 3px;
  color: #fff;
  line-height: 13px;
  padding: 9px 12px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  /*background: url(../images/icon-call.svg) no-repeat 10px 7px #428bc6;*/
  background-size: 15px;
  padding: 9px 12px 8px 12px;
}
.c-call-responsive p a:hover {
  background: #003a70;
}
.c-banner {
  padding-bottom: 100px;
  text-align: center;
}
.c-condiciones {
  margin-bottom: 90px;
}
.c-condiciones .o-content {
  border: 1px solid #d9d9d9;
  padding: 45px 55px 65px 55px;
}
.c-condiciones .o-content h4 {
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  color: #666666;
  padding-bottom: 15px;
}
.c-condiciones .o-desc {
  position: relative;
}
.c-condiciones .o-desc.js-active .o-desc__cont {
  max-height: 99999999px;
  transition: all .5s;
}
.c-condiciones .o-desc.js-active .o-desc__gradient {
  opacity: 0;
  transition: all .5s;
}
.c-condiciones .o-desc.js-active .o-desc__more {
  transition: background-image 0.5s;
  background: url(../images/landing-menos-gris.svg) no-repeat center;
  background-size: 100%;
}
.c-condiciones .o-desc.js-active .o-desc__more:hover {
  background: url(../images/landing-menos-blue.svg) no-repeat center;
  background-size: 100%;
}
.c-condiciones .o-desc p {
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  color: #666666;
  padding-bottom: 15px;
}
.c-condiciones .o-desc p:last-child {
  padding-bottom: 0;
}
.c-condiciones .o-desc__cont {
  max-height: 125px;
  overflow: hidden;
  transition: all .5s;
}
.c-condiciones .o-desc__gradient {
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  width: 100%;
  height: 86px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all .5s;
}
.c-condiciones .o-desc__more {
  background: url(../images/landing-mas-gris.svg) no-repeat center;
  background-size: 100%;
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  transition: background-image 0.5s;
  cursor: pointer;
}
.c-condiciones .o-desc__more:hover {
  background: url(../images/landing-mas-blue.svg) no-repeat center;
  background-size: 100%;
}
.c-filtros {
  margin-bottom: 130px;
  overflow: hidden;
}
.c-filtros .o-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 -30px;
  padding: 0 30px;
}
.c-filtros .o-content__destino {
  max-width: 540px;
  width: 100%;
}
.c-filtros .o-content__destino label {
  font-family: 'Arial';
  font-size: 17px;
  font-size: 1.0625rem;
  color: #003a70;
  display: block;
  width: 100%;
  padding-bottom: 20px;
}
.c-filtros .o-content__destino select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  border-radius: 0;
  border: none;
  color: #666666;
  padding: 14px 15px 10px 15px;
  background: url(../images/landing-arrow.svg) no-repeat 95% center #f2f2f2;
  background-size: 14px;
  border-bottom: 1px solid #cccccc;
  width: 100%;
  transition: all .5s;
}
.c-filtros .o-content__destino select:focus {
  border-bottom: 1px solid #428bc6;
}
.c-filtros .o-content__precio {
  max-width: 365px;
  width: 100%;
}
.c-filtros .o-content__precio label {
  font-family: 'Arial';
  font-size: 17px;
  font-size: 1.0625rem;
  color: #003a70;
  display: block;
  width: 100%;
  padding-bottom: 20px;
}
.c-filtros .o-content__submit a {
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: 'Arial';
  border: none;
  background: #428bc6;
  border-radius: 4px;
  color: #fff;
  line-height: 13px;
  padding: 19px 25px 15px 25px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
}
.c-filtros .o-content__submit a:hover {
  background: #003a70;
}
.c-slider-hoteles {
  padding-bottom: 70px;
  position: relative;
}
.c-slider-hoteles .slick-list {
  padding: 0 220px;
}
.c-slider-hoteles .o-listado__item {
  padding: 0 28px;
  position: relative;
}

.c-slider-hoteles .o-listado__item.slick-active:before {
  display: none;
}
.c-slider-hoteles:before {
  content: '';
  display: inline-block;
  width: 200px;
  height: 100%;
  position: relative;
  transition: all .5s;
  outline: 0;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.c-slider-hoteles:after {
  content: '';
  display: inline-block;
  width: 200px;
  height: 100%;
  position: relative;
  transition: all .5s;
  outline: 0;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}
.c-slider-hoteles .o-listado__item__image {
  padding-bottom: 20px;
}
.c-slider-hoteles .o-listado__item__image img {
  display: block;
  width: 100%;
  max-width: 364px;
  height: 137px;
  object-fit: cover;
}
.c-slider-hoteles .o-listado__item__title {
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  color: #003a70;
  line-height: 1;
  padding-bottom: 15px;
}
.c-slider-hoteles .o-listado__item__tel {
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  color: #999999;
  padding-bottom: 7px;
}
.c-slider-hoteles .o-listado__item__tel:before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 17px;
  position: relative;
  transition: all .5s;
  outline: 0;
  background: url(../images/landing-tel.svg) no-repeat center;
  background-size: 100%;
  top: 3px;
}
.c-slider-hoteles .o-listado__item__tel a {
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  color: #666666;
}
.c-slider-hoteles .o-listado__item__tel a:hover {
  color: #428bc6;
}
.error{
  border: 1px solid red !important;
}
.c-slider-hoteles .o-listado__item__loc {
  background: url(../images/landing-loc.svg) no-repeat left top;
  background-size: 13px;
  font-family: 'Arial';
  font-size: 15px;
  font-size: 0.9375rem;
  color: #666666;
  padding-left: 22px;
}
.c-slider-hoteles .o-listado__item__btn {
  margin-top: 18px;
}
.c-slider-hoteles .o-listado__item__btn a {
  font-family: 'Arial';
  font-size: 13px;
  font-size: 0.8125rem;
  background: #fe5000;
  color: #fff;
  padding: 7px 20px 5px 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.c-slider-hoteles .o-listado__item__btn a:hover {
  background: #428bc6;
}
.c-slider-hoteles .o-listado__item__price:before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 17px;
  position: relative;
  transition: all .5s;
  outline: 0;
  background: url(../images/landing-euro.svg) no-repeat center;
  background-size: 100%;
  margin-right: 4px;
  top: 5px;
}
.c-slider-hoteles .o-listado__item__price i {
  font-family: 'Arial';
  font-size: 11px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: #666666;
  font-style: normal;
  line-height: 1;
  position: relative;
  top: 1px;
}
.c-slider-hoteles .o-listado__item__price strong {
  font-family: 'Arial';
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1;
  color: #666666;
  position: relative;
  top: 1px;
}
.c-slider-hoteles .o-listado__item__price span {
  font-family: 'Arial';
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1;
  color: #666666;
}
.c-slider-hoteles .slick-prev,
.c-slider-hoteles .slick-next {
  width: 23px;
  height: 100%;
  position: absolute;
  top: 20px;
  cursor: pointer;
  border: none;
  font-size: 0;
  z-index: 99;
}
.c-slider-hoteles .slick-prev {
  background: url(../images/landing-arrow-right.png) no-repeat center;
  left: 210px;
}
.c-slider-hoteles .slick-next {
  background: url(../images/landing-arrow-left.png) no-repeat center;
  right: 210px;
}
/* contacto */
/* blog */
body.compensate-for-scrollbar {
  overflow: hidden;
}
.fancybox-active {
  height: auto;
}
.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}
.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  height: 100%;
  left: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99999;
}
.fancybox-container * {
  box-sizing: border-box;
}
.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.fancybox-bg {
  background: #000000;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
  opacity: .6;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s, visibility 0s linear .25s;
  visibility: hidden;
  z-index: 99997;
}
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity .25s, visibility 0s;
  visibility: visible;
}
.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  text-align: center;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fancybox-toolbar {
  right: 0;
  top: 0;
}
.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}
.fancybox-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}
.fancybox-slide::before {
  content: '';
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  vertical-align: middle;
  width: 0;
}
.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}
.fancybox-slide--next {
  z-index: 99995;
}
.fancybox-slide--image {
  overflow: visible;
  padding: 44px 0;
}
.fancybox-slide--image::before {
  display: none;
}
.fancybox-slide--html {
  padding: 6px 6px 0 6px;
}
.fancybox-slide--iframe {
  padding: 44px 44px 0;
}
.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 6px 0;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.fancybox-can-drag .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox-is-dragging .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox-container [data-selectable='true'] {
  cursor: text;
}
.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.fancybox-spaceball {
  z-index: 1;
}
.fancybox-slide--html .fancybox-content {
  margin-bottom: 6px;
}
.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%;
}
.fancybox-slide--video .fancybox-content {
  background: #000;
}
.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
  background: #fff;
  height: calc(56%);
  margin-bottom: 44px;
}
.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.fancybox-iframe {
  vertical-align: top;
}
.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}
.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  outline: none;
  padding: 10px;
  transition: color .2s;
  vertical-align: top;
  width: 44px;
}
.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}
.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff;
}
.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
}
.fancybox-button svg {
  display: block;
  overflow: visible;
  position: relative;
  shape-rendering: geometricPrecision;
}
.fancybox-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3;
}
.fancybox-button--play svg path:nth-child(2) {
  display: none;
}
.fancybox-button--pause svg path:nth-child(1) {
  display: none;
}
.fancybox-button--play svg path,
.fancybox-button--share svg path,
.fancybox-button--thumbs svg path {
  fill: currentColor;
}
.fancybox-button--share svg path {
  stroke-width: 1;
}
/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  height: 38px;
  opacity: 0;
  padding: 6px;
  position: absolute;
  top: 50%;
  width: 38px;
}
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  transition: opacity .25s, visibility 0s, color .25s;
}
.fancybox-navigation .fancybox-button::after {
  content: '';
  left: -25px;
  padding: 50px;
  position: absolute;
  top: -25px;
}
.fancybox-navigation .fancybox-button--arrow_left {
  left: 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
  right: 6px;
}
/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #555;
  cursor: pointer;
  height: 44px;
  margin: 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 10;
}
.fancybox-close-small svg {
  fill: transparent;
  opacity: .8;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: stroke .1s;
}
.fancybox-close-small:focus {
  outline: none;
}
.fancybox-close-small:hover svg {
  opacity: 1;
}
.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--video .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  color: #ccc;
  padding: 5px;
  right: -12px;
  top: -44px;
}
.fancybox-slide--image .fancybox-close-small:hover svg,
.fancybox-slide--video .fancybox-close-small:hover svg,
.fancybox-slide--iframe .fancybox-close-small:hover svg {
  background: transparent;
  color: #fff;
}
.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none;
}
/* Caption */
.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0;
}
.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1;
}
.fancybox-caption::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  content: '';
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0;
}
.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}
/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  border: 6px solid rgba(100, 100, 100, 0.5);
  border-radius: 100%;
  border-top-color: #fff;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: .6;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 60px;
  z-index: 99999;
}
@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}
/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}
/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}
.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.fancybox-share p {
  margin: 0;
  padding: 0;
}
.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}
.fancybox-share__button:hover {
  text-decoration: none;
}
.fancybox-share__button--fb {
  background: #3b5998;
}
.fancybox-share__button--fb:hover {
  background: #344e86;
}
.fancybox-share__button--pt {
  background: #bd081d;
}
.fancybox-share__button--pt:hover {
  background: #aa0719;
}
.fancybox-share__button--tw {
  background: #1da1f2;
}
.fancybox-share__button--tw:hover {
  background: #0d95e8;
}
.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}
.fancybox-share__button svg path {
  fill: #fff;
}
.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}
/* Thumbs */
.fancybox-thumbs {
  background: #fff;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}
.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}
.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}
.fancybox-thumbs > ul {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.fancybox-thumbs-x > ul {
  overflow: hidden;
}
.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px;
}
.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}
.fancybox-thumbs > ul > li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(92%);
  max-width: calc(46%);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}
.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}
.fancybox-thumbs > ul > li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fancybox-thumbs > ul > li:before {
  border: 4px solid #4ea7f9;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}
.fancybox-thumbs .fancybox-thumbs-active:before {
  opacity: 1;
}
/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs > ul > li {
    max-width: calc(90%);
  }
}
/* single blog */
@media screen and (min-width: 1250px) {
  .cont-1200 {
    width: 1230px;
  }
}
@media screen and (min-width: 991px) {
  .cont-960 {
    width: 960px;
  }
}
/* commons */
html {
  font-family: 'Open Sans', sans-serif;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  position: relative;
  overflow-x: hidden;
}
html body {
  float: left;
  width: 100%;
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*:before,
*:after {
  box-sizing: inherit;
}
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}
p {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sans-serif {
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.serif {
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #555559;
}
img {
  max-width: 100%;
  height: auto;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.total {
  float: left;
  width: 100%;
}
ul,
li {
  list-style-type: none;
  padding-left: 0;
}
.right,
.alignright {
  float: right !important;
}
.left,
.alignleft {
  float: left !important;
}
.p0 {
  padding-left: 0;
  padding-right: 0;
}
.pl0 {
  padding-left: 0;
}
.pr0 {
  padding-right: 0;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.transition {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
img {
  max-width: 100%;
}
form input[type="text"],
.form input[type="text"],
form input[type="tel"],
.form input[type="tel"],
form input[type="email"],
.form input[type="email"],
form textarea,
.form textarea {
  float: left;
  width: 100%;
  border: 1px solid #e5e5e5;
  padding: 10px;
  margin-bottom: 10px;
}
form textarea,
.form textarea {
  max-height: 100px;
}
form label,
.form label {
  font-size: 11px;
  font-size: 0.6875rem;
  text-align: left;
  color: #666666;
}
form label .checkbox,
.form label .checkbox {
  float: left !important;
  margin-top: 0;
}
form div.wpcf7-validation-errors,
.form div.wpcf7-validation-errors {
  float: left;
  width: 100%;
  text-align: center;
  border: 0;
  border-top: 2px solid red;
  padding-top: 20px;
  color: #999;
}
form div.wpcf7-mail-sent-ok,
.form div.wpcf7-mail-sent-ok {
  float: left;
  width: 100%;
  text-align: center;
  border: 0;
  border-top: 2px solid green;
  padding-top: 20px;
  color: #999;
}
form span.wpcf7-not-valid-tip,
.form span.wpcf7-not-valid-tip {
  display: none;
}
form .wpcf7-not-valid,
.form .wpcf7-not-valid {
  background: rgba(255, 0, 0, 0.4);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #555559;
}
p {
  color: #666666;
  font-family: 'Open Sans', sans-serif;
}
.stButton .stFb,
.stButton .stTwbutton,
.stButton .stMainServices,
.stButton .stButton_gradient {
  height: 22px !important;
}
.gallery {
  float: left;
  width: 100%;
  margin-bottom: 30px !important;
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.gallery .gallery-item {
  padding: 0 10px;
}
/* Galería */
.gallery-columns-1 dl {
  display: block;
  width: 100%;
}
.gallery-columns-2 dl {
  display: block;
  float: left;
  width: 50%;
}
.gallery-columns-3 dl {
  display: block;
  float: left;
  width: 33.3%;
}
.gallery-columns-4 dl {
  display: block;
  float: left;
  width: 25%;
}
.gallery-columns-5 dl {
  display: block;
  float: left;
  width: 20%;
}
.gallery-columns-6 dl {
  display: block;
  float: left;
  width: 16.6%;
}
.gallery-columns-7 dl {
  display: block;
  float: left;
  width: 14.28%;
}
.gallery-columns-8 dl {
  display: block;
  float: left;
  width: 12.5%;
}
.gallery-columns-9 dl {
  display: block;
  float: left;
  width: 11.11%;
}
.pagination {
  text-align: center;
  margin: 60px 0 70px 0;
}
.pagination ul li {
  display: inline-block;
  float: none;
  vertical-align: top;
  text-align: center;
  margin: 0 1px;
}
.pagination ul li .page-numbers {
  font-size: 11px;
  font-size: 0.6875rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-weight: 700;
  background: #b2b2b2;
  color: #fff;
  width: 19px;
  height: 19px;
  display: block;
  padding-top: 2px;
}
.pagination ul li .page-numbers:hover {
  background: grey;
  color: white;
}
.pagination ul li .page-numbers.current {
  background: grey;
  color: white;
}
.pagination ul li .page-numbers.prev {
  background: url(../images/arrow-paginacion-prev.png) no-repeat center #b2b2b2;
}
.pagination ul li .page-numbers.prev:hover {
  background: url(../images/arrow-paginacion-prev.png) no-repeat center grey;
}
.pagination ul li .page-numbers.next {
  background: url(../images/arrow-paginacion-next.png) no-repeat center #b2b2b2;
}
.pagination ul li .page-numbers.next:hover {
  background: url(../images/arrow-paginacion-next.png) no-repeat center grey;
}
/* responsive */
/* mediaqueries max-1200 */
@media screen and (max-width: 1249px) {
  #menu .cont-menu {
    max-width: 955px;
  }
}
@media screen and (max-width: 1450px) {
  .c-slider-hoteles .slick-prev {
    left: 118px;
  }
  .c-slider-hoteles .slick-next {
    right: 118px;
  }
  .c-slider-hoteles .slick-list {
    padding: 0 130px;
  }
  .c-slider-hoteles:before,
  .c-slider-hoteles:after {
    width: 118px;
  }
}
/* mediaqueries max-1200 */
@media screen and (max-width: 1199px) {
  .pre-header-rewards .menu-rewards nav {
    padding: 6px 80px 0 0;
  }
  .c-principal .o-recorte__borde {
    -webkit-clip-path: polygon(10% 5%, 92% 13%, 90% 85%, 12% 93%);
    clip-path: polygon(10% 5%, 92% 13%, 90% 85%, 12% 93%);
  }
  .c-principal .o-recorte__borde__interior {
    -webkit-clip-path: polygon(calc(10% + 10px) calc(5% + 10px), calc(92% - 10px) calc(13% + 10px), calc(90% - 10px) calc(85% - 10px), calc(12% + 10px) calc(93% - 10px));
    clip-path: polygon(calc(10% + 10px) calc(5% + 10px), calc(92% - 10px) calc(13% + 10px), calc(90% - 10px) calc(85% - 10px), calc(12% + 10px) calc(93% - 10px));
  }
  .c-form--gen .o-form {
    margin: 0 -20px;
    position: relative;
  }
  .c-form--gen .o-form p {
    padding: 0 20px 30px 20px;
  }
  .c-formulario .o-form__datepicker {
    width: 25%;
  }
  .c-form--gen .o-form__checkbox--fechas {
    position: absolute;
    top: 105px;
    right: 0;
    width: auto;
  }
  .c-filtros .o-content__destino {
    max-width: 440px;
  }
  .c-filtros .o-content__precio {
    max-width: 290px;
  }
  .c-filtros .o-content__submit {
    margin-bottom: 7px;
  }
  .c-filtros .o-content__submit a {
    padding: 10px 25px 8px 25px;
  }
  .c-slider-hoteles .o-listado__item__tel {
    font-size: 13px;
  }
  .c-slider-hoteles .o-listado__item__tel a {
    font-size: 13px;
  }
  .c-slider-hoteles .o-listado__item__loc {
    font-size: 13px;
  }
  .c-slider-hoteles .o-listado__item {
    padding: 0 25px;
  }
  .c-pie .o-principios {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .c-slider-hoteles .slick-list {
    padding: 0 45px;
  }
  .c-slider-hoteles:before,
  .c-slider-hoteles:after {
    width: 33px;
  }
  header.header {
    z-index: 99999;
  }
  #menu {
    width: 220px;
    position: absolute;
    top: 0;
    left: -260px;
    transition: all .5s;
    padding-bottom: 30px;
    min-height: 100vh;
    display: block;
  }
  #menu .close-menu {
    display: block;
    width: 28px;
    height: 38px;
    background: url(../images/menu-mobile-close.svg) no-repeat center;
    background-size: 100%;
    position: absolute;
    top: -2px;
    right: -25px;
  }
  #menu .cont-menu {
    width: 100%;
    padding-top: 18px;
  }
  #menu .cont-menu .close-menu {
    display: block;
  }
  #menu .cont-menu .menu-idiomas-mobile,
  #menu .cont-menu .h-buscador-mobile {
    display: block;
  }
  #menu .h-buscador {
    display: none;
  }
  #menu .h-buscador-rrss-ir {
    width: 100%;
    padding-right: 0;
  }
  #menu .h-ir-nh {
    position: inherit;
    right: 0;
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
  #menu .h-ir-nh img {
    display: none;
  }
  #menu .h-ir-nh .ir-mobile {
    display: block;
  }
  #menu .h-desktop .h-menu {
    width: 100%;
  }
  #menu .h-rrss {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  #menu .h-rrss ul {
    width: 100%;
  }
  #menu.open {
    left: 0;
  }
  #menu nav {
    padding: 25px 0 20px 0 !important;
    width: 100%;
    overflow: auto;
  }
  #menu nav ul li {
    display: block !important;
    padding: 0 !important;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
  }
  #menu nav ul li:first-child {
    border-top: 1px solid #e5e5e5;
  }
  #menu nav ul li a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    text-align: left;
  }
  #menu nav ul li .sub-menu {
    display: none;
  }
  #menu nav ul li .sub-menu li {
    background: #f2f2f2;
  }
  #menu nav ul li .sub-menu li:last-child {
    border-bottom: none;
  }
  .ir-nh-meetings {
    display: none;
  }
  .ir-nh-meetings-mobile {
    display: block;
    text-align: center;
    padding-bottom: 20px;
  }
  .pre-menu-mobile {
    display: block;
    -moz-box-shadow: 0px -5px 22px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px -5px 22px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px -5px 22px 0px rgba(0, 0, 0, 0.75);
  }
  .pre-menu-mobile .tel-mobile {
    display: none;
  }
  .pre-header-white,
  .pre-header-rewards {
    display: none;
  }
  .menu-idiomas-mobile {
    display: block;
    padding-bottom: 7px;
  }
  .menu-idiomas-mobile ul li span,
  .menu-idiomas-mobile ul li a {
    font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    font-size: 13px;
    font-size: 0.8125rem;
    color: #428bc6;
  }
  .menu-idiomas-mobile .languages-list > span {
    position: relative;
  }
  .menu-idiomas-mobile .languages-list > span:after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 6px;
    position: relative;
    transition: all .5s;
    outline: 0;
    background: url(../images/ph-arrow.svg) no-repeat center;
    background-size: 100%;
    position: absolute;
    right: -13px;
    top: 7px;
  }
  .menu-idiomas-mobile .sub-menu {
    display: none;
  }
  .h-buscador-mobile {
    padding: 0 25px;
    display: block;
  }
  .h-buscador-mobile span {
    width: 100%;
    border-radius: 3px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    display: inline-block;
    height: 26px;
    position: relative;
  }
  .h-buscador-mobile span input[type="text"] {
    font-family: 'Arial';
    font-size: 12px;
    font-size: 0.75rem;
    color: #808080;
    border: none;
    outline: 0;
    padding: 5px 10px;
    width: 100%;
    height: 100%;
    z-index: 99;
    margin: 0;
  }
  .h-buscador-mobile span input[type="submit"] {
    transition: none;
    width: 25px;
    height: 25px;
    background: url(../images/h-buscador.png) no-repeat center 4px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
  }
  .c-slider-hoteles .slick-prev {
    left: 34px;
  }
  .c-slider-hoteles .slick-next {
    right: 34px;
  }
}
/* mediaqueries max-991 */
@media screen and (max-width: 991px) {
  .c-principal .o-recorte__borde {
    -webkit-clip-path: polygon(3% 5%, 97% 13%, 95% 85%, 5% 93%);
    clip-path: polygon(3% 5%, 97% 13%, 95% 85%, 5% 93%);
  }
  .c-principal .o-recorte__borde__interior {
    -webkit-clip-path: polygon(calc(3% + 10px) calc(5% + 10px), calc(97% - 10px) calc(13% + 10px), calc(95% - 10px) calc(85% - 10px), calc(5% + 10px) calc(93% - 10px));
    clip-path: polygon(calc(3% + 10px) calc(5% + 10px), calc(97% - 10px) calc(13% + 10px), calc(95% - 10px) calc(85% - 10px), calc(5% + 10px) calc(93% - 10px));
  }
  .c-filtros .o-content__destino {
    max-width: 332px;
  }
  .c-filtros .o-content__precio {
    max-width: 220px;
  }
  .c-hoteles-listado .o-listado__item__title {
    font-size: 15px;
  }
  .c-hoteles-listado .o-listado__item__tel {
    font-size: 13px;
  }
  .c-hoteles-listado .o-listado__item__tel a {
    font-size: 13px;
  }
  .c-hoteles-listado .o-listado__item__loc {
    font-size: 13px;
  }
  .c-hoteles-listado .o-listado__item__btn-price__btn {
    order: 2;
    display: block;
    width: 100%;
    padding-top: 20px;
  }
  .c-hoteles-listado {
    overflow: hidden;
    padding-bottom: 50px;
  }
  .c-form--gen .o-form form {
    justify-content: space-between;
  }
  .c-hoteles-listado .o-listado {
    margin: 0 -22px;
  }
  .c-hoteles-listado .o-listado__item {
    padding: 0 22px;
  }
  .c-form--gen .o-form__first {
    width: 100%;
  }
  .c-formulario .o-form__datepicker {
    width: 40%;
  }
  .c-form--gen .o-form__checkbox--fechas {
    width: auto;
    position: inherit;
    top: 0;
  }
  .c-formulario {
    overflow: hidden;
    padding-bottom: 60px;
  }
  .c-filtros {
    overflow: hidden;
  }
  .c-banner {
    padding-bottom: 80px;
  }
  .c-filtros {
    margin-bottom: 85px;
  }
  .c-logos .o-nh-group {
    max-width: 190px;
  }
  .c-logos .o-nh-group img {
    width: 142px;
  }
  .c-logos .o-all img {
    width: 82%;
  }
  .c-logos .o-all {
    width: calc(100% - 190px);
  }
  .c-seo {
    padding: 30px 0 85px 0;
  }
  .c-seo h1 {
    font-size: 48px;
  }
  .c-pie .container {
    align-items: center;
  }
  .c-pie .o-menu {
    max-width: 320px;
  }
  .c-pie .o-menu ul li:nth-child(2) {
    border: none;
  }
  .c-pie .o-menu ul li:nth-child(3) {
    padding-left: 0;
  }
}
/* mediaqueries max-768 */
@media screen and (max-width: 767px) {
  .c-slider-hoteles .slick-list {
    padding: 0;
  }
  .c-slider-hoteles:before,
  .c-slider-hoteles:after {
    display: none;
  }
  .c-hoteles-listado .o-listado__item {
    width: 50%;
    margin-bottom: 50px;
  }
  .c-hoteles-listado .o-listado {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .c-hoteles-listado {
    padding-bottom: 40px;
  }
  .c-slider-hoteles {
    overflow: hidden;
  }
  .c-slider-hoteles .slick-list {
    padding: 0 20px !important;
  }
  .c-slider-hoteles .o-listado__item:before {
    display: none;
  }
  .c-slider-hoteles .o-listado__item {
    padding: 0 20px;
  }
  .c-slider-hoteles .slick-prev,
  .c-slider-hoteles .slick-next {
    width: 37px;
    height: 37px;
    top: 50%;
    transform: translateY(-50%);
  }
  .c-slider-hoteles .slick-prev {
    background: url(../images/slider-arrow-prev-rp.svg) no-repeat center;
    background-size: 99%;
    left: -18px;
  }
  .c-slider-hoteles .slick-next {
    background: url(../images/slider-arrow-next-rp.svg) no-repeat center;
    background-size: 99%;
    right: -18px;
  }
  .c-modal-gen {
    width: 95%;
  }
  .c-modal-gen .o-content {
    padding: 60px 30px;
  }
  .c-logos {
    display: none;
  }
}
@media screen and (max-width: 725px) {
  .c-form--gen .o-form p {
    width: 100%;
    padding-bottom: 25px;
  }
  .c-form--gen .o-form__checkbox label {
    margin-bottom: 0;
  }
  .c-form--gen .o-form__submit {
    text-align: center;
  }
  .c-form--gen .o-form__label-gen label {
    padding-bottom: 12px;
  }
  .c-hoteles-listado .o-listado__item__title {
    font-size: 17px;
  }
  .c-hoteles-listado .o-listado__item__tel {
    font-size: 15px;
  }
  .c-hoteles-listado .o-listado__item__tel a {
    font-size: 15px;
  }
  .c-hoteles-listado .o-listado__item__loc {
    font-size: 15px;
  }
  .c-seo {
    padding: 30px 0 60px 0;
  }
  .c-seo h1 {
    font-size: 32px;
  }
  .c-seo h2 {
    font-size: 17px;
    line-height: 1.2;
  }
  .c-seo .o-desc p {
    font-size: 15px;
  }
  .c-formulario {
    padding-bottom: 40px;
  }
  .c-banner {
    padding-bottom: 60px;
  }
  .c-condiciones .o-content {
    padding: 25px 20px 50px 20px;
  }
  .c-condiciones {
    margin-bottom: 60px;
  }
  .c-filtros {
    margin-bottom: 60px;
  }
  .c-filtros .o-content__destino {
    max-width: 100%;
  }
  .c-filtros .o-content__precio {
    max-width: 100%;
    margin-top: 40px;
  }
  .c-filtros .o-content__submit {
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }
}
/* mediaqueries max-480 */
@media screen and (max-width: 560px) {
  .c-principal .o-image img {
    height: 155px;
    min-height: inherit;
  }
  .c-hoteles-listado .o-listado__item {
    width: 100%;
    text-align: center;
  }
  .c-hoteles-listado .o-listado__item__btn-price {
    justify-content: center;
  }
  .c-hoteles-listado .o-listado__item__loc {
    background: none;
    padding-left: 0;
  }
  .c-hoteles-listado .o-listado__item__loc:before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 19px;
    position: relative;
    transition: all .5s;
    outline: 0;
    background: url(../images/landing-loc.svg) no-repeat center;
    background-size: 13px;
    top: 5px;
    margin-right: 6px;
  }
  .c-hoteles-listado .o-listado__item__loc {
    min-height: inherit;
  }
  .c-call-responsive {
    display: block;
  }
  .pre-menu-mobile .tel-mobile {
    display: block;
    position: absolute;
    top: 30px;
    right: 20px;
  }
  .pre-menu-mobile .tel-mobile a:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 19px;
    position: relative;
    transition: all .5s;
    outline: 0;
    background: url(../images/menu-tel-mobile.png) no-repeat center;
  }
  .pre-menu-mobile .logo-mobile img {
    max-width: 150px;
  }
  .pre-menu-mobile .tel-mobile {
    top: 21px;
  }
  .pre-menu-mobile .btn-menu {
    top: 22px;
  }
  .pre-menu-mobile .rewards-mobile {
    display: none;
  }
  .pre-menu-mobile .btn-menu .name-menu {
    display: none;
  }
  .c-pie .o-logos__geotrust {
    padding-right: 40px;
  }
}
@media screen and (max-width: 370px) {
  .c-pie {
    padding: 5px 0 30px 0;
  }
  .c-pie .o-menu {
    max-width: 100%;
    width: 100%;
  }
  .c-pie .o-menu ul {
    padding-bottom: 35px;
  }
  .c-pie .o-menu__copyright {
    text-align: center;
    padding-bottom: 35px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .c-pie .o-menu ul li {
    display: block;
    width: 100%;
    padding: 12px !important;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    text-align: center;
  }
  .c-pie .container {
    padding: 0;
  }
  .c-pie .o-logos {
    width: 100%;
    padding: 0 15px;
  }
}
.form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
}
.deshabilitar{
  pointer-events: none;
  opacity: .6;
}

.c-call-responsive p a{
  background: #fe5000;
}
.c-call-responsive p a:hover{
  background: #428bc6;
}

/*# sourceMappingURL=style.css.map */