@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,300,300i,400,400i,600,600i,700,700i,900,900i');
/* ------------------------------------------------------------
    STYLES
------------------------------------------------------------ */
:root {
  --main-txt-color: #333;
  --alt-txt-color: white;
}
.clever,
.clever * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.clever--hide {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  opacity: 0;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.clever {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.clever.clever--focus {
  z-index: 2;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), 0 0 0 2px #006eff;
}
.clever.clever--focus .clever-icon-dropdown::before {
  background-color: rgba(0, 110, 255, 0.5);
}
.clever.clever--focus .clever-icon-dropdown::after {
  background-color: #006eff;
}
.clever__field {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 15px;
  padding-right: 40px;
  text-align: left;
  cursor: pointer;
  border: 0;
  background-color: transparent;
}
.clever__field:focus {
  outline: initial;
}
.clever__current-option {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  vertical-align: middle;
  color: var(--main-txt-color);
}
.clever__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 7;
  display: block;
  overflow: hidden;
  min-width: 100%;
  width: auto;
  height: auto;
  max-height: 0;
  padding: 0;
  opacity: 0;
  background-color: white;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.clever__dropdown.clever--active {
  max-height: 300px;
  opacity: 1;
}
.clever__list,
.clever__list .clever__option {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.clever__option {
  position: relative;
  display: block;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  color: var(--main-txt-color);
}
.clever__option .clever__icon {
  opacity: 0;
}
.clever__option:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.clever__option.clever--active .clever__icon {
  opacity: 1;
}
.clever__option__value {
  position: relative;
  display: block;
  margin: 0;
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.clever__icon {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
}
.clever-icon-dropdown::before,
.clever-icon-dropdown::after {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 2px;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.clever-icon-dropdown::before {
  left: 0;
  -webkit-transform: translate(-0.5px, -50%) rotate(45deg);
  -moz-transform: translate(-0.5px, -50%) rotate(45deg);
  -ms-transform: translate(-0.5px, -50%) rotate(45deg);
  -o-transform: translate(-0.5px, -50%) rotate(45deg);
  transform: translate(-0.5px, -50%) rotate(45deg);
  background-color: #b4b4b4;
  z-index: 2;
}
.clever-icon-dropdown::after {
  right: 0;
  -webkit-transform: translate(0.5px, -50%) rotate(-45deg);
  -moz-transform: translate(0.5px, -50%) rotate(-45deg);
  -ms-transform: translate(0.5px, -50%) rotate(-45deg);
  -o-transform: translate(0.5px, -50%) rotate(-45deg);
  transform: translate(0.5px, -50%) rotate(-45deg);
  background-color: #969696;
  z-index: 1;
}
.clever-icon-checked::before,
.clever-icon-checked::after {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  height: 2px;
  border-radius: 2px;
  background-color: red;
}
.clever-icon-checked::before {
  left: 0;
  -webkit-transform: translate(3.5px, 0.5px) rotate(45deg);
  -moz-transform: translate(3.5px, 0.5px) rotate(45deg);
  -ms-transform: translate(3.5px, 0.5px) rotate(45deg);
  -o-transform: translate(3.5px, 0.5px) rotate(45deg);
  transform: translate(3.5px, 0.5px) rotate(45deg);
  width: 5px;
  background-color: #b4b4b4;
  z-index: 2;
}
.clever-icon-checked::after {
  right: 0;
  -webkit-transform: translate(0.5px, -50%) rotate(-45deg);
  -moz-transform: translate(0.5px, -50%) rotate(-45deg);
  -ms-transform: translate(0.5px, -50%) rotate(-45deg);
  -o-transform: translate(0.5px, -50%) rotate(-45deg);
  transform: translate(0.5px, -50%) rotate(-45deg);
  width: 10px;
  background-color: #969696;
  z-index: 1;
}
.clever__mark {
  display: inline-block;
  background-color: #006efa;
  color: var(--alt-txt-color);
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 3px;
}
.clever__mark span {
  display: inline-block;
  vertical-align: middle;
}
.clever__mark small {
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 100;
  vertical-align: middle;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  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;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.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;
}
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}
/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}
/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* colors

light gray #D8D5D2
dark gray #333
purple #A2C
red #D26
*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* font-size on html for rem*/
html {
  font-family: Texta, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}
html.export {
  font-family: sans-serif;
  font-size: 15px;
}
body {
  color: #333;
  background: #D8D5D2;
}
/* ---- links ---- */
a,
a code {
  color: #A2C;
  text-decoration: none;
}
a:hover,
a:hover code {
  color: #D26;
}
/* ---- headers ---- */
h1,
h2,
h3,
h4 {
  line-height: 1.25;
}
/* ---- lists ---- */
ul,
ol {
  padding-left: 1.8em;
}
/* ---- code ---- */
pre,
code {
  font-family: Consolas, Menlo, monospace;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 19px;
  }
  html.export {
    font-size: 16px;
  }
  pre,
  code,
  kbd {
    font-size: 15px;
  }
}
/* Code
------------------------- */
pre,
code {
  background: #222;
  color: white;
}
pre {
  padding: 0.8em;
  border-radius: 5px;
  white-space: pre-wrap;
}
code {
  padding: 0.2em 0.3em;
  line-height: 1.2;
  border-radius: 3px;
}
pre code {
  padding: 0;
  line-height: 1.5;
  background: none;
}
a code {
  background: #A2C;
  color: white;
}
a:hover code {
  color: white;
  background: #D26;
}
code .string,
code .tag .value {
  color: #0C4;
}
code .number,
code .cp,
code .literal {
  color: #38F;
}
/*boolean*/
code .keyword {
  color: #F73;
}
/* keyword */
code .kd,
code .attribute {
  color: #DC8;
}
/* markup attribute */
code .title {
  color: #9CF;
}
code .params {
  color: #98D;
}
code .p {
  color: #EDB;
}
/* punctuation */
code .o {
  color: #F63;
}
/* operator */
code .nb {
  color: #AA97AC;
}
/* support */
/* comment */
code .comment {
  color: #999;
  font-style: italic;
}
code .tag {
  color: #6CF;
}
/* Markup open tag */
code .id {
  color: #ABC;
}
/* css id */
code .class {
  color: #A63;
}
/* CSS class */
code .rules {
  color: #FED;
}
code .m {
  color: #DE8E50;
}
/* CSS value */
code .nd {
  color: #9FAD7E;
}
/* CSS pseudo selector */
code .hexcolor {
  color: #F63;
}
code .at_rule {
  color: #088;
}
/* masonry keywords */
code .masonry_var {
  color: #F3F;
}
code .jquery_var {
  color: #DF8;
}
code .masonry_keyword {
  color: #0FF;
  text-decoration: underline;
}
/* content
------------------------- */
.content {
  padding-top: 20px;
  padding-bottom: 20px;
}
/* ---- typography ---- */
.content h1 {
  font-size: 3.4rem;
}
.content h2 {
  font-size: 2.0rem;
  font-weight: 400;
  padding: 30px 0;
  border-top: 2px solid white;
  margin-top: 50px;
}
.content h2:target {
  padding-left: 0.5em;
  background: #D26;
  color: white;
}
.content h3 {
  font-size: 1.6rem;
  border-top: 1px solid white;
  padding-top: 20px;
  margin-top: 50px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .content > * {
    max-width: 900px;
  }
  /* stuff that can go wide */
  .content > .example {
    max-width: none;
  }
}
/* ---- demos ---- */
.demo .masonry,
.demo.masonry {
  background: white;
  border-radius: 5px;
}
.demo .button {
  margin-bottom: 0.8em;
}
/* ---- fit width ---- */
#fit-width {
  border: 2px solid white;
  border-radius: 6px;
}
#fit-width .masonry {
  margin: 10px auto;
}
/* ---- counting ---- */
.masonry.counting {
  counter-reset: item;
}
.masonry.counting .item:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  color: white;
  padding-top: 0.2em;
  text-align: center;
  font-size: 18px;
}
/* ---- measurement demos ---- */
#gutter-opt-demo2 .item {
  margin-bottom: 10px;
}
/* responive column width */
.masonry.masonry--percent-width .grid-sizer {
  width: 20%;
}
.masonry.masonry--percent-width .item {
  width: 20%;
}
.masonry.masonry--percent-width .item.w2,
.masonry.masonry--percent-width .item.w3 {
  width: 40%;
}
#row-height-demo2 .grid-sizer {
  height: 60px;
}
#gutter-opt-demo3 .gutter-sizer {
  width: 3%;
}
/* ---- stamp ---- */
.has-stamp {
  position: relative;
}
#stamp-demo .stamp {
  right: 10%;
  top: 10px;
  width: 35%;
  height: 70px;
}
#stamp-demo .item {
  opacity: 0.8;
}
/* ---- animate-item-size ---- */
/* item is invisible, but used for layout */
.masonry.animate-item-size-demo .item,
.masonry.animate-item-size-demo .item-content {
  width: 60px;
  height: 60px;
}
.masonry.animate-item-size-demo .item {
  border: none;
  background: transparent;
}
/* item-content is visible, and transitions size */
.animate-item-size-demo .item-content {
  width: 60px;
  height: 60px;
  background: #D26;
  border: 2px solid #333;
  border-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  -webkit-transition: width 0.4s, height 0.4s;
  -moz-transition: width 0.4s, height 0.4s;
  -o-transition: width 0.4s, height 0.4s;
  transition: width 0.4s, height 0.4s;
}
.animate-item-size-demo .item:hover .item-content {
  border-color: white;
  background: #A2C;
}
/* both item and item content change size */
.animate-item-size-demo .item.is-expanded,
.animate-item-size-demo .item.is-expanded .item-content {
  width: 180px;
  height: 120px;
}
.animate-item-size-demo .item.is-expanded {
  z-index: 2;
}
.animate-item-size-demo .item.is-expanded .item-content {
  background: #F90;
}
/* ---- animate item size responsive ---- */
#animate-item-size-responsive .item,
#animate-item-size-responsive .grid-sizer {
  width: 20%;
}
#animate-item-size-responsive .item-content {
  width: 100%;
  height: 100%;
}
/* item has expanded size */
#animate-item-size-responsive .item.is-expanded {
  width: 60%;
}
/* web fonts
------------------------- */
/*@import url("//hello.myfonts.net/count/2d333f");*/
/*
  Just use WOFF2 and WOFF for webfonts
  http://css-tricks.com/snippets/css/using-font-face/ */
/* Texta Heavy */
@font-face {
  font-family: 'Texta';
  font-weight: bold;
  font-style: normal;
  src: url('../fonts/2D333F_0_0.woff2') format('woff2'), url('../fonts/2D333F_0_0.woff') format('woff');
}
/* Texta Italic */
@font-face {
  font-family: 'Texta';
  font-weight: normal;
  font-style: italic;
  src: url('../fonts/2D333F_1_0.woff2') format('woff2'), url('../fonts/2D333F_1_0.woff') format('woff');
}
/* Texta Regular */
@font-face {
  font-family: 'Texta';
  src: url('../fonts/2D333F_2_0.woff2') format('woff2'), url('../fonts/2D333F_2_0.woff') format('woff');
}
/* ---- desktop  ---- */
@media screen and (min-width: 960px) {
  /* first primary content not used on homepage */
  .index-page #content > .primary-content:first-child {
    border-top: none;
    padding-top: 0;
  }
}
/* ---- #content ---- */
/* ---- row ---- */
.row .cell {
  margin-bottom: 0.8em;
}
/* clearfix */
.row:after {
  content: ' ';
  display: block;
  clear: both;
}
.row4 .cell {
  float: left;
  width: 48%;
  margin-right: 2%;
}
/* tablet-ish */
@media screen and (min-width: 800px) {
  .row {
    margin-bottom: 0.8em;
  }
  /* two column by default*/
  .row .cell {
    float: left;
    width: 48.75%;
    margin-right: 2.5%;
    margin-bottom: 0;
  }
  /* IE8 doesn't support :last-child */
  .lt-ie9 .row .cell {
    margin-right: 1.5%;
  }
  /* no margin */
  /*  .example.row .cell {
    width: 50%;
    margin-right: 0;
  }*/
  /* three column */
  .row3 .cell {
    width: 31.6%;
  }
  /* four column */
  .row4 .cell {
    width: 23.1%;
  }
  .row .cell:last-child {
    margin-right: 0;
  }
}
/* ---- instruction ---- */
.instruction {
  font-size: 18px;
  margin-bottom: 0.2em;
  color: #888;
}
/* ---- notification ---- */
#notification {
  display: none;
  /* hide by default */
  position: fixed;
  z-index: 20;
  /* above most stuff */
  bottom: 0px;
  right: 0px;
  background: #A2C;
  padding: 0.5em;
  color: white;
  font-size: 20px;
  pointer-events: none;
}
/* button
------------------------- */
.button {
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 10px;
  background: #A2C;
  border: none;
  border-radius: 7px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  color: white;
  font-weight: 500;
  cursor: pointer;
}
.button:hover {
  background-color: #C2E;
}
.button:active,
.button.is-checked,
.button.is-selected {
  background-color: #D26;
}
.button:active {
  box-shadow: inset 0 1px 10px rgba(0, 0, 0, 0.8);
}
/* hide radio inputs */
.button input[type="radio"] {
  display: none;
}
/* ---- button-group ---- */
.button-group:after {
  content: '';
  display: block;
  clear: both;
}
.button-group .button {
  float: left;
  border-radius: 0;
  margin-right: 1px;
}
.button-group .button:first-child {
  border-radius: 0.5em 0 0 0.5em;
}
.button-group .button:last-child {
  border-radius: 0 0.5em 0.5em 0;
}
/* call out
------------------------- */
.call-out {
  border-top: 2px solid #F90;
  border-bottom: 2px solid #F90;
  padding-left: 40px;
  position: relative;
  margin: 20px 0;
}
/* (i) */
.call-out:before {
  content: 'i';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 5px;
  top: 20px;
  background: #F90;
  border-radius: 50%;
  text-align: center;
  color: white;
  font-family: Consolas, Georgia, serif;
  font-style: italic;
}
.call-out h2 {
  margin-top: 0;
  padding-top: 10px;
  border-top: none;
}
.call-out--chill {
  border-color: #1FB;
}
.call-out--chill:before {
  background: #1FB;
}
@media screen and (min-width: 768px) {
  .call-out {
    border: 2px solid #F90;
    padding: 10px 20px 10px 80px;
    border-radius: 6px;
    position: relative;
    margin: 20px 0;
  }
  .call-out--chill {
    border-color: #1FB;
  }
  .call-out:before {
    width: 40px;
    height: 40px;
    left: 20px;
    top: 30px;
    font-size: 1.9em;
    line-height: 46px;
  }
}
/* container
------------------------- */
.container {
  margin-left: 10px;
  margin-right: 10px;
  max-width: 1200px;
}
@media screen and (min-width: 1100px) {
  .container {
    margin-left: 6%;
    margin-right: 200px;
  }
}
/* duo
two columns for large devices
------------------------- */
/* clearfix */
.duo:after {
  content: '';
  display: block;
  clear: both;
}
.duo__cell {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .duo__cell {
    float: left;
    width: 48.5%;
  }
  .duo__cell:first-child {
    margin-right: 3%;
  }
}
/* edit-demo
------------------------- */
.edit-demo {
  clear: both;
  font-size: 0.92em;
}
/* example
------------------------- */
.example pre {
  margin-top: 0;
}
.example__demo--fit-width {
  border: 2px solid white;
  border-radius: 5px;
}
/* fizzy-bear-shirt
------------------------- */
.fizzy-bear-shirt {
  margin: 40px 0;
}
.fizzy-bear-shirt__title {
  font-size: 1.6rem;
}
.fizzy-bear-shirt__image {
  display: block;
  max-width: 100%;
  margin-bottom: 10px;
}
/* grid
------------------------- */
.grid {
  background: white;
}
/* clearfix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}
/* ---- banner ---- */
.grid--has-banner {
  position: relative;
}
.static-banner {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 15px;
  color: white;
  background: #A2C;
  z-index: 2;
  /* above items */
}
/* ---- centered ---- */
.grid--centered {
  margin: 10px auto;
}
/* ---- counting ---- */
.grid--counting {
  counter-reset: grid-item;
}
.grid--counting .grid-item:before {
  counter-increment: grid-item;
  content: counter(grid-item);
  display: block;
  color: white;
  padding-top: 0.2em;
  text-align: center;
  font-size: 1.1rem;
}
/* ---- stamp ---- */
.grid--has-stamp {
  position: relative;
}
/* ---- grid--fixed-width ---- */
.grid--fixed-width {
  width: 320px;
}
/* grid-image-item
------------------------- */
.grid-image-item,
.grid--images .grid-sizer {
  width: 33.33%;
}
.grid-image-item {
  float: left;
}
.grid-image-item img {
  display: block;
  max-width: 100%;
}
/* grid-item
------------------------- */
.grid-item {
  width: 80px;
  float: left;
}
.grid-item--width2 {
  width: 160px;
}
.grid-item--width3 {
  width: 240px;
}
.grid-item--height2 {
  height: 100px;
}
.grid-item--height3 {
  height: 140px;
}
.grid-item--height4 {
  height: 180px;
}
.grid-item--gigante {
  width: 240px;
  height: 180px;
  background: #F90;
  z-index: 2;
  /* keep it above other items */
}
/* ---- clickable ---- */
.grid--clickable .grid-item:hover {
  border-color: white;
  background: #A2C;
  cursor: pointer;
}
/* ---- fluid-5-col ---- */
.grid--fluid-5-col .grid-sizer,
.grid--fluid-5-col .grid-item {
  width: 20%;
}
.grid--fluid-5-col .grid-item--width2,
.grid--fluid-5-col .grid-item--width3 {
  width: 40%;
}
/* ---- gutter ---- */
.grid--gutter .grid-item--width2 {
  width: 170px;
}
.grid--gutter .grid-item--width3 {
  width: 260px;
}
.grid--gutter-bottom .grid-item {
  margin-bottom: 10px;
}
/* ---- grid--fluid-gutter ---- */
.grid--fluid-gutter .grid-item,
.grid--fluid-gutter .grid-sizer {
  width: 22%;
}
.grid--fluid-gutter .gutter-sizer {
  width: 4%;
}
.grid--fluid-gutter .grid-item--width2,
.grid--fluid-gutter .grid-item--width3 {
  width: 48%;
}
/* hero
------------------------- */
.hero-grid {
  padding: 10px 1%;
  margin: 20px 0;
  background: white;
  border-radius: 10px;
}
/* necessary for proper sizing with margins */
.hero-grid__grid-sizer {
  position: absolute;
}
.hero-grid__item,
.hero-grid__grid-sizer {
  width: 47%;
  margin: 0 1% 20px 1%;
}
.hero-grid__gutter-sizer {
  width: 2%;
}
.hero-grid__item {
  float: left;
  border-radius: 8px;
  background: #D8D6D2;
  margin-bottom: 20px;
}
/* ----  ---- */
.hero__title {
  margin: 0;
  line-height: 1.2;
  font-size: 3rem;
  color: #D26;
}
.hero__tagline {
  font-size: 1.4rem;
  margin: 0 0 10px;
}
/* ---- texty ---- */
.hero-grid__item--texty {
  padding: 10px;
}
.hero-grid__item--width2,
.hero-grid__item--width3 {
  width: 96%;
}
/* ---- ---- */
.hero-grid__big-button {
  position: relative;
  display: block;
  padding: 10px;
  background: #D26;
  color: white;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}
.hero-grid__big-button:hover {
  background: #A2C;
  color: white;
}
.big-button__icon {
  width: 24px;
  height: 24px;
}
.big-button__icon path {
  fill: white;
}
/* ----  ---- */
.hero__what-is-title {
  margin: 0 0 10px;
}
.hero__what-is-description {
  margin: 0;
}
/* ---- .hero-grid__example-link ---- */
.hero__example-link {
  display: block;
  background: #D26;
  border-radius: 8px;
  color: white;
}
.hero__example-link:hover {
  background: #A2C;
  color: white;
}
.hero__example-link__img {
  display: block;
  width: 100%;
  margin: 0;
}
.hero__example-link__title {
  margin: 0;
  padding: 10px;
  font-size: 0.9rem;
}
/* enough width for 4 columns */
@media screen and (min-width: 768px) {
  .hero-grid__grid-sizer,
  .hero-grid__item {
    width: 22.5%;
  }
  .hero-grid__item--width2 {
    width: 47%;
  }
  .hero-grid__item--width3 {
    width: 71.5%;
  }
  .hero__title {
    font-size: 6rem;
  }
  .hero__tagline {
    font-size: 2rem;
  }
  .hero__what-is-title {
    font-size: 2rem;
  }
  .hero__what-is-description {
    font-size: 1.1rem;
  }
  .hero-grid__big-button {
    padding-left: 60px;
    min-height: 60px;
  }
  .big-button__icon {
    display: block;
    position: absolute;
    left: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
  }
}
/* ---- logo-pizza-banner ---- */
.logo-pizza-banner {
  display: block;
  margin: 40px 0;
  max-width: 1000px;
  background: #E8E5E2;
  color: #D26;
  padding: 10px;
  border-radius: 5px;
}
.logo-pizza-banner:hover {
  background: #FFF;
  color: #A2C;
}
.logo-pizza-banner__img {
  display: block;
  max-width: 100%;
  border-radius: 5px;
}
.logo-pizza-banner__title {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 10px 0;
  font-size: 3.0rem;
}
.logo-pizza-banner__tagline {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0;
  font-size: 1.2rem;
}
/* other-products
------------------------- */
.other-product {
  margin-bottom: 10px;
}
.other-product__link {
  position: relative;
  /* gonna abs */
  display: block;
  padding: 0px;
  background: #E8E5E2;
  border-radius: 5px;
  color: #D26;
}
.other-product__link:hover {
  background: white;
  color: #A2C;
}
.other-product__link:after {
  content: '';
  display: block;
  clear: both;
}
.other-product__image {
  float: left;
  display: block;
  width: 100%;
  max-width: 140px;
  margin: 10px;
  border-radius: 5px;
}
.other-product__title {
  margin: 10px 0;
  padding-top: 10px;
  line-height: 1.2;
  font-weight: bold;
  font-size: 2.0em;
}
.other-product__description {
  line-height: 1.2;
  margin: 0;
}
/* page-nav
------------------------- */
.page-nav {
  padding: 1.0em 0;
  font-size: 0.8rem;
  z-index: 2;
  /* above packeries */
}
.page-nav__item {
  display: inline-block;
}
.page-nav__item:after {
  content: ' •';
  margin: 0 10px;
  opacity: 0.5;
}
.page-nav__item:last-child:after {
  content: none;
}
/* desktop */
@media screen and (min-width: 1100px) {
  .page-nav {
    position: absolute;
    right: 0;
    top: 60px;
    width: 200px;
    list-style: none;
    padding: 0;
    padding: 10px;
  }
  .page-nav__item {
    display: block;
    margin-bottom: 4px;
    margin-left: 0;
  }
  .page-nav__item:after {
    content: none;
  }
  .page-nav__item a {
    display: block;
  }
  .page-nav__item--h3 a {
    padding-left: 10px;
  }
}
/* fix .page-nav only if we have enough height */
@media screen and (min-width: 1100px) and (min-height: 540px) {
  .page-nav {
    position: fixed;
  }
}
/* refactor-shirt
------------------------- */
.refactor-shirt {
  margin: 40px 0;
}
.refactor-shirt__title {
  font-size: 1.6rem;
}
.refactor-shirt__image {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 10px;
}
/* site-footer
------------------------- */
.site-footer {
  color: #888;
  background: #F8F5F2;
  padding: 40px 0;
  position: relative;
  z-index: 10;
  /* above page-nav */
}
/* site nav
------------------------- */
.site-nav .container {
  border-bottom: 2px solid white;
}
/* bottom nav */
.content ~ .site-nav .container {
  position: relative;
  margin-top: 80px;
  border-top: 2px solid white;
  border-bottom: none;
}
.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__list:after {
  content: '';
  clear: both;
  display: block;
}
.site-nav__item {
  width: 33.333%;
  float: left;
  line-height: 28px;
}
.site-nav__item a {
  display: block;
  padding: 5px;
}
.site-nav__item--homepage {
  font-size: 1.15rem;
  font-weight: bold;
}
.site-nav__item--homepage a {
  color: #D26;
}
.site-nav__item a:hover {
  background: #D26;
  color: white;
}
.site-nav__item a:active {
  background: white;
  color: #D26;
}
/* selected */
.page--options .site-nav__item--options a,
.page--methods .site-nav__item--methods a,
.page--events .site-nav__item--events a,
.page--extras .site-nav__item--extras a,
.page--faq .site-nav__item--faq a {
  color: white;
}
.page--index .site-nav__item--homepage {
  visibility: hidden;
}
/* size at which it can fit */
@media screen and (min-width: 768px) {
  .site-nav__item {
    width: auto;
    font-size: 1.15rem;
    line-height: 70px;
  }
  .site-nav__item a {
    padding: 0px 25px;
  }
  .site-nav__item--homepage {
    font-size: 1.5rem;
  }
}
/* variable
------------------------- */
.variable {
  margin: 0.5em 0;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.075);
}
.variable__type {
  color: #27C;
}
.variable__type,
.variable__description {
  margin-left: 10px;
}
.variable__type:before,
.variable__description:before {
  content: '·';
  padding-right: 0.4em;
  display: inline-block;
}
/* animate-item-size-item
------------------------- */
.animate-item-size-item {
  float: left;
}
/* animate-item-size-item is invisible, but used for layout */
.animate-item-size-item,
.animate-item-size-item__content {
  width: 60px;
  height: 60px;
}
/* animate-item-size-item__content is visible, and transitions size */
.animate-item-size-item__content {
  background: #D26;
  border: 2px solid #333;
  border-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  -webkit-transition: width 0.4s, height 0.4s;
  transition: width 0.4s, height 0.4s;
}
.animate-item-size-item:hover .animate-item-size-item__content {
  border-color: white;
  background: #A2C;
  cursor: pointer;
}
/* both animate-item-size-item and animate-item-size-item content change size */
.animate-item-size-item.is-expanded,
.animate-item-size-item.is-expanded .animate-item-size-item__content {
  width: 180px;
  height: 120px;
}
.animate-item-size-item.is-expanded {
  z-index: 2;
}
.animate-item-size-item.is-expanded .animate-item-size-item__content {
  background: #F90;
}
/* ---- responsive ---- */
.grid--animate-item-size-responsive .animate-item-size-item,
.grid--animate-item-size-responsive .grid-sizer {
  width: 20%;
}
.grid--animate-item-size-responsive .animate-item-size-item__content,
.grid--animate-item-size-responsive .animate-item-size-item.is-expanded .animate-item-size-item__content {
  width: 100%;
  height: 100%;
}
/* item has expanded size */
.grid--animate-item-size-responsive .animate-item-size-item.is-expanded {
  width: 60%;
}
/* bootstrap 3
------------------------- */
.bootstrap-3__container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.bootstrap-3__col-xs-4,
.bootstrap-3__col-xs-6,
.bootstrap-3__col-xs-8,
.bootstrap-3__col-xs-12 {
  padding-right: 15px;
  padding-left: 15px;
}
.bootstrap-3__col-xs-4 {
  width: 33.333%;
}
.bootstrap-3__col-xs-6 {
  width: 50%;
}
.bootstrap-3__col-xs-8 {
  width: 66.666%;
}
.bootstrap-3__grid-item-content {
  height: 100px;
  background: #D26;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.bootstrap-3__grid-item-content--height2 {
  height: 200px;
}
/* sm */
@media (min-width: 768px) {
  .bootstrap-3__col-sm-4 {
    width: 33.333%;
  }
  .bootstrap-3__col-sm-8 {
    width: 66.666%;
  }
}
/* md */
@media (min-width: 992px) {
  .bootstrap-3__col-md-3 {
    width: 25%;
  }
  .bootstrap-3__col-md-6 {
    width: 50%;
  }
}
/* stamp
------------------------- */
.stamp {
  position: absolute;
  width: 30%;
  height: 60px;
  background: orange;
  border: 4px dotted black;
}
.stamp--static-stamp1 {
  left: 30%;
  top: 10px;
  width: 20%;
  height: 100px;
}
.stamp--static-stamp2 {
  right: 10%;
  top: 20px;
  width: 70%;
  height: 30px;
}
/* stamp-methods-demo
------------------------- */
.grid--stamp-methods-demo .grid-item {
  opacity: 0.8;
}
.stamp--stamp-methods-demo {
  left: 10px;
  top: 10px;
}
/* Plugin styles */
.social-feed-element.hidden {
  background-color: red !important;
}
.social-feed-element .pull-left {
  float: left;
  margin-right: 10px;
}
.social-feed-element .pull-right {
  margin-left: 10px;
}
.social-feed-element img {
  width: 100%;
  width: auto\9;
  height: auto;
  border: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}
.social-feed-element .attachment {
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}
/* Link styles */
.social-feed-element a {
  color: #0088cc;
  text-decoration: none;
}
.social-feed-element a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.social-feed-element a:hover,
.social-feed-element a:active {
  outline: 0;
  color: #005580;
  text-decoration: underline;
}
/* Text styles */
.social-feed-element small {
  font-size: 85%;
}
.social-feed-element strong {
  font-weight: bold;
}
.social-feed-element em {
  font-style: italic;
}
.social-feed-element p {
  margin: 0 0 10px;
}
.social-feed-element .media-body > p {
  margin-bottom: 4px;
  min-height: 20px;
}
.social-feed-element p.social-feed-text {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
/* Message styles */
.social-feed-element,
.social-feed-element .media-body {
  overflow: hidden;
  zoom: 1;
  *overflow: visible;
}
.social-feed-element .media-body .social-network-icon {
  margin-top: -3px;
  margin-right: 5px;
  width: 16px;
}
.social-feed-element .media-body div {
  color: #666;
  line-height: 20px;
}
.social-feed-element:first-child {
  margin-top: 0;
}
.social-feed-element .media-object {
  display: block;
  width: 48px;
  border-radius: 50%;
}
.social-feed-element .media-heading {
  margin: 0 0 5px;
}
.social-feed-element .media-list {
  margin-left: 0;
  list-style: none;
}
.social-feed-element .muted {
  color: #999;
}
.social-feed-element a.muted:hover,
.social-feed-element a.muted:focus {
  color: #808080;
}
.social-feed-element {
  box-shadow: 0 0 10px 0 rgba(10, 10, 10, 0.2);
  transition: 0.25s;
  -webkit-backface-visibility: hidden;
  margin: -1px;
  margin-top: 25px;
  background-color: #fff;
  color: #333;
  text-align: left;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 16px;
}
.social-feed-element:hover {
  box-shadow: 0 0 20px 0 rgba(10, 10, 10, 0.4);
}
.social-feed-element .content {
  padding: 15px;
}
.social-feed-element .social-network-icon {
  opacity: 0.7;
}
.social-feed-element .author-title {
  color: #444;
  line-height: 1.5em;
  font-weight: 500;
}
.irs {
  height: 50px;
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.irs-with-grid {
  height: 70px;
  display: block;
}
.irs-line {
  height: 3px;
  top: 25px;
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important;
}
.irs-line-left {
  height: 6px;
  background-position: 0 -30px;
  left: 4px;
  width: 11%;
}
.irs-line-mid {
  height: 6px;
  background-position: 0 0;
  left: 9%;
  width: 82%;
}
.irs-line-right {
  height: 6px;
  background-position: 100% -30px;
  right: 5px;
  width: 11%;
}
.irs-line-left,
.irs-line-mid,
.irs-line-right {
  position: absolute;
  display: block;
  top: 0;
  background: #f5f5f5;
}
.irs-bar {
  height: 3px;
  position: absolute;
  display: block;
  left: 0;
  width: 0;
  background: #00a8b1;
}
.irs-line,
.irs-bar {
  top: 30px;
}
.irs-bar-edge {
  top: 25px;
  height: 6px;
  width: 6px;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
.irs-shadow {
  height: 5px;
  top: 25px;
  background: #000;
  opacity: 0.25;
}
.irs-slider {
  width: 11px;
  height: 18px;
  top: 31px;
  position: absolute;
  display: block;
  cursor: default;
  z-index: 1;
}
.irs-min,
.irs-max {
  color: #999;
  font-size: 13px;
  line-height: 1.333;
  text-shadow: none;
  top: 12px;
  padding: 10px 0;
  text-align: center;
  width: 70px;
  background: #f5f5f5;
  visibility: inherit !important;
}
.irs-from,
.irs-to,
.irs-single {
  color: #fff;
  font-size: 13px;
  line-height: 1.333;
  text-shadow: none;
  padding: 10px 0;
  text-align: center;
  width: 70px;
  background: #f5f5f5;
  color: #00a8b1;
  position: absolute;
  display: block;
  top: -40px;
  left: 0;
  cursor: default;
  white-space: nowrap;
}
.irs-single::before {
  content: "\f111";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 65px;
  left: 30px;
  position: absolute;
}
.irs-grid {
  height: 34px;
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}
.irs-grid-pol {
  background: #c0c0c0;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}
.irs-grid-text {
  bottom: 12px;
  color: #c0c0c0;
}
.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}
.irs-slider.type_last {
  z-index: 2;
}
.irs-min {
  position: absolute;
  display: block;
  left: -35%;
  cursor: default;
}
.irs-min:before {
  content: 'Min';
  position: absolute;
  top: -30px;
  color: #666666;
}
.irs-max {
  position: absolute;
  display: block;
  right: -35%;
  cursor: default;
}
.irs-max:before {
  content: 'Max';
  position: absolute;
  top: -30px;
  color: #666666;
}
.irs-grid-pol.small {
  height: 4px;
}
.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}
.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}
.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}
.irs-disabled {
  opacity: 0.4;
}
.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}
/* ------------------------------------------------------------
    VARIABLES
------------------------------------------------------------ */
/* ------------------------------------------------------------
    BASE COLORS
------------------------------------------------------------ */
/* ------------------------------------------------------------
    BASE FONTS
------------------------------------------------------------ */
/* ------------------------------------------------------------
    UTILITY
------------------------------------------------------------ */
.reset-list,
.reset-list li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
/* ------------------------------------------------------------
    MIXINS
------------------------------------------------------------ */
.coverimage {
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.text-center {
  text-align: center;
}
.nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
/* ------------------------------------------------------------
    ANIMATIONS
------------------------------------------------------------ */
a,
input,
button,
.options-module ul li,
.options-module ul li i,
.options-module__item,
.grid-item article,
.menu-social__content li,
.menu-social__item i,
.item__checks,
.fixed-icons-module ul li,
.lightbox {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* ------------------------------------------------------------
    ICONS
------------------------------------------------------------ */
.icon {
  display: inline-block;
  background-image: url("../images/sprite.svg");
  background-size: 260px 400px;
  background-repeat: no-repeat;
}
.i-m {
  width: 32px;
  height: 32px;
}
.menu-main__list .im {
  margin-top: 12px;
}
.menu-tools__item .im {
  margin-top: 0;
}
.i-c {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #656565;
  border-radius: 50%;
  text-align: center;
}
.icon-login {
  width: 20px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  background-color: #306dd1;
}
.icon-logo {
  background-image: url("../images/logo.svg");
  background-size: 100% auto;
  background-position: center center;
}
.icon-search {
  background-position: 0 -95px;
}
.icon-favorite {
  background-position: -32px -95px;
}
.icon-settings {
  background-position: -64px -95px;
}
.icon-cal {
  background-position: -192px -95px;
}
.icon-profile {
  background-position: -96px -95px;
}
.icon-more {
  background-position: -96px -95px;
}
.icon-dots {
  background-position: 0 -231px;
}
.icon-wheretogo {
  background-position: -32px -231px;
}
.icon-whattodo {
  background-position: -64px -231px;
}
.icon-travelpin {
  background-position: -224px -231px;
  -webkit-transform: scale(1.34);
  -moz-transform: scale(1.34);
  -ms-transform: scale(1.34);
  -o-transform: scale(1.34);
}
.icon-travelplans {
  background-position: -223px -263px;
  -webkit-transform: scale(1.34);
  -moz-transform: scale(1.34);
  -ms-transform: scale(1.34);
  -o-transform: scale(1.34);
  /*background-position: -96px -231px;*/
}
.icon-information {
  background-position: -128px -231px;
}
.icon-love {
  background-position: -192.55px -231px;
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -o-transform: scale(1.4);
}
.icon-favorite-m {
  background-position: -160px -231px;
}
.icon-add {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-position: -25px -191px;
}
.icon-edit {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-position: -128px -95px;
}
.icon-delete {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-position: -160px -95px;
}
.icon-close,
.icon-prev {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.icon-close {
  background-position: -40px -263px;
}
.icon-prev {
  background-position: 0 -263px;
}
.icon-travelplans {
  background-position: -223px -263px;
  -webkit-transform: scale(1.34);
  -moz-transform: scale(1.34);
  -ms-transform: scale(1.34);
  -o-transform: scale(1.34);
}
.icon-map {
  width: 25px;
  height: 25px;
  background-position: -50px -191px;
}
.icon--terminal {
  background: url(../images/icon/bus.svg) center center no-repeat;
  background-size: 70%;
}
.icon--carretera {
  background: url(../images/icon/car.svg) center center no-repeat;
  background-size: 70%;
}
.icon--hospedarse {
  background: url(../images/icon/bed.svg) center center no-repeat;
  background-size: 70%;
}
.icon--maritima {
  background: url(../images/icon/ship.svg) center center no-repeat;
  background-size: 70%;
}
/* ------------------------------------------------------------
    TYPOGRAPHY
------------------------------------------------------------ */
/* ------------------------------------------------------------
    RESET
------------------------------------------------------------ */
/* html, body & children */
html {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 14px;
  -ms-text-size-ajust: 100%;
  -moz-text-size-ajust: 100%;
  -webkit-text-size-ajust: 100%;
  text-size-ajust: 100%;
  background-color: #FFF;
  color: #000;
  font-family: 'Raleway', sanserif;
  color: #666666;
}
body {
  overflow-x: hidden;
  background-color: #fff !important;
}
*,
*::after,
*::before {
  -ms-box-sizing: inherit;
  -moz-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
*:focus {
  outline: inherit;
}
/* links */
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway', sanserif;
  margin-bottom: 20px;
  font-weight: 300;
}
h1,
h2 {
  font-size: 4.688rem;
  letter-spacing: 1px;
  line-height: 4.688rem;
  font-weight: 500;
}
h3 {
  font-size: 1.875rem;
  line-height: 1.875rem;
}
h4 {
  font-size: 1.625rem;
  line-height: 1.625rem;
}
h5 {
  font-size: 1.25rem;
  line-height: 1.25rem;
}
h6 {
  font-size: 1.125rem;
  font-family: 'Raleway', sanserif;
  line-height: 1.125rem;
}
/* list tags */
li {
  margin-left: 16px;
  margin-left: 1rem;
  list-style-type: inherit;
  list-style-position: outside;
}
/* inline tags */
a,
abbr,
b,
code,
dfn,
em,
i,
li,
mark,
p,
pre,
strong {
  font-size: inherit;
}
small {
  font-size: 75%;
}
abbr,
dfn,
em,
i {
  font-style: italic;
}
abbr[title] {
  border-bottom: thin dotted;
}
b,
strong,
optgroup {
  font-weight: bold;
}
mark {
  background-color: #FF0;
  color: #000;
}
strong {
  font-family: 'Raleway', sanserif;
}
sub,
sup {
  font-size: 12px;
  font-size: .75rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -8px;
  top: -0.5rem;
}
sub {
  bottom: -4px;
  bottom: -0.25rem;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 16px;
  font-size: 1rem;
}
hr {
  margin: auto;
  width: 100%;
  height: 0;
  border: thin solid #000;
}
/* block tags */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
/* media tags */
audio,
canvas,
img,
iframe,
picture,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
svg:not(:root) {
  overflow: hidden;
}
/* form tags */
button,
input,
optgroup,
option,
select,
textarea {
  padding: 4px;
  padding: .25rem;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  border: thin solid #000;
  color: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
select {
  padding: .8rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: none;
}
input {
  line-height: normal;
}
textarea {
  vertical-align: bottom;
  overflow: auto;
  resize: none;
}
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
label,
select {
  cursor: pointer;
}
*[disabled] {
  cursor: default;
  color: #999;
  background-color: #DDD;
}
fieldset {
  border: thin solid #C0C0C0;
  padding: 8px;
  padding: .5rem;
}
/* table tags */
table {
  border-collapse: collapse;
}
table,
td,
th {
  border: thin solid #000;
}
/* selection */
::selection {
  color: #FFF;
  background-color: #338FFF;
}
::-moz-selection {
  color: #FFF;
  background-color: #338FFF;
}
/* ------------------------------------------------------------
    GRID
------------------------------------------------------------ */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    position: relative;
  }
}
.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%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
/*------- SISTEMA DE 5 COLUMNAS -------------
----------------------------------*/
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-5ths {
  width: 20%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
/* ------------------------------------------------------------
    TABLES
------------------------------------------------------------ */
/* ------------------------------------------------------------
    FORMS
------------------------------------------------------------ */
forms {
  width: 100%;
  height: auto;
}
input,
select,
textarea {
  padding: 10px;
  color: #666666;
}
input {
  border: 0;
  padding: 10px;
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
button {
  border: none;
  text-align: center;
  padding: 10px;
  font-weight: 300;
}
.special-check {
  width: 15px;
  height: 15px;
  position: relative;
}
.special-check input,
.special-check label {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.special-check input {
  opacity: 0;
  z-index: 1;
}
.special-check label {
  border: 2px solid #666666;
  color: #ffffff;
  text-align: center;
  line-height: 13px;
  border-radius: 2px;
}
.special-check input:checked + label {
  background: #666666;
}
.special-check input:checked + label:before {
  font: normal normal normal 10px/1 FontAwesome;
  content: "\f00c";
  vertical-align: top;
}
.special-favorite {
  width: 20px;
  height: 20px;
  z-index: 2;
}
.special-favorite input,
.special-favorite label {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.special-favorite input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  opacity: 0;
  z-index: 1;
}
.special-favorite label {
  color: #ffffff;
  width: 100%;
}
.special-favorite label i {
  font-size: 20px;
}
.special-favorite input:checked + label i:before {
  content: "\f004";
}
.special-radio {
  width: 20px;
  height: 20px;
  z-index: 2;
  background: #f5f5f5;
  border-radius: 50%;
  position: relative;
}
.special-radio input,
.special-radio label {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.special-radio input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  opacity: 0;
  z-index: 1;
}
.special-radio label {
  width: 12px !important;
  height: 12px;
  margin: 4px;
  border-radius: 50%;
}
.special-radio label i {
  font-size: 20px;
}
.special-radio input:checked + label {
  background: #00a8b1;
}
.special-select {
  width: 100%;
  background: #f5f5f5;
  height: 30px;
  overflow: hidden;
  position: relative;
}
.special-select select {
  width: 120%;
  border: 0;
  position: absolute;
  height: 100%;
  z-index: 2;
  background: transparent;
}
.special-select i {
  position: absolute;
  right: 10px;
  font-size: 20px;
  color: #00a8b1;
  top: 5px;
}
.input-combo {
  position: relative;
}
.input-combo .input-combo__input {
  width: 100%;
}
.input-combo .input-combo__icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.input-combo.input-combo--text {
  width: 100%;
}
.input-combo.input-combo--text .input-combo__input {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  text-align: center;
  color: #FFF;
  background-color: transparent;
}
.select-combo {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
}
.select-combo .select-combo__icon {
  position: absolute;
  line-height: 13px;
  font-size: 13px;
  color: #00A8B1;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
.select-combo .select-combo__select {
  width: calc(100% + 20px);
  border: 0;
  background-color: transparent;
}
.select-combo.select-combo--tool {
  max-width: 85px;
}
.select-combo.select-combo--lenguage {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: initial;
  max-width: initial !important;
}
.select-combo.select-combo--lenguage .select-combo__icon {
  right: 2px;
  z-index: 3;
}
.select-combo.select-combo--lenguage div {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.select-combo.select-combo--lenguage select {
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc(130%) !important;
  height: 100% !important;
  padding-left: 22px;
  padding-right: 41px;
  border: 0;
  color: transparent;
}
/* ------------------------------------------------------------
    CHECKS
------------------------------------------------------------ */
.check-label {
  cursor: pointer;
}
.input-checkbox-simple {
  border: solid 1px #666;
  background: #fff;
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  color: #fff;
  border-radius: 2px;
}
.input-checkbox-simple input {
  position: absolute;
  top: 0;
  z-index: 0;
  display: block;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  left: 0;
  width: 16px;
  height: 16px;
}
.input-checkbox-simple.fa-check {
  background: #ffb500;
  color: #fff;
  border: solid 1px #ffb500;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
}
.inline--check {
  overflow: hidden;
}
.inline--check .input-checkbox-simple {
  float: left;
  margin: 0 8px 0 0;
}
.inline--check span {
  float: left;
  line-height: 13px;
}
/* ------------------------------------------------------------
   INPUT
------------------------------------------------------------ */
.input-text-simple input {
  background-color: #f5f5f5;
  padding: 8px 10px;
  color: #666666;
  font-size: 15px;
  line-height: 20px;
  font-family: 'Raleway', sanserif;
  border: none;
}
.input-text-simple label {
  font-size: 15px;
  font-family: 'Raleway', sanserif;
  color: #333333;
}
.input-text-simple.horizontal label {
  margin: 10px 0 0 0;
  width: 156px;
  display: block;
  float: left;
}
.input-text-simple.horizontal input {
  float: right;
}
.textarea-simple.horizontal textarea {
  float: right;
}
.textarea-simple.horizontal label {
  width: 156px;
  display: block;
  float: left;
}
/* ------------------------------------------------------------
   INPUT TIPO FILE
------------------------------------------------------------ */
.input-file {
  margin: 0 0 10px;
}
.input-file .input-text-simple {
  overflow: hidden;
  position: relative;
}
.input-file .input-text-simple input {
  border: solid 1px #ccc;
  position: absolute;
  opacity: 0;
  z-index: 2;
  right: 0;
  width: 100%;
}
.input-file .plus {
  position: absolute;
  z-index: 0;
}
.field-rfp {
  width: 364px;
  margin: 0 20px 0 0;
}
.form-width-2 input {
  width: 193px;
}
.input-fake {
  background: #F5F5F5;
  width: 88%;
  float: right;
  margin: 0 0 8px;
  height: 37px;
}
/* ------------------------------------------------------------
  TEXTAREA
------------------------------------------------------------ */
.textarea-simple textarea {
  background-color: #f5f5f5;
  padding: 8px 10px;
  color: #666666;
  font-size: 15px;
  line-height: 20px;
  font-family: 'Raleway', sanserif;
  border: none;
}
.textarea-simple label {
  font-size: 15px;
  font-family: 'Raleway', sanserif;
  color: #333333;
  margin: 10px 0 0 0;
}
/* ------------------------------------------------------------
  DATEPICKER
------------------------------------------------------------ */
#ui-datepicker-div {
  background: #f5f5f5;
  padding: 10px;
  box-shadow: 1px 0px 3px #ccc;
}
#ui-datepicker-div table th {
  background: #666;
  color: #fff;
  border: none;
  padding: 4px;
  text-align: center;
}
#ui-datepicker-div table td {
  padding: 4px 4px 3px;
  border: none;
  text-align: center;
}
#ui-datepicker-div table td a {
  color: #666;
  width: 100%;
  height: 100%;
  display: block;
}
#ui-datepicker-div table td:hover {
  background: #00a8b1;
}
#ui-datepicker-div table td:hover a {
  color: #fff;
}
#ui-datepicker-div table tr td.disabled {
  background: none;
  color: #999999;
  cursor: default;
}
#ui-datepicker-div table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
#ui-datepicker-div .ui-datepicker-title {
  background: #00a8b1;
  text-align: center;
  color: #fff;
  border: none;
  padding: 2px 0;
}
#ui-datepicker-div .ui-datepicker-calendar {
  border: none;
}
#ui-datepicker-div .prev {
  color: rgba(0, 0, 0, 0);
  font: normal normal normal 14px/1 FontAwesome;
  padding-bottom: 10px;
}
#ui-datepicker-div .prev:before {
  content: "\f104";
  color: #FDFAF7;
  margin-right: -4px;
}
#ui-datepicker-div .ui-datepicker-current-day {
  background: #00a8b1;
}
#ui-datepicker-div .ui-datepicker-current-day a {
  color: #fff;
}
.ui-datepicker-prev {
  cursor: pointer;
  position: absolute;
  color: #fff;
  top: 12px;
  width: 23px;
  left: 15px;
}
.ui-datepicker-prev i {
  font-size: 22px;
}
.ui-datepicker-next {
  cursor: pointer;
  position: absolute;
  color: #fff;
  top: 12px;
  width: 23px;
  right: 15px;
  text-align: right;
  float: right;
}
.ui-datepicker-next i {
  font-size: 22px;
}

/* ------------------------------------------------------------
  RADIOBTN
------------------------------------------------------------ */
.conjunto-radios {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.conjunto-radios li {
  margin: 0;
  padding: 0;
}
.radio-btn label {
  font-size: 15px;
  font-family: 'Raleway', sanserif;
  color: #333333;
  margin: 10px 0 0 0;
}
.input-radio-simple {
  background: #f5f5f5;
  width: 16px;
  height: 16px;
  border-radius: 12px;
  position: relative;
}
.input-radio-simple input {
  position: absolute;
  top: 0;
  z-index: 0;
  display: block;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  left: 0;
  width: 12px;
  height: 12px;
}
.input-radio-simple.fa-circle {
  color: #00a8b1;
  text-align: center;
  font-size: 11px;
  line-height: 18px;
}
.radio-inline {
  overflow: hidden;
  display: block;
}
.radio-inline .input-radio-simple {
  float: left;
  margin: 0 10px 0 0;
}
.radio-inline span {
  float: left;
  line-height: 19px;
  display: block;
  clear: none;
  font-size: 15px;
}
.checkbox-combo .checkbox-combo__input {
  display: none;
}
.checkbox-combo .checkbox-combo__label {
  display: block;
}
.checkbox-combo .checkbox-combo__label .checkbox-combo__toggle {
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 55px;
  height: 25px;
  border-radius: 25px;
  background-color: transparent;
}
.checkbox-combo .checkbox-combo__label .checkbox-combo__toggle::before {
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checkbox-combo .checkbox-combo__label .checkbox-combo__toggle::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #656565;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checkbox-combo .checkbox-combo__label .checkbox-combo__toggle .checkbox-combo__checked,
.checkbox-combo .checkbox-combo__label .checkbox-combo__toggle .checkbox-combo__unchecked {
  position: absolute;
  z-index: 1;
  font-size: 14px;
  line-height: 14px;
  color: #FFF;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.checkbox-combo .checkbox-combo__label .checkbox-combo__toggle .checkbox-combo__checked {
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}
.checkbox-combo .checkbox-combo__label .checkbox-combo__toggle .checkbox-combo__unchecked {
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
}
.checkbox-combo .checkbox-combo__text {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  color: #b2b2b2;
}
.checkbox-combo .checkbox-combo__input:checked + .checkbox-combo__label .checkbox-combo__toggle::before {
  -webkit-transform: translate(200%, -50%);
  -moz-transform: translate(200%, -50%);
  -ms-transform: translate(200%, -50%);
  -o-transform: translate(200%, -50%);
  transform: translate(200%, -50%);
}
.checkbox-combo .checkbox-combo__input:checked + .checkbox-combo__label .checkbox-combo__toggle::after {
  background-color: #00a8b1;
}
.checkbox-combo .checkbox-combo__input:checked + .checkbox-combo__label .checkbox-combo__toggle .checkbox-combo__checked {
  opacity: 1;
}
.checkbox-combo .checkbox-combo__input:checked + .checkbox-combo__label .checkbox-combo__toggle .checkbox-combo__unchecked {
  opacity: 0;
}
/* ------------------------------------------------------------
    FORM NEWSLETTER
------------------------------------------------------------ */
.form .form__header {
  display: block;
  height: auto;
  text-align: center;
}
.form .form__header .form__title {
  margin: 0;
  font-size: 16px;
  color: #00a8b1;
}
.form .form__body .col {
  padding: 10px;
}
.form .form__body .input-combo .input-combo__input {
  font-size: 16px;
  color: #b2b2b2;
  background-color: #f5f5f5;
}
.form .form__cta {
  text-align: center;
}
.form.form--newsletter {
  background-color: #FFF;
  padding: 35px 30px;
}
/* ------------------------------------------------------------
   SELECCIONAR CANTIDAD
------------------------------------------------------------ */
.seleccionar-cantidad .menor-cantidad {
  float: left;
  display: block;
  width: 34px;
  height: 35px;
}
.seleccionar-cantidad .menor-cantidad i {
  float: left;
  width: 100%;
  display: block;
  height: 100%;
  color: #00A8B1;
  font-size: 12px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
.seleccionar-cantidad .mas-cantidad {
  float: left;
  display: block;
  width: 34px;
  height: 35px;
}
.seleccionar-cantidad .mas-cantidad i {
  float: left;
  width: 100%;
  display: block;
  height: 100%;
  color: #00A8B1;
  font-size: 12px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
.seleccionar-cantidad label {
  float: left;
  display: block;
  color: #666;
  margin: 10px 0 0;
  font-size: 15px;
  font-family: 'Raleway', sanserif;
  color: #333333;
}
.seleccionar-cantidad input {
  float: left;
  display: block;
  width: 50px;
  background-color: #f5f5f5;
  padding: 8px 10px;
  color: #666666;
  font-size: 15px;
  line-height: 20px;
  font-family: 'Raleway', sanserif;
  border: none;
}
/* ------------------------------------------------------------
   ERROR
------------------------------------------------------------ */
.error-message {
  display: none;
}
.error-message p {
  color: red;
  font-size: 14px;
}
.error .error-message {
  display: block;
}
/* ------------------------------------------------------------
    BUTTONS
------------------------------------------------------------ */
a {
  color: #00a8b1;
}
a:hover {
  text-decoration: none;
}
.btn {
  text-align: center;
  text-decoration: none;
}
.btn.type1 {
  color: #ffffff;
  background: #ff0099;
}
.btn.type1:hover {
  background: #cc0066;
}
.btn.type2 {
  color: #ffffff;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #ffffff;
}
.btn.type2:hover {
  color: #666666;
  background: #ffffff;
}
.btn.type3 {
  color: #ffffff;
  background: #00778a;
}
.btn.type3:hover {
  color: #00778a;
  background: #ffffff;
}
.btn.type4 {
  color: #ffffff;
  background: #ffb500;
}
.btn.type4:hover {
  color: #ffb500;
  background: #ffffff;
}
.btn.type5 {
  color: #00a8b1;
  background: #ffffff;
  border: 1px solid #00a8b1;
}
.btn.type5:hover {
  color: #ffffff;
  background: #00a8b1;
}
.btn.type6 {
  color: #ffffff;
  background: #ac0080;
}
.btn.type6:hover {
  color: #ac0080;
  background: #ffffff;
}
.btn.reversed {
  background-color: #ffffff;
  color: #ff0099;
  border: 1px solid #ff0099;
  text-transform: none;
}
.btn.rounded {
  border-radius: 100px;
}
.btn-menu--blue {
  background-color: #00a8b1;
}
.btn-menu--pink {
  background-color: #ff0099;
}
.btn-facebook {
  position: relative;
  display: block;
  width: 100%;
  height: 20px;
  background-color: #69a2f5;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.btn-facebook i {
  position: absolute;
  top: 0;
  right: 0;
}
.btn--green {
  background-color: #9c3;
  color: #fff;
}
.btn-facebook:hover {
  background-color: #306dd1;
}
.btn-link {
  font-size: 0.875rem;
  color: #00a8b1;
}
.btn-link i {
  font-size: 24px;
  vertical-align: bottom;
  margin-left: 10px;
}
.btn-remove {
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: #ffb500;
  text-align: center;
  color: #FFF;
}
.btn-remove i.fa {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 12px;
  line-height: 19px;
  text-align: center;
  vertical-align: top;
  color: #FFF;
  border: 1px solid #FFF;
  border-radius: 50%;
}
.btn-add {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: #00A8B1;
  text-align: center;
  color: #FFF;
}
.btn-add i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.btn-outline {
  background-color: transparent;
  border: 1px solid #FFF;
  color: #FFF;
}
.btn-backto {
  text-align: center;
  font-size: 14px;
}
.btn-backto i {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
  color: #656565;
  border: 1px solid #656565;
  border-radius: 50%;
}
.btn-delete,
.btn-edit {
  background-color: transparent;
}
.btn-submit {
  display: inline-block;
  width: auto;
  height: 35px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  color: #ffffff;
  background-color: #ff0099;
  border-radius: 3px;
}
.btn-container.blanco-morado a {
  color: #923B86;
  border: solid 1px #923B86;
}
.btn-container.blanco-morado a:hover {
  background: #923B86;
  color: #fff;
}
.btn-container.blanco-morado input {
  color: #923B86;
  border: solid 1px #923B86;
}
.btn-container.blanco-morado input:hover {
  background: #923B86;
  color: #fff;
}
.btn-container.blanco-rojo a {
  color: #923B86;
  border: solid 1px #923B86;
}
.btn-container.blanco-rojo a:hover {
  background: #923B86;
  color: #fff;
}
.btn-container.blanco-rojo input {
  color: #ff1722;
  border: solid 1px #ff1722;
}
.btn-container.blanco-rojo input:hover {
  background: #ff1722;
  color: #fff;
}
.btn-container.blanco-azul a {
  color: #923B86;
  border: solid 1px #00a8b1;
}
.btn-container.blanco-azul a:hover {
  background: #00a8b1;
  color: #fff;
}
.btn-container.blanco-azul input {
  color: #00a8b1;
  border: solid 1px #00a8b1;
}
.btn-container.blanco-azul input:hover {
  background: #00a8b1;
  color: #fff;
}
.btn-view {
  display: inline-block;
  width: 100%;
  height: 25px;
  font-size: 18px;
  color: #848484;
}
.btn-view p {
  padding-left: 10px;
  vertical-align: top;
  display: inline-block;
  color: #848484;
}
.btn-view i {
  display: inline-block;
  color: #848484;
}
.btn-view:hover i,
.btn-view:hover p {
  color: #00A8B1;
}
.btn-view--active i,
.btn-view--active p {
  color: #00A8B1;
}
.btn-loadmore {
  display: inline-block;
  width: 90px;
  height: auto;
}
.btn-loadmore p {
  font-size: 14px;
  color: #848484;
}
.btn-loadmore p:hover {
  color: #00A8B1;
}
.btn-loadmore i {
  color: #848484;
  font-size: 56px;
  line-height: 30px;
}
.btn-loadmore i:hover {
  color: #00A8B1;
}
.btn-book {
  display: block;
  padding: 5px 10px;
  text-align: left !important;
  background-color: transparent;
}
.btn-book.active {
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
}
/* ------------------------------------------------------------
    2. MIS VIAJES
------------------------------------------------------------ */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
}
.viajes-container {
  height: 100vh;
  width: 100vw;
  min-height: 100vh;
  font-family: 'Raleway', sanserif;
  overflow: hidden;
}
.map-canvas {
  position: relative;
  left: 300px;
  z-index: 1;
  background-color: #A1CEE1;
  height: 100vh;
  width: calc(100vw - 300px);
}
.map-actions {
  position: fixed;
  top: 80px;
  right: 55px;
  z-index: 2;
}
.map-actions .btn-map:first-of-type {
  margin-right: 16px;
}
.editor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  background-color: #7D8090;
  height: 100vh;
  width: 300px;
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.15);
}
.editor::before {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
}
.editor__header {
  position: relative;
  z-index: 2;
  height: 130px;
  width: 100%;
  padding: 20px 30px;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.editor__header .editor__title {
  font-size: 21px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.editor__header .editor__subtitle {
  font-size: 18px;
  font-weight: 200;
}
.editor__header .btn-edit {
  position: absolute;
  top: 20px;
  right: 30px;
}
.btn-edit {
  width: auto;
  padding: 4px 10px;
  color: white;
  background-color: #9093A1;
  border-radius: 5px;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.btn-edit.alt {
  padding: 6px 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #7D8090;
  background-color: rgba(198, 201, 214, 0.6);
}
.btn-edit.alt i {
  margin-right: 5px;
}
.btn-edit:hover {
  background-color: #fff;
  color: #7D8090;
}
.btn-edit.alt:hover {
  color: #7D8090;
  background-color: #c6c9d6;
}
.status {
  display: inline-block;
  width: auto;
  height: 25px;
  padding: 0 10px;
  text-align: left;
  letter-spacing: 0.75px;
  border-radius: 5px;
}
.status .status__text,
.status .status__icon {
  display: inline-block;
}
.status .status__text {
  font-size: 14px;
  line-height: 25px;
}
.status .status__icon {
  margin-left: 5px;
  font-size: 14px;
  line-height: 25px;
}
.status--saved {
  color: #BAFF00;
  background-color: rgba(186, 255, 0, 0.15);
}
.btn-viajes--remove {
  background-color: #F0F0F0;
  color: #999999;
  width: 80px;
  height: 20px;
  border-radius: 3px;
  margin-top: 5px;
}
.editor__body {
  position: relative;
  z-index: 1;
  clear: both;
  overflow-x: hidden;
  overflow-y: auto;
  display: block;
  height: calc(100% - 380px);
  padding: 15px 20px;
}
.editor__empty {
  display: block;
  font-weight: 100;
  color: white;
}
.editor__empty p {
  margin-bottom: 20px;
  padding-top: 20px;
}
.editor__empty .btn-map {
  margin: 0 auto;
}
.cardmap {
  position: relative;
  z-index: 1;
  height: 90px;
  width: 100%;
  margin-bottom: 10px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.cardmap[draggable="true"] {
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.cardmap::before {
  position: absolute;
  top: 0;
  z-index: -2;
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cardmap .cardmap__content {
  float: left;
  position: relative;
  padding: 5px 10px;
  width: calc(100% - 80px);
  height: 90px;
  background-color: white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.cardmap .cardmap__content h6 {
  overflow: hidden;
  height: 32px;
  margin: 0 auto;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  font-family: 'Raleway', sanserif;
  text-overflow: ellipsis;
  color: #666666;
  display: -webkit-box;
}
.cardmap .cardmap__content p {
  overflow: hidden;
  margin: 0 0 6px 0;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.25px;
  color: #838383;
}
.cardmap .cardmap__content .btn-addit {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0;
  border-bottom-right-radius: 5px;
}
.cardmap:hover {
  z-index: 2;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.4);
}
.cardmap.focus {
  z-index: 2;
  -webkit-transform: scale(1.01, 1.01);
  -moz-transform: scale(1.01, 1.01);
  -ms-transform: scale(1.01, 1.01);
  -o-transform: scale(1.01, 1.01);
  transform: scale(1.01, 1.01);
  box-shadow: 0 0 0 4px #ffb500;
}
.cardmap.dragover {
  margin-top: 80px;
}
.cardmap.dragover::before {
  height: 100px;
  -webkit-transform: translateY(-80%);
  -moz-transform: translateY(-80%);
  -ms-transform: translateY(-80%);
  -o-transform: translateY(-80%);
  transform: translateY(-80%);
}
.cardmap__image {
  position: relative;
  width: 80px;
  height: 90px;
  background: url(../images/destinos/destino-mis-viajes.png);
  border-radius: 5px 0 0 5px;
  float: left;
}
.cardmap__number {
  position: absolute;
  bottom: 8px;
  left: 8px;
  color: #0099FF;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  background-color: white;
  border-radius: 50px;
}
.editor__footer {
  position: relative;
  min-height: 140px;
  width: 100%;
  z-index: 10;
  padding: 20px;
  background-color: #7D8090;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
}
.editor__footer .btn-map {
  width: 100%;
}
.editor__footer .btn-map,
.editor__footer .btn-map span {
  white-space: nowrap;
}
.editor__footer .editor__col:nth-of-type(1) {
  padding-right: 7.5px;
}
.editor__footer .editor__col:nth-of-type(2) {
  padding-left: 7.5px;
}
.editor__footer .editor__col:last-of-type {
  padding-top: 15px;
}
.editor__footer .btn-map--outline {
  margin-top: 10px;
}
.icon-plus {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/icon/plus.svg) center center no-repeat;
  background-size: 30px 30px;
}
.icon-circle {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/icon/circle.svg) center center no-repeat;
  background-size: 30px 30px;
}
.btn-map {
  display: inline-block;
  height: 40px;
  width: auto;
  background-color: #A4A7B2;
  border-radius: 5px;
  color: white;
  padding: 5px 15px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  cursor: pointer;
}
.btn-map i,
.btn-map span {
  display: inline-block;
  color: white;
  text-decoration: none;
  vertical-align: middle;
}
.btn-map:hover {
  background-color: #B4B6BE;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
}
.btn-map.btn-map--blue {
  background: #417AE8;
}
.btn-map.btn-map--green {
  background: #38AB7B;
}
.btn-map.btn-map--lemon {
  background: #7FBC00;
}
.btn-map.btn-map--yellow {
  background: #FAA200;
}
.btn-map.btn-map--outline {
  color: #333;
  background-color: transparent;
  border: 1px solid #FF1722;
}
a.btn-map {
  line-height: 30px;
}
.ve-bottom--btn_pdf {
  background: #7d8090 url(../images/element/pdf-button.png) no-repeat 25% 50%;
  color: white;
  height: 40px;
  width: 100%;
  padding-left: 80px;
  border-radius: 5px;
}
.ve-bottom--btn_pdf:hover {
  background-color: #6A6D7C;
}
.viajes-btn-zone {
  position: absolute;
  right: 0;
  top: 90px;
  z-index: 20;
  padding: 0;
}
.tool {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  overflow: hidden;
  width: 300px;
  height: 100vh;
  background-color: #f1f1f1;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.tool::before {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
}
.tool.active {
  left: 300px;
  width: 300px;
  opacity: 1;
  pointer-events: auto;
}
.tool__header {
  position: relative;
  z-index: 2;
  display: block;
  padding: 20px 20px 0 20px;
}
.tool__header .btn-map {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.tool__menu {
  display: block;
  padding: 10px 0;
}
.tool__menu,
.tool__list,
.tool__item {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.tool__item {
  display: inline-block;
}
.btn-tab {
  position: relative;
  display: inline-block;
  padding: 6px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #666;
  border-radius: 5px;
}
.btn-tab:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: #00a8b1;
}
.btn-tab:active,
.btn-tab.active {
  color: #00a8b1;
}
.btn-tab:active::after,
.btn-tab.active::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  color: #00a8b1;
  background-color: #00a8b1;
}
.tool__body {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  display: none;
  height: calc(100% - 280px);
  padding: 15px 20px;
}
.tool__body.active {
  display: block;
}
.tool__footer {
  position: relative;
  z-index: 10;
  padding: 20px;
}
.tool__footer .btn-map {
  width: 100%;
}
.search-container {
  margin-right: -20px;
  margin-left: -20px;
  padding-top: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.field-combo {
  position: relative;
  display: inline-block;
  width: 100%;
}
.field-combo__icon {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
  vertical-align: middle;
  color: #c1c1c1;
  pointer-events: none;
}
.field-combo__clear {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 35px;
  height: 35px;
  padding: 0;
  font-size: 14px;
  color: #c1c1c1;
}
.field-combo__clear:hover {
  color: #333;
  background: rgba(0, 0, 0, 0.03);
}
.field-combo__clear:focus {
  box-shadow: 0 0 1px 2px rgba(0, 168, 177, 0.6);
}
.field-combo__clear:active {
  background: rgba(0, 0, 0, 0.2);
}
.field-combo__field {
  display: block;
  width: 100%;
  height: 35px;
  padding: 0 35px !important;
  border-radius: 0 !important;
  border: 0 !important;
  background-color: white !important;
}
.filter-combo {
  display: block;
}
.filter-combo .clever {
  width: calc(100% - 35px);
  height: 35px;
  border-radius: initial;
  box-shadow: initial;
  background-color: transparent;
  border: 0;
}
.filter-combo .clever .clever__current-option,
.filter-combo .clever .clever__option {
  font-size: 14px;
  color: #666;
}
.filter-combo .clever .clever__field {
  height: 35px;
}
.filter-combo__icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
  color: #666;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.ligthbox-simple {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.ligthbox-simple.active {
  display: block;
}
.ligthbox-simple.active .ligthbox-simple__container {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.ligthbox-simple.ligthbox-simple--small .ligthbox-simple__container {
  max-width: 500px;
}
.ligthbox-simple__container {
  position: relative;
  top: 100px;
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 100px;
  opacity: 0;
  -webkit-transform: scale(0.9, 0.9);
  -moz-transform: scale(0.9, 0.9);
  -ms-transform: scale(0.9, 0.9);
  -o-transform: scale(0.9, 0.9);
  transform: scale(0.9, 0.9);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.message-box {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.message-box .input-simple {
  max-width: 350px;
  margin: 20px 0;
}
.message-box .btn-square {
  width: 100%;
  max-width: 350px;
}
.message-box--white {
  background-color: white;
  color: #666;
}
.message-box--yellow {
  background-color: #FAA200;
  color: white;
}
.message-box--yellow .message-box__title,
.message-box--yellow .message-box__text {
  color: white;
}
.message-box__title,
.message-box__text {
  color: #666;
}
.message-box__header,
.message-box__body,
.message-box__footer {
  padding-left: 40px;
  padding-right: 40px;
}
.message-box__header {
  padding-top: 40px;
  text-align: center;
}
.message-box__header p {
  font-size: 18px;
  line-height: 22px;
}
.message-box__header h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}
.message-box__header.message-box__header--left {
  text-align: left;
}
.message-box__body {
  padding-bottom: 20px;
}
.message-box__footer {
  display: block;
  width: 100%;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05);
}
.message-box__title {
  margin: 0 0 16px 0;
  font-size: 32px;
  line-height: 36px;
}
.message-box__text {
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 22px;
}
.input-simple {
  width: 100%;
  height: 35px;
  background-color: white !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.btn-square {
  display: inline-block;
  height: 35px;
  background-color: transparent;
  border: 1px solid white;
  text-transform: uppercase;
}
.btn-square:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.btn-square.btn--center {
  margin: 0 auto;
}
.btn-square.btn--phantom {
  display: block;
  border: 0;
  color: rgba(255, 255, 255, 0.8);
}
.btn-square.btn--phantom:hover {
  color: #ffffff;
  background-color: transparent;
}
.btn-square.btn-square--blue {
  background-color: #338FFF;
  color: white;
  border: 0;
}
.travel-table {
  width: 100%;
  border: 0;
}
.travel-table th,
.travel-table td {
  padding: 10px 15px;
  border: 0;
}
.travel-table th:first-of-type,
.travel-table td:first-of-type {
  padding-left: 0;
}
.travel-table th {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  color: #333;
}
.travel-table td {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  text-align: left;
  color: #999;
}
.btn-addit {
  padding: 4px;
  background-color: #00a8b1;
  text-align: center;
}
.btn-addit i,
.btn-addit span {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: white;
}
.btn-addit i {
  margin-right: 10px;
}
.btn-addit.btn--green {
  background-color: #7FBC00;
}
@keyframes loader {
  from {
    box-shadow: inset 0 0 0 6px #ff0099, inset 0 0 0 30px #ffb500,;
  }
  to {
    box-shadow: inset 0 0 0 18px #ff0099, inset 0 0 0 8px #ffb500;
  }
}
.loader__container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 80px;
  height: 80px;
}
.loader__container span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation-name: loader;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.loader__container p {
  display: block;
  margin-top: 10px;
  text-align: center;
}
/* ------------------------------------------------------------
    LARGE DEVICES

    1. Header
    2. Mis viajes
------------------------------------------------------------ */
/* Hidden */
.desktop-hidden {
  display: none;
}
/* ------------------------------------------------------------
    1. HEADER
------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 110px);
  height: 70px;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.header.hide-top {
  height: 50px;
  background: #fff;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.2);
}
.header.hide-top .header__logo a {
  width: 50%;
  /*height: 40px;*/
}
.header.hide-top .menu-secondary {
  overflow: hidden;
  height: 0;
  opacity: 0;
}
.header .header__logo {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 130px;
  /*width: 23.863636363636364%;*/
  width: 16.863636363636364%;
  height: 100%;
  margin: 0;
  padding: 0 15px;
  text-indent: -99999px;
  color: transparent;
}
.header .header__logo a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 180px;
  height: 100%;
  max-height: 70px;
  text-indent: -999999px;
  color: transparent;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item:hover > .dropdown {
  height: 306px;
  opacity: 1;
  text-align: left;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-travel-plan:hover > .dropdown {
  height: auto;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item:hover > .dropdown.dropdown--active {
  height: calc(-30vh);
  background-color: #f4f4f4;
}
.header.header--largedevices .menu-tools__list {
  position: relative;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-what-to-do {
  position: relative;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-what-to-do .dropdown {
  width: 120%;
  max-width: 120%;
  left: 0;
  height: 0;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-what-to-do:hover > .dropdown {
  height: auto;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-what-to-do .sidebar-tabs {
  width: 100%;
  max-width: 100%;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-travel-plan {
  position: relative;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-travel-plan .sidebar-tabs {
  width: 100%;
  max-width: 100%;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-travel-plan:hover > .dropdown {
  width: 100%;
  max-width: 100%;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-prepare-trip {
  position: relative;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-prepare-trip .sidebar-tabs {
  width: 100%;
  max-width: 100%;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-prepare-trip:hover > .dropdown {
  width: 100%;
  max-width: 100%;
}
.header.header--largedevices .menu-main .menu-main__list .menu-main__item.main-prepare-trip .sidebar-tabs {
  height: auto;
}
.header.header--smalldevices {
  position: fixed !important;
  display: none;
  width: 100%;
  height: 70px;
  padding-top: 10px;
  background: #fff;
}
.header.header--smalldevices .header__logo {
  float: left;
  position: relative;
  z-index: 1;
}
.header.header--smalldevices .menu-tools {
  float: right;
  width: 100px;
}
.header.header--smalldevices .menu-tools .menu-tools__list .menu-tools__item {
  width: 50% !important;
  height: 60px;
}
.header.header--smalldevices .menu-tools .menu-tools__list .menu-tools__item .menu-main__link {
  padding-top: 14px;
  padding-bottom: 14px;
}
.menu-main .menu-main__list .menu-main__item .menu-main__link:hover .tooltip-menu {
  display: block;
}
.tooltip-menu {
  display: none;
  position: absolute;
  top: 101%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 2px 10px;
  white-space: nowrap;
  border-radius: 5px;
}
.tooltip-menu p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 12px;
  color: #333;
}
.selected-dropdown {
  display: block;
  height: 100%;
}
.select-language {
  width: 100%;
  height: 100%;
  border: 0;
  background-color: transparent;
  box-shadow: initial;
}
.select-language.clever--focus {
  box-shadow: 0 0 0 2px #ff0099;
}
.select-language .clever__field {
  padding: 0;
  height: 100%;
  text-align: center;
}
.select-language .clever__field a {
  pointer-events: none;
}
.select-language .clever-icon-dropdown {
  right: -4px;
  -wenkit-transform: translateY(-50%) scale(0.5, 0.5);
  -moz-transform: translateY(-50%) scale(0.5, 0.5);
  -ms-transform: translateY(-50%) scale(0.5, 0.5);
  -o-transform: translateY(-50%) scale(0.5, 0.5);
  transform: translateY(-50%) scale(0.5, 0.5);
}
.select-language .clever__current-option span {
  display: none;
}
.select-language .clever__option__value {
  padding: 0;
  white-space: nowrap;
}
.select-language .clever__option__value a {
  display: block;
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 20px;
  white-space: nowrap;
}
.select-language .clever__option__value i.fa {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  font-size: 10px;
  line-height: 10px;
}
.select-language .clever__current-option .select-icon,
.select-language .clever__option__value .select-icon {
  display: inline-block;
  width: 22px;
  height: auto;
}
.select-language .clever__current-option .select-icon img,
.select-language .clever__option__value .select-icon img {
  display: block;
  width: 100%;
  height: auto;
}
.select-language .clever__option__value span {
  font-size: 14px;
  font-weight: 100;
  color: #888;
  padding-left: 10px;
}
.select-language .clever--hide {
  padding: 0;
  margin: 0;
}
.select-language .clever__dropdown.clever--active {
  max-height: 900px;
}
.white {
  background-color: #fff;
}
/* ------------------------------------------------------------
    MENU
------------------------------------------------------------ */
.menu-container {
  width: calc(100% - 16.863636363636364%);
}
.menu-main {
  position: relative;
  width: 100%;
}
.menu-main.menu-main--smalldevices .menu-main__list .menu-main__item {
  width: 14.66%;
  float: inherit;
}
.menu-main.menu-main--smalldevices.menu-special .menu-main__list .menu-main__item {
    width: 19%;
}
.menu-main .menu-main__list {
  width: auto;
  text-align: center;
}
.menu-main .menu-main__list .menu-main__item {
  display: table;
  float: left;
  width: 16.333%;
}
.menu-main .menu-main__list .menu-main__item:last-child {
  float: right;
}
.menu-main .menu-main__list .menu-main__item .menu-main__link,
.menu-main .menu-main__list .menu-main__item .menu-main__link:link,
.menu-main .menu-main__list .menu-main__item .menu-main__link:visited {
  position: relative;
  display: table-cell;
  overflow: visible;
  width: 100%;
  height: 50px;
  font-size: 14px;
  line-height: 15px !important;
  text-align: center;
  text-transform: uppercase;
  color: #4c4c4c;
  vertical-align: middle;
}

.menu-main .menu-main__list .menu-main__item .menu-main__link::after,
.menu-main .menu-main__list .menu-main__item .menu-main__link:link::after,
.menu-main .menu-main__list .menu-main__item .menu-main__link:visited::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #00a8b1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-main .menu-main__list .menu-main__item .menu-main__link:hover,
.menu-main .menu-main__list .menu-main__item .menu-main__link:active {
  color: #00a8b1;
}
.menu-main .menu-main__list .menu-main__item .menu-main__link:hover::after,
.menu-main .menu-main__list .menu-main__item .menu-main__link:active::after {
  bottom: 0;
  opacity: 1;
}
.menu-main .menu-main__list .menu-main__item > .dropdown {
  top: 100%;
  right: 0;
  left: auto;
  width: 100%;
  max-width: 100%;
}
.menu-main.menu-main--largedevices .menu-main__list .menu-main__item:hover > .dropdown {
  height: auto;
  opacity: 1;
}
.menu-main.menu-main--smalldevices {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: block;
  height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #FFF;
}
.menu-main .menu-main__list .menu-main__item.main-where-to-go > a,
.menu-main .menu-main__list .menu-main__item.main-what-to-do > a,
.menu-main .menu-main__list .menu-main__item.main-travel-plan > a,
.menu-main .menu-main__list .menu-main__item.main-prepare-trip > a {
  display: table-cell !important;
  vertical-align: middle;
  line-height: 25px !important;
}
.menu-main.menu-main--smalldevices .menu-main__list .menu-main__item {
  /*width: 25%;*/
}
.menu-main.menu-main--smalldevices .menu-main__list .menu-main__item .menu-main__link {
  display: block;
  height: 60px;
}
.menu-main.menu-main--smalldevices .menu-main__list .menu-main__item > .dropdown {
  top: auto;
  bottom: 100%;
}
.menu-main.menu-main--smalldevices .menu-main__list .menu-main__item > .dropdown.dropdown--active {
  height: calc( 100vh - 130px );
  opacity: 1;
  background-color: #F4F4F4;
}
.menu-secondary {
  display: block;
  width: 100%;
  height: 20px;
  background-color: #ffb500;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.menu-secondary .menu-secondary__list {
  display: inline-block;
  width: 100%;
}
.menu-secondary .menu-secondary__list .menu-secondary__item {
  min-width: 20%;
  width: auto;
  float: right;
  display: block;
}
.menu-secondary .menu-secondary__list .menu-secondary__item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  letter-spacing: 1px;
  color: #ffffff;
}
.menu-secondary .menu-secondary__list .menu-secondary__item span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
}
.menu-secondary .menu-secondary__list .menu-secondary__item span {
  padding: 0;
}
.menu-secondary .menu-secondary__list .menu-secondary__item a:not(.btn-reservar) p {
  display: block;
  width: 100%;
  height: 20px;
  padding-right: 20px;
  text-align: center;
  text-transform: uppercase;
}
.menu-secondary .menu-secondary__list .menu-secondary__item.sz-medium {
  min-width: 10%;
}
.menu-secondary .menu-secondary__list .menu-secondary__item .btn-reservar {
  background: #7c0e6c;
  display: block;
  height: 20px;
  text-align: center;
}
.menu-secondary .menu-secondary__list .menu-secondary__item .btn-reservar span {
  width: auto;
  padding-right: 0;
}
.menu-tools {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}
.menu-tools .menu-tools__list .menu-tools__item {
  float: left;
  width: 30%;
}
.menu-tools .menu-tools__list .menu-tools__item .menu-main__link {
    position: relative !important;
    display: inline-block !important;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.menu-tools .menu-tools__list .menu-tools__item.lenguage {
  height: 50px;
}
.menu-tools .menu-tools__list .menu-tools__item .menu-main__link {
  display: block;
  padding-top: 6px;
  padding-bottom: 6px;
  position: relative;
  line-height: 0 !important;
  height: 50px;
  text-align: center;
  cursor: pointer;
}
.menu-tools .menu-tools__list .menu-tools__item .dropdown:not( .dropdown--search) {
  top: 100%;
}
.menu-tools .menu-tools__list .menu-tools__item .menu-main__link i {
  position: relative;
  color: #00A8B1;
}
.menu-tools .menu-tools__list .menu-tools__item.language {
  height: 50px;
}
#block-vm-menus-vm-main-menu-mobile .menu-tools .menu-tools__list .menu-tools__item {
  width: 48.3% !important;
  height: 60px;
}
.header--largedevices .menu-tools__list .menu-tools__item:hover > .dropdown {
  overflow: visible;
  height: auto;
  opacity: 1;
}
.header--largedevices .menu-tools__list .menu-tools__item:hover > .dropdown.dropdown--search {
  height: 100%;
  z-index: 10;
}
.tool-select p {
  float: left;
  line-height: 30px;
  color: #656565;
}
.tool-select .select-combo {
  float: right;
  height: 30px;
  margin: 0;
}
.tool-select .select-combo .select-combo__select {
  padding: 0 10px;
}
.dropdown,
.sidebar-tabs,
.submenu-container,
.submenu-sidebar {
  padding: 0;
}
.dropdown {
  position: absolute;
  left: 0;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 0;
  max-height: 100vh;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.dropdown::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}
.dropdown.dropdown--wnews {
  width: 360px;
  max-width: 360px;
}
.dropdown.dropdown--smalldevices {
  background-color: #FFF;
  width: 100vw !important;
  max-width: 100vw !important;
}
.dropdown.dropdown--smalldevices .dropdown__nav {
  height: 50px;
  padding: 5px 0;
}
.dropdown.dropdown--smalldevices .dropdown__nav a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
}
.dropdown.dropdown--smalldevices .dropdown__nav a i {
  font-size: 40px;
  line-height: 40px;
  color: #656565;
}
.dropdown.dropdown--smalldevices .dropdown__menu {
  height: calc( 100% - 40px );
  overflow-y: auto;
  background-color: #F4F4F4;
}
.dropdown.dropdown--smalldevices .dropdown {
  position: relative;
}
.dropdown.dropdown--smalldevices .js-close-dropdown {
  top: 10px;
  z-index: 10;
}
.dropdown.dropdown--active {
  height: auto;
  opacity: 1;
}
.dropdown.dropdown--search {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.dropdown.dropdown--search .input-combo {
  height: 100%;
}
.dropdown.dropdown--search .input-combo::after {
  position: absolute;
  bottom: 10px;
  left: 10px;
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background-color: #656565;
}
.dropdown.dropdown--search .input-combo .input-combo__input {
  width: 100%;
  height: 50px;
  padding-right: 60px;
  line-height: 30px;
  background-color: #ebebeb;
  -webkit-user-select: auto;
  /* position: absolute; */
  z-index: 100;
  /* left: 0; */
  -webkit-appearance: initial;
  /* top: 0; */
}
.dropdown.dropdown--search .input-combo .input-combo__icon {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  margin: 0;
  padding: 0;
}
.dropdown.dropdown--search .input-combo .input-combo__btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 15px;
  padding: 0;
  background-color: transparent;
  border: 0;
  /* z-index: 100; */
}
.js-close-dropdown {
  position: absolute;
  right: 0;
  top: 10px;
}
.dropdown__list {
  background-color: #FFF;
}
.dropdown__list .dropdown__item {
  display: block;
}
.dropdown__list .dropdown__item .dropdown__link,
.dropdown__list .dropdown__item .dropdown__link:link,
.dropdown__list .dropdown__item .dropdown__link:visited {
  display: block;
  padding: 15px 10px;
  text-align: left;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ccc;
}
.dropdown__link {
  padding-right: 10% !important;
  height: 60px;
}
.dropdown__list .dropdown__item .dropdown__link > p,
.dropdown__list .dropdown__item .dropdown__link:link > p,
.dropdown__list .dropdown__item .dropdown__link:visited > p {
  float: left;
  display: block;
  width: calc( 100% - 40px );
  margin: 0;
  padding: 5px 0;
  font-size: 14px;
  line-height: 14px;
  text-align: left;
  white-space: nowrap;
  color: #656565;
}
.dropdown__list .dropdown__item .dropdown__link > i,
.dropdown__list .dropdown__item .dropdown__link:link > i,
.dropdown__list .dropdown__item .dropdown__link:visited > i {
  float: left;
  margin-left: 10px;
  color: #656565;
}
.dropdown__list .dropdown__item .dropdown__link > i.icon-login,
.dropdown__list .dropdown__item .dropdown__link:link > i.icon-login,
.dropdown__list .dropdown__item .dropdown__link:visited > i.icon-login {
  color: #656565;
  margin-left: 0;
}
.dropdown__list .dropdown__item .dropdown__link:hover,
.dropdown__list .dropdown__item .dropdown__link:link:hover,
.dropdown__list .dropdown__item .dropdown__link:visited:hover,
.dropdown__list .dropdown__item .dropdown__link:active,
.dropdown__list .dropdown__item .dropdown__link:link:active,
.dropdown__list .dropdown__item .dropdown__link:visited:active {
  background-color: #ebebeb;
}
.dropdown__list .dropdown__item .dropdown__link:hover > p,
.dropdown__list .dropdown__item .dropdown__link:link:hover > p,
.dropdown__list .dropdown__item .dropdown__link:visited:hover > p,
.dropdown__list .dropdown__item .dropdown__link:active > p,
.dropdown__list .dropdown__item .dropdown__link:link:active > p,
.dropdown__list .dropdown__item .dropdown__link:visited:active > p {
  color: #4c4c4c;
}
.dropdown__list .dropdown__item .dropdown__link:hover > i,
.dropdown__list .dropdown__item .dropdown__link:link:hover > i,
.dropdown__list .dropdown__item .dropdown__link:visited:hover > i,
.dropdown__list .dropdown__item .dropdown__link:active > i,
.dropdown__list .dropdown__item .dropdown__link:link:active > i,
.dropdown__list .dropdown__item .dropdown__link:visited:active > i {
  color: #4c4c4c;
}
.dropdown__list .dropdown__item .dropdown__link:hover > i.icon-login,
.dropdown__list .dropdown__item .dropdown__link:link:hover > i.icon-login,
.dropdown__list .dropdown__item .dropdown__link:visited:hover > i.icon-login,
.dropdown__list .dropdown__item .dropdown__link:active > i.icon-login,
.dropdown__list .dropdown__item .dropdown__link:link:active > i.icon-login,
.dropdown__list .dropdown__item .dropdown__link:visited:active > i.icon-login {
  color: #FFF;
}
.dropdown__list .dropdown__item .btn-link--facebook:hover,
.dropdown__list .dropdown__item .btn-link--facebook:link:hover,
.dropdown__list .dropdown__item .btn-link--facebook:visited:hover,
.dropdown__list .dropdown__item .btn-link--facebook:active,
.dropdown__list .dropdown__item .btn-link--facebook:link:active,
.dropdown__list .dropdown__item .btn-link--facebook:visited:active {
  background-color: #3a5998;
  color: #FFF;
}
.dropdown__list .dropdown__item .btn-link--facebook:hover > p,
.dropdown__list .dropdown__item .btn-link--facebook:link:hover > p,
.dropdown__list .dropdown__item .btn-link--facebook:visited:hover > p,
.dropdown__list .dropdown__item .btn-link--facebook:active > p,
.dropdown__list .dropdown__item .btn-link--facebook:link:active > p,
.dropdown__list .dropdown__item .btn-link--facebook:visited:active > p {
  color: #FFF;
}
.dropdown__list .dropdown__item .btn-link--facebook:hover > i,
.dropdown__list .dropdown__item .btn-link--facebook:link:hover > i,
.dropdown__list .dropdown__item .btn-link--facebook:visited:hover > i,
.dropdown__list .dropdown__item .btn-link--facebook:active > i,
.dropdown__list .dropdown__item .btn-link--facebook:link:active > i,
.dropdown__list .dropdown__item .btn-link--facebook:visited:active > i {
  color: #FFF;
}
.dropdown__list .dropdown__item > .dropdown {
  position: absolute;
  top: 0 !important;
  right: 100%;
  left: auto;
}
.dropdown__list .dropdown__item:hover > .dropdown {
  display: block !important;
  height: auto;
  opacity: 1;
  overflow: auto;
}
.collapse-menu .collapse-menu__item {
  display: block;
}
.collapse-menu .collapse-menu__item .collapse-menu__link {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #CCC;
  background-color: #f5f5f5;
}
.collapse-menu .collapse-menu__item .collapse-menu__link.collapse-menu--category {
  padding: 10px 20px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #ebebeb;
  border-bottom: 1px dashed transparent;
  text-align: left;
}
.collapse-menu .collapse-menu__item .collapse-menu__icon {
  display: inline-block;
  font-size: 30px;
}
.collapse-menu .collapse-menu__item > .dropdown {
  display: block;
  width: 100%;
}
.collapse-menu .collapse-menu__item > .dropdown .collapse-menu__item .collapse-menu__link {
  padding-left: 40px;
  color: #656565;
}
.collapse-menu .collapse-menu__item > .dropdown .collapse-menu__item > .dropdown {
  display: block;
  width: 100%;
}
.collapse-menu .collapse-menu__item > .dropdown .collapse-menu__item > .dropdown .collapse-menu__item .collapse-menu__link {
  padding-left: 60px;
}
.sidebar-tabs {
  overflow-y: auto;
  height: 100%;
  max-height: 100%;
  background-color: #f0f0f0;
}
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:link,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:visited {
  display: block;
  padding: 15px 20px;
  font-size: 15px;
  text-transform: none;
  text-align: left;
  line-height: 20px;
  color: #7f7f7f;
  background-color: #f0f0f0;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  cursor: pointer;
}
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:hover,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:link:hover,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:visited:hover {
  color: #4c4c4c;
  background-color: #ebebeb;
}
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:active,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:link:active,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:visited:active,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link.sidebar-tabs--active,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:link.sidebar-tabs--active,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:visited.sidebar-tabs--active {
  color: #00a8b1;
  background-color: #FFF;
  border-right: 1px solid transparent;
}
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:active::after,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:link:active::after,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:visited:active::after,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link.sidebar-tabs--active::after,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:link.sidebar-tabs--active::after,
.sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:visited.sidebar-tabs--active::after {
  display: none;
}
.submenu-container {
  position: relative;
  z-index: 1;
  height: 100%;
  background-color: #FFF;
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
}
.submenu {
  display: none;
  padding-top: 15px;
}
.submenu .submenu__column .submenu__list {
  display: block;
}
.submenu .submenu__column .submenu__list .submenu__item {
  display: block;
}
.submenu .submenu__column .submenu__list .submenu__item .submenu__link,
.submenu .submenu__column .submenu__list .submenu__item .submenu__link:link {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  line-height: 15px;
  color: #95989A;
}
.submenu .submenu__column .submenu__list .submenu__item .submenu__link:hover,
.submenu .submenu__column .submenu__list .submenu__item .submenu__link:link:hover,
.submenu .submenu__column .submenu__list .submenu__item .submenu__link:active,
.submenu .submenu__column .submenu__list .submenu__item .submenu__link:link:active {
  color: #00a8b1;
}
.submenu .submenu__column .submenu__list .submenu__item.submenu--category {
  padding: 40px 0;
}
.submenu .submenu__column .submenu__list .submenu__item.submenu--category .submenu__link {
  color: #00a8b1;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px dashed transparent;
}
.submenu .submenu__footer {
  padding: 0 40px 10px;
  text-align: right;
}
.submenu.submenu--active {
  display: block;
}
.submenu-sidebar {
  position: relative;
  z-index: 0;
  height: 100%;
  padding: 0;
  background-color: #f5f5f5;
}
.more-options {
  padding: 20px;
}
.more-options .more-options__list .more-options__item {
  display: block;
}
.feature {
  display: block;
  width: 100%;
  min-height: 100px;
  padding: 0;
}
.feature .feature__image,
.feature .feature__text {
  display: block;
  float: left;
  height: 100%;
}
.feature .feature__image {
  width: 100%;
  height: 65px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.feature .feature__text {
  padding-top: 10px;
  width: 100%;
  color: #00A8B1;
}
.feature .feature__text .feature__title {
  font-size: 14px;
  color: #00a8b1;
  margin-bottom: 10px;
}
.feature .feature__text .feature__extract {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #00A8B1;
  margin-bottom: 5px;
}
.feature .feature__text .feature__link {
  display: inline-block;
  font-size: 0.75rem;
  text-decoration: underline;
}
.menu-social {
  background-color: #323232;
  cursor: pointer;
}
.menu-social .menu-social__list .menu-social__item {
  float: left;
  width: 16.666666666666667%;
  text-align: center;
}
.menu-social .menu-social__list .menu-social__item:last-of-type {
  border-right: 1px solid #0c0c0c;
}
.menu-social .menu-social__list .menu-social__item i {
  width: 100%;
  font-size: 36px;
  line-height: 120px;
  color: #FFF;
}
.menu-social .menu-social__list .menu-social__item i.fa-facebook:hover {
  background-color: #306dd1;
}
.menu-social .menu-social__list .menu-social__item i.fa-facebook:active,
.menu-social .menu-social__list .menu-social__item i.fa-facebook.menu-social--active {
  background-color: #235099;
}
.menu-social .menu-social__list .menu-social__item i.fa-twitter:hover {
  background-color: #30a2d1;
}
.menu-social .menu-social__list .menu-social__item i.fa-twitter:active,
.menu-social .menu-social__list .menu-social__item i.fa-twitter.menu-social--active {
  background-color: #237799;
}
.menu-social .menu-social__list .menu-social__item i.fa-instagram:hover {
  background: linear-gradient(to right, #333399, #e31a4e);
}
.menu-social .menu-social__list .menu-social__item i.fa-instagram:active,
.menu-social .menu-social__list .menu-social__item i.fa-instagram.menu-social--active {
  background: linear-gradient(to right, #222266, #991235);
}
.menu-social .menu-social__list .menu-social__item i.fa-youtube:hover {
  background-color: #ff0019;
}
.menu-social .menu-social__list .menu-social__item i.fa-youtube:active,
.menu-social .menu-social__list .menu-social__item i.fa-youtube.menu-social--active {
  background-color: #cc0014;
}
.menu-social .menu-social__list .menu-social__item i.fa-pinterest:hover {
  background-color: #d60018;
}
.menu-social .menu-social__list .menu-social__item i.fa-pinterest:active,
.menu-social .menu-social__list .menu-social__item i.fa-pinterest.menu-social--active {
  background-color: #990011;
}
.menu-social .menu-social__list .menu-social__item i.fa-tripadvisor:hover {
  background-color: #589441;
}
.menu-social .menu-social__list .menu-social__item i.fa-tripadvisor:active,
.menu-social .menu-social__list .menu-social__item i.fa-tripadvisor.menu-social--active {
  background-color: #3d662d;
}
.menu-social .menu-social__list .menu-social__item i.fa-google-plus:hover {
  background-color: #db4437;
}
.menu-social .menu-social__list .menu-social__item i.fa-google-plus:active,
.menu-social .menu-social__list .menu-social__item i.fa-google-plus.menu-social--active {
  background-color: #a62519;
}
.wrapper-feed-list {
  background-color: #f5f5f5;
  position: relative;
}
/* ------------------------------------------------------------
    SPOTIFY
------------------------------------------------------------ */
.module-spotify {
  position: relative;
  background-color: black;
  overflow: hidden;
}
.module-spotify .container {
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}
.module-spotify::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 120%;
  height: 120%;
  background-image: url(../images/spotify/actividades-principales_guanajuato_jalpa-de-canovas-de-purisima-del-rincon_visita-al-pueblo-magico-de-jalpa-de-canovas_01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: blur(50px);
}
.module-spotify__title {
  font-size: 42px;
  line-height: 48px;
  margin: 0 0 20px 0;
}
.module-spotify__text {
  font-size: 22px;
  line-height: 26px;
  margin: 0 0 15px 0;
}
.module-spotify__title,
.module-spotify__text {
  font-weight: 100;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
.module-spotify__title i {
  color: #2ebd59;
}
.spotify-follow {
  height: 56px !important;
  margin-top: 30px;
}
.spotify-playlist {
  float: right;
  max-width: 280px;
  height: 280px;
}
/* ------------------------------------------------------------
    MENU SOCIAL CONTENT
------------------------------------------------------------ */
.menu-social__content {
  width: 100%;
  height: auto;
  background: #f5f5f5;
}
.menu-social__content ul {
  width: 100%;
  height: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.menu-social__content ul li {
  padding: 40px 0;
  width: 100%;
  height: auto;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  background: #f5f5f5;
}
.menu-social__content ul li.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}
.footer {
  padding: 40px 80px;
  background-color: #FFF;
}
.footer .footer__list .footer__item h3,
.footer .footer__list .footer__item a {
  margin-bottom: 20px;
  font-size: 16px;
  color: #666666;
}
.footer .footer__list .footer__item h3 {
  font-family: 'Raleway', sanserif;
}
.footer .footer__list .footer__item i {
  font-size: 10px;
  margin-right: 5px;
}
.footer .footer__info {
  text-align: right;
}
.footer .footer__info .footer__image figure {
  width: auto;
  height: auto;
}
.footer .footer__info .footer__image figure img {
  width: auto;
  height: auto;
}
.footer .footer__info .footer__text a,
.footer .footer__info .footer__text p {
  display: inline-block;
  max-width: 430px;
}
.footer .footer-visitmexico .footer__image figure {
  margin: 0;
}
.footer .footer-visitmexico .footer__image figure img {
  width: auto;
  height: auto;
}
.footer .footer-bottom {
  margin-top: 20px;
}
.footer .container {
  padding: 0;
}
.line-colors {
  position: relative;
}
.line-colors::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #00a8b1;
  border-left: 62.626262626262626vw solid #ffb500;
  border-right: 19.791666666666667vw solid #ff0099;
}
.back-module {
  position: relative;
}
.back-module figure.image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  padding: 0;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.back-module figure.image img {
  display: none;
}
.arrow-slide {
  top: 50%;
  position: absolute;
  font-size: 40px;
  z-index: 1;
  cursor: pointer;
}
.fa-angle-left.arrow-slide {
  left: 5%;
}
.fa-angle-right.arrow-slide {
  right: 5%;
}
.shade {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.shade.s1 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
}
/* ------------------------------------------------------------
    ICONS
------------------------------------------------------------ */
.graphic-icon {
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/sprite.svg);
  background-size: 260px 400px;
  background-repeat: no-repeat;
}
.graphic-icon.g1 {
  background-position: -40px -55px;
}
.graphic-icon.g2 {
  background-position: 0 -55px;
}
.graphic-icon.g3 {
  background-position: 0 -216px;
  width: 15px;
  height: 15px;
}
.graphic-icon.g4 {
  background-position: -15px -216px;
  width: 15px;
  height: 15px;
}
.graphic-icon.g5 {
  background-position: 0 -127px;
  width: 32px;
  height: 32px;
}
.graphic-icon.g6 {
  background-position: -32px -127px;
  width: 32px;
  height: 32px;
}
.graphic-icon.g7 {
  background-position: -64px -127px;
  width: 32px;
  height: 32px;
}
.graphic-icon.g8 {
  background-position: -96px -127px;
  width: 32px;
  height: 32px;
}
.graphic-icon.g9 {
  background-position: -128px -127px;
  width: 32px;
  height: 32px;
}
.graphic-icon.g10 {
  background-position: 0px -123px;
  width: 25px;
  height: 25px;
  background-size: 200px auto;
}
.graphic-icon.g11 {
  background-position: -23px -123px;
  width: 25px;
  height: 25px;
  background-size: 200px auto;
}
.graphic-icon.g12 {
  background-position: -48px -123px;
  width: 25px;
  height: 25px;
  background-size: 200px auto;
}
.graphic-icon.g13 {
  background-position: -74px -123px;
  width: 25px;
  height: 25px;
  background-size: 200px auto;
}
.graphic-icon.g14 {
  background-position: -98px -123px;
  width: 25px;
  height: 25px;
  background-size: 200px auto;
}
.graphic-icon.g15 {
  background: url(../images/icon/close.svg);
  background-position: center center;
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
}
.graphic-icon.g16 {
  background: url(../images/icon/map.svg);
  background-position: center center;
  width: 80px;
  height: 80px;
  background-size: 100% 100%;
}
.graphic-icon.g17 {
  background: url(../images/icon/download.svg);
  background-position: center center;
  width: 30px;
  height: 30px;
  background-size: 100% 100%;
}
.graphic-icon.g18 {
  background-position: -123px -123px;
  width: 25px;
  height: 25px;
  background-size: 200px auto;
}
.graphic-icon.g19 {
  background-position: -143px -123px;
  width: 25px;
  height: 25px;
  background-size: 200px auto;
}
.graphic-icon.lgbt {
  background-position: 0px -123px;
  width: 25px;
  height: 25px;
  background-size: 200px auto;
}
.graphic-icon.backpack {
  background-position: -98px -123px;
  width: 25px;
  height: 25px;
  background-size: 200px auto;
}
.graphic-icon.family {
  background-position: -48px -123px;
  width: 25px;
  height: 25px;
  background-size: 200px auto;
}
.graphic-icon.couple {
  background-position: -74px -123px;
  width: 25px;
  height: 25px;
  background-size: 200px auto;
}
/* ------------------------------------------------------------
    HERO IMAGE
------------------------------------------------------------ */
.hero-image {
  width: 100%;
  height: 100vh;
  min-height: 550px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.hero-image.hero--interiores {
  min-height: 550px;
  height: 70vh;
}
.hero-image .hero-image__article {
  position: absolute;
  top: 75%;
  width: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}
.hero-image .item-place {
  position: absolute;
  left: 5%;
  z-index: 3;
  bottom: 30px;
}
.hero-image .hero-slider h2 {
  width: 50%;
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: 3;
  font-size: 52px;
  line-height: 56px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 40px;
  line-height: 43px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.4), 0 2px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
}
.hero-image .hero-slider .owl-stage-outer {
  float: left;
}
.hero-image .hero-slider .owl-controls {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
}
.hero-image .hero-slider .owl-controls .owl-nav {
  width: 100%;
  height: auto;
}
.hero-image .hero-slider .owl-controls .owl-nav .owl-prev,
.hero-image .hero-slider .owl-controls .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hero-image .hero-slider .owl-controls .owl-nav .owl-prev {
  left: 5%;
}
.hero-image .hero-slider .owl-controls .owl-nav .owl-next {
  right: 5%;
}
.toggle-search {
  top: 55% !important;
}
.toggle-search .search-module.show {
  max-height: 150px;
  opacity: 1;
  overflow: visible;
}
.toggle-search .search-module {
  height: auto;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -ms-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
  transition: all 0.65s ease;
}
.search-module {
  width: 100%;
  height: auto;
}
.search__action {
  display: block;
  width: 100%;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}
.btn-toggle {
  display: inline-block;
  width: auto;
  height: 40px;
  max-height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  background-color: #ff2f99;
  border: 0;
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -ms-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
  transition: all 0.65s ease;
}
.btn-phantom {
  float: initial !important;
  display: inline-block;
  width: auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  background-color: transparent;
  font-size: 16px;
  line-height: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  color: white;
}
.btn-phantom:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.btn-toggle__icon {
  margin-right: 10px;
}
.btn-toggle__icon,
.btn-toggle__text {
  font-size: 22px;
  line-height: 22px;
}
.hero-image .hero-slider,
.hero-image .hero-slider .item,
.hero-image .hero-slider .owl-item,
.hero-image .hero-slider .back-module {
  height: 100vh;
  min-height: 600px;
}
.hero-image .hero-slider.hero--interiores,
.hero-image .hero-slider .item.hero--interiores,
.hero-image .hero-slider .owl-item.hero--interiores,
.hero-image .hero-slider .back-module.hero--interiores {
  min-height: 600px !important;
  height: 70vh;
}
.search-module {
  width: 100%;
  height: auto;
}
.search-module div {
  width: 100%;
  height: auto;
}
.search-module div form {
  width: 100%;
  height: auto;
}
.search-module div input {
  float: left;
  width: 70%;
  height: 40px;
  color: #333;
}
.search-module div button {
  float: left;
  width: 30%;
  font-size: 1.25rem;
  height: 40px;
  padding: 0;
  line-height: 40px;
}
.hero-image__bottom {
  width: auto;
  position: absolute;
  bottom: 30px;
  text-align: center;
  left: 50%;
  z-index: 3;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hero-image__bottom h6 {
  margin-bottom: 20px;
}
.hero-image__bottom .graphic-icon {
  left: 50%;
  position: relative;
  margin-left: -20px;
  display: none;
}
.go-to {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  display: block;
  width: 20px;
  height: auto;
}
.item-place {
  width: 300px;
}
.item-place i {
  float: left;
  margin-right: 10px;
}
.item-place article {
  width: 60%;
  float: left;
  color: #fff;
}
.item-place article h5 {
  margin-bottom: 0;
}
.item-place article p {
  margin-bottom: 10px;
}
.like-list {
  width: 100%;
  height: auto;
  display: none;
}
.like-list ul {
  width: 100%;
  height: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}
.like-list ul li {
  float: left;
  margin-left: 0;
  margin-right: 5px;
}
.like-list ul li:last-child {
  margin-right: 0;
}
.like-list ul li i {
  margin-right: 0;
}
.portfolio-caption .item-credits {
  background-color: transparent !important;
}
/* ------------------------------------------------------------
    OPTIONS MODULE
------------------------------------------------------------ */
.options-module {
  width: 100%;
  height: auto;
  position: relative;
}
.options-module__list ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.options-module__list ul li {
  margin-left: 0;
  float: left;
  width: 50%;
  position: relative;
  background: #666666;
}
.options-module__list ul li a {
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  width: 100%;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
  text-decoration: none;
  position: relative;
  z-index: 3;
}
.options-module__list ul li:hover {
  background: #393939;
}
.options-module__list ul li:hover i {
  color: #393939;
}
.options-module__list ul li.set1 {
  background: #99cc33;
}
.options-module__list ul li.set1:hover {
  background: #669900;
}
.options-module__list ul li.set1:hover i {
  color: #669900;
}
.options-module__list ul li.set1 i {
  color: #99cc33;
}
.options-module__list ul li.set1 .special-check input:checked + label {
  border-color: #99cc33;
  background: #99cc33;
}
.options-module__list ul li.set2 {
  background: #00a8b1;
}
.options-module__list ul li.set2:hover {
  background: #00778a;
}
.options-module__list ul li.set2:hover i {
  color: #00778a;
}
.options-module__list ul li.set2 i {
  color: #00a8b1;
}
.options-module__list ul li.set2 .special-check input:checked + label {
  border-color: #00a8b1;
  background: #00a8b1;
}
.options-module__list ul li.set3 {
  background: #ffb500;
}
.options-module__list ul li.set3:hover {
  background: #f58220;
}
.options-module__list ul li.set3:hover i {
  color: #f58220;
}
.options-module__list ul li.set3 i {
  color: #ffb500;
}
.options-module__list ul li.set3 .special-check input:checked + label {
  border-color: #ffb500;
  background: #ffb500;
}
.options-module__list ul li.set4 {
  background: #ac0080;
}
.options-module__list ul li.set4:hover {
  background: #7c0e6c;
}
.options-module__list ul li.set4:hover i {
  color: #7c0e6c;
}
.options-module__list ul li.set4 i {
  color: #ac0080;
}
.options-module__list ul li.set4 .special-check input:checked + label {
  border-color: #ac0080;
  background: #ac0080;
}
.options-module__list ul li.set5 {
  background: #ff1722;
}
.options-module__list ul li.set5:hover {
  background: #c70000;
}
.options-module__list ul li.set5:hover i {
  color: #c70000;
}
.options-module__list ul li.set5 i {
  color: #ff1722;
}
.options-module__list ul li.set5 .special-check input:checked + label {
  border-color: #ff1722;
  background: #ff1722;
}
.options-module__list ul li.set6 {
  background: #ff0099;
}
.options-module__list ul li.set6:hover {
  background: #cc0066;
}
.options-module__list ul li.set6:hover i {
  color: #cc0066;
}
.options-module__list ul li.set6 i {
  color: #ff0099;
}
.options-module__list ul li.set6 .special-check input:checked + label {
  border-color: #ff0099;
  background: #ff0099;
}
.options-module__list ul li.set7 {
  background: #00778a;
}
.options-module__list ul li.set7:hover {
  background: #19a2aa;
}
.options-module__list ul li.set7:hover i {
  color: #19a2aa;
}
.options-module__list ul li.set7 i {
  color: #00778a;
}
.options-module__list ul li.set7 .special-check input:checked + label {
  border-color: #00778a;
  background: #00778a;
}
.options-module__list ul li.set8 {
  background: #f58220;
}
.options-module__list ul li.set8:hover {
  background: #f7a80a;
}
.options-module__list ul li.set8:hover i {
  color: #f7a80a;
}
.options-module__list ul li.set8 i {
  color: #f58220;
}
.options-module__list ul li.set8 .special-check input:checked + label {
  border-color: #f58220;
  background: #f58220;
}
.options-module__list ul li i {
  opacity: 0;
  position: absolute;
  bottom: -49px;
  font-size: 100px;
  left: 50%;
  z-index: 2;
  color: #666666;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.options-module__list ul li.active i {
  opacity: 1;
  bottom: -59px;
}
.options-module__list.options__x5 ul li {
  width: 20%;
}
.options-module__list.options__x2 ul li {
  width: 50%;
}
.options-module__wrapp {
  width: 100%;
  height: auto;
  position: relative;
}
.options-module__item,
.options-module__item-mobile {
  position: absolute;
  opacity: 0;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  background: #ffffff;
}
.options-module__item.active,
.options-module__item-mobile.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}
.item__checks {
  width: 100%;
  background: #f5f5f5;
  padding: 30px 0 10px 0;
  display: none;
}
.item__checks ul {
  width: 100%;
  height: auto;
  list-style: none;
  padding: 30px 0;
  margin: 0 0 0 0;
  border-bottom: 1px dotted #666666;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: space-around;
}
.item__checks ul li {
  margin-right: 10px;
  margin-left: 0;
}
.item__checks ul li:last-child {
  margin-right: 0;
}
.item__checks ul li .special-check,
.item__checks ul li p {
  float: left;
}
.item__checks ul li .special-check {
  margin-right: 10px;
  margin-top: 3px;
}
.item__checks ul + ul {
  border-bottom: 0;
}
.item__checks.om__item1 .special-check input:checked + label {
  border-color: #99cc33;
  background: #99cc33;
}
.item__checks.om__item2 .special-check input:checked + label {
  border-color: #00a8b1;
  background: #00a8b1;
}
.item__checks.om__item3 .special-check input:checked + label {
  border-color: #ffb500;
  background: #ffb500;
}
.item__checks.om__item4 .special-check input:checked + label {
  border-color: #ac0080;
  background: #ac0080;
}
.item__checks.om__item5 .special-check input:checked + label {
  border-color: #ff1722;
  background: #ff1722;
}
.item__checks.om__item6 .special-check input:checked + label {
  border-color: #ff0099;
  background: #ff0099;
}
.item__checks.om__item7 .special-check input:checked + label {
  border-color: #00778a;
  background: #00778a;
}
.item__checks.om__item8 .special-check input:checked + label {
  border-color: #f58220;
  background: #f58220;
}
.link-section {
  width: 20px;
  height: 100px;
  position: absolute;
  top: -100px;
  left: 0;
}
/* ------------------------------------------------------------
    DYNAMIC IMAGES
------------------------------------------------------------ */
.dynamic-images {
  margin-bottom: 5px;
  margin-right: 5px;
  /* fluid 5 columns */
  /* 2 columns */
}
.dynamic-images .grid-sizer,
.dynamic-images .grid-item {
  width: 20%;
  height: 20vw;
}
.dynamic-images .grid-item--width2 {
  width: 40%;
  height: 40vw;
}
.dynamic-images a {
  color: #ffffff;
  text-decoration: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.dynamic-images .back-module figure {
  margin: 5px;
}
.dynamic-images .grid-item:hover article {
  right: 0;
}
.grid-item {
  overflow: hidden;
  float: left;
}
.grid-item article {
  position: absolute;
  right: -100%;
  top: 5px;
  width: 99%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  z-index: 2;
}
.grid-item article h3 {
  margin-bottom: 10px;
  font-size: 1.225rem;
}
.grid.dynamic__color1 .dc__go {
  background: #ffb500;
}
.dynamic__content {
  position: absolute;
  bottom: 10px;
  width: 100%;
}
.dynamic__content p {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f5f5f5;
  display: inline-block;
}
.dynamic__content h3,
.dynamic__content p,
.dynamic__content .place-icon {
  margin-left: 5%;
}
.dc__go {
  position: absolute;
  right: 0;
  bottom: -4px;
  padding: 10px;
  height: 35px;
  width: 35px;
  color: #ffffff;
  font-size: 30px;
  background: #00a8b1;
}
.dc__go i {
  float: left;
  margin-left: 4px;
  margin-top: -7px;
}
.dc__go a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffffff;
}
.dc__go a i {
  margin-left: 13px;
  margin-top: 3px;
}
.place-icon {
  width: 100% !important;
  list-style: none;
  padding: 0;
  margin: 0;
}
.place-icon li {
  position: relative;
  float: left;
  margin-left: 0 !important;
  margin-right: 5px !important;
}
.place-icon li:last-child {
  margin-right: 0;
}
.load-more__wrapper {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 40px 0;
  background: url(../images/back/back-color2.jpg) center center no-repeat;
  background-size: cover;
  color: #ffffff;
}
.load-more__wrapper a.btn.type2 {
  padding: 10px 0 7px 0;
  width: 200px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}
.load-more__wrapper a.btn.type2:hover {
  color: #ff0099;
}
.load-more__wrapper.load__color1 {
  background: #00a8b1 url(../images/pattern/Textura_agua_6_aqua.png) left top repeat;
  background-size: 310px auto;
}
.load-more__wrapper.load__color1 a.btn.type2:hover {
  color: #00a8b1;
}
.load-more__wrapper.load__color2 {
  background: #99cc33 url(../images/pattern/Textura_orla_5_verde.png) left top repeat;
  background-size: 310px auto;
}
.load-more__wrapper.load__color2 a.btn.type2:hover {
  color: #99cc33;
}
/* ------------------------------------------------------------
    BANNER MODULE
------------------------------------------------------------ */
.block-vm-slider-home {
  padding: 0;
  margin-top: 0;
}
.banner-module--custom {
  position: relative;
}
.banner-module--custom .col {
  padding: 10px 0;
  position: relative;
  z-index: 1;
  height: 100%;
}
.banner-module {
  height: 160px;
  background: #FFF;
  padding: 0;
}
.banner-module p {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  float: right;
  width: auto;
  font-size: 23px;
  font-weight: 300;
  color: #ADADAD;
}
.banner-module img {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  float: left;
  width: auto;
  max-width: 350px;
  height: auto;
}
.banner-module .col {
  height: 160px;
  text-align: center;
  vertical-align: middle;
}
.banner-module--custom p {
  position: relative;
  top: initial;
  -webkit-transform: initial;
  -moz-transform: initial;
  -ms-transform: initial;
  -o-transform: initial;
  transform: initial;
  float: initial;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  color: white;
  text-align: center;
  vertical-align: middle;
  margin-top: 20px;
}
.banner-module--custom p span {
  /*display: block;*/
}
.banner-module--custom .btn-primary {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 15px;
  max-width: 200px;
  line-height: 18px;
  vertical-align: middle;
}
.banner-module--custom .coverimage {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: none !important;
}
.banner-module--custom .coverimage img {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: initial;
  -moz-transform: initial;
  -ms-transform: initial;
  -o-transform: initial;
  transform: initial;
  display: block;
  height: 100%;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}
/* ------------------------------------------------------------
    BANNER MODULE 2
------------------------------------------------------------ */
.banner-module2 {
  color: #ffffff;
  position: relative;
  height: 250px;
}
.banner-module2 article {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 2;
  padding: 0 5%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.banner-module2 h3 {
  float: left;
  width: 40%;
  font-family: 'Raleway', sanserif;
  margin-bottom: 0;
}
.banner-module2 a {
  float: right;
  width: 400px;
  display: block;
  padding: 10px 0 7px 0;
  letter-spacing: 1px;
}
/* ------------------------------------------------------------
    TITLE MODULE
------------------------------------------------------------ */
.title-module {
  width: 100%;
  height: auto;
  background: #ffffff;
  text-align: center;
  padding: 100px 0;
}
.title-module p {
  margin-bottom: 0;
}
.title-module.wrap-inspiration {
  background: #f5f5f5 url(/images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
  color: #000;
  padding: 50px 0;
}
/* ------------------------------------------------------------
    THUMBS WRAPP
------------------------------------------------------------ */
.thumbs-wrapp {
    transition: all .3s ease;
}
.thumbs-wrapp.thumbs-color1 {
  background: #ac0080 url(../images/pattern/Textura_orla_3_morado.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp.thumbs-color1 .thumbs-wrapp__title {
  background: #7c0e6c;
  color: #ffffff;
}
.thumbs-wrapp.thumbs-color2 .dc__go {
    background: #ffb500;
}
.thumbs-wrapp.thumbs-color2 .thumbs-wrapp__title--green {
  background-color: #99cc33 !important;
}
.thumbs-wrapp.thumbs-color3 {
  background: #ffb500 url(../images/pattern/Textura_sol_4_amarillo.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp.thumbs-color3 .thumbs-wrapp__title {
  color: #ffffff;
  background: #f58220;
}
.thumbs-wrapp.thumbs-color3 .dc__go {
  background: #ac0080;
}
.thumbs-wrapp.thumbs-color7 {
  background: #99cc33 url(../images/pattern/Textura_flor_5_verde.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp.thumbs-color7 .thumbs-wrapp__title {
  background: #669900;
  color: #fff;
}
.thumbs-wrapp.thumbs-color7 .dc__go {
  background: #ac0080;
}
.thumbs-wrapp.thumbs-color22 {
  background: #00a8b1 url(../images/pattern/Textura_sol_6_aqua.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp.thumbs-color22 .thumbs-wrapp__title {
  background: #00778a;
  color: #ffffff;
}
.thumbs-wrapp-destination {
  z-index: 1;
  width: 100%;
  height: auto;
}
.thumbs-wrapp-destination.thumbs__title-strong h5 {
  font-family: 'Raleway', sanserif;
}
.thumbs-wrapp-destination .container {
  padding: 0;
}
.thumbs-wrapp-destination.thumbs-color1,
.thumbs-wrapp-destination.thumbs-color5 {
  background: #ac0080 url(/images/pattern/Textura_orla_3_morado.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color1 .thumbs-wrapp__title,
.thumbs-wrapp-destination.thumbs-color5 .thumbs-wrapp__title {
  background: #7c0e6c;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color1 .btn.type2:hover,
.thumbs-wrapp-destination.thumbs-color5 .btn.type2:hover {
  color: #00a8b1;
}
.thumbs-wrapp-destination.thumbs-color3,
.thumbs-wrapp-destination.thumbs-color9 {
  background: #ffb500 url(../images/pattern/Textura_sol_4_amarillo.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color3 .thumbs-wrapp__title,
.thumbs-wrapp-destination.thumbs-color9 .thumbs-wrapp__title {
  background: #f58220;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color3 .dc__go,
.thumbs-wrapp-destination.thumbs-color9 .dc__go {
  background: #ac0080;
}
.thumbs-wrapp-destination.thumbs-color3 .btn.type2,
.thumbs-wrapp-destination.thumbs-color9 .btn.type2 {
  border-color: #ffffff;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color3 .btn.type2:hover,
.thumbs-wrapp-destination.thumbs-color9 .btn.type2:hover {
  color: #ffb500;
  background: #ffffff;
  border-color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color7 {
  background: #99cc33 url(../images/pattern/Textura_flor_5_verde.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color7 .thumbs-wrapp__title {
  background: #669900;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color7 .dc__go {
  background: #ac0080;
}
.thumbs-wrapp-destination.thumbs-color14 {
  background: #99cc33 url(../images/pattern/Textura_orla_5_verde.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color14 .thumbs-wrapp__title {
  background: #669900;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color14 .dc__go {
  background: #ac0080;
}
.thumbs-wrapp-destination.thumbs-color11 {
  background: #00a8b1 url(../images/pattern/Textura_agua_6_aqua.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color11 .thumbs-wrapp__title {
  background: #00778a;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color11 .dc__go {
  background: #ff0099;
}
.thumbs-wrapp-destination.thumbs-color12 {
  background: #ff0099 url(../images/pattern/Textura_agua_2_rosa.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color12 .thumbs-wrapp__title {
  background: #cc0066;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color12 .dc__go {
  background: #00a8b1;
}
.thumbs-wrapp-destination.thumbs-color2,
.thumbs-wrapp-destination.thumbs-color8 {
  background: #f5f5f5 url(../images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color2 .thumbs-wrapp__title,
.thumbs-wrapp-destination.thumbs-color8 .thumbs-wrapp__title {
  background: #ffb500;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color2 .dc__go,
.thumbs-wrapp-destination.thumbs-color8 .dc__go {
  background: #ffb500;
}
.thumbs-wrapp-destination.thumbs-color2 .btn.type2,
.thumbs-wrapp-destination.thumbs-color8 .btn.type2 {
  border-color: #ffb500;
  color: #ffb500;
}
.thumbs-wrapp-destination.thumbs-color2 .btn.type2:hover,
.thumbs-wrapp-destination.thumbs-color8 .btn.type2:hover {
  background: #ffffff;
  border-color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color4 {
  background: #f5f5f5 url(../images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color4 .thumbs-wrapp__title {
  background: #99cc33;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color4 .dc__go {
  background: #99cc33;
}
.thumbs-wrapp-destination.thumbs-color4 .btn.type2 {
  border-color: #99cc33;
  color: #99cc33;
}
.thumbs-wrapp-destination.thumbs-color4 .btn.type2:hover {
  background: #ffffff;
  border-color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color6 {
  position: relative;
  background: #f5f5f5 url(../images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color6 .thumbs-wrapp__title {
  background: #ff1722;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color6 .dc__go {
  background: #ff1722;
}
.thumbs-wrapp-destination.thumbs-color6 .btn.type2 {
  border-color: #ff1722;
  color: #ff1722;
}
.thumbs-wrapp-destination.thumbs-color6 .btn.type2:hover {
  background: #ffffff;
  border-color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color10 {
  background: #f5f5f5 url(../images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color10 .thumbs-wrapp__title {
  background: #ff0099;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color10 .dc__go {
  background: #ff0099;
}
.thumbs-wrapp-destination.thumbs-color10 .btn.type2 {
  border-color: #ff0099;
  color: #ff0099;
}
.thumbs-wrapp-destination.thumbs-color10 .btn.type2:hover {
  color: #ffffff;
  background: #ff0099;
  border-color: #ff0099;
}
.thumbs-wrapp-destination.thumbs-color13 {
  background: #f5f5f5 url(../images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color13 .thumbs-wrapp__title {
  background: #19a2aa;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color13 .dc__go {
  background: #19a2aa;
}
.thumbs-wrapp-destination.thumbs-color13 .btn.type2 {
  border-color: #19a2aa;
  color: #19a2aa;
}
.thumbs-wrapp-destination.thumbs-color13 .btn.type2:hover {
  background: #ffffff;
  border-color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color15 {
  background: #f5f5f5 url(../images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color15 .thumbs-wrapp__title {
  background: #666666;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color15 .dc__go {
  background: #19a2aa;
}
.thumbs-wrapp-destination.thumbs-color15 .btn.type2 {
  border-color: #666666;
  color: #666666;
}
.thumbs-wrapp-destination.thumbs-color15 .btn.type2:hover {
  background: #ffffff;
  border-color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color16 {
  background: #f5f5f5 url(../images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color16 .thumbs-wrapp__title {
  background: #ac0080;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color16 .dc__go {
  background: #ac0080;
}
.thumbs-wrapp-destination.thumbs-color16 .btn.type2 {
  border-color: #ac0080;
  color: #ac0080;
}
.thumbs-wrapp-destination.thumbs-color16 .btn.type2:hover {
  background: #ffffff;
  border-color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color17 {
  background: #f5f5f5 url(../images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-destination.thumbs-color17 .thumbs-wrapp__title {
  background: #00778a;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color17 .dc__go {
  background: #00778a;
}
.thumbs-wrapp-destination.thumbs-color17 .btn.type2 {
  border-color: #00778a;
  color: #00778a;
}
.thumbs-wrapp-destination.thumbs-color17 .btn.type2:hover {
  background: #ffffff;
  border-color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color18 {
  background: #ff0099 url(../images/pattern/Textura_agua_2_rosa.png) center center repeat;
  background-size: 310px auto;
  position: relative;
}
.thumbs-wrapp-destination.thumbs-color18 .thumbs-wrapp__title {
  background: #cc0066;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color18 .dc__go {
  background: #FFB500;
}
.thumbs-wrapp-destination.thumbs-color19 {
  background: #99cc33 url(../images/pattern/Textura_flor_5_verde.png) center center repeat;
  background-size: 310px auto;
  position: relative;
}
.thumbs-wrapp-destination.thumbs-color19 .thumbs-wrapp__title {
  background: #669900;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color19 .dc__go {
  background: #ffb500;
}
.thumbs-wrapp-destination.thumbs-color20 {
  background: #f5f5f5 url(../images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
  position: relative;
}
.thumbs-wrapp-destination.thumbs-color20 .thumbs-wrapp__title {
  background: #00A8B1;
  color: #ffffff;
}
.thumbs-wrapp-destination.thumbs-color20 .dc__go {
  background: #00A8B1;
}
.thumbs-wrapp-destination.thumbs-color20 .btn.type2 {
  border-color: #00A8B1;
  color: #ffb500;
}
.thumbs-wrapp-destination.thumbs-color21 {
  background: #ff1722 url(../images/pattern/Textura_flor_1_rojo.png) center center repeat;
  background-size: 310px auto;
  position: relative;
}
.thumbs-wrapp-destination.thumbs-color21 .thumbs-wrapp__title {
  background: #c70000;
  color: #ffffff;
}
.thumbs-wrapp-destination .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 35px;
  height: 35px;
  font-size: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  color: #FFF;
  background: transparent;
}
.thumbs-wrapp-destination .slick-prev {
  left: 0;
  margin-left: -60px;
}
.thumbs-wrapp-destination .slick-next {
  right: 0;
  margin-right: -60px;
}
.thumbs-wrapp-destination .slick-dots {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
}
.thumbs-wrapp-destination .slick-dots li {
  width: 20px;
  height: 20px;
  text-align: center;
  margin: 0 10px;
  display: inline-block;
  cursor: pointer;
}
.thumbs-wrapp-destination .slick-dots li button {
  border: 1px solid #fff;
  background: transparent;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin: 0;
  font-size: 1px;
  padding: 0;
}
.thumbs-wrapp-destination .slick-dots .slick-active button {
  background-color: #fff;
}
.thumbs-wrapp-destination.fake-menu .thumbs-wrapp__title {
  margin-top: 0;
}
.thumbs-wrapp-activities .slick-dots {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
}
.thumbs-wrapp-activities .slick-dots li {
  width: 20px;
  height: 20px;
  text-align: center;
  margin: 0 10px;
  display: inline-block;
  cursor: pointer;
}
.thumbs-wrapp-activities .slick-dots li.slick-active button {
  background-color: #666;
}
.thumbs-wrapp-activities .slick-dots li button {
  border: 1px solid #666;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin: 0;
  font-size: 1px;
  padding: 0;
}
.thumbs-wrapp-activities.thumbs-color2 .btn.type2 {
  border-color: #ffb500;
  color: #ffb500;
}
/*-------------------------------
    ¿Qué hacer?
-------------------------------*/
.thumbs-color2,
.thumbs-wrapp {
  position: relative;
}
.thumbs-color2.thumbs-color2,
.thumbs-wrapp.thumbs-color2 {
  background: #f5f5f5 url(../images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp.thumbs-color2 .thumbs-wrapp__title {
  background: #ffb500;
  color: #fff;
}
.thumbs-wrapp.thumbs-color2 .thumbs-wrapp__title--green {
    background: #669900;
    color: #fff;
}
.thumbs-wrapp__description {
  display: block;
  text-shadow: 0 0 black;
  font-size: 16px;
  font-weight: 400 !important;
  padding: 60px 40px 20px;
  line-height: 22px;
}
.thumbs-wrapp__description p {
  font-weight: 400 !important;
}
.menu-view {
  position: relative;
  display: block;
  padding: 40px 0 25px 0;
}
.menu-view .menu-view__list {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.menu-view .combo-select {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.combo-select {
  position: relative;
  display: block;
  overflow: hidden;
  width: 120px;
  height: 35px;
  border-radius: 3px;
  border: 1px solid #CCC;
}
.combo-select__icon {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.combo-select__select {
  display: block;
  width: 140px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background-color: #ECECEC;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.slider-donde-ir {
  padding-bottom: 40px;
}
.item-list.col-x5 {
  width: 20%;
}
.item-list {
  position: relative;
  margin: 0;
  padding: 10px 15px;
  float: left;
}
.item-list--small {
  padding-top: 3px;
  padding-bottom: 3px;
}
.slider-donde-ir .card-featured--small figure {
  height: 120px;
  display: block;
}
.slider-donde-ir .card-featured--small article {
  height: 130px;
  padding: 15px;
}
.slider-donde-ir .card-featured--small .dc__go {
  display: none;
}
.slider-donde-ir .js-create-cards {
  list-style: none;
  padding: 0;
}
.card-featured--small article {
  height: 190px !important;
}
.card-featured {
  position: relative;
  display: block;
}
.card-featured .special-favorite {
  position: absolute;
  top: 10px;
  left: 10px;
}
.card-featured a {
  color: #666666;
  display: block;
  width: 100%;
}
.card-featured .card-featured__description .place-icon {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-featured .card-featured__description:hover + .dc__go {
  opacity: 0;
}
.special-favorite {
  width: 20px;
  height: 20px;
  z-index: 2;
}
.thumbs-wrapp__load {
  display: block;
  padding: 25px 0 40px 0;
  text-align: center;
}
.load-spiner {
  width: 100%;
  height: 0;
  text-align: center;
  font-size: 30px;
  margin-bottom: 70px;
}
.thumbs-wrapp__load .btn-loadmore {
  display: block;
  margin: 0 auto;
}
.btn-loadmore-int p {
  color: #666666;
  width: 100%;
  text-align: center;
}
.btn-loadmore-int i {
  color: #666666;
  font-size: 30px;
  text-align: center;
  display: block;
}
/*-------------------------------
    Guía turistica
-------------------------------*/
.files-container {
  padding: 45px 0 !important;
}
.files-container .files-container__item {
  margin: 0;
  padding: 15px;
}
/*-------------------------------
    ¿Qué hacer?
-------------------------------*/
.content-slider-ten-reasons-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
}
.content-slider-ten-reasons-wrapper article {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
  z-index: 4;
  color: #ffffff;
  padding: 0 15%;
}
.back-module {
  position: relative;
  height: 500px;
}
.item-credits {
  position: absolute;
  top: 6px;
  right: 0;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 60px;
  padding: 10px 10px 0 30px;
  text-align: right;
  background-color: rgba(0, 0, 0, 0.25);
}
.item-credits i {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-block;
  padding: 0;
  margin: 0;
  font-size: 12px !important;
  line-height: 12px !important;
  font-weight: 300;
  letter-spacing: 1px;
  vertical-align: top;
  color: #FFF !important;
}
.item-credits p {
  display: inline-block;
  padding: 0;
  margin: 0;
  font-size: 12px !important;
  line-height: 12px !important;
  font-weight: 300;
  letter-spacing: 1px;
  vertical-align: top;
  color: #FFF !important;
}
.content-slider-ten-reasons-wrapper .arrow-icon {
  top: 50%;
  position: absolute;
  font-size: 40px;
  z-index: 1;
  cursor: pointer;
  color: #ffffff;
}
.content-slider-ten-reasons-wrapper .fa-angle-left {
  left: 5%;
}
.content-slider-ten-reasons-wrapper .fa-angle-right {
  right: 5%;
}
.content-slider-ten-reasons-wrapper .slick-arrow.slick-disabled {
    pointer-events: none;
    opacity: .5;
}
.content-slider-ten-reasons-wrapper {
  opacity: 0;
  position: absolute;
  left: -100%;
}
.content-slider-ten-reasons-wrapper.active {
  opacity: 1;
  position: relative;
  left: 0;
}
.content-slider-ten-reasons-wrapper.rs_read {
  height: auto;
}
.content-slider-ten-reasons-wrapper.rs_read .slick-arrow {
  display: none !important;
}
.content-slider-ten-reasons-wrapper.rs_read .slick-track {
  width: 100% !important;
}
.content-slider-ten-reasons-wrapper.rs_read .slick-slide {
  width: 100% !important;
  margin-bottom: 20px;
}

.thumbs-wrapp-activities.thumbs-color2 {
  background: #f5f5f5 url(/images/pattern/Textura_flor_6_gray.png) center center repeat;
  background-size: 310px auto;
}
.thumbs-wrapp-activities.thumbs-color2 .dc__go {
  background: #ffb500;
}
.thumbs-wrapp-activities.thumbs-color2 .thumbs-wrapp__title {
  background: #ffb500;
  color: #fff;
}
.thumbs-wrapp__title {
  position: absolute;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 4;
  width: 100%;
  padding: 10px 5%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.thumbs-wrapp__title h4 {
  font-family: 'Raleway', sanserif;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.thumbs-wrapp__title .thumbs-wrapp__cta {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.thumbs-wrapp__title.thumbs-wrapp--padding {
  padding: 10px 5%;
}
.thumbs-wrapp-bottom {
  width: 100%;
  text-align: right;
  height: auto;
  float: left;
  padding-bottom: 45px;
  display: inline-block;
}
.thumbs-wrapp-bottom a {
  padding: 5px 0;
  width: 185px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
  /* margin-top: -40px; */
  display: block;
  float: right;
  font-size: 14px;
  /*height: 35px;*/
}
.thumbs-color1 {
  position: relative;
}
.thumbs-wrapp__txt {
  color: #ffffff;
  text-align: center;
  margin-top: 50px;
  padding: 0 5%;
}
.thumbs-wrapp__txt p {
  margin-bottom: 0;
}
.thumbs-wrapp__bottom {
  width: 100%;
  height: auto;
  padding-bottom: 100px;
}
.thumbs-wrapp__bottom a {
  float: right;
  padding: 10px 0 7px 0;
  width: 200px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  position: relative;
  z-index: 3;
  margin-top: -40px;
}
.thumbs-carousel {
  width: 100%;
  height: auto;
  padding: 90px 5%;
}
.thumbs-carousel .owl-stage-outer {
  z-index: 3;
}
.thumbs-carousel .owl-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.thumbs-carousel .owl-controls .owl-nav {
  position: absolute;
  top: 20px;
  right: 0;
  font-size: 30px;
  z-index: 3;
}
.thumbs-carousel .owl-controls .owl-nav .owl-prev,
.thumbs-carousel .owl-controls .owl-nav .owl-next {
  text-align: center;
  display: inline-block;
}
.thumbs-carousel .owl-controls .owl-nav .owl-prev {
  margin-right: 30px;
}
.thumbs-carousel .owl-controls .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
}
.thumbs-carousel .owl-controls .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
}
.thumbs-carousel.fix-control {
  padding: 90px 5% 140px 5%;
}
.thumbs-carousel.fix-control .owl-controls .owl-dots {
  bottom: 70px;
}
.thumbs-carousel.thumbs-carousel__row1 .thumbs-carousel__list > li {
  margin-bottom: 0;
}
.thumbs-carousel figure.low--height {
  height: 180px;
}
.thumbs-carousel figure.square--thumbnail {
  height: 205px;
}
.thumbs-carousel__list {
  width: 100%;
  height: auto;
  padding: 40px 0;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}
.thumbs-carousel__list .slick-arrow {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 32px;
  color: #FFF;
  height: 32px;
  width: 32px;
  font-weight: 700;
  text-align: center;
  font-size: 32px;
  cursor: pointer;
}
.thumbs-carousel__list .fa-angle-left {
  left: -30px;
}
.thumbs-carousel__list .fa-angle-right {
  right: -30px;
}
.thumbs-carousel__list > li {
  /*float: left;
        width: 100%;
        margin: 0 2%;
        position: relative;
        margin-bottom: 50px;*/
}
.thumbs-carousel__list > li .special-favorite {
  position: absolute;
  top: 10px;
  left: 30px;
}
.thumbs-carousel__list > li:nth-child(4n+4) {
  margin-right: 0;
}
.thumbs-carousel__list > li:nth-child(+n+5) {
  margin-bottom: 0;
}
.thumbs-carousel__list > li article {
  float: left;
}
.thumbs-carousel__list > li figure img {
  display: none !important;
}
.thumbs-carousel__list.carousel__3x {
  padding: 100px 5% 140px 5%;
}
.thumbs-carousel__list.carousel__3x h5 {
  font-family: 'Raleway', sanserif;
  width: 80%;
}
.thumbs-carousel__list.carousel__3x p {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 20px;
}
.thumbs-carousel__list.carousel__3x li {
  width: 30%;
}
.thumbs-carousel__list.carousel__3x li:nth-child(4n+4) {
  margin-right: 2%;
}
.thumbs-carousel__list.carousel__3x li:nth-child(3n+3) {
  margin-right: 0;
}
.thumbs-carousel__list.carousel__3x li:nth-child(+n+5) {
  margin-bottom: 50px;
}
.thumbs-carousel__list.carousel__3x li:nth-child(+n+7) {
  margin-bottom: 0;
}
.thumbs-carousel-wrappers {
  z-index: 3;
  min-height: 400px;
}
.thumbs-carousel-wrappers {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
  list-style: none;
}
.thumbs__download {
  width: 120px !important;
}
.thumbs__download span {
  float: left;
  display: block;
  margin-top: 10px;
}
.thumbs__download i {
  float: right;
}
.thumbs__row {
  width: 100%;
  padding: 90px 5% 140px 5%;
}
.thumbs__row .thumbs__large {
  margin-right: 5%;
  float: left;
}
.thumbs__row .thumbs-carousel {
  float: left;
  width: 55%;
  padding: 0;
}
.thumbs__row .thumbs-carousel .thumbs-carousel__list > li {
  width: 46%;
}
.thumbs__row .thumbs-carousel .thumbs-carousel__list > li figure {
  height: 200px;
}
.thumbs__row .thumbs-carousel .thumbs-carousel__list > li:nth-child(3),
.thumbs__row .thumbs-carousel .thumbs-carousel__list > li:nth-child(4) {
  margin-bottom: 0;
}
.thumbs__row .thumbs-carousel .owl-controls .owl-nav {
  top: -70px;
}
.thumbs__row .thumbs-carousel .owl-controls .owl-dots {
  bottom: -70px;
}
.thumbs__large {
  float: left;
  width: 40%;
  position: relative;
}
.thumbs__large .special-favorite {
  position: absolute;
  top: 10px;
  left: 30px;
}
.thumbs__large a {
  color: #666666;
  display: inline-block;
  width: 100%;
}
.thumbs__large figure,
.thumbs__large article {
  float: left;
}
.thumbs__large figure {
  margin: 0 5%;
  height: 587px;
  background-repeat: no-repeat;
  width: 90%;
  background-size: cover;
  z-index: 1;
  position: relative;
}
.thumbs__large figure img {
  display: none !important;
}
.thumbs__large article {
  background: #ffffff;
  width: 100%;
  height: auto;
  padding: 45px 20px 30px 20px;
  margin-top: -15px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  min-height: 105px;
}
.thumbs__large article h5 {
  font-size: 17px;
  margin-bottom: 10px;
  font-family: 'Raleway', sanserif;
}
.thumbs__large article p {
  font-size: 14px;
  border-bottom: 1px solid #666666;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #808080;
}
.thumbs__large article .dc__go {
  right: 0;
  bottom: 20px;
}
.thumbs__large article .thumbs__download {
  float: right;
}
.card-featured figure {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 175px;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.card-featured figure img {
  display: none !important;
}
.card-featured article {
  position: relative;
  background: #ffffff;
  width: 100%;
  height: 200px;
  padding: 15px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
  min-height: 105px;
}
.card-featured article .dc__go {
  right: 0;
  bottom: 20px;
}
.card-featured article .thumbs__download {
  float: right;
}
.card-featured .special-favorite {
  position: absolute;
  top: 10px;
  left: 10px;
}
.card-featured .card-featured__description {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-featured .card-featured__description .card-featured__subtitle {
  width: 100%;
}
.card-featured .card-featured__description p {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-featured .card-featured__description:hover p.card-featured__subtitle {
  width: 100%;
  /*padding-top: 15px;
  padding-bottom: 15px;*/
  overflow: visible;
  text-overflow: inherit;
  white-space: normal;
  line-height: 16px;
}
.card-featured--list {
  border: 1px solid #E2E2E2;
}
.card-featured--list .special-favorite,
.card-featured--list figure {
  display: none;
}
.card-featured--list article {
  min-height: auto;
  height: 87px;
  padding: 10px 15px;
  box-shadow: initial;
}
.card-featured--list article h5 {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 35px;
  white-space: nowrap;
  height: 22px;
}
.card-featured--list article p {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 35px;
  white-space: nowrap;
  height: 22px;
}
.card-featured--list article .card-featured__subtitle {
  position: relative;
  bottom: initial;
  left: initial;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
}
.card-featured--list .card-featured__description {
  position: relative;
  bottom: initial;
  left: initial;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
}
.card-featured__title {
  font-size: 14px;
  line-height: 18px;
  font-family: 'Raleway', sanserif;
  font-weight: 700;
  color: #333333;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.card-featured article h5{
  font-size:14px;
  font-weight:700
}
.card-featured article p{
  font-size:12px;
}
.card-featured__description {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  padding-right: 15px;
  padding-bottom: 9px;
  padding-left: 15px;
  background:#fff;
}
.card-featured__description:hover {
  height: auto;
  z-index: 2;
  background: #fff;
  padding-right: 15px;
  /* padding: 0; */
}
.card-featured__ficha {
  font-size: 12px;
  line-height: 14px;
  color: #666;
  display: block;
  padding: 6px 0;
}
.card-featured__subtitle {
  width: calc(70%);
  overflow: hidden;
  margin: 0;
  padding-top: 5px;
  padding-bottom: 10px;
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333333;
  border-top: 1px solid #95989A;
}
.tooltip {
  position: absolute;
  top: -110%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
  width: auto;
  height: 0;
  padding: 0 10px 0 5px;
  background-color: #FFF;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  opacity: 0;
}
.tooltip::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.tooltip__text {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}
p.tooltip__text {
  color: #000;
  margin: 0;
}
.place-icon li:hover .tooltip {
  display: block;
  height: auto;
  opacity: 1;
}
.special-favorite {
  width: 20px;
  height: 20px;
  z-index: 2;
}
.items-carrousel-activities {
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 25px;
  padding-left: 15px;
}
.items-carrousel-activities.items-carrousel--reset {
  padding: 0;
  margin: 15px 0;
}
.items-carrousel-activities .fa-heart-o,
.items-carrousel-activities .fa-heart {
    display: none;
}
#carousel-popular-activities .prev_slick,
#carousel-popular-activities .next_slick {
  color: #ffb500;
  background-color: transparent;
}
.bloque h5 {
  font-weight: 600;
  color: #333 !important;
  font-size: 15px !important;
  margin: 0 0 5px !important;
}
.bloque p {
  border: none !important;
  margin: 0 0 0px !important;
  color: #333 !important;
  font-size: 13px !important;
  padding: 0 !important;
}
.bloque-1 {
  width: 87% !important;
  border-bottom: solid 1px #ccc !important;
  padding: 0 0 13px !important;
  margin: 0 0 5px;
}
.one-row .thumbs-carousel__list > li {
  margin-bottom: 0;
}
.thumbs-wrapp__container {
  padding: 40px 0 !important;
}
.dynamic-list .dynamic-list__empty {
  display: none;
  padding: 40px;
  text-align: center;
  border: 1px dashed #FFF;
}
.dynamic-list .dynamic-list__empty p {
  color: #FFF;
  margin-bottom: 30px;
}
.dynamic-list .dynamic-list__empty .dynamic-list__btn {
  display: inline-block;
}
.dynamic-list .dynamic-list__list .dynamic-list__item {
  padding: 20px;
}
.dynamic-list .dynamic-list__list .dynamic-list__item .card .card__content {
  height: 140px;
}
.dynamic-list .dynamic-list__list .dynamic-list__item .js-put-card {
  padding: 0 !important;
}
.dynamic-list .dynamic-list__cta {
  display: none;
  text-align: center;
}
.dynamic-list .dynamic-list__cta p {
  color: #FFF;
  margin-top: 40px;
}
.dynamic-list .dynamic-list__cta button {
  margin: 40px auto 0 auto;
}
.dynamic-list .dynamic-list--active {
  display: block;
}
/* ------------------------------------------------------------
    FIXED ICONS MODULE
------------------------------------------------------------ */
.fixed-icons-module {
  width: 80px;
  position: fixed;
  right: 0;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  display: block;
}
.fixed-icons-module a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  height: 100%;
  width: 100%;
}
.fixed-icons-module ul {
  width: 100%;
  padding: 0;
  list-style: none;
}
.fixed-icons-module ul li {
  width: 100%;
  height: 80px;
  padding: 10px;
  margin-left: 0;
  margin-bottom: 10px;
  text-align: center;
  line-height: 96px;
  background: #666666;
}
.fixed-icons-module ul li:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -mz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.fixed-icons-module ul li:last-child {
  margin-bottom: 0;
}
.fixed-icons-module ul li.fixed__color1 {
  background: #00a8b1;
  display: none;
}
.fixed-icons-module ul li.fixed__color2 {
  background: #ff0099;
  padding: 8px;
}
.fixed-icons-module ul li.fixed__color3 {
  background: #ff1722;
}
.fixed-icons-module ul li.fixed__color4 {
  background: #99cc33;
}
.fixed__color2 p {
  top: 19px;
  position: absolute;
  margin: 0;
  font-size: 13px;
  height: 54px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.fixed__color2 img {
  width: 78%;
}
/* ------------------------------------------------------------
    TOP CONTAINER
------------------------------------------------------------ */
.top-container.top__align-center {
  text-align: center;
}
.top-container.top__align-center .line {
  margin: 0 auto 30px auto;
}
.top-container .container {
  background: #ffffff;
  padding: 70px 5% 20px 5%;
}
.top-container .container h2 {
  font-size: 3.75rem;
}
.top-container .container h2,
.top-container .container p {
  margin-bottom: 20px;
}
.top-container__more {
  width: 100%;
  line-height: 80px;
}
.top-container__more a {
  float: right;
  text-decoration: underline;
}
.top-container__more a span {
  float: left;
  margin-right: 10px;
  text-decoration: underline;
}
.top-container__more a i {
  float: right;
}
.top-container__more a:hover span {
  text-decoration: none;
}
/* ------------------------------------------------------------
    SEARCH RESULTS CONTAINER
------------------------------------------------------------ */
.sr-container {
  padding-top: 120px;
}
.sr-container.sr__align-center h2 {
  text-align: center;
}
.sr-container.sr__align-center .line {
  margin: 0 auto 30px auto;
}
.sr-container .container {
  background: #ffffff;
  padding: 50px 5% 0 5%;
}
.sr-container .container h2 {
  font-size: 3.75rem;
}
.sr-container .container h2,
.sr-container .container p {
  margin-bottom: 20px;
}
.results-item {
  position: relative;
  margin: 50px;
  padding: 20px 50px;
  border-color: #f0f0f0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.results-item:last-of-type {
  margin-bottom: 0;
}
.results-item .image-container {
  width: 35%;
  height: 200px;
  float: left;
  z-index: 3;
  margin-left: -140px;
}
.results-item .image-container img {
  width: 100%;
}
.results-item .item-block {
  background-color: #ffffff;
  float: right;
  z-index: 2;
  width: 80%;
  padding: 0 20px;
}
.results-item .item-block .item-content {
  width: 100%;
}
.results-item .item-block .item-content p {
  color: #00a8b1;
}
.results-item .dc__go {
  bottom: 50px;
  background: #ffb500;
}
.results-item .dc__go:hover {
  color: #ffffff;
}
.section-tag {
  display: inline-block;
  margin-bottom: 15px;
  padding: 10px 15px;
  color: #FFF;
}
.section-tag p {
  margin: 0 !important;
  color: #FFF;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
}
.section-tag.color-2 {
  background-color: #00a8b1;
}
.section-tag.color-3 {
  background-color: #ff0099;
}
.item-content__title {
  width: 100%;
  margin-bottom: 30px;
  padding-top: 20px;
}
.item-content__title h4 {
  margin-bottom: 10px;
  color: #00a8b1;
}
.item-content__title h6 {
  margin-bottom: 0;
  color: #a8a8a8;
}
.item-content__data a {
  color: #4c4c4c;
}
.item-content__data p {
  margin-bottom: 0 !important;
}
.result-top {
  width: 100%;
}
.result-top .result__back {
  color: #00a8b1;
  display: block;
  width: 400px;
  padding: 0 50px;
}
.result-top .result__back i {
  float: left;
  width: 50px;
  height: 50px;
  border: 2px solid #00a8b1;
  border-radius: 50%;
  text-align: center;
  line-height: 47px;
  font-size: 30px;
  margin-right: 10px;
}
.result-top .result__back p {
  margin-bottom: 0;
  float: left;
  width: 80%;
  line-height: 50px;
}
.line {
  width: 120px;
  height: 2px;
  background: #393939;
}
.tab-menu {
  width: 100%;
  margin-bottom: 20px;
  display: inline-block;
  font-family: 'Raleway', sanserif;
}
.tab-menu ul {
  overflow: visible;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tab-menu ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 14.4%;
  float: initial;
  display: inline-block;
  height: 35px;
  vertical-align: top;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.tab-menu ul li.active a {
  color: #cc0066;
  border: 1px solid #cc0066;
}
.tab-menu ul li a {
  display: block;
  overflow: hidden;
  height: 35px;
  padding: 3px 5px;
  font-size: 12px;
  line-height: 30px;
  color: #666666;
  font-family: 'Raleway', sanserif;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: solid 1px #CCCCCC;
  background: #ffffff;
}
.tab-menu ul li a:hover,
.tab-menu ul li a.active {
  border: 1px solid #CC0066;
  color: #CC0064;
}
.tab-menu ul.accent--color10 a:active {
  color: #ff0099;
}
.tab-menu__flat {
  width: 100%;
  margin-top: 20px;
  display: inline-block;
  font-family: 'Raleway', sanserif;
}
.tab-menu__flat ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.tab-menu__flat ul li {
  float: left;
  width: 14.2%;
  border: 1px solid #f5f5f5;
  margin-left: 0;
  height: 50px;
  display: table;
}
.tab-menu__flat ul li a {
  color: #666666;
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px;
}
.tab-menu__flat ul li a:hover,
.tab-menu__flat ul li a.active {
  color: #00a8b1;
  background: #f5f5f5;
}
.tab-menu__mobile {
  width: 200px;
  background: #f5f5f5;
  margin: 0 auto 10px auto;
  position: relative;
  z-index: 5;
  display: none;
}
.tab-menu__mobile ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px dotted #393939;
  display: none;
  position: absolute;
  background: #f5f5f5;
  top: 46px;
  left: 0;
}
.tab-menu__mobile ul li {
  width: 100%;
  margin-left: 0;
  padding: 0 10px;
}
.tab-menu__mobile ul li a {
  color: #666666;
  padding: 10px 0;
  display: block;
  opacity: .7;
}
.tab-menu__mobile ul li a:hover,
.tab-menu__mobile ul li a.active {
  opacity: 1;
}
.tab-menu__open {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  color: #666666;
}
.tab-menu__open.active i:before {
  content: "\f106";
}
.tab-menu__open:hover {
  color: #00a8b1;
}
.tab-menu__open i {
  color: #00a8b1;
  margin-left: 10px;
}
/* ------------------------------------------------------------
    SIMPLE CONTENT
------------------------------------------------------------ */
.simple-content {
  width: 100%;
  background: #ffffff;
}
.simple-content .thumbs-wrapp__title {
  background: #393939;
  color: #ffffff;
}
.simple-content.simple__color1 .thumbs-wrapp__title {
  background: #ff0099;
  color: #ffffff;
}
.simple-content.simple__color2 {
  background: #ffb500 url(../images/pattern/Textura_orla_4_amarillo.png) center center repeat;
  background-size: 310px auto;
  color: #ffffff;
  font-family: 'Raleway', sanserif;
}
.simple-content.simple__color2 .thumbs-wrapp__title {
  background: #f58220;
  color: #ffffff;
}
.simple-content.simple__color2 .dc__go {
  background: #ac0080;
}
.simple-content.simple__color2 .btn.type2 {
  border-color: #ffffff;
  color: #ffffff;
}
.simple-content.simple__color2 .btn.type2:hover {
  color: #ffb500;
  background: #ffffff;
  border-color: #ffffff;
}
.simple-content.simple__color2 p.large--font {
  font-size: 1.25rem;
  text-align: center;
}
.simple-content.simple__color3 .thumbs-wrapp__title {
  background: #ac0080;
  color: #ffffff;
}
.simple-content.simple__color4 .thumbs-wrapp__title {
  background: #00778a;
  color: #ffffff;
}
.simple-content a {
  color: #666666;
  text-decoration: underline;
}
.simple-content a:hover {
  text-decoration: none;
}
.simple-content h5 {
  margin-bottom: 40px;
}
.simple-content h6 {
  font-family: 'Raleway', sanserif;
}
.simple-content p {
  margin-bottom: 20px;
}
.simple-content__wrapp {
  padding: 100px 10%;
}
.simple-content__column {
  width: 100%;
}
.simple-content__column div {
  float: left;
  width: 100%;
}
.simple-content__column p {
  text-align: justify;
}
.simple-content__column.column-x2 div {
  width: 46%;
  margin-right: 8%;
}
.simple-content__column.column-x2 div:last-child {
  margin-right: 0;
}
.simple-content__list {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.simple-content__list h6 {
  font-family: 'Raleway', sanserif;
  margin-bottom: 10px;
  line-height: 25px;
}
.simple-content__list p {
  margin-bottom: 10px;
}
.simple-content__list a {
  text-decoration: underline;
}
.simple-content__list a:hover {
  text-decoration: none;
}
.simple-content__list li {
  margin-left: 0;
  float: left;
  width: 46%;
  margin-right: 8%;
  margin-bottom: 40px;
}
.simple-content__list li:nth-child(2n+2) {
  margin-right: 0;
}
.video-slider {
  margin-bottom: 90px;
}
.video-slider #video-items .item {
  width: 100%;
  color: #FFF;
  padding-bottom: -10px;
  margin-bottom: 15px;
}
.video-slider #video-thumbnails .item {
  margin-left: -5px;
  width: 100%;
  height: 90px;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  opacity: 0.8;
}
.video-slider #video-thumbnails .item img {
  width: 100%;
  min-width: 140px;
  min-height: 100%;
  margin-left: -40px;
  margin-top: -15px;
}
.video-slider #video-thumbnails .item:hover {
  opacity: 1;
}
.video-slider #video-thumbnails .synced .item {
  border: 3px solid #ff0099;
  opacity: 1;
}
.video-slider iframe {
  min-height: 400px;
  width: 100%;
}
/*.video-interiores {
    margin-top: 40px;
    margin-bottom: 40px;
    iframe {
        min-height: 500px;
    }
}*/
/* ------------------------------------------------------------
    ROW CONTENT
------------------------------------------------------------ */
.row-content {
  background: #f5f5f5 url(../images/pattern/Textura_flor_6_gray.png) center center repeat;
}
.row-content.row__color1 {
  background: #ac0080 url(../images/pattern/Textura_orla_3_morado.png) center center repeat;
  color: #ffffff;
}
.row-content.row__color1 a {
  color: #f58220;
}
.row-content.row__color2 {
  background: #f50c8c url(../images/pattern/Textura_orla_3_rosa.png) center center repeat;
  color: #ffffff;
}
.row-content.row__color2 a {
  color: #ffffff;
}
.row-content.row__color3 {
  background: #00a8b1 url(../images/pattern/Textura_orla_6_aqua.png) center center repeat;
  color: #ffffff;
}
.row-content.row__color3 a {
  color: #ffffff;
}
/* ------------------------------------------------------------
    SOCIAL FEED
------------------------------------------------------------ */
.social-feed__network {
  display: block;
  overflow: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.social-feed__network .social-feed__list {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
}
.social-feed__network .social-feed__list .social-feed__item {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  padding: 15px !important;
}
.social-feed__network.social-feed--active {
  height: auto;
  opacity: 1;
}
.social-feed__text {
  word-wrap: break-word;
}
.container-social-tab-more {
  width: 100%;
  height: 136px;
  /* outline: 1px solid red; */
  text-align: center;
  margin-top: -136px;
  position: absolute;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.67) 24%, #ffffff 36%, #ffffff 53%, #ffffff 99%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.67) 24%, #ffffff 36%, #ffffff 53%, #ffffff 99%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.67) 24%, #ffffff 36%, #ffffff 53%, #ffffff 99%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=0);
}
.buttom-social-tab-more {
  width: 200px;
  height: 50px;
  margin: 0 auto;
  outline: 4px solid #ae1c67;
  cursor: pointer;
  position: absolute;
  left: 45%;
  top: 45%;
}
.text-social-tab-more {
  display: block;
  vertical-align: middle;
  line-height: 2.5em;
  color: #ae1c67;
  font-weight: bold;
  font-size: 20px;
}
.feature-social {
  display: block;
}
.feature-social .feature-social__media {
  display: block;
  width: 100%;
  max-width: calc( 100% - 40px );
  min-height: 20px;
  height: auto;
  margin: 0 auto;
}
.feature-social .feature-social__media img {
  display: block;
  width: 100%;
  height: auto;
}
.feature-social .feature-social__content {
  display: block;
  padding: 20px;
  margin-top: -20px;
  background-color: #FFF;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}
.feature-social .feature-social__content .feature-social__meta {
  display: block;
  width: 100%;
  padding: 20px 0 10px 0;
}
.feature-social .feature-social__content .feature-social__meta .feature-social__icon {
  float: left;
  font-size: 18px;
  line-height: 18px;
}
.feature-social .feature-social__content .feature-social__meta .feature-social__icon.fa-facebook {
  color: #306dd1;
}
.feature-social .feature-social__content .feature-social__meta .feature-social__icon.fa-twitter {
  color: #30a2d1;
}
.feature-social .feature-social__content .feature-social__meta .feature-social__icon.fa-instagram {
  color: #306dd1;
}
.feature-social .feature-social__content .feature-social__meta .feature-social__icon.fa-youtube {
  color: #ff0019;
}
.feature-social .feature-social__content .feature-social__meta .feature-social__icon.fa-pinterest {
  color: #d60018;
}
.feature-social .feature-social__content .feature-social__meta .feature-social__icon.fa-google-plus {
  color: #db4437;
}
.feature-social .feature-social__content .feature-social__meta .feature-social__icon.fa-tripadvisor {
  color: #589441;
}
.feature-social .feature-social__content .feature-social__meta .feature-social__time {
  float: right;
  font-size: 18px;
  line-height: 18px;
}
.feature-social .feature-social__content .social-feed__text .social-feed__title {
  font-family: 'Raleway', sanserif;
  font-size: 17px;
  color: #99cc33;
}
.feature-social .feature-social__content .social-feed__text .social-feed__excerpt {
  font-family: 'Raleway', sanserif;
  font-size: 16px;
  line-height: 23px;
  color: #7f7f7f;
}
/* ------------------------------------------------------------
    DESTINOS
------------------------------------------------------------ */
/*
.ug-strip-panel {
  bottom: 70px !important;
  top: auto !important;
}
*/

.anchor-hide {
  padding:10px;
  position: absolute;
	top: -70px;
}

.region-content__top {
  padding-top: 95px;
}
.carousel-main {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 500px;
  height: 80vh;
}
.carousel-main .slick-dots {
  position: absolute;
  bottom: 40px;
  z-index: 2;
  display: block;
  width: 100%;
  list-style-type: none;
  text-align: center;
}
.carousel-main .slick-dots li {
  display: inline-block;
  width: 15px;
  height: 15px;
}
.carousel-main .slick-dots li button {
  padding: 0;
}
.carousel-main .slick-dots button {
  display: block;
  overflow: hidden;
  width: 15px;
  height: 15px;
  border: 1px solid #95989A;
  border-radius: 50%;
  background-color: transparent;
  color: transparent;
  text-indent: -99999px;
}
.carousel-main .slick-dots .slick-active button {
  background-color: #DBDBDB;
}
.carousel-main .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
}
.carousel-main .fa-angle-right {
  right: 20px;
}
.carousel-main .fa-angle-left {
  left: 20px;
}
.carousel-main__item {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100vw;
  min-height: 500px;
  height: 80vh;
}
.carousel-main__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.carousel-main__item .item-credits{
  top:100px !important;
  right:4% !important;
}
.reset-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.reset-list li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.left {
  float: left;
}
.right {
  float: right;
}
.destinos {
  background: #EBEBEB;
}
.destinos-1 {
  clear: both;
  overflow: hidden;
  /*margin-top: -45px;*/
  position: relative;
}
.destinos-1 .container {
  background: #fff;
  position: relative;
  clear: both;
  padding: 20px 60px 70px;
}
.head-1 {
  position: relative;
  z-index: 1;
  clear: both;
  overflow: visible;
  margin: 0;
  width: 100%;
}
.head-1 .destinos__back a:hover {
  color: #00a8b1;
}
.head-1 .image-1 {
  float: right;
  margin: 0;
  padding: 0;
  top: 0;
  width: 50%;
}
.head-1 .image-1 svg {
  width: 100%;
  height: 100px;
}
.head-1 .title-1 {
  width: 100%;
  padding: 0;
  overflow: visible;
  padding-bottom: 60px;
}
.head-1 .title-1 h2 {
  margin: 0px 0 21px;
  font-size: 58px;
  line-height: 60px;
  font-weight: 700;
}
.head-1 .title-1 h3 {
  font-size: 35px;
  color: #404040;
  font-family: 'Raleway', sanserif;
  margin: 0 0 30px;
  line-height: 38px;
}
.head-1 .title-1 h3 a:hover {
  text-decoration: underline !important;
  color: #00a8b1 !important;
}
.head-1 .title-1 h3:after {
  display: block;
  content: '';
  width: 80px;
  height: 2px;
  background: #B3B3B3;
  margin-top: 10px;
  left: 0;
}
.head-1 .title-1__headliners {
  position: relative;
  width: 50%;
  display: inline-block;
}
.head-1 .title-1__headliners h2 {
  font-size: 45px !important;
  color: #666666 !important;
  margin-bottom: 0;
}
.head-1 .title-1.full {
  width: 100%;
  float: none;
}
.head-1 .title-1.full .brd {
  margin: 0 auto;
}
.mexico-map polyline {
  stroke: #ffffff;
  fill: #878787;
}
.mexico-map polyline.active {
  fill: #ff0099;
}
.brd {
  background: #666666;
  height: 3px;
  width: 120px;
  display: block;
}
.slider-weather {
  float: left;
  width: 50%;
  padding: 0 20px;
  border-right: 1px solid #d4d4d4;
}
.temperatura {
  position: relative;
  top: 20px;
  padding-top: 40px;
  width: 50%;
  max-width: 640px;
  height: auto;
  display: inline-block;
  float: right;
  background-color: #ffffff;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2), 0 1px 20px 0 rgba(0, 0, 0, 0.1);
  overflow: visible;
}
.temperatura span {
  font-size: 40px;
  color: #666666;
  font-family: 'Raleway', sanserif;
  font-weight: 200;
  float: right;
  display: block;
}
.temperatura figure {
  width: 59px;
  float: left;
  margin: 0;
}
.temperatura h6 {
  text-align: center;
  text-transform: uppercase;
  color: #666666;
  width: 100%;
}
.temperatura .color__temperatura {
  position: absolute;
  width: 80%;
  margin: 0;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.temperatura .color__temperatura h5 {
  text-align: center;
  background-color: #99CC33;
  text-transform: uppercase;
  color: #fff;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  margin: 0;
}
.temperatura .weather__content {
  position: relative;
  width: 100%;
}
.temperatura .weather__content h5 {
  font-size: 42px;
  color: #666666;
  font-weight: 600;
  line-height: 42px;
  display: inline-block;
  margin: 0;
}
.temperatura .weather__content p {
  display: inline-block;
  top: 0;
  width: auto;
  color: #B3B3B3;
  font-size: 14px;
  line-height: 15px;
}
.temperatura .weather__content span {
  color: #B3B3B3;
  font-size: 14px;
  line-height: 15px;
  display: block;
  text-align: left;
}
.temperatura .weather__item {
  display: inline-block;
  float: left;
  width: 50%;
  text-align: center;
}
.temperatura .fa-angle-left {
  position: absolute;
  width: 25px;
  height: 25px;
  left: 20px;
  cursor: pointer;
  z-index: 2;
}
.temperatura .fa-angle-right {
  position: absolute;
  top: 0;
  float: right;
  right: 20px;
  cursor: pointer;
  z-index: 2;
}
.menu-1 {
  z-index: 10 !important;
  clear: both;
  width: 100%;
  margin: 0;
}
.menu-1 ul {
  overflow: visible;
  margin: 0;
  padding: 0;
  text-align: center;
}
.menu-1 ul li {
  list-style: none;
  padding: 0;
  margin: 0 -3px;
  width: 20%;
  float: initial;
  display: inline-block;
  height: 35px;
}
.menu-1 ul li a {
  display: block;
  padding: 3px 5px;
  font-size: 13px;
  color: #666666;
  font-family: 'Raleway', sanserif;
  text-align: center;
  border: solid 1px #CCCCCC;
  background: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-1 ul li a:hover {
  background: #ebebeb;
  color: #939393;
}
.menu-1 ul li a.active {
  background: #666666;
  color: #ffffff;
}
.menu-1.active {
    position: fixed;
    top: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100vw - 100px);
}
.two-cols {
  overflow: hidden;
}
.two-cols .text-1 {
  /*width: 47%;*/
  margin-bottom: 0 !important;
}
.logo-pueblos-magicos {
  display: block;
  width: 100%;
  max-width: 100px;
  height: auto;
  margin: 0 auto;
}
.text-1 {
  font-size: 16px !important;
  color: #333333 !important;
  margin: 0 0 30px !important;
  line-height: 23px;
}
.text-1 p {
  font-size: 18px;
  color: #333333;
  font-family: 'Raleway', sanserif;
  margin: 0 0 30px;
}
.text-1 h4 {
  font-size: 35px;
  color: #333333;
  font-family: 'Raleway', sanserif;
  margin: 0 auto;
  font-weight: 100;
  margin: 0 0 30px;
  color: #4D4D4D;
}
.field-item.even div {
    font-family: sans-serif;
}
.image-mapa-2 {
  position: relative;
  width: 46%;
  max-width: 46%;
  margin-left: 50px;
  margin-bottom: 30px;
}
.image-mapa-2 > img {
  display: block;
}
.image-mapa-2 figure {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.image-mapa-2 figure img {
  line-height: 0px !important;
}
.image-mapa-2 figure.b {
  width: 100%;
  height: auto;
  line-height: 0;
}
.image-mapa-2 figure.s {
  width: 50%;
  height: auto;
  float: left;
}
.image-mapa-2.right {
  width: 420px;
  max-width: 46%;
}
.image-mapa-2 .item-credits p {
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 12px !important;
  color: #FFF !important;
}
.frase-1 {
  width: 67%;
  margin: 0 auto;
  display: block;
}
.frase-1 h6 {
  color: #4D4D4D;
  font-family: 'Raleway', sanserif;
  line-height: 33px;
  text-align: center;
  font-size: 21px;
}
.calendar-1 {
  width: 295px;
  float: right;
  clear: both;
  margin: 50px 0 50px 0;
  position: relative;
  z-index: 1;
}
.btn-calendar {
  width: 209px;
  float: left;
  border: solid 2px #fff;
  padding: 13px 0;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Raleway', sanserif;
  cursor: pointer;
}
.turismo .btn-calendar:hover {
  background: #fff;
  color: #ac0080;
}
.romance .btn-calendar:hover {
  background: #fff;
  color: #ff0099;
}
.reuniones .btn-calendar:hover {
  background: #fff;
  color: #99cc33;
}
.icon-calendar {
  width: 60px;
  float: right;
}
.contenido-simple {
  background: #fff;
  /*padding: 40px 0 0;*/
}
.contenido-simple h3 {
  background: #fff;
  padding: 80px 0;
  font-size: 35px;
  color: #333333;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Raleway', sanserif;
  margin: 0 0 40px;
  line-height: 49px;
}
.contenido-simple.bottom--90 {
  padding-bottom: 90px;
}
.contenido-simple .thumbs-wrapp__title {
  background: #cc0066;
  color: #ffffff;
}
.contactos {
  padding-top: 45px;
  padding-bottom: 80px !important;
}
.contactos h5 {
  margin-top: 40px;
}
.contactos h5,
.contactos h6 {
  margin-bottom: 10px;
}
.contactos a {
  color: #4c4c4c;
  text-decoration: none;
}
.contactos a:hover {
  color: #00a8b1;
}
.linea-separacion ul {
  overflow: hidden;
  height: 9px;
}
.linea-separacion ul li {
  height: 100%;
  float: left;
}
.linea-separacion ul li.rojo {
  width: 60%;
  background: #FF1722;
}
.linea-separacion ul li.rojo.w20 {
  width: 20% !important;
}
.linea-separacion ul li.turquesa {
  width: 20%;
  background: #00A8B1;
}
.linea-separacion ul li.amarillo {
  width: 20%;
  background: #FFB500;
}
.linea-separacion ul li.amarillo.w60 {
  width: 60% !important;
}
.linea-separacion ul li.gris {
  background-color: #656565;
}
.linea-separacion ul li.gris.w20 {
  width: 20% !important;
}
.linea-separacion ul li.gris.w60 {
  width: 60% !important;
}
.content-1 {
  overflow: visible;
  margin: 0 0 0;
  padding: 45px 0 0;
  clear: both;
  display: inline-block;
}
.galery-1__contenido__back {
  padding: 40px;
}
.galery-1__contenido__back .item {
  width: 95%;
  margin: 0 auto;
  background-image: url("../images/destinos/sombra-modal.png");
  background-size: 94%;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: relative;
  padding: 0 0 70px;
  overflow: hidden;
  min-height: 630px;
}
.galery-1__contenido__back.turismo {
  background: #F5A700;
}
.galery-1__contenido__back.romance {
  background: #ac0080;
}
.galery-1__contenido__back.reuniones {
  background: #99cc33;
}
.galery-1__contenido {
  margin: 30px auto;
  overflow: visible;
  max-width: 1270px;
}
.galery-1__contenido .owl-item {
  padding: 0px;
  position: relative;
}
.galery-1__contenido .owl-prev {
  color: #fff;
  font-size: 103px;
  position: absolute;
  top: 38%;
  width: 40px;
  height: 83px;
  background: url(../images/icon/anterior.png) no-repeat left top;
  left: -20px;
}
.galery-1__contenido .owl-prev i {
  text-indent: -9999px;
}
.galery-1__contenido .owl-next {
  color: #fff;
  font-size: 103px;
  position: absolute;
  top: 38%;
  width: 40px;
  height: 83px;
  background: url(../images/icon/siguiente.png) no-repeat left top;
  right: -20px;
  background-size: contain;
}
.galery-1__contenido .owl-next i {
  text-indent: -9999px;
}
.galery-1__contenido .owl-nav {
  color: #fff;
}
.galery-1__contenido .owl-dots .owl-dot {
  border: 1px solid #fff;
}
.galery-1__contenido .owl-dots .owl-dot.active {
  background: #fff;
}
.galery-1__contenido .owl-controls .owl-dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
}
.galery-1__contenido .owl-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
}
.texto_2 {
  width: 95%;
  float: right;
  padding: 45px 9% 40px 38%;
  background: #fff;
  min-height: 551px;
}
.texto_2 h4 {
  font-size: 46px;
  color: #333333;
  font-family: 'Raleway', sanserif;
  line-height: 48px;
}
.texto_2 h4 span {
  font-size: 18px;
  color: #666666;
  font-family: 'Raleway', sanserif;
  display: block;
}
.texto_2 p {
  font-size: 18px;
  color: #666666;
  font-family: 'Raleway', sanserif;
  margin: 0 0 30px;
}
.image_2 {
  width: 38%;
  float: left;
  position: absolute;
  z-index: 1;
  top: 50px;
}
.image_2 img {
  width: 100%;
  float: left;
}
.title-1__headliners .brd {
  margin: 0 auto 30px;
}
.icon-media ul {
  width: 70px;
  padding: 0;
  /* overflow: hidden; */
}
.icon-media ul li {
  /*clear: both;
            width: 100%;*/
  margin-right: 14px;
  display: inline;
  font-size: 20px;
  margin-left: 0;
  color: #666666;
}
.icon-media ul li a {
  width: 100%;
  color: #666;
  height: 32px;
}
.icon-media ul li a i {
  font-size: 20px;
  color: #666;
}
.reset-lista li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.thumbs-wrapp.thumbs-color3 {
  clear: both;
  position: relative;
  /*.owl-nav {
        color: #666666;
    }
    .owl-dots {
        .owl-dot {
            border: 1px solid #666666;
        }
        .owl-dot.active {
            background: #666666;
        }
    }*/
}
.thumbs-wrapp.thumbs-color3 .thumbs-carousel {
  padding: 90px 0 79px;
}
.thumbs-wrapp.thumbs-color3 .thumbs-wrapp__title {
  color: #ffffff;
}
.thumbs-wrapp.thumbs-color3 .owl-controls .owl-dots {
  position: absolute;
  bottom: 33px;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
}
.mapa-container {
  width: 80% !important;
  margin: 0 auto;
  position: relative;
}
.mapa-acotacion {
  box-shadow: 0 0 4px #ccc;
  padding: 60px 20px 20px;
  margin: -30px 0 0;
}
.mapa-acotacion h4 {
  color: #4D4D4D;
  font-size: 35px;
}
.mapa-acotacion p {
  color: #666;
}
.mapa-acotacion .info-controles {
  width: 56px;
  position: absolute;
  bottom: 100px;
  z-index: 1;
  background: #fff;
  right: 90px;
}
.mapa-acotacion .info-controles ul li a {
  width: 80%;
  height: 100%;
  text-align: center;
  display: block;
  padding: 10px 0;
  margin: 0 auto;
  border-top: solid 1px #f1f1f1;
}
.mapa-acotacion .info-controles ul li a i {
  font-size: 23px;
  color: #666;
  text-align: center;
}
.mapa-acotacion .info-controles ul li:hover {
  background: #CC0066;
}
.mapa-acotacion .info-controles ul li:hover i {
  color: #fff;
}
.mapa-acotacion .info-controles ul li.marker-google i {
  color: #fff;
}
.marker-google.turismo {
  background: #CC0066;
}
.marker-google.romance {
  background: #FF1722;
}
.marker-google.reuniones {
  background: #99cc33;
}
.sign {
  clear: both;
}
.sign p {
  clear: both;
  font-size: 18px;
  color: #333333;
  font-family: 'Raleway', sanserif;
}
.align-right {
  text-align: right;
}
.txt-graph {
  width: 90%;
  margin: 0 auto;
  border-top: solid 2px #ccc;
  border-bottom: solid 2px #ccc;
  overflow: hidden;
  padding: 20px 0;
}
.txt-graph .text3 {
  width: 50%;
  float: left;
  padding: 0 40px;
  border-right: solid 2px #f1f1f1;
}
.txt-graph .text3 h3 {
  font-size: 18px;
}
.txt-graph .graph {
  width: 50%;
  float: right;
  padding: 0 40px;
}
.btn-back {
  margin: 0 0 50px 0;
  clear: both;
  display: none;
}
.btn-back a {
  color: #666;
}
.btn-back i {
  font-size: 25px;
  width: 30px;
  height: 30px;
  border: solid 2px #333;
  border-radius: 20px;
  text-align: center;
  margin: 0 10px 0 0;
}
.mobile-show .calendar-1 {
  margin: 30px auto 72px;
  float: none;
  clear: both;
  overflow: hidden;
}
.l_1 {
  width: 60%;
}
.l_2 {
  width: 20%;
}
.l_3 {
  width: 20%;
}
.linea-separacion.turismo .l_1 {
  background: #FF1722;
}
.linea-separacion.turismo .l_2 {
  background: #00A8B1;
}
.linea-separacion.turismo .l_3 {
  background: #FFB500;
}
.linea-separacion.romance .l_1 {
  background: #FF1722;
}
.linea-separacion.romance .l_2 {
  background: #ac0080;
}
.linea-separacion.romance .l_3 {
  background: #ff0099;
}
.linea-separacion.reuniones .l_1 {
  background: #00A8B1;
}
.linea-separacion.reuniones .l_2 {
  background: #99cc33;
}
.linea-separacion.reuniones .l_3 {
  background: #666;
}
.trip-advisor {
  background: #f5f5f5;
  padding: 40px 0 60px;
  overflow: hidden;
  clear: both;
}
.trip-advisor .container {
  overflow: hidden;
  position: relative;
}
.logo-trip {
  width: 400px;
  float: left;
}
.share-trip {
  float: right;
  width: 260px;
}
.add-favorites {
  font-weight: 600;
  margin: 80px 0 0;
}
.add-favorites p {
  color: #666;
  font-weight: 800;
  font-size: 17px;
  font-family: 'Raleway', sanserif;
}
.traslado-section {
  width: 100%;
  height: auto;
  padding-bottom: 70px;
  padding-top: 20px;
}
.traslado__nav {
  float: right;
  width: 30%;
  text-transform: uppercase;
}
.traslado__nav ul {
  width: 100%;
  list-style: none;
  padding-left: 0;
}
.traslado__nav ul li {
  width: 100%;
  margin-left: 0;
  border: 1px solid #D0E9FA;
}
.traslado__nav ul li a {
  display: block;
  width: 100%;
  background: #fff;
  color: #00A8B1;
  padding: 20px 60px;
}
.traslado__nav ul li a i {
  float: left;
  width: 40px;
  height: 40px;
}
.traslado__nav ul li a i.icon--travel-nac {
  background: url(../images/icon/travel-nac.svg) center center no-repeat;
  background-size: 100%;
}
.traslado__nav ul li a span {
  float: left;
  width: 60%;
  margin-left: 15%;
}
.traslado__map {
  float: left;
  width: 70%;
  height: 410px;
  position: relative;
}
body.active {
  overflow-y: hidden;
}
.booking {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.booking .input-combo {
  width: 100%;
}
.booking .input-combo label {
  display: block;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
}
.booking .input-combo input {
  width: 100%;
  height: 35px;
  color: #666666;
  background-color: #EDEDED;
  border-radius: 3px;
  border: none;
}
.booking .input-combo .ui-autocomplete {
  position: absolute;
  overflow-y: auto;
  max-width: 400px !important;
  max-height: 240px;
  background-color: #ffffff !important;
  width: 100vw !important;
  top: initial !important;
  bottom: 100% !important;
  left: 0 !important;
  margin: 0;
  list-style-type: none;
}
.booking .select-combo {
  display: block;
  width: 100%;
  height: auto;
  background-color: transparent;
}
.booking .select-combo label {
  display: block;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
}
.booking .select-combo__field {
  position: relative;
  display: block;
  overflow: hidden;
  height: 35px;
  width: 100%;
  /*background-color: #EDEDED;*/
  border-radius: 3px;
}
.booking .select-combo__field i {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  pointer-events: none;
}
.booking .select-combo__field select {
  display: block;
  width: calc(120%);
  height: 35px;
  border: 0;
}
.booking .btn-submit {
  width: 100%;
}
.booking__tabs {
  background-color: #ff0099;
}
.booking__tabs__item {
  float: left;
  display: block;
  width: 14.285714285714286%;
  color: #ffffff;
}
.booking__tabs__item h4 {
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
}
.booking__tabs__item b {
  font-weight: 700;
}
.booking__tabs__item p {
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
}
.booking__tabs__item .btn-book {
  width: 100%;
  height: 45px;
}
.booking__tabs__item .btn-book h3 {
  margin: 0;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
}
.booking__contact {
  padding: 5px 0;
}
.booking__contact h4 {
  font-size: 18px;
  line-height: 18px;
}
.booking__contact i {
  display: none;
}
.booking__forms {
  background-color: white;
}
.booking__forms form {
  margin: 0;
  padding: 0;
}
.booking__form {
  display: none;
  width: 100%;
  height: auto;
  padding: 20px 0;
}
.booking__form.active {
  display: block;
}
.booking__col {
  padding-right: 10px;
  padding-left: 10px;
}
.booking__col:last-of-type {
  padding-top: 18px;
}
.js-fa__close {
    display: none;
}
#ui-id-4 {
  background: #f5f5f5;
  border: none;
  box-shadow: 1px 0px 3px #ccc;
  z-index: 999!important;
  padding: 0!important;
}
.field-type-text-with-summary {
  text-align: justify;
}
.thumbs-carousel__list .slick-dots {
  position: relative;
  width: 100%;
  text-align: center;
  bottom: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.thumbs-carousel__list .slick-dots li {
  height: 10px;
  width: auto;
  display: inline-block;
  list-style: none;
  margin-right: 5px !important;
  margin-left: 5px !important;
}
.thumbs-carousel__list .slick-dots li.slick-active button {
  background: #ffffff;
}
.thumbs-carousel__list .slick-dots li button {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  text-indent: -999999px;
  padding: 0 !important;
}
.item-col {
  width: 100%;
}
.destinos__back {
  width: 100%;
  padding: 10px 0;
  font-weight: bold;
}
.destinos__back a i {
  margin-right: 10px;
}
.gastronomia .container {
  padding: 0;
}
.gastronomia .carousel-image__item {
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0 !important;
}
.gastronomia .slick-arrow {
  font-size: 40px;
  color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.gastronomia .slick-arrow.fa-angle-left {
  position: absolute;
  left: 20px;
  cursor: pointer;
  width: 25px;
  z-index: 2;
  height: 25px;
}
.gastronomia .slick-arrow.fa-angle-right {
  position: absolute;
  float: right;
  right: 20px;
  cursor: pointer;
  z-index: 2;
}
.gastronomia .slick-dots {
  position: absolute;
  bottom: 40px;
  z-index: 2;
  display: block;
  width: 100%;
  list-style-type: none;
  text-align: center;
  top: initial;
  bottom: 10px;
  height: 20px;
  padding: 0;
}
.gastronomia .slick-dots li {
  width: 15px;
  height: 15px;
  margin-left: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}
.gastronomia .slick-dots li button {
  padding: 0;
}
.gastronomia .slick-dots .slick-active button {
  background-color: #ffffff;
}
.gastronomia .slick-dots button {
  border: 1px solid #fff;
  width: 10px;
  height: 10px;
  display: block;
  overflow: hidden;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: transparent;
  color: transparent;
  text-indent: -99999px;
}
.gastronomy-container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.gastronomy-container br {
  content: "";
  display: block;
  margin-bottom: 10px;
}
.carousel-image {
  display: block;
  /* max-width: 370px; */
  height: auto;
  margin-bottom: 30px;
  padding: 0;
  padding-right: 15px;
  /* margin-left: 40px; */
}
/* ------------------------------------------------------------
    ACTIVIDADES
------------------------------------------------------------ */
.title-1.full .title-1__headliners {
  width: 100%;
}
.head-1 .title-1.full {
  width: 100%;
  float: none;
  padding: 0;
}
/* ------------------------------------------------------------
    ERROR 404
------------------------------------------------------------ */
#error404Wrapper {
  background: url(../images/pattern/Textura_sol_2_rosa.png) #f9008b;
}
section.wrapper-error-page {
  padding: 150px 0;
}
figure.img-error-page.container {
  padding: 0;
  width: 85%;
}
figure.img-error-page img {
  display: block;
}
.error-message-page.container {
  margin-top: -50px;
  padding-top: 60px;
  padding-bottom: 50px;
}
/* ------------------------------------------------------------
    CONTENT SLIDER
------------------------------------------------------------ */
.content-slider .owl-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content-slider .owl-controls .owl-nav {
  position: absolute;
  width: 100%;
  font-size: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.content-slider .owl-controls .owl-nav .owl-prev,
.content-slider .owl-controls .owl-nav .owl-next {
  position: absolute;
  color: #ffffff;
  z-index: 4;
}
.content-slider .owl-controls .owl-nav .owl-prev {
  left: 5%;
}
.content-slider .owl-controls .owl-nav .owl-next {
  right: 5%;
}
.content-slider article {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
  z-index: 3;
  color: #ffffff;
  padding: 0 15%;
}
.content-slider,
.content-slider .item,
.content-slider .owl-item,
.content-slider .back-module {
  height: 500px;
}
/* ------------------------------------------------------------
    PLANEA TU VIAJE - RUTA
------------------------------------------------------------ */
.container-fixed {
  width: calc( 100vw - 110px );
  margin: 0 auto;
}
.fake-menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
}
.map-container {
  position: relative;
  z-index: 0;
  overflow: visible;
  min-height: initial;
  height: 100vh;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.map-container .map-sidebar,
.map-container .map-header {
  position: relative;
}
.map-container .map-header {
  z-index: 1;
}
.map-container .map-sidebar {
  z-index: 2;
}
.map-container .map {
  position: absolute;
  top: 0;
  left: -55px;
  z-index: 0;
  overflow: hidden;
  width: 100vw;
  height: 100%;
}
.input-combo .input-combo__input {
  border: none;
}
.input-combo.input-combo__reset input::-webkit-inner-spin-button,
.input-combo.input-combo__reset input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.map-search {
  display: block;
  height: 45px;
}
.map-search .input-combo {
  height: 100%;
}
.map-search .input-combo .input-combo__icon {
  right: auto;
  left: 20px;
  color: #656565;
}
.map-search .input-combo .input-combo__input {
  height: 100%;
  padding-left: 60px;
  color: #b2b2b2;
  background: #ffffff;
}
.map-filter {
  position: relative;
  display: block;
  height: auto;
  background-color: #f2f2f2;
}
.map-filter .map-filter__default i {
  float: left;
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-right: 1px solid #656565;
  color: #656565;
  cursor: pointer;
}
.map-filter .map-filter__default i:hover {
    background-color: rgba(0,0,0,.1);
}
.map-filter .map-filter__default span {
  float: left;
  display: block;
  padding: 0 20px;
  vertical-align: middle;
  line-height: 45px;
  text-align: center;
  color: #656565;
}
.map-filter .map-filter__filter {
  position: relative;
  display: none;
  width: 100%;
  height: auto;
  background-color: #e3e3e3;
  padding: 10px 0;
}
.map-filter .map-filter__filter > input {
    display: none;
}
.map-filter .map-filter__filter.map-filter--active {
  display: block;
}
.map-filter .map-filter__filter .select-combo {
  float: left;
  width: calc(100% - 6.666666666666666%);
  margin: 0 3.333333333333333%;
}
.map-filter .map-filter__filter .select-combo:first-of-type {
    margin-right: 1.666666666666667%;
}
.map-filter .map-filter__filter .select-combo:last-of-type {
    margin-left: 1.666666666666667%;
}
.map-filter__checkbox {
    float: left;
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 3.333333333333333% 5px 3.333333333333333%;
}
.filter-checkbox,
.filter-checkbox label {
    vertical-align: top;
}
.filter-checkbox  {
    position: relative;
    display: inline-block;
    min-width: 35px;
    width: 15.666666666666667%;
    height: 40px;
    padding: 5px 8px;
    vertical-align: middle;
    background-color: rgba(0,0,0,.05);
}
.filter-checkbox input[type="checkbox"] {
    display: inline-block;
    -webkit-appearance: checkbox;
    appearance: checkbox;
}
.filter-checkbox label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 25px;
}
.filter-checkbox input[type="checkbox"]:checked {
    background-color: rgba(0,0,0,.1);
}
.filter-checkbox label i,
.filter-checkbox label span {
    display: block;
}
.filter-checkbox label i {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
}
.map-category {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: calc(110%);
  height: 45px;
  margin: 0 -10px 20px -10px;
  padding: 0 20px;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 45px;
  vertical-align: top;
  color: #00a8b1;
  background-color: #ebebeb;
}
.element--hide {
  overflow: hidden;
  height: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.always-show {
  display: block !important;
}
.map-sidebar {
  position: relative;
  float: left;
  display: block;
  width: 100%;
  max-width: 420px;
  height: calc( 100% - 72px);
}
.map-sidebar .map-sidebar__header .map-sidebar__btn {
  display: block;
  width: 100%;
  height: 45px;
  text-align: left;
  color: #656565;
  background-color: #f5f5f5;
}
.map-sidebar .map-sidebar__header .map-sidebar__title {
  display: block;
  width: 100%;
  height: 45px;
  margin: 0;
  padding: 15px 30px;
  font-family: 'Raleway', sanserif;
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #FFF;
  background-color: #7c0e6c;
}
.map-sidebar .map-sidebar__body {
  height: calc( 100% - 90px );
  background-color: #CCC;
}
.map-sidebar .map-sidebar__body .map-sidebar__list {
  overflow-y: auto;
  height: 100%;
  max-height: 100%;
  padding: 0 15px 40px 10px;
  margin: 0;
  -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);
}
.map-sidebar .map-sidebar__body .map-sidebar__list .map-sidebar__item {
  padding: 5px 0;
}
.map-sidebar .map-sidebar__body .map-sidebar__list .map-sidebar__item.ui-sortable-helper {
  border: 0;
  outline: 0;
  box-shadow: 0 0 0 transparent;
}
.map-sidebar .map-sidebar__body .map-sidebar__list .map-sidebar__item.ui-sortable-helper .card .card__content {
  box-shadow: -25px 25px 40px rgba(0, 0, 0, 0.15);
}
.card {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.card .card__media {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 100%;
  max-width: 120px;
  height: 110px;
}
.card .card__media .special-favorite {
  position: absolute;
  top: 5px;
  left: 5px;
}
.card .card__content {
  min-height: 120px;
  display: block;
  float: right;
  width: 100%;
  max-width: calc( 100% - 75px);
  padding-top: 10px;
  padding-right: 45px;
  padding-bottom: 10px;
  padding-left: 60px;
  background-color: #FFF;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.card .card__content .card__text .card__title {
  margin: 0;
  font-family: 'Raleway', sanserif;
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #4c4c4c;
}
.card .card__content .card__text .card__address {
  font-size: 0.75rem;
  color: #656565;
}
.card .card__content .card__cta {
  position: relative;
  margin-top: 10px;
}
.card .card__content .card__cta .card__list {
  padding-top: 5px;
  border-top: 1px solid #656565;
}
.card .card__content .card__cta .card__btn {
  position: absolute;
  top: 0;
  right: -45px;
}
.map-header {
  float: left;
  display: block;
  width: 100%;
  max-width: calc( 100% - 420px );
  padding: 50px;
  text-align: center;
  background-color: #FFF;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
}
.map-header .map-header__title,
.map-header .map-header__text {
  max-width: 720px;
  margin: 0 auto;
}
.map-header .map-header__title {
  margin-bottom: 10px;
  font-family: 'Raleway', sanserif;
  font-size: 50px;
  line-height: 54px;
  text-align: center;
  color: #323232;
}
.map-header .map-header__title.underline::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 55px;
  height: 2px;
  margin: 0 auto;
  background-color: #656565;
}
.map-header .map-header__text {
  font-size: 1.125rem;
  text-align: center;
  color: #323232;
}
.map-header .map-header__link {
  display: inline-block;
  margin-top: 30px;
}
.map-header.map-header--gradient {
  background: linear-gradient(#ffffff 60%, rgba(255, 255, 255, 0));
  box-shadow: 0 0 0 transparent;
  padding-bottom: 80px;
}
/* ------------------------------------------------------------
    PLANEA TU VIAJE - FAVORITOS
------------------------------------------------------------ */
.custom-form {
  display: block;
  width: 100%;
  max-width: 380px;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  padding: 20px 40px;
  background-color: #ac0080;
}
.map-zones {
  position: absolute;
  bottom: 40px;
  left: 540px;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 225px;
  height: auto;
  background-color: transparent;
}
.map-zones .map-zones__list .map-zones__item {
  display: block;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  color: #656565;
  background-color: #ededed;
  cursor: pointer;
}
.map-zones .map-zones__list .map-zones__item:hover,
.map-zones .map-zones__list .map-zones__item:active,
.map-zones .map-zones__list .map-zones__item.map-zones--active {
  color: #00a8b1;
  background-color: #FFF;
}
/* ------------------------------------------------------------
    PLANEA VIAJE RUTA
------------------------------------------------------------ */
.planea-viaje-ruta {
  background: #fff;
  padding: 20px;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.tablas-drop {
  margin: 0px 0 50px;
  overflow: hidden;
}
.tablas-drop .tabla-propiedades {
  width: 48%;
}
.tabla-propiedades table {
  margin: 0 0 0px;
  border: none;
  width: 100%;
}
.tabla-propiedades th {
  padding: 6px 10px;
  text-align: left;
  border: none;
  font-size: 13px;
  font-family: 'Raleway', sanserif;
}
.tabla-propiedades tr {
  cursor: move;
}
.tabla-propiedades td {
  padding: 21px 10px;
  font-size: 13px;
  border: 0;
  color: #4D4D4D;
  vertical-align: top;
}
.tabla-propiedades .tabla-contenido {
  margin: 0 0 20px;
}
.tabla-propiedades i {
  color: #999;
  font-size: 22px;
}
.tabla-morada .fila-morada-1 th {
  color: #fff;
  background: #7C0E6C;
  border-bottom: solid 1px #fff;
}
.tabla-morada .fila-morada-2 th {
  color: #fff;
  background: rgba(124, 14, 108, 0.5);
  font-family: 'Raleway', sanserif;
}
.tabla-morada tr:nth-child(even) {
  background: rgba(124, 14, 108, 0.15);
}
.tabla-morada tr:nth-child(odd) {
  background: rgba(124, 14, 108, 0.1);
}
.tabla-roja .fila-roja-1 th {
  color: #fff;
  background: #FF1722;
  border-bottom: solid 1px #fff;
}
.tabla-roja .fila-roja-2 th {
  color: #fff;
  background: rgba(255, 23, 34, 0.5);
  font-family: 'Raleway', sanserif;
}
.tabla-roja tr:nth-child(even) {
  background: rgba(255, 23, 34, 0.15);
}
.tabla-roja tr:nth-child(odd) {
  background: rgba(255, 23, 34, 0.1);
}
.tabla-azul .fila-azul-1 th {
  color: #fff;
  background: #00a8b1;
  border-bottom: solid 1px #fff;
}
.tabla-azul .fila-azul-2 th {
  color: #fff;
  background: rgba(0, 168, 177, 0.5);
  font-family: 'Raleway', sanserif;
}
.tabla-azul tr:nth-child(even) {
  background: rgba(0, 168, 177, 0.15);
}
.tabla-azul tr:nth-child(odd) {
  background: rgba(0, 168, 177, 0.1);
}
.tabla-actividades .tabla-contenido {
  max-height: 346px;
  overflow: auto;
}
.tabla-recorrido .tabla-contenido {
  max-height: 277px;
  overflow: auto;
}
.btn-container input {
  border: solid 2px #fff;
  padding: 16px 0 13px;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Raleway', sanserif;
  cursor: pointer;
  background: #fff;
  width: 100%;
}
.btn-container a {
  border: solid 2px #fff;
  padding: 16px 0 13px;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Raleway', sanserif;
  cursor: pointer;
  background: #fff;
  width: 100%;
}
.nota-recorridos-guardar {
  overflow: hidden;
}
.nota-recorridos-guardar .btn-container {
  width: 150px;
  display: block;
  float: right;
}
.nota-recorridos-guardar span {
  color: #999;
  font-size: 13px;
  text-decoration: underline;
  float: left;
  margin: 5px 0 0 15px;
}
.nota-recorridos-guardar ul {
  float: left;
  overflow: hidden;
}
.nota-recorridos-guardar ul li a {
  overflow: hidden;
}
.nota-recorridos-guardar i {
  display: block;
  float: left;
}
.gray-icon i {
  color: #999;
  font-size: 20px;
}
.gray-icon i:hover {
  opacity: .5;
}
.email-print {
  width: 120px;
}
.email-print ul {
  overflow: hidden;
}
.email-print li {
  float: left;
  width: 50%;
}
.email-print li a {
  display: block;
  width: 100%;
  height: 30px;
}
.email-print li a i {
  width: 100%;
  height: 100%;
  display: block;
}
.envelope-icon {
  background: url("../images/icon/envelope.png") no-repeat left;
}
.printer-icon {
  background: url("../images/icon/printer.png") no-repeat left;
}
.exclamation-icon {
  background: url("../images/icon/aviso.png") no-repeat left;
  width: 30px;
  height: 30px;
  display: block;
}
.pdf-iconbtn {
  background: url("../images/icon/pdfdoc.png") no-repeat left;
  width: 30px;
  height: 30px;
  display: block;
}
.ui-sortable-helper {
  box-shadow: 0 0 1px #E2D2E0;
}
.thumbs-carousel__list.carousel__3xb h5 {
  font-family: 'Raleway', sanserif;
  width: 80%;
  margin: 0 0 20px !important;
}
.set-right {
  width: 60px !important;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.thumbs-carousel__list.carousel__3xb h5 {
  font-family: 'Raleway', sanserif;
  width: 80%;
  margin: 0 0 20px !important;
}
.thumbs-carousel-activities {
  width: 100%;
  height: auto;
  padding: 45px 5% 0 5%;
  position: relative;
  float: left;
}
.thumbs-carousel-activities .prev_slick {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 35px;
  height: 35px;
  font-size: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  color: #FFF;
  left: 0;
  margin-left: -60px;
}
.thumbs-carousel-activities .next_slick {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 35px;
  height: 35px;
  font-size: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  color: #FFF;
  right: 0;
  margin-right: -60px;
}
.set-right {
  width: 71px !important;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.graphic-icon.ver,
.graphic-icon.borrar {
  width: 25px;
  height: 25px;
  display: block;
  text-align: center;
}
.graphic-icon.ver {
  background: url("../images/icon/ver.png") no-repeat center;
}
.graphic-icon.borrar {
  background: url("../images/icon/borrar.png") no-repeat center;
}
.btn-play-fake {
  width: 100%;
  height: 100%;
  display: block;
}
/* ------------------------------------------------------------
    SIZE MODULE
------------------------------------------------------------ */
.size-module {
  width: 100%;
  padding-top: 50px;
  text-align: left;
}
.size-module form {
  width: 100%;
}
.size-module h4 {
  font-size: 1.125rem;
}
.size-module .size__aside {
  float: left;
  width: 50%;
  padding-right: 50px;
  min-height: 250px;
  border-right: 2px solid #f0f0f0;
}
.size-module .size__aside + .size__aside {
  border-right: 0;
  padding-right: 0;
  padding-left: 50px;
  margin-bottom: 30px;
}
.size-module .size__row {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
}
.size-module .size__row label {
  font-family: 'Raleway', sanserif;
  margin-bottom: 10px;
  display: block;
  width: 100%;
}
.size-module .size__row input {
  background: #f5f5f5;
}
.size-module .size__row p {
  margin-bottom: 0;
}
.size-module .size__row .special-check label {
  background: #f5f5f5;
  border: 0;
}
.size-module .size__row .special-check input:checked + label {
  background: #00a8b1;
}
.size-module .size__row.size__float label {
  float: left;
  width: 50%;
}
.size-module .size__row.sr__x2 section {
  float: left;
  margin-right: 10%;
  width: 40%;
}
.size-module .size__row.sr__x2 section:last-child {
  margin-right: 0;
}
.size-module .size__row.sr__x1 section {
  width: 60%;
}
.size-module .size__row.sr__x1 section input {
  width: 100%;
}
.size-module .size__row .range-slider {
  float: left;
}
.size-module .size__row-large {
  width: 100%;
}
.size-module .size__row-large .btn {
  float: right;
  width: 150px;
  text-transform: uppercase;
  font-size: 14px;
}
.size__list {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.size__list li {
  width: 46%;
  float: left;
  margin-bottom: 10px;
  margin-left: 0;
}
.size__list li .special-check {
  float: left;
  margin-right: 10px;
}
.size__list li p {
  width: 70%;
  margin-bottom: 0;
}
.size__radio-btn {
  float: right;
  width: 40%;
}
.size__radio-btn section {
  width: 50%;
  float: left;
}
.size__radio-btn section .special-radio,
.size__radio-btn section p {
  float: left;
}
.size__radio-btn section .special-radio {
  margin-right: 10px;
}
.range-slider {
  position: relative;
  width: 100%;
  padding: 40px 20% 0 20%;
}
.range-slider input {
  opacity: 0;
}
/* ------------------------------------------------------------
    LIGHTBOX
------------------------------------------------------------ */
.lightbox {
  position: fixed;
  left: -100%;
  top: 0;
  opacity: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  bottom: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.6);
}
.lightbox .lightbox__container {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 10%;
  height: 80%;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  border: 20px solid #ffb500;
}
.lightbox .lightbox__container p {
  margin-bottom: 20px;
}
.lightbox .lightbox__container article {
  width: 100%;
  padding: 30px;
}
.lightbox .lightbox__container .btn {
  position: absolute;
  top: 370px;
  right: -2px;
  display: block;
  width: 140px;
  padding: 10px 0;
  text-align: center;
  z-index: 10;
}
.lightbox .lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
}
.lightbox .lightbox__close img {
  width: 100%;
  height: 100%;
}
.lightbox.active {
  left: 0;
  opacity: 1;
}
.lightbox.lightbox--menu {
  background-color: #FFF;
}
.message {
  padding: 20px;
}
.message .message__header {
  padding: 20px 0;
  text-align: center;
}
.message .message__header .message__title,
.message .message__header .message__subtitle {
  margin: 0;
  color: #656565;
}
.message .message__header .message__subtitle {
  font-size: 16px;
  font-weight: normal;
}
.message .message__body {
  text-align: center;
}
.message .message__body .message__text {
  color: #656565;
}
.message .message__body .message__text.big {
  padding: 20px 0;
}
.message .message__cta {
  text-align: center;
}
.lightbox__carousel ,
.owl-item {
  height: auto;
}
.lightbox__carousel  .owl-nav,
.owl-item .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.lightbox__carousel  .owl-nav .owl-next,
.owl-item .owl-nav .owl-next,
.lightbox__carousel  .owl-nav .owl-prev,
.owl-item .owl-nav .owl-prev {
  position: absolute;
  font-size: 50px;
  margin-top: -20px;
}
.lightbox__carousel  .owl-nav .owl-next i,
.owl-item .owl-nav .owl-next i,
.lightbox__carousel  .owl-nav .owl-prev i,
.owl-item .owl-nav .owl-prev i {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.lightbox__carousel  .owl-nav .owl-next,
.owl-item .owl-nav .owl-next {
  right: 15px;
}
.lightbox__carousel  .owl-nav .owl-prev,
.owl-item .owl-nav .owl-prev {
  left: 15px;
}
.result__image,
.result__image .owl-item {
  height: 400px;
}
.lightbox__result-image {
  width: 100%;
}
/* ------------------------------------------------------------
    CALENDARIO
------------------------------------------------------------ */
.contenido-tipo2 {
  height: 269px !important;
  overflow: hidden;
}
.contenido-tipo2 .bloque-1 {
  width: 95% !important;
}
.contenido-tipo2 .bloque-1 h6 {
  font-size: 15px;
  margin: 0 0 8px;
}
.contenido-tipo2 .bloque-1 h5 {
  position: relative;
  height: 44px;
}
.contenido-tipo2 .bloque-1 h5 span.absolute-item {
  position: absolute;
  bottom: 0;
}
.contenido-tipo2.verde .bloque-1 h6 {
  color: #99cc33;
}
.contenido-tipo2.azul .bloque-1 h6 {
  color: #00A8B1;
}
.contenido-tipo2.amarillo .bloque-1 h6 {
  color: #ffb500;
}
.industria {
  padding: 30px 0 100px;
}
.industria .check-row li {
  margin: 0 50px 0 0;
}
.check-row {
  clear: both;
  margin: 70px 0 0;
}
.check-row ul {
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  width: auto;
  min-height: 18px;
}
.check-row li {
  float: left;
  padding: 0;
  list-style: none;
}
.check-row li:last-child {
  margin: 0;
}
.checkbox span {
  text-align: right;
}
.site-content {
  padding-top: 67px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.home-section {
  padding-bottom: 4rem;
}
.home-section .home-content {
  margin-top: -16%;
}
.home-section .search {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 4rem;
  width: 100%;
  padding: 4rem 0;
  background-color: rgba(255, 255, 255, 0.9);
}
.home-section .search .states {
  display: block;
}
.home-section .search .states:hover {
  border: 1px solid #ffb500;
}
.home-section .search .cities:hover {
  border: 1px solid #ffb500;
}
.home-section .search input[type=submit]:last-child {
  width: 25%;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.home-section .search h2 {
  color: #4a4a4a;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 3rem;
  line-height: 1.5;
}
.home-section .rand-categories {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.home-section .home-content select {
  width: 16.6666%;
}
.nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
input[type=text],
select,
textarea {
  padding: .8rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: none;
}
.search input[type=text] {
  /*width: 25%;*/
  border-radius: 0;
}
.search input[type=text]:hover {
  outline: 0;
  border-color: #ffb500;
}
.search input[type=text]:hover {
  outline: 0;
  border-color: #ffb500;
}
.search input[type=submit] {
  border-radius: 0;
}
.home-section-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #4a4a4a;
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: inline;
}
input[type=submit] {
  width: auto;
  display: inline-block;
  background-color: #ff0099;
  color: #ffffff;
  border: 0;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.banner {
  width: 100%;
  padding-top: 30%;
  background-color: #e0e0e0;
  position: relative;
  overflow: hidden;
  z-index: -1;
}
.banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.category-card {
  position: relative;
  width: 100%;
  padding-top: 50%;
  display: block;
  border-radius: 7px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 1rem;
}
.category-card h3 {
  width: 100%;
  margin: 0;
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.category-card .category-card-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #581545;
  opacity: .6;
}
.category-card.cat-1 {
  background-image: url(../images/cine-arte.png);
}
.see-more-btn .btn {
  margin-top: 2rem;
  padding: .2rem 2rem;
}
.see-more-btn .btn:hover {
  color: #ffffff;
  background-color: #ff0099;
}
.section--white-blue .thumbs-wrapp__title {
  background-color: #00a8b1;
}
.section--white-blue .thumbs-wrapp__title h4 {
  color: #ffffff;
}
.calendar-module {
  display: block;
  padding-top: 45px;
  padding-bottom: 45px;
  columns: 2;
  column-gap: 40px;
}
.calendar-module__item {
  padding: 30px 15px;
  -webkit-column-break-inside: avoid;
  break-inside: avoid-column;
}
.card-calendar {
  position: relative;
  background-color: white;
  display: block;
  width: 100%;
  height: 140px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  -webkit-backface-visibility: hidden;
  -moz-webkit-backface-visibility: hidden;
  -ms-webkit-backface-visibility: hidden;
  -o-webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.card-calendar__month {
  position: absolute;
  top: -20px;
  left: 30px;
  display: block;
  width: 160px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #ffffff;
  background-color: #ffad0a;
}
.card-calendar__month h3 {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}
.card-calendar__day {
  float: left;
  display: block;
  width: 30%;
  height: 100%;
  text-align: center;
  border-right: 1px solid #CCC;
}
.card-calendar__day h2 {
  display: block;
  font-size: 62px;
  line-height: 140px;
  text-align: center;
}
.card-calendar__description {
  position: relative;
  display: block;
  width: 70%;
  height: 140px;
  padding: 25px;
  float: left;
}
.card-calendar__description p {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: block;
  padding-right: 25px;
  padding-left: 25px;
}
.item {
  margin-right: 10px;
}
.event-card {
  width: 100%;
  position: relative;
  display: block;
}
.event-card .event-card-info {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  color: #fff;
  width: 100%;
  padding: 1rem;
}
.event-card .event-card-info h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: .5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.event-card .event-card-info h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
  line-height: 1.1;
}
.most-popular {
  position: relative;
  width: 100%;
  height: auto;
  display: inline-block;
}
.most-popular .col-md-12 {
  padding: 0;
}
.js-carousel__calendar {
  position: relative;
  height: auto;
  width: 100%;
  display: inline-block;
}
.js-carousel__calendar .slick-arrow {
  position: absolute;
  font-size: 40px;
  z-index: 1;
  cursor: pointer;
  color: #00a8b1;
  padding: .5rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.js-carousel__calendar .slick-arrow.arrow-item__left {
  left: -1rem;
}
.js-carousel__calendar .slick-arrow.arrow-item__left.slick-disabled {
  color: #808080;
}
.js-carousel__calendar .slick-arrow.arrow-item__right {
  right: -1rem;
}
.js-carousel__calendar .slick-arrow.arrow-item__right.slick-disabled {
  color: #808080;
}
/* ------------------------------------------------------------
    COTIZACIONES
------------------------------------------------------------ */
.cotizaciones .container {
  background: #fff;
  overflow: hidden;
  padding: 200px 4% 130px 4%;
}
.head-link {
  clear: both;
  margin: 30px;
  overflow: hidden;
}
.head-link ul {
  width: 370px;
  display: block;
  margin: 0 auto;
  padding: 0;
}
.head-link ul li {
  width: 50%;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}
.head-link ul li a {
  width: 100%;
  padding: 10px 0 8px;
  text-align: center;
  display: block;
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  font-family: 'Raleway', sanserif;
  border: solid 1px #CCCCCC;
  font-weight: 600;
}
.head-link ul li a:hover {
  background: #666;
  border: solid 1px #666;
  color: #fff;
}
.head-link ul li a.active {
  background: #666;
  border: solid 1px #666;
  color: #fff;
}
.solicitud-anexar {
  padding: 0 0 0px;
  position: relative;
  bottom: 0;
  overflow: hidden;
}
.solicitud-anexar .brd {
  clear: both;
  margin: 0 auto;
  position: relative;
  margin: 40px auto 0;
}
.solicitud-anexar .text-2 {
  width: 63%;
}
.contenido-simple2 {
  margin: 0 0 40px;
}
.contenido-simple2 h3 {
  font-size: 25px;
  color: #333333;
  font-family: 'Raleway', sanserif;
  margin: 0 0 30px;
}
.contenido-simple2 p {
  font-size: 16px;
  font-family: 'Raleway', sanserif;
  color: #333333;
}
.contenido-simple2::-webkit-input-placeholder {
  color: inherit;
  opacity: 0;
}
.anexar-doc {
  width: 33%;
}
.anexar-doc .thumbs-wrapp__bottom {
  width: 47%;
  float: right;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.anexar-doc .thumbs-wrapp__bottom a {
  float: none;
  margin: 0;
  width: 100%;
}
.form-width-3.right {
  margin: 0 !important;
}
.file-input {
  overflow: hidden;
}
.plus {
  background: url("../images/icon/circulodemas.png") no-repeat left top;
  width: 30px;
  height: 30px;
  display: block;
  float: left;
  margin: 5px 20px 0 0;
  cursor: pointer;
}
.field-tipo-rfp {
  width: 303px;
}
.form-row {
  overflow: hidden;
  clear: both;
  margin: 0 0 21px;
}
.form-row .input-text-simple.field-tipo-rfp label {
  width: 100px;
}
.form-row .input-text-simple.field-fecha-decision {
  margin: 0;
}
.form-row .input-text-simple.field-fecha-limite {
  margin: 0;
}
.form-row .field-fecha-al label {
  width: auto !important;
}
.form-row .input-text-simple.field-fecha-al2 {
  margin: 0;
  width: 227px;
}
.form-row .input-text-simple.field-fecha-al2 label {
  width: 79px;
}
.form-width-4 {
  width: 327px;
}
.form-width-4 input {
  width: 140px;
}
.js-datepicker {
  background-image: url("../images/icon/calendario2.png") !important;
  background-repeat: no-repeat !important;
  background-position: 98% center !important;
}
.form-width-1 {
  width: 687px;
}
.form-width-1 label {
  float: left;
  margin: 20px 0 0;
}
.form-width-1 textarea {
  width: 516px;
  float: right;
}
.info-tooltip {
  background: url("../images/icon/circulo.png") no-repeat left top;
  width: 34px;
  height: 34px;
  display: block;
  float: left;
  margin: 5px 10px 0 10px;
  cursor: pointer;
}
.info-tooltip-container {
  position: relative;
  float: left;
}
.info-tooltip-detalle {
  background: #f5f5f5;
  width: 305px;
  height: auto;
  position: absolute;
  padding: 14px;
  display: none;
  box-shadow: 1px 0px 3px #ccc;
  z-index: 1;
}
.info-tooltip-detalle p {
  font-size: 14px;
  color: #666666;
  font-family: 'Raleway', sanserif;
}
.form-width-3 {
  width: 515px;
}
.form-width-3 input {
  width: 339px;
}
.form-width-3 textarea {
  width: 339px;
}
.field-concesion {
  width: 390px;
  overflow: hidden;
}
.field-concesion label {
  float: left;
  margin: 0 0px 0 0;
}
.field-concesion .conjunto-radios {
  float: right;
  width: 200px;
}
.field-concesion .conjunto-radios.horizontal li {
  float: left;
  width: 50%;
}
.conjunto-radios.horizontal li {
  float: left;
}
.field-unknown {
  width: 649px;
}
.field-unknown textarea {
  width: 100%;
}
.form-width-5 {
  width: 420px;
}
.form-width-5 input {
  width: 250px;
}
.combo-fechas {
  width: 511px;
}
.combo-fechas .input-text-simple.field-fecha-del {
  margin: 0;
}
.combo-fechas .input-text-simple.field-fecha-al {
  margin: 0;
}
.field-fecha-del {
  width: 312px;
}
.field-fecha-al {
  width: 168px;
}
.doble-fila {
  width: 511px;
}
.doble-fila .combo-fechas {
  margin: 0 0 20px;
}
.field-fecha-flexible {
  width: 267px;
}
.field-fecha-flexible label {
  float: left;
  margin: 0 10px 0 0;
}
.field-fecha-flexible .conjunto-radios {
  float: right;
  width: 96px;
}
.field-fecha-flexible .conjunto-radios li {
  width: 50%;
}
.contenedor-acordeones {
  margin: 0 0 20px;
  overflow: hidden;
  width: 100%;
}
.acordeon-encabezado {
  display: block;
  overflow: hidden;
  background-color: #00A8B1;
  padding: 9px 27px;
  cursor: pointer;
}
.acordeon-encabezado span {
  float: left;
  font-size: 18px;
  font-family: 'Raleway', sanserif;
  color: #FFFFFF;
}
.acordeon-encabezado i {
  font-size: 30px;
  display: block;
  float: right;
  color: #fff;
}
.acordeon-contenido {
  margin: 30px 0;
  display: none;
  overflow: hidden;
}
.field-fecha3 {
  width: 210px;
}
.field-fecha3 label {
  width: auto !important;
}
.especificar-numero {
  width: 830px;
}
.especificar-numero .seleccionar-cantidad {
  margin: 0 14px 0 0;
}
.especificar-numero .seleccionar-cantidad:last-child {
  margin: 0;
}
.especificar-numero > label {
  float: left;
  margin: 10px 35px 0 0;
  display: block;
}
.form-width-6 {
  width: 150px;
  width: 136px;
  margin: 0 20px 0 0;
}
.form-width-6 label {
  width: auto !important;
}
.form-width-6 input {
  width: 50px;
}
.noches-habitacion {
  margin: 20px 0 0;
}
.duplicar-agregar {
  overflow: hidden;
  width: 342px;
  float: right;
  margin: 20px 0 0;
}
.duplicar-agregar .btn-action {
  overflow: hidden;
  float: left;
  display: block;
  margin: 0 40px 0 0;
}
.duplicar-agregar .btn-agregar {
  margin: 0;
}
.btn-action i {
  width: 34px;
  height: 34px;
  display: block;
  float: left;
  margin: 0 10px 0 0;
  background: url("../images/icon/circulodemas.png") no-repeat left top;
}
.btn-action span {
  float: left;
  color: #00A8B1;
  text-decoration: underline;
  display: block;
  margin: 4px 0 0;
}
.requerimento-salajuntas {
  padding: 50px 0 0;
  border-top: #666666 1px solid;
}
.requerimento-salajuntas .form-width-2 {
  margin: 0 60px 0 0;
}
.field-preguntas {
  width: 765px;
}
.field-preguntas textarea {
  width: 100%;
}
.factores-popUp {
  height: 74px;
  overflow: initial;
}
.al-right {
  text-align: right;
}
.contenedor-btn-enviar {
  width: 765px;
  overflow: hidden;
}
.btn-enviar {
  float: right;
  width: 201px;
}
.acordeon-encabezado2 {
  overflow: hidden;
  clear: both;
}
.acordeon-encabezado2 i {
  color: #00A8B1;
  font-size: 30px;
  float: right;
  display: none;
}
.acordeon-encabezado2 h3 {
  float: left;
  width: 90%;
}
.acordeon-encabezado2 + .acordeon-contenido {
  margin: 0;
  display: block;
}
.encabezado-text-2 {
  display: none;
}
.acordeon {
  margin: 0 0 1px;
}
.upper {
  text-transform: uppercase;
}
.block {
  display: block;
}
.pointer {
  cursor: pointer;
}
/* SOCIAL NETWORKS */
.social-networks {
  display: block;
  padding: 40px 0;
  background-color: #fff;
}
.social-networks__header {
  display: block;
  padding: 30px 20px;
  text-align: center;
}
.social-networks__header i {
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  vertical-align: middle;
}
.social-networks__header p {
  display: inline-block;
  margin-left: 5px;
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
}
.social-networks__header i.fa-facebook,
.social-networks__header i.fa-facebook + p {
  color: #306dd1;
}
.social-networks__header i.fa-twitter,
.social-networks__header i.fa-twitter + p {
  color: #30a2d1;
}
.social-networks__header i.fa-instagram,
.social-networks__header i.fa-instagram + p {
  color: #306dd1;
}
.social-networks__item {
  padding-bottom: 20px;
}
.social-networks__actions {
  display: block;
  text-align: center;
}
.social-networks__feed::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
}
.btn-social-link {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  color: white;
  background-color: #ff0099;
}
.btn-social-link i {
  font-size: 16px;
  margin-left: 3px;
}
.social-networks__actions .btn-social-link:hover {
  color: #fff;
}
.grid-item--width2 .dynamic__content {
  bottom: 60px;
}
.section--white-blue .thumbs-wrapp__title {
  background-color: #00a8b1;
}

.css-hpmlk2 iframe {
    min-height: 600px;
    height: 90vh;
}
.typeform-share {
    background: #72386d !important;
    display: block;
    padding: 10px;
    color: #fff !important;
    margin: 10px 0;
    font-size: 12px !important;
    text-align: center;
    position: fixed;
    top: 74%;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 0;
    z-index: 100;
}
.typeform-share img {
    width: 37px;
    margin-bottom: 7px;
}
/* ------------------------------------------------------------
    INSPIRATION MODULE
------------------------------------------------------------ */
.head-inspiration {
  max-width: 822px;
  width: 90%;
  display: block;
  margin: 0 auto 50px;
}
.head-inspiration h5 {
  font-family: 'Raleway', sanserif;
  line-height: 1.4;
}
.main-content-inspiration {
  margin-bottom: 0 !important;
  border-bottom: 2px dotted #b5b5b5;
  padding-bottom: 50px;
  border: 0 !important;
}
.search-module--small {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  padding: 15px;
  background-color: #AC0080;
}
.search-module--small div {
  width: 100%;
  height: auto;
}
.search-module--small div form {
  width: 100%;
  height: auto;
}
.search-module--small div input {
  float: left;
  width: calc(60%);
  height: 35px;
  color: #333;
  padding-left: 40px;
}
.search-module--small div button {
  float: left;
  width: 30%;
  height: 33px;
  margin-left: 10px;
  padding: 0;
  font-size: 14px;
  line-height: 33px;
  background: transparent !important;
  border: 1px solid #FFF;
}
.search-module--small .icon-for-input {
  position: absolute;
  display: block;
  width: 35px;
  height: 33px;
  background-color: #EBEBEB;
}
.search-module--small .icon-for-input i {
  margin: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.form-ruta-home .search-module--small {
  max-width: 660px !important;
}

/* ------------------------------------------------------------
    FIXES
------------------------------------------------------------ */

/* Fixed icons */
.fixed-icons-module ul li.fixed__color2+li.fixed__color2 {
  background: #72386d;
}
.fixed__color2 .typeform-share {
  position: relative;
  top: 0;
  padding: 0;
  margin: 0;
}
.fixed__color2 .typeform-share:hover {

}
.typeform-share  p {
  top: 11px;
}
.social-networks__feed,
.social-networks__actions {
  display: none;
}

/* Toggle search */
.js-toggle-search.hide {
  display: inline-block !important;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  opacity: 0;
}

/* DDM 2017 fix */
.ddm-logo {
  width: 6%;
  float: left;
  padding-right: 1%;
  margin-top: 15px;
  margin-right: 1%;
  display: block;
}
.ddm-logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.header.hide-top .ddm-logo{
  width: 4%;
  margin-top: 10px;
  margin-right: 2.8%;
}
.header.hide-top  .menu-main .menu-main__list .menu-main__item {
  height: 48px;
}
.header.hide-top  .menu-tools__item .menu-main__link{
  margin-top: 0 !important;
}

/* Booking */
.booking .btn-submit {
  padding: 0;
}
.booking__col .select-combo {
  overflow: visible;
}

/* Search */
.menu-tools__item .input-combo button {
  position: absolute;
  width: 30px;
  height: 30px;
  background: none;
  top: 2px;
  right: 3px;
}
.menu-tools__item .input-combo input {
  padding: 6px 10px;
  width: 100%;
  background: #fff;
  height: 34px;
}

/* Fixes para ruso */
:lang(ru) .menu-main .menu-main__list .menu-main__item .menu-main__link,
:lang(ru) .menu-main .menu-main__list .menu-main__item .menu-main__link:link,
:lang(ru) .menu-main .menu-main__list .menu-main__item .menu-main__link:visited {
  word-break: break-word;
}
:lang(ru) .footer .footer__list .footer__item a {
  word-break: break-word;
}
:lang(ru) .top-container .container {
  padding: 120px 5% 20px 5%;
}
:lang(ru) .thumbs-wrapp__description p,
:lang(ru) .text-1 p,
:lang(ru) .text-1 span,
:lang(ru) .text-1 p span,
:lang(ru) .region-footer .reset-list,
:lang(ru) .region-footer .reset-list h3,
:lang(ru) .top-container div span,
.gr__visitmexico_com .thumbs-wrapp__description p,
.gr__visitmexico_com .text-1 p,
.gr__visitmexico_com .text-1 p span,
.gr__visitmexico_com .region-footer .reset-list,
.gr__visitmexico_com .top-container div span {
    font-family: sans-serif !important;
    font-size: 16px !important;
}

/* Fixes para chino */
:lang(zh-hans) .menu-main .menu-main__list .menu-main__item {
    width: 14%;
}
:lang(zh-hans) .menu-tools .menu-tools__list .menu-tools__item {
    width: 45%;
}

/* Paginator */
.paginator-style {
  width: 100%;
  margin-top: 50px;
}
.paginator-style ul {
  width: 100%;
  list-style: none;
  text-align: center;
}
.paginator-style ul li {
  display: inline-block;
  margin: 0 10px;
}
.paginator-nextbutton:after {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f105";
  margin-left: 10px;
}
.paginator-item[rel="last"]:after {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f101";
  margin-left: 10px;
}
.paginator-item[rel="prev"]:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f104";
  margin-right: 10px;
}
.paginator-item[rel="first"]:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f100";
  margin-right: 10px;
}

/* Carousel main */
.carousel-main .slick-dots {
  display: none;
}

/* New encuesta */
.css-hpmlk2 iframe {
  background: #fff;
}


/* ::::::::::::::::::::::::::

    RESPONSIVE

::::::::::::::::::::::::::::: */

  /* ------------------------------------------------------------
    LARGE DEVICES
------------------------------------------------------------ */
@media (min-width:1300px) {
  .ddm-logo {
      width: 70px;
  }
  .header.hide-top .ddm-logo{
      width: 53px;
      margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .booking__forms .container{
    max-width: 100%;
  }
  :lang(ru) .menu-main .menu-main__list .menu-main__item .menu-main__link,
  :lang(ru) .menu-main .menu-main__list .menu-main__item .menu-main__link:link,
  :lang(ru) .menu-main .menu-main__list .menu-main__item .menu-main__link:visited {
    font-size: 11px;
  }

  .temperatura .weather__content h5 {
      font-size: 30px;
  }
  .menu-main .menu-main__list .menu-main__item .menu-main__link,
  .menu-main .menu-main__list .menu-main__item .menu-main__link:link,
  .menu-main .menu-main__list .menu-main__item .menu-main__link:visited {
    font-size: 12px;
  }
}


(max-width: 1200px) .submenu__column {
  width: 100%;
}
(max-width: 1200px) .sidebar-tabs {
  width: 20%;
}
(max-width: 1200px) .sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:link,
(max-width: 1200px) .sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs .sidebar-tabs__list .sidebar-tabs__item .sidebar-tabs__link:link {
  font-size: 13px;
}
(max-width: 1200px) .submenu-sidebar {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  width: 38.333%;
}
(max-width: 1200px) .dynamic-images .grid-item {
  /* 2 columns */
}
(max-width: 1200px) .dynamic-images .grid-item h3 {
  font-size: 16px;
  line-height: 22px;
}
(max-width: 1200px) .dynamic-images .grid-item .place-icon {
  width: 70%;
}
(max-width: 1200px) .dynamic-images .grid-item .place-icon li {
  margin-right: 0;
  width: 33%;
  width: auto !important;
}
(max-width: 1200px) .dynamic-images .grid-item .place-icon li:nth-child(4),
(max-width: 1200px) .dynamic-images .grid-item .place-icon li:nth-child(5) {
  margin-bottom: 0;
}
(max-width: 1200px) .dynamic-images .grid-item.grid-item--width2 .place-icon {
  width: 100%;
}
(max-width: 1200px) .dynamic-images .grid-item.grid-item--width2 .place-icon li {
  margin-right: 5px;
  width: auto;
  margin-bottom: 0;
}
(max-width: 1200px) .thumbs-carousel.fix-control .owl-controls .owl-dots {
  bottom: 50px;
}
(max-width: 1200px) .thumbs-carousel__list li .place-icon {
  width: 92%;
}
(max-width: 1200px) .thumbs-carousel,
(max-width: 1200px).fix-control {
  padding-left: 0;
  padding-right: 0;
}
(max-width: 1200px) .thumbs__row {
  padding: 90px 0 140px 0;
}
(max-width: 1200px) .thumbs__large figure {
  height: 587px;
}
(max-width: 1200px) .texto_2 {
  width: 95%;
  float: right;
  padding: 45px 9% 40px 38%;
  background: #fff;
  min-height: 551px;
}
(max-width: 1200px) .head-1 {
  margin: 0 0 20px;
}
(max-width: 1200px) .head-1 .title-1 {
  width: 100%;
  padding: 0;
}
(max-width: 1200px) .head-1 .title-1 h2 {
  margin: 0;
  font-size: 58px;
  line-height: 60px;
  font-weight: 700;
  color: #404040;
}
(max-width: 1200px) .head-1 .title-1 h3 {
  font-size: 28px;
  margin: 0 0 21px;
  line-height: 38px;
}
(max-width: 1200px) .head-1 .image-1 {
  display: none;
}
(max-width: 1200px) .menu-1 ul li {
  list-style: none;
  padding: 0;
  /* margin: 0; */
  /* float: left; */
  /* width: 50%; */
}
(max-width: 1200px) .title-1__headliners .brd {
  margin: 0 auto 20px;
}
(max-width: 1200px) .industria .check-row li {
  margin: 0 0 20px;
  width: 50%;
}
(max-width: 1200px) .contenido-tipo2 {
  height: auto !important;
  overflow: hidden;
}
(max-width: 1200px) .contenido-tipo2 .bloque-1 h5 {
  position: relative;
  height: 84px;
}
(max-width: 1200px) .event-card .event-card-info h3 {
  font-size: 1.2rem;
}
(max-width: 1200px) .event-card .event-card-info h2 {
  font-size: 1.4rem;
}
(max-width: 1200px) .contenido-simple2 {
  margin: 0 0 20px;
}
(max-width: 1200px) .contenido-simple2 ::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
(max-width: 1200px) .contenido-simple2 .input-text-simple {
  width: 100%;
}
(max-width: 1200px) .contenido-simple2 .input-text-simple label {
  display: none;
}
(max-width: 1200px) .contenido-simple2 .input-text-simple input {
  width: 100%;
  margin: 0 0 18px;
}
(max-width: 1200px) .contenido-simple2 .textarea-simple {
  width: 100%;
}
(max-width: 1200px) .contenido-simple2 .textarea-simple label {
  display: none;
}
(max-width: 1200px) .contenido-simple2 .textarea-simple textarea {
  width: 100%;
  margin: 0 0 18px;
}
(max-width: 1200px) .contenido-simple2 .input-text-simple.field-fecha3 {
  width: 210px;
  clear: both;
  overflow: hidden;
}
(max-width: 1200px) .contenido-simple2 .noches-habitacion input {
  width: 135px;
  float: none;
}
(max-width: 1200px) .contenido-simple2 .noches-habitacion input::-webkit-input-placeholder {
  color: inherit;
  opacity: 0;
}
(max-width: 1200px) .contenido-simple2 .input-text-simple.form-width-6 {
  width: 46%;
  margin: 0 0% 0 0;
  max-width: 150px;
}
(max-width: 1200px) .contenido-simple2 .input-text-simple.form-width-6 label {
  width: 80px !important;
  display: block;
}
(max-width: 1200px) .contenido-simple2 .input-text-simple.form-width-6 input {
  width: 50px;
}
(max-width: 1200px) .contenido-simple2 .input-text-simple.form-width-6 input::-webkit-input-placeholder {
  opacity: 0;
}
(max-width: 1200px) .contenido-simple2 h3 {
  font-size: 18px;
  cursor: pointer;
}
(max-width: 1200px) .contenido-simple2 .input-text-simple.field-fecha-checkin {
  width: 48%;
  clear: both;
  float: none;
}
(max-width: 1200px) .acordeon-encabezado2 i {
  display: block;
}
(max-width: 1200px) .solicitud-anexar {
  padding: 0 0 0px;
  margin: 0 0 30px;
  position: relative;
  bottom: 0;
  overflow: hidden;
}
(max-width: 1200px) .solicitud-anexar .text-2 {
  width: 100%;
}
(max-width: 1200px) .solicitud-anexar .text-2 h3 {
  display: none;
}
(max-width: 1200px) .anexar-doc {
  width: 100%;
}
(max-width: 1200px) .anexar-doc .thumbs-wrapp__bottom {
  width: 180px;
  float: none;
  overflow: hidden;
  margin: 0 auto;
}
(max-width: 1200px) .input-fake {
  width: 89%;
}
(max-width: 1200px) .encabezado-text-2 {
  display: block;
}
(max-width: 1200px) .field-rfp {
  width: 100%;
}
(max-width: 1200px) .info-tooltip {
  background: url("../images/icon/circulo.png") no-repeat left top;
  width: 34px;
  height: 34px;
  display: block;
  float: left;
  margin: 5px 10px 0 10px;
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 10px;
}
(max-width: 1200px) .info-tooltip-container {
  position: absolute;
  right: 228px;
  top: 60px;
}
(max-width: 1200px) .factores-popUp {
  height: auto;
  overflow: hidden;
  position: relative;
}
(max-width: 1200px) .form-row {
  overflow: visible;
  clear: both;
  margin: 0;
}
(max-width: 1200px) .form-row .input-text-simple.field-fecha-al2 {
  margin: 0;
  width: 100%;
}
(max-width: 1200px) .detalles-presupuesto .acordeon-contenido {
  overflow: visible;
  clear: both;
}
(max-width: 1200px) .field-concesion {
  width: 310px;
  overflow: hidden;
  margin: 0 0 15px;
}
(max-width: 1200px) .combo-fechas {
  width: 100%;
}
(max-width: 1200px) .combo-fechas .field-fecha-del {
  width: 48%;
  float: left;
}
(max-width: 1200px) .combo-fechas .field-fecha-al {
  width: 48%;
  float: right;
}
(max-width: 1200px) .doble-fila {
  width: 100%;
}
(max-width: 1200px) .field-fecha-flexible {
  width: 310px;
}
(max-width: 1200px) .field-fecha-flexible .conjunto-radios {
  float: right;
  width: 156px;
  margin: 0 0 30px;
}
(max-width: 1200px) .especificar-numero {
  width: 100%;
  margin: 0;
  width: 420px;
  float: none;
  overflow: hidden;
  clear: both;
}
(max-width: 1200px) .especificar-numero > label {
  display: none;
}
(max-width: 1200px) .especificar-numero .seleccionar-cantidad {
  margin: 0 0 27px;
  width: 50%;
}
(max-width: 1200px) .requerimento-salajuntas {
  padding: 20px 0 0;
  border-top: none;
}
(max-width: 1200px) .requerimento-salajuntas .form-width-2 {
  margin: 0 0px 0 0;
}
(max-width: 1200px) .seleccionar-cantidad label {
  color: #666;
  margin: 10px 0 0;
  width: 70px;
}
(max-width: 1200px) .noches-habitacion label {
  display: block !important;
}
(max-width: 1200px) .duplicar-agregar {
  width: 312px;
  float: none;
  margin: 20px auto 0;
}
(max-width: 1200px) .duplicar-agregar .btn-action {
  margin: 0 30px 0 0;
}
(max-width: 1200px) .btn-action + .btn-action {
  margin: 0 0px 0 0;
}
(max-width: 1200px) .btn-action i {
  margin: 0 0px 0 0;
}
(max-width: 1200px) .btn-action span {
  font-size: 15px;
}
(max-width: 1200px) .fechas-chekin {
  clear: both;
  width: 100%;
  overflow: hidden;
}
(max-width: 1200px) .fechas-chekin .input-text-simple label {
  display: block;
  margin: 0 0 10px;
}
(max-width: 1200px) .fechas-chekin .input-text-simple input {
  width: 210px;
  float: left;
}
(max-width: 1200px) .fechas-chekin .input-text-simple input ::-webkit-input-placeholder {
  opacity: 0;
}
(max-width: 1200px) .input-text-simple.field-hora-inicio {
  width: 48%;
}
(max-width: 1200px) .input-text-simple.field-hora-termino {
  width: 48%;
  float: right;
}
(max-width: 1200px) .contenedor-btn-enviar {
  width: 100%;
}
(max-width: 1200px) .head-link {
  clear: both;
  margin: 0px auto;
  overflow: hidden;
}
(max-width: 1200px) .head-link ul {
  width: 100%;
  display: block;
  margin: 30px auto;
}
(max-width: 1200px) .field-suites {
  float: right;
}
(max-width: 1200px) .field-staff {
  float: right;
}
(max-width: 1200px) .btn-enviar {
  float: none;
  margin: 4px auto;
  display: block;
}
(max-width: 1200px) .form-width-container {
  max-width: 350px;
}
(max-width: 1200px) .cotizaciones .container {
  background: #fff;
  overflow: hidden;
  padding: 120px 4% 130px 4%;
}
.section--white-blue .thumbs-wrapp__title {
  background-color: #00a8b1;
}
(min-width: 1200px) .thumbs-carousel {
  padding: 90px 5% 100px 5%;
}
(min-width: 1200px) .thumbs-carousel .owl-stage-outer {
  z-index: 3;
}
(min-width: 1200px) .thumbs-carousel .owl-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
(min-width: 1200px) .thumbs-carousel .owl-controls .owl-nav {
  position: absolute;
  top: 20px;
  right: 7%;
  font-size: 30px;
}
(min-width: 1200px) .thumbs-carousel .owl-controls .owl-nav .owl-prev,
(min-width: 1200px) .thumbs-carousel .owl-controls .owl-nav .owl-next {
  text-align: center;
  display: inline-block;
}
(min-width: 1200px) .thumbs-carousel .owl-controls .owl-nav .owl-prev {
  margin-right: 30px;
}
(min-width: 1200px) .thumbs-carousel .owl-controls .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
}
(min-width: 1200px) .thumbs-carousel .owl-controls .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
}
(min-width: 1200px) .thumbs-carousel.fix-control {
  padding: 90px 5% 140px 5%;
}
(min-width: 1200px) .thumbs-carousel.fix-control .owl-controls .owl-dots {
  bottom: 70px;
}
(min-width: 1200px) .thumbs-carousel.thumbs-carousel__row1 .thumbs-carousel__list > li {
  margin-bottom: 0;
}
(min-width: 1200px) .thumbs-carousel figure.low--height {
  height: 180px;
}

/* ------------------------------------------------------------
    MEDIUM DEVICES
------------------------------------------------------------ */
@media (max-width: 992px) {
  /* ------------------------------------------------------------
    BASE
------------------------------------------------------------ */
  /* Hidden */
  .mobile-show {
    display: block;
  }
  .mobile-hidden {
      display: none;
  }
  /* ------------------------------------------------------------
    RESET
------------------------------------------------------------ */
  h1,
  h2 {
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
  h3 {
    font-size: 1.625rem;
    line-height: 1.625rem;
  }
  h4 {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
  h5,
  h6 {
    font-size: 1.125rem;
    line-height: 1.125rem;
  }
  /* ------------------------------------------------------------
    HEADER
------------------------------------------------------------ */
  .header.header--largedevices {
    display: none;
  }
  .header.header--smalldevices {
    display: block;
    padding-left: 15px;
  }
  .header.header--smalldevices .ddm-logo {
    margin-left: 20px;
    width: 50px;
    padding: 0;
  }
  .menu-main.menu-main--smalldevices {
    display: block;
    height: 60px;
    overflow: visible;
    opacity: 1;
    box-shadow: 0 0px 50px rgba(0, 0, 0, 0.1);
  }
  .menu-main__list .i-m {
    margin-top: 12px;
  }
  .head-1 .title-1 {
      padding-bottom: 0 !important;
  }
  /* ------------------------------------------------------------
    MENÚ
------------------------------------------------------------ */
  .lightbox--menu {
    position: fixed;
    top: 70px;
    left: -100vw;
    z-index: 9999;
    height: calc(100vh - 130px);
  }
  .dropdown--smalldevices .collapse-menu__item {
    position: relative;
  }
  .dropdown--smalldevices .collapse-menu__item .text-gray {
    color: #908e8e;
  }
  /* ------------------------------------------------------------
    HERO IMAGE
------------------------------------------------------------ */
  .hero-image {
    height: 500px;
    min-height: auto;
  }
  .hero-image .hero-slider h2 {
    margin-bottom: 0;
    top: 50%;
    line-height: 40px;
    width: 80%;
  }
  .hero-image .item-place {
    bottom: 60px;
  }
  .hero-image .item-place article p,
  .hero-image .item-place article h5 {
    margin-bottom: 0;
  }
  .hero-image .hero-image__article {
    top: inherit;
    width: 100%;
    left: 0;
    bottom: 0;
    -webkit-transform: inherit;
    -moz-transform: inherit;
    -ms-transform: inherit;
    -o-transform: inherit;
    transform: inherit;
    display: none;
  }
  .hero-image .hero-image__article .search-module h6 {
    display: none;
  }
  .hero-image .hero-image__article .search-module .btn.type1 {
    background: #7c0e6c;
  }
  .hero-image__bottom {
    display: none;
  }
  .hero-image .hero-slider,
  .hero-image .hero-slider .item,
  .hero-image .hero-slider .owl-item,
  .hero-image .hero-slider .back-module {
    height: 500px;
  }
  .search-module div input {
    background: #f5f5f5;
  }
  .search-module div button {
    font-size: 14px;
  }
  /* ------------------------------------------------------------
    OPTIONS MODULE
------------------------------------------------------------ */
  .options-module .container {
    padding: 0 5%;
    max-width: 100%;
  }
  .options-module ul li {
    width: 50% !important;
  }
  .options-module ul li .item__checks {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.15s ease-out;
  }
  .options-module ul li.active .item__checks {
    padding: 20px 0 10px 0;
    max-height: 600px;
    transition: max-height 0.25s ease-in;
  }
  .item__checks ul + ul {
    padding: 30px 0 20px 0;
  }
  .item__checks ul li {
    width: 30%;
    margin-right: 0;
    margin-bottom: 20px;
    background: none;
  }
  .item__checks ul li:hover {
    background: none;
  }
  .options-module__list ul li i {
    display: none;
  }
  .options-module__list ul li a::after {
    content: "\f107";
    font: normal normal normal 17px/1 FontAwesome;
    margin-left: 10px;
  }
  /* ------------------------------------------------------------
    DYNAMIC IMAGES
------------------------------------------------------------ */
  .dynamic-images__mobile {
    margin-bottom: 5px;
    /* fluid 5 columns */
  }
  .dynamic-images__mobile .grid-sizer,
  .dynamic-images__mobile .grid-item {
    width: 50%;
    height: 180px;
  }
  .dynamic-images__mobile .grid-item {
    /* 2 columns */
  }
  .dynamic-images__mobile .grid-item .place-icon {
    width: 70%;
  }
  .dynamic-images__mobile .grid-item .place-icon li {
    margin-right: 0;
    width: 33%;
    margin-bottom: 10px;
  }
  .dynamic-images__mobile .grid-item .place-icon li:nth-child(4),
  .dynamic-images__mobile .grid-item .place-icon li:nth-child(5) {
    margin-bottom: 0;
  }
  .dynamic-images__mobile .grid-item .dynamic__content {
    bottom: 15px;
  }
  .dynamic-images__mobile .grid-item .dynamic__content h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
    display: inline-block;
  }
  .dynamic-images__mobile .grid-item .dynamic__content h3,
  .dynamic-images__mobile .grid-item .dynamic__content p,
  .dynamic-images__mobile .grid-item .dynamic__content .place-icon {
    margin-left: 15px;
  }
  .dynamic-images__mobile .grid-item .dynamic__content p {
    display: none;
  }
  .dynamic-images__mobile .grid-item figure {
    margin: 5px;
    width: 98%;
  }
  .dynamic-images__mobile .grid-item.active article {
    right: 4px;
    width: 98%;
  }
  .dynamic-images__mobile .grid-item.active article .dc__go {
    bottom: 0;
  }
  .dynamic-images__mobile .grid-item.grid-item--width2 {
    width: 100%;
    height: 360px;
  }
  .dynamic-images__mobile .grid-item.grid-item--width2 .place-icon {
    width: 70%;
  }
  .dynamic-images__mobile .grid-item.grid-item--width2 .place-icon li {
    margin-right: 5px;
    width: auto;
    margin-bottom: 0;
  }
  .dynamic-images__mobile .grid-item.grid-item--width2 .dynamic__content h3 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
    display: block;
  }
  .dynamic-images__mobile .grid-item.grid-item--width2 .dynamic__content p {
    display: block;
  }
  .dynamic-images__mobile .grid-item.grid-item--width2 figure {
    width: 99%;
  }
  .dynamic-images__mobile .grid-item.grid-item--width2.active article {
    right: 4px;
    width: 99%;
  }
  .dynamic-images__mobile .grid-item__close {
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .load-more__wrapper {
    padding: 10px 0;
  }
  .load-more__wrapper a.btn.type2 {
    border: none;
    margin-bottom: 20px;
  }
  .load-more__wrapper a.btn.type2:hover {
    color: #ffffff !important;
    background: none;
  }
  .dynamic-images .grid-item {
    width: 50%;
    padding-bottom: 35%;
  }
  .dynamic-images .grid-item:nth-child(3n+1) {
    width: 100% !important;
  }
  .dynamic-images .grid-item .dynamic__content p {
    display: none;
  }
  .dynamic-images .grid-sizer {
    width: 50%;
    padding-bottom: 35%;
  }
  /* ------------------------------------------------------------
    FIXED
------------------------------------------------------------ */
  .fixed-icons-module {
    top: initial;
    bottom: 140px;
    width: 70px;
    height: 70px;
  }
  .fixed-icons-module ul li.fixed__color2 {
    padding-top: 0;
  }
  /* ------------------------------------------------------------
    THUMBS WRAPP
------------------------------------------------------------ */
  .thumbs-wrapp.thumbs-color1 .btn.type2 {
    color: #00a8b1;
    background: #ffffff;
  }
  .thumbs-wrapp.thumbs-color2 .btn.type2 {
    background: #ffb500;
    color: #ffffff;
    border-color: #ffb500;
  }
  .thumbs-wrapp.thumbs-color2 .btn.type2:hover {
    border-color: #ffb500;
    background: #ffb500;
    color: #ffffff;
  }
  .thumbs-wrapp.thumbs-color2 .thumbs-wrapp__bottom {
    padding-bottom: 50px;
  }
  .thumbs-carousel {
    padding: 80px 0 30px 0;
  }
  .thumbs-carousel .owl-controls .owl-nav {
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .thumbs-carousel .owl-controls .owl-nav .owl-prev,
  .thumbs-carousel .owl-controls .owl-nav .owl-next {
    position: absolute;
    width: 20px;
  }
  .thumbs-carousel .owl-controls .owl-nav .owl-prev {
    left: 0px;
    margin-right: 0;
  }
  .thumbs-carousel .owl-controls .owl-nav .owl-next {
    right: 0px;
  }
  .thumbs-carousel.fix-control {
    padding: 70px 0 100px 0;
  }
  .thumbs-carousel__list > li a {
    width: 100%;
  }
  .thumbs-carousel__list.carousel__3x {
    padding: 90px 5%;
  }
  .thumbs-carousel__list.carousel__3x article {
    margin-top: 0;
  }
  .thumbs-carousel__list.carousel__3x li {
    width: 100%;
    margin: 0 0 20px 0 !important;
  }
  .thumbs-carousel__list.carousel__3x li:last-child {
    margin-bottom: 0;
  }
  .thumbs-carousel__list.carousel__3x li figure {
    display: none;
  }
  .thumbs-wrapp__bottom {
    padding: 30px 0 100px 0;
  }
  .thumbs-wrapp__bottom a {
    float: inherit;
    margin-top: 0;
  }
  .thumbs__row {
    padding: 70px 5% 140px 5%;
  }
  .thumbs__row .thumbs__large {
    margin-right: 15%;
    margin-left: 15%;
  }
  .thumbs__row .thumbs-carousel {
    width: 100%;
  }
  .thumbs__row .thumbs-carousel .thumbs-carousel__list > li {
    width: 80%;
    margin: 0 10%;
  }
  .thumbs__row .thumbs-carousel .thumbs-carousel__list > li figure {
    height: 250px;
  }
  .thumbs__row .thumbs-carousel .owl-nav {
    display: none;
  }
  .thumbs__large {
    width: 70%;
    margin-bottom: 50px;
  }
  .thumbs__large figure {
    margin: 0 5%;
    height: 350px;
  }
  .thumbs__large article {
    padding: 35px 20px 20px 20px;
  }
  .thumbs-wrapp-activities .container {
    padding: 0;
  }
  .thumbs-wrapp-activities.thumbs-color2 .btn.type2 {
    background: #ffb500;
    color: #ffffff;
    border-color: #ffb500;
  }
  .thumbs-wrapp-destination.thumbs-color1 .btn.type2 {
    color: #00a8b1;
    background: #ffffff;
  }
  /* MODIFICADORES */
  .item-list.col-x5 {
    width: 33.333333333333333%;
  }
  /* ------------------------------------------------------------
    TOP CONTAINER
------------------------------------------------------------ */
  .top-container .container {
    padding: 100px 5% 70px 5%;
  }
  .top-container .container h2 {
    font-size: 1.875rem;
  }
  /* ------------------------------------------------------------
    SIMPLE CONTENT
------------------------------------------------------------ */
  .simple-content__wrapp {
    padding: 70px 0;
  }
  .simple-content__wrapp p:last-child {
    margin-bottom: 0;
  }
  .simple-content__column.column-x2 div {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .simple-content__list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .simple-content__list li:last-child {
    margin-bottom: 0;
  }
  /* ------------------------------------------------------------
    DESTINOS
------------------------------------------------------------ */
  .icon-media ul {
    width: 100%;
    overflow: hidden;
  }
  .icon-media ul li a {
    width: 100%;
    color: #666;
    height: 32px;
  }
  .icon-media ul li a i {
    font-size: 39px;
    color: #666;
  }
  .content-1 {
    padding: 48px 20px 30px;
  }
  .menu-1 {
    clear: both;
    width: 90%;
    margin: 30px auto 30px;
    padding: 0;
  }
  .menu-1 ul li {
    width: 33.33%;
  }
  .menu-1 ul li a {
    padding: 10px 0;
    font-size: 12px;
    line-height: 12px;
  }
  .head-1 {
    clear: both;
    overflow: visible;
    margin: 0;
  }
  .head-1 .title-1 h2 {
    font-size: 30px !important;
    line-height: 40px;
    margin: 0;
  }
  .temperatura h6 {
    font-size: 13px;
  }
  .contenido-simple h3 {
    margin: 0 0 10px;
    font-size: 24px;
  }
  .txt-graph .text3 {
    width: 100%;
    float: none;
    margin: 0 0 30px;
    padding: 0;
    border: none;
  }
  .txt-graph .graph {
    width: 100%;
    float: none;
    clear: both;
    padding: 0;
  }
  .two-cols .text-1 {
    float: none;
    clear: both;
    width: 100%;
  }
  .two-cols .text-1 p:last-child {
    margin-bottom: 0 !important;
  }
  .text-1 p {
    font-size: 16px;
    color: #333333;
    font-family: 'Raleway', sanserif;
    margin: 0 0 30px;
  }
  .image-mapa-2 {
    max-width: 500px;
    position: relative;
    margin: 0 auto 30px  !important;
    float: none;
    clear: both;
    overflow: hidden;
  }
  .destinos-1 .container {
    background: #fff;
    position: relative;
    clear: both;
  }
  .destinos-1 .icon-media {
    top: 25px;
    right: 5%;
    padding: 0 5%;
  }
  .destinos-1 .icon-media ul {
    width: 50px;
  }
  .destinos-1 .icon-media ul li {
    display: inline-block;
    width: 20px;
    margin: 0;
    clear: none;
    text-align: center;
  }
  .destinos-1 .icon-destination {
    top: -5px;
    position: relative;
  }
  .destinos-1 .menu-1 + .content-1 {
    padding-top: 30px;
  }
  .destinos-1 .content-1 {
    padding: 48px 5% 80px 5%;
  }
  .frase-1 {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
  .frase-1 h6 {
    line-height: 23px;
    font-size: 18px;
  }
  .btn-back {
    clear: both;
    width: 200px;
    margin-left: 5%;
    margin-bottom: 20px;
  }
  .texto_2 {
    width: 100%;
    float: none;
    padding: 0px 30px 40px;
    min-height: auto;
  }
  .texto_2 p {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 20px;
  }
  .galery-1__contenido .owl-next,
  .galery-1__contenido .owl-prev {
    width: 23px;
    height: auto;
    background-size: contain;
  }
  .image_2 {
    width: 100%;
    margin: 0 auto 30px;
    float: none;
    position: relative;
    top: auto;
    overflow: hidden;
    background: #fff;
    padding: 20px 30px 30px 30px;
    margin: 0;
  }
  .galery-1__contenido .owl-prev {
    color: #fff;
    font-size: 73px;
    position: absolute;
    top: 50%;
    left: -30px;
  }
  .galery-1__contenido .owl-next {
    color: #fff;
    font-size: 73px;
    position: absolute;
    top: 50%;
    right: -30px;
  }
  .galery-1__contenido__back {
    background: #F5A700;
    padding: 40px;
  }
  .logo-trip {
    width: 50%;
    float: left;
  }
  .contenido-simple.trip-advisor {
    padding: 40px 0 40px;
  }
  .share-trip {
    float: right;
    width: 40%;
  }
  .share-trip .add-favorites .icon-media ul li a {
    color: #666;
  }
  .share-trip .icon-media ul li a i {
    color: #666;
  }
  .add-favorites {
    margin: 15px 0 0;
  }
  .add-favorites p {
    text-align: center;
  }
  .destinos .carousel-main,
  .destinos .carousel-main__item {
    height: 400px;
    min-height: auto;
  }
  .traslado__nav {
    width: 100%;
  }
  .traslado__nav ul li {
    width: 20%;
    float: left;
  }
  .traslado__nav ul li a {
    text-align: center;
    padding: 5px 0;
  }
  .traslado__nav ul li a i {
    float: inherit;
    display: inline-block;
  }
  .traslado__nav ul li a span {
    display: none;
  }
  .booking {
    bottom: 60px;
    height: 40px;
    background-color: #FFF;
  }
  .booking__tabs__item:first-of-type {
    width: 100%;
  }
  .booking__contact {
    position: relative;
    text-align: center;
    cursor: pointer;
  }
  .booking__contact h4 {
    color: #fff;
    font-size: 16px;
    line-height: 16px;
  }
  .booking__tabs__item p {
    font-size: 14px;
    line-height: 16px;
  }
  .booking .booking__tabs .booking__tabs__item .js-fa__close {
      opacity: 0;
  }
  .booking.active .booking__tabs .booking__tabs__item .js-fa__close {
      opacity: 10;
      cursor: pointer;
  }
  .js-fa__close {
      position: absolute;
      top: 20px;
      right: 10px;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      display: block;
      width: 30px;
      height: 30px;
      font-size: 23px;
      line-height: 30px;
      font-weight: 100;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.08);
      border-radius: 3px;
  }
  .booking__contact i {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
    font-weight: 100;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    pointer-events: none;
  }
  .booking__contact i.fa-times {
    display: none;
  }
  .booking.active {
    position: fixed;
    min-height: 100px;
    max-height: 100%;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: 9999999;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .booking.active .booking__contact i.fa-times {
    display: block;
    cursor: pointer;
  }
  .booking.active .booking__contact i.fa-angle-up {
    display: none;
  }
  .booking__tabs .container {
    max-width: 100%;
  }
  .booking__tabs__item {
    width: 16.285714%;
  }
  .booking__col {
    margin-bottom: 20px;
  }
  .booking__forms {
    height: 620px;
  }
  .title-1__headliners {
      width: 100%;
  }
  .temperatura {
      width: 100%;
  }


  /* ------------------------------------------------------------
    PLANEA VIAJE RUTA
------------------------------------------------------------ */
  .tablas-drop .tabla-propiedades {
    width: 100%;
    float: none;
    margin: 0 0 30px;
    overflow: hidden;
  }
  .nota-recorridos-guardar .btn-container {
    width: 250px;
    margin: 0 auto;
    float: none;
  }
  .nota-recorridos-guardar ul {
    margin: 0 auto 20px;
    width: 250px;
    float: none;
  }
  .btn-container input {
    padding: 18px 0 15px;
  }
  .btn-container a {
    padding: 18px 0 15px;
  }
  .planea-viaje-ruta {
    background: #fff;
    padding: 0px;
  }
  .tabla-actividades .tabla-contenido {
    max-height: initial;
    overflow: hidden;
  }
  .tabla-recorrido .tabla-contenido {
    max-height: initial;
    overflow: hidden;
  }
  /* ------------------------------------------------------------
        PLANEA TU VIAJE
    ------------------------------------------------------------ */
  .fake-menu::before {
    height: 70px;
  }
  .container-fixed {
    width: 100%;
  }
  .map-sidebar {
    max-width: 100%;
    height: auto;
  }
  .map-sidebar .map-sidebar__header .map-sidebar__title {
    display: none;
  }
  .map-header {
    max-width: 100%;
  }
  .map-header .map-header__title {
    font-size: 1.875rem;
  }
  .map-header.map-header--gradient {
    background: #FFF;
  }
  .map-container {
    height: auto;
  }
  .map-container .map {
    position: relative;
    height: 280px;
    left: 0;
  }
  .thumbs-wrapp__title .input-combo .input-combo__input {
    text-align: left;
  }
  .thumbs-wrapp__container {
    padding: 40px 20px !important;
  }
  .dynamic-list .dynamic-list__empty {
    padding: 20px;
  }
  .map-zones {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .map-zones .map-zones__list .map-zones__item {
    float: left;
    width: 50%;
  }
  /* ------------------------------------------------------------
    SIZE MODULE
------------------------------------------------------------ */
  .size-module .size__aside {
    width: 100%;
    padding-right: 0;
    min-height: auto;
    border-right: 0;
    margin-bottom: 20px;
  }
  .size-module .size__aside + .size__aside {
    padding-left: 0px;
  }
  .size-module .size__row-large .btn {
    float: inherit;
    display: block;
    margin: 0 auto;
  }
  /* ------------------------------------------------------------
    LIGHTBOX
------------------------------------------------------------ */
  .lightbox .lightbox__container {
    width: 90%;
  }
  .result__image,
  .result__image .owl-item {
    height: 300px;
  }
  .lightbox .lightbox__container .btn {
    top: 280px;
  }
  /* ------------------------------------------------------------
    CALENDARIO
------------------------------------------------------------ */
  .industria {
    padding: 0 0 50px;
  }
  .industria .check-row ul {
    margin: 0;
  }
  .check-row {
    clear: both;
    margin: 40px 0 0;
  }
  .contenido-tipo2 .bloque-1 h5 {
    position: relative;
    height: 64px;
  }
  .home-section .home-content {
    margin-top: -14%;
  }
  .home-section .search {
    padding: 2rem 15px;
  }
  .home-section .search h2 {
    font-size: 1rem;
    line-height: 1;
  }
  .home-section .search input[type=text] {
    width: 25%;
  }
  .event-card .event-card-info h3 {
    font-size: 1rem;
  }
  .event-card .event-card-info h2 {
    font-size: 1.2rem;
  }
  .category-card h3 {
    font-size: .8rem;
  }
  /* ------------------------------------------------------------
    SEARCH RESULTS CONTAINER
------------------------------------------------------------ */
  .sr-container {
    padding-top: 90px;
  }
  .sr-container .container {
    padding: 60px 5%;
  }
  .sr-container .container h2 {
    font-size: 1.85rem;
  }
  .results-item {
    position: relative;
    margin: 50px;
    padding: 33px;
  }
  .results-item .image-container {
    width: 100%;
    height: 250px;
    margin-left: 0;
  }
  .results-item .icon-media {
    position: absolute;
    z-index: 5;
    top: 30px;
    width: auto;
    margin: 0;
    right: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  .results-item .icon-media ul li {
    width: 40px;
  }
  .results-item .icon-media a i {
    color: #ffffff;
    font-size: 25px;
  }
  .results-item .item-block {
    width: 100%;
    padding: 0 ;
  }
  .result-top .result__back {
    width: 100%;
    padding: 0 50px;
  }
  .result-top .result__back i {
    width: 40px;
    height: 40px;
    line-height: 37px;
  }
  .result-top .result__back p {
    line-height: 40px;
  }
  .booking__forms {
    height: 620px;
  }
  /* ------------------------------------------------------------
        THUMBS WRAPP
    ------------------------------------------------------------ */
  .thumbs-carousel-activities {
    padding: 40px 5%;
  }
  .thumbs-wrapp-destination .prev_slick,
  .thumbs-carousel-activities .prev_slick {
    left: 0px;
    margin-left: -20px;
  }
  .thumbs-wrapp-destination .next_slick,
  .thumbs-carousel-activities .next_slick {
    right: 0px;
    margin-right: -20px;
  }
  .items-carrousel-activities {
    margin: 0;
  }
  /* ------------------------------------------------------------
      SEARCH RESULTS CONTAINER
    ------------------------------------------------------------ */
  .results-item .icon-media {
    position: absolute;
    z-index: 5;
    top: 30px;
    width: auto;
    margin: 0;
    right: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  .results-item .icon-media ul li {
    width: 40px;
  }
  .results-item .icon-media a i {
    color: #fff;
    font-size: 25px;
  }
  /* ------------------------------------------------------------
        FOOTER
    ------------------------------------------------------------ */
  .footer {
    padding: 40px 5%;
    margin-bottom: 50px;
  }
  .grid-item article {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .editor,
  .tool {
    height: calc(100vh - 60px);
  }

  .menu-main .menu-main__list .menu-main__item {
      display: inline-block;
  }
  .destinos {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .wrap-inspiration.desktop-hidden {
    display: block;
  }
}
@media (max-width: 768px) {
  /* ------------------------------------------------------------
        GENERAL
    ------------------------------------------------------------ */
  .container {
    max-width: 750px;
    position: relative;
  }
  /* ------------------------------------------------------------
        OPTIONS MODULE
    ------------------------------------------------------------ */
  .item__checks ul {
    padding: 0;
  }
  .item__checks ul:first-child {
    margin-bottom: 20px;
    padding: 0 0 5px 0;
  }
  .item__checks ul li {
    width: 50%;
    margin-bottom: 10px;
  }
  .item__checks ul + ul {
    display: block;
    padding: 0;
  }
  .item__checks ul + ul li {
    width: 29%;
    float: left;
    margin-right: 6.5%;
  }
  .item__checks ul + ul li:last-child {
    margin-right: 0;
  }
  /* ------------------------------------------------------------
        BANNER MODULE
    ------------------------------------------------------------ */
  .banner-module {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .banner-module img {
    max-width: 70%;
  }
  .banner-module p {
    width: 100%;
    font-size: 18px;
  }
  .banner-module .col {
    height: auto;
    text-align: center;
  }
  /* ------------------------------------------------------------
        BANNER MODULE 2
    ------------------------------------------------------------ */
  .banner-module2 {
    height: 200px;
    text-align: center;
  }
  .banner-module2 article {
    padding: 0 20%;
  }
  .banner-module2 h3 {
    width: 100%;
    margin-bottom: 20px;
    line-height: 30px;
  }
  .banner-module2 a {
    width: 100%;
  }
  .banner-module--custom p {
    margin-top: 10px;
  }
  /* ------------------------------------------------------------
        THUMBS WRAPP
    ------------------------------------------------------------ */
  .thumbs-carousel {
    padding-left: 5%;
    padding-right: 5%;
  }
  .thumbs-carousel.fix-control {
    padding-left: 5%;
    padding-right: 5%;
  }
  .thumbs-carousel.fix-control .owl-controls .owl-dots {
    bottom: 40px;
  }
  .thumbs-carousel.fix-control .owl-controls .owl-nav .owl-prev {
    left: 2%;
  }
  .thumbs-carousel.fix-control .owl-controls .owl-nav .owl-next {
    right: 2%;
  }
  .thumbs-carousel .owl-controls .owl-nav .owl-prev {
    left: 2%;
  }
  .thumbs-carousel .owl-controls .owl-nav .owl-next {
    right: 2%;
  }
  .thumbs-carousel__list.carousel__3x {
    padding: 70px 5%;
  }
  /* ------------------------------------------------------------
        TOP CONTAINER
    ------------------------------------------------------------ */
  .top-container .container {
    padding: 130px 5% 70px 5%;
  }
  .top-container__more a {
    float: inherit;
    display: block;
    width: 160px;
    margin: 0 auto;
  }
  /* ------------------------------------------------------------
        CONTENT SLIDER
    ------------------------------------------------------------ */
  .content-slider {
    background: #ffffff;
  }
  .content-slider article {
    position: relative;
    bottom: inherit;
    width: 100%;
    padding: 50px 15%;
    color: #666666;
  }
  .content-slider article h3 {
    position: absolute;
    color: #ffffff;
    top: -60px;
  }
  .content-slider .shade {
    display: none;
  }
  .content-slider .back-module figure {
    position: relative;
    height: 250px;
  }
  .content-slider .owl-controls .owl-nav {
    top: 15%;
  }
  .content-slider,
  .content-slider .item,
  .content-slider .owl-item,
  .content-slider .back-module {
    height: auto;
  }
  /* ------------------------------------------------------------
        MAP
    ------------------------------------------------------------ */
  .dynamic-list .dynamic-list__list .dynamic-list__item {
    padding: 10px 0;
  }
  .dynamic-list .dynamic-list__list .dynamic-list__item .card .card__content {
    height: auto;
  }
  /* ------------------------------------------------------------
        SOCIAL FE
    ------------------------------------------------------------ */
  .social-feed__network .social-feed__list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  /* ------------------------------------------------------------
        SPOTIFY
    ------------------------------------------------------------ */
  .module-spotify__title {
    font-size: 22px;
    text-align: center;
  }
  .module-spotify__text {
    text-align: center;
  }
  .spotify-playlist {
    max-width: 100%;
  }
  .spotify-follow {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  /* ------------------------------------------------------------
        DIEZ RAZONES
    ------------------------------------------------------------ */
  .content-slider-ten-reasons-wrapper {
    background: #ffffff;
    height: auto;
  }
  .content-slider-ten-reasons-wrapper article h3 {
    position: absolute;
    color: #ffffff;
    top: -60px;
  }
  .content-slider-ten-reasons-wrapper .back-module {
    height: auto;
  }
  .content-slider-ten-reasons-wrapper .back-module figure.image {
    position: relative;
    height: 250px;
  }
  .content-slider-ten-reasons-wrapper .back-module article {
    position: relative;
    bottom: inherit;
    width: 100%;
    padding: 50px 15% 30px 5%;
    color: #666666;
  }
  .content-slider-ten-reasons-wrapper .shade {
    display: none;
  }
  .content-slider-ten-reasons-wrapper .arrow-icon {
    top: 20%;
  }
  .card-featured__description {
    position: relative;
    padding: 0;
    padding-right: 5%;
  }
  /* ------------------------------------------------------------
        CALENDARIO
    ------------------------------------------------------------ */
  .search input[type=submit] {
    padding-left: 0;
    padding-right: 0;
    width: 25%;
  }
  .search h2 {
    font-size: 2rem;
    line-height: 1;
  }
  /* ------------------------------------------------------------
        DESTINOS
    ------------------------------------------------------------ */
  .temperatura .weather__content {
    position: relative;
    padding: 0 10px;
  }
  .temperatura .weather__content h5 {
    font-size: 32px;
  }
  .temperatura .weather__content p {
    /*width: 30%;*/
    line-height: 11px;
    font-size: 11px;
  }
  .carousel-image {
    margin-left: 0;
  }
  .card-featured article {
    position: relative;
    background: #ffffff;
    width: 100%;
    height: auto !important;
    padding: 15px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
    min-height: 105px;
  }
  /* ------------------------------------------------------------
        SEARCH RESULTS CONTAINER
    ------------------------------------------------------------ */
  .tab-menu-interior {
    display: none;
  }
  .tab-menu__mobile {
    display: block;
  }
  .tab-menu__mobile ul {
    height: 200px;
    overflow-y: scroll;
  }
  .thumbs-wrapp__description {
    padding: 60px 10px 20px;
  }
  .menu-view .combo-select {
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .btn-view p {
    font-size: 16px !important;
  }
  .menu-view {
    top: -30px;
  }
  .social-networks {
    padding-top: 0;
    padding-bottom: 40px;
  }
  /* ------------------------------------------------------------
        ERROR 404
    ------------------------------------------------------------ */
  .top-container .container {
    padding: 100px 5% 60px 5%;
  }
  /* ------------------------------------------------------------
        FOOTER
    ------------------------------------------------------------ */
  .footer {
    padding: 30px 20px;
  }
  .footer .footer__list .footer__item h3 {
    margin-bottom: 13px;
    text-decoration: underline;
  }
  .footer .footer__list .footer__item:not( :first-of-type ) {
    overflow: hidden;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    max-height: 0;
  }
  .footer .footer__info {
    text-align: left;
  }
  .footer .footer__list.footer--active {
    padding-bottom: 20px;
  }
  .footer .footer__list.footer--active .footer__item:not( :first-of-type ) {
    max-height: 300px;
  }
  .footer .footer-visitmexico .footer__image figure img {
    width: 200px;
  }
  .footer .footer-bottom {
    padding: 0;
  }
  .footer .container {
    padding: 0;
  }
  .footer .col-xs-12 {
    padding: 0;
  }
  .grid-item article {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .grid-item article .item-credits p {
    font-size: 10px !important;
  }
  .footer__image {
    text-align: center;
    width: 100%;
  }
  .fixed-icons-module {
    bottom: 180px;
  }
}
/* ------------------------------------------------------------
    SMALL DEVICES
------------------------------------------------------------ */
@media (max-width: 600px) {
  .mobile-small-show {
    display: block;
  }
  .dynamic-image .grid-item {
    height: 300px !important;
  }
  .grid-item article h3 {
    margin-bottom: 10px;
    font-size: 1rem !important;
    width: 86%;
  }
  .dynamic__content {
    bottom: 9px;
  }
  .grid-item--width2 .dynamic__content,
  .grid-item--width2 .dynamic__content {
    bottom: 9px;
  }
  .menu-social {
    background-color: #323232;
  }
  .menu-social .menu-social__list .menu-social__item {
    width: 50%;
    height: 60px;
  }
  .menu-social .menu-social__list .menu-social__item i {
    font-size: 20px;
    line-height: 60px;
  }
  .inspiration-module {
    background: #ffffff;
    padding: 30px 5% 0 5%;
  }
  .inspiration-module p {
    margin-bottom: 30px;
  }
  .inspiration-module .btn {
    width: 100%;
    display: block;
    padding: 10px 0 8px 0;
  }
  .dynamic-images .grid-item .place-icon {
    width: 100%;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    -webkit-transform-origin-x: 0;
    -moz-transform-origin-x: 0;
    -ms-transform-origin-x: 0;
    -o-transform-origin-x: 0;
  }
  .options-module__list ul li i {
    font-size: 70px;
  }
  .options-module__list ul li.active i {
    bottom: -39px;
  }
  .simple-content .container {
    background: #f5f5f5;
  }
  /* Carrusel modifiers */
  .item-list.col-x5 {
    width: 100%;
  }
  .content-1 {
    padding: 28px 20px 20px;
  }
  .content-1 .image-mapa-2 {
    width: 100%;
    max-width: 90%;
    margin-bottom: 20px !important;
  }
  .contenido-simple {
    padding: 21px 0 40px;
  }
  .contenido-simple h3 {
    margin: 0 0 20px;
  }
  .text-1 h4 {
    font-size: 22px;
  }
  .galery-1__contenido__back {
    background: #F5A700;
    padding: 20px 0;
  }
  .mapa-container #map_canvas {
    height: 250px !important;
  }
  .mapa-acotacion {
    box-shadow: 0 0 4px #ccc;
    padding: 55px 20px 20px;
    margin: -30px 0 0;
  }
  .mapa-acotacion .info-controles {
    width: 30px;
    bottom: 100px;
    right: 40px;
  }
  .mapa-acotacion .info-controles ul li a {
    padding: 5px 0;
  }
  .mapa-acotacion .info-controles ul li a i {
    font-size: 15px;
    color: #666;
    text-align: center;
  }
  .mapa-acotacion h4 {
    color: #4D4D4D;
    font-size: 18px;
    margin: 0 0 10px;
  }
  .galery-1__contenido .owl-prev,
  .galery-1__contenido .owl-next {
    display: none;
  }
  .logo-trip {
    width: 200px;
    float: none;
    margin: 0 auto 0;
  }
  .contenido-simple.trip-advisor {
    padding: 20px 0 20px;
  }
  .add-favorites {
    margin: 0;
  }
  .share-trip {
    width: 100%;
  }
  .title-1 .title-1__headliners {
    width: 100%;
  }
  .temperatura {
    width: 100%;
    margin-bottom: 40px;
    margin-top: 40px;
    padding-top: 30px;
  }
  .field-type-text-with-summary {
    text-align: left;
  }
  .destinos-1 .content-1 {
    padding-top: 48px !important;
  }
  .destinos-1 .content-1:last-of-type {
    padding-top: 0;
    padding-bottom: 0;
  }
  .carousel-image {
    max-width: 330px;
    margin-top: 30px;
    margin-left: 0;
  }
  /* ------------------------------------------------------------
                    PLANEA VIAJE RUTA
    ------------------------------------------------------------ */
  .tabla-propiedades th {
    font-size: 15px;
  }
  .tabla-propiedades td {
    font-size: 11px;
    padding: 10px 6px;
  }
  .tabla-morada .fila-morada-2 th {
    font-size: 11px;
  }
  .nota-recorridos-guardar .btn-container {
    width: 88%;
    margin: 0 auto;
    float: none;
  }
  /* ------------------------------------------------------------
                    SEARCH RESULTS CONTAINER
    ------------------------------------------------------------ */
  .tab-menu__flat ul li {
    width: 33.2%;
  }
  /* ------------------------------------------------------------
                            SIZE MODULE
    ------------------------------------------------------------ */
  .size-module .size__row.sr__x2 section {
    width: 100%;
    margin-right: 0;
  }
  .size-module .size__row.sr__x1 section {
    width: 100%;
  }
  /* ------------------------------------------------------------
                            CALENDARIO
    ------------------------------------------------------------ */
  .contenido-tipo2 {
    height: inherit !important;
    overflow: hidden;
  }
  /* ------------------------------------------------------------
                    SEARCH RESULTS CONTAINER
    ------------------------------------------------------------ */
  .sr-container .container {
    padding: 40px 5%;
  }
  .results-item {
    margin: 40px 0;
  }
  .results-item .image-container {
    width: 100%;
    height: 200px;
  }
  .result-top .result__back {
    padding: 0;
  }
  /* ------------------------------------------------------------
                            LIGHTBOX
    ------------------------------------------------------------ */
  .result__image,
  .result__image .owl-item {
    height: 200px;
  }
  .lightbox .lightbox__container .btn {
    top: 180px;
  }
  .grid-item article {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .calendar-module {
    columns: 1;
  }
  .map-canvas {
    position: relative;
    left: 0;
    width: 100vw;
    height: calc(100vw / 1.5);
  }
  .editor {
    position: relative;
    width: 100%;
  }
  .editor::before {
    display: none;
  }
  .editor__header {
    height: auto;
    padding: 10px 16px;
  }
  .editor__header .editor__title {
    font-size: 10px;
    line-height: 14px;
  }
  .editor__header .editor__subtitle {
    font-size: 14px;
    line-height: 16px;
  }
  .editor__header .editor__subtitle {
    margin-bottom: 8px;
  }
  .status {
    height: auto;
  }
  .status .status__icon,
  .status .status__text {
    font-size: 10px;
    line-height: 16px;
  }
  .tool {
    left: -100%;
    z-index: 5;
  }
  .tool.active {
    width: 100%;
    left: 0;
  }
  .message-box__body {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .message-box__header {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .message-box__title {
    font-size: 22px;
    line-height: 26px;
  }
  .booking__tabs__item {
    width: 33.285714%;
  }

}
@media (max-width: 585px) {
    .temperatura .weather__content h5 {
        font-size: 25px;
    }
    .temperatura .weather__content span {
        font-size: 11px;
    }
}
@media (max-width: 550px) {
  /* ------------------------------------------------------------
                                BASE
    ------------------------------------------------------------ */
  /* Hidden */
  .mobile-xsmall-show {
    display: block;
  }
  /* Hidden */
  .mobile-xsmall-hidden {
    display: none;
  }
  /* ------------------------------------------------------------
                            RESET
    ------------------------------------------------------------ */
  h1,
  h2 {
    font-size: 1.625rem;
    line-height: 1.625rem;
  }
  h3 {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
  h4 {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
  h5,
  h6 {
    font-size: 14px;
    line-height: 20px;
  }
  /* ------------------------------------------------------------
                            HERO IMAGE
    ------------------------------------------------------------ */
  .hero-image {
    min-height: auto;
    height: 290px;
    padding-top: 70px;
  }
  .hero-image .hero-slider h2 {
    font-size: 20px;
    top: 50%;
    width: 60%;
    line-height: 28px;
  }
  .hero-image.hero--interiores {
    max-height: 300px !important;
  }
  .hero-image .item-place {
    left: 10px;
    bottom: 10px;
  }
  .hero-image .item-place h5,
  .hero-image .item-place p {
    font-size: 12px;
    line-height: 16px;
  }
  .hero-image .hero-slider,
  .hero-image .hero-slider .item,
  .hero-image .hero-slider .owl-item,
  .hero-image .hero-slider .back-module {
    min-height: auto;
    height: 220px;
  }
  .hero-image .hero-slider.hero--interiores,
  .hero-image .hero-slider .item.hero--interiores,
  .hero-image .hero-slider .owl-item.hero--interiores,
  .hero-image .hero-slider .back-module.hero--interiores {
    max-height: 300px !important;
  }
  .item-place .g2 {
    background-position: 0 -55px;
    height: 40px;
    width: 40px;
    background-size: 260px 400px;
    margin-top: 0;
  }
  .options-module__list ul li i {
    display: none;
  }
  .options-module__list ul li .item__checks ul li {
    width: 50%;
  }
  .options-module__list ul li .item__checks ul + ul li {
    width: 28%;
  }
  .options-module__list ul li.set1 .special-check input:checked + label {
    border-color: #99cc33;
    background: #99cc33;
  }
  .options-module__list ul li.set2 .special-check input:checked + label {
    border-color: #00a8b1;
    background: #00a8b1;
  }
  .options-module__list ul li.set3 .special-check input:checked + label {
    border-color: #ffb500;
    background: #ffb500;
  }
  .item__checks {
    padding: 20px 0 10px 0;
  }
  .options-module ul li {
    font-size: 11px;
  }
  .thumbs-carousel.fix-control {
    padding: 50px 5% 80px 5%;
  }
  .thumbs-carousel__list.carousel__3x {
    padding: 50px 5%;
  }
  .thumbs__row .thumbs__large {
    margin-right: 10%;
    margin-left: 10%;
  }
  .thumbs__large {
    width: 80%;
  }
  .top-container .container {
    padding: 100px 5% 60px 5%;
  }
  .simple-content__wrapp {
    padding: 40px 0;
  }
  .grid-item article {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .destinos .carousel-main__item,
  .destinos .carousel-main {
    height: 250px;
    min-height: auto;
  }
  .menu-1 {
    margin-bottom: 30px;
  }
  .menu-1 ul li {
    width: 50%;
    margin: -1px -4px;
    background-color: #ffffff;
  }
  .destinos-1 .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .top-container.top__align-center .container {
    padding: 100px 5% 60px 5%;
  }
}
@media (max-width: 510px) {
    .ui-datepicker {
        width: 80% !important;
        top: 180px !important;
        left: 50% !important;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .ui-datepicker.ui-datepicker-multi-2 .ui-datepicker-group {
        width: 100%;
    }
}
@media (max-width: 480px) {
  .options-module__list ul li .item__checks ul li {
    font-size: 12px;
  }
  .options-module__list ul li .item__checks ul li .special-check {
    margin-right: 5px;
    margin-top: -1px;
  }
  .options-module__list ul li .item__checks ul + ul {
    display: flex;
  }
  .options-module__list ul li .item__checks ul + ul li {
    width: auto;
    margin-right: 5%;
  }
  .irs-min,
  .irs-max {
    width: 50px;
    font-size: 12px;
  }
  .dynamic-images .grid-item {
    height: 200px;
  }
  .industria .check-row li {
    width: 100%;
  }
  .grid-item article {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media (max-width: 425px) {
    .temperatura .weather__content {
        padding: 0;
    }
}
@media (max-width: 360px) {
    .hero-image {
        height: 320px;
    }
    .hero-image .hero-slider .back-module,
    .hero-image .hero-slider {
        height: 250px;
    }
    .hero-image .hero-slider h2 {
        top: 40%;
    }
}
@media (max-width: 350px) {
  .duplicar-agregar {
    width: 100%;
    float: none;
    margin: 20px auto 0;
  }
  .grid-item article {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

/* READ SPEAKER */
/* READSPEAKER */
@-webkit-keyframes sound {
    from {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(0.8, 0.8);
        -moz-transform: scale(0.8, 0.8);
        -ms-transform: scale(0.8, 0.8);
        -o-transform: scale(0.8, 0.8);
        transform: scale(0.8, 0.8);
    }
}
@keyframes sound {
    from {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(0.8, 0.8);
        -moz-transform: scale(0.8, 0.8);
        -ms-transform: scale(0.8, 0.8);
        -o-transform: scale(0.8, 0.8);
        transform: scale(0.8, 0.8);
    }
}
.theme-left {
    margin: 15px 0;
}

.theme-center {
    display: inline-block;
    margin: 0 auto 20px auto !important;
}

.readspeaker-skin {
    position: relative;
    z-index: 6;
}

.rsbtn_play {
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    height: 40px;
    background-color: #ff0099;
    border-radius: 20px;
    color: white;
    text-transform: uppercase;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -ms-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.rsbtn_play:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.rsbtn_left,
.rsbtn_right {
    display: inline-block;
    padding: 10px;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -ms-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.rsbtn_left {
    font-size: 14px;
    font-weight: 700;
    margin-right: -5px;
}

.rsbtn_left::before {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-right: 10px;
    content: "\f028";
    font-family: "FontAwesome";
    font-size: 18px;
    font-weight: normal;
    line-height: 18px;
}

.rsplaying .rsbtn_left::before {
    -webkit-animation: sound 0.65s infinite;
    -moz-animation: sound 0.65s infinite;
    -ms-animation: sound 0.65s infinite;
    -o-animation: sound 0.65s infinite;
    animation: sound 0.65s infinite;
    animation-direction: alternate;
}

.rsbtn_right {
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.rsbtn_right::before {
    content: "\f04b";
    font-family: "FontAwesome";
    font-weight: normal;
}

.rsplaying .rsbtn_left,
.rsplaying .rsbtn_right,
.rsbtn_left:hover,
.rsbtn_right:hover {
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
}

.rsplaying .rsbtn_right::before {
    content: "\f01e";
}

.rsbtn_exp {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    display: none;
    padding: 50px 10px 5px 10px;
    white-space: nowrap;
    background-color: rgba(250, 250, 250, 0.9);
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.rsbtn_exp:hover {
    background-color: rgba(250, 250, 250, 1);
}

.rsexpanded .rsbtn_exp {
    display: block;
}

.rsbtn_exp > a,
.rsbtn_exp > span {
    display: inline-block;
}

.rsbtn_pause,
.rsbtn_stop,
.rsbtn_settings,
.rsbtn_dl,
.rsbtn_closer {
    position: relative;
    font-family: "FontAwesome";
    padding: 2px 6px;
    color: #666;
}

.rsbtn_pause:hover,
.rsbtn_stop:hover,
.rsbtn_settings:hover,
.rsbtn_dl:hover,
.rsbtn_closer:hover {
    color: #ff0099;
}

.rsbtn_pause span,
.rsbtn_stop span,
.rsbtn_settings span,
.rsbtn_dl span,
.rsbtn_closer span {
    position: absolute;
    top: 150%;
    left: 50%;
    display: none;
    background-color: white;
    padding: 3px 6px;
    font-family: "Raleway";
    font-size: 12px;
    text-align: center;
    border-radius: 15px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.rsbtn_pause:hover span,
.rsbtn_stop:hover span,
.rsbtn_settings:hover span,
.rsbtn_dl:hover span,
.rsbtn_closer:hover span {
    display: block
}


.rsbtn_pause::before {
    content: "\f04c";
}

.rspaused .rsbtn_pause::before {
    content: "\f04b";
}

.rsbtn_stop::before {
    content: "\f04d";
}

.rsbtn_settings::before {
    content: "\f013";
}

.rsbtn_dl::before {
    content: "\f019";
}

.rsbtn_closer::before {
    content: "\f00d";
}

#blogs .btn-calendar {
  border: solid 2px #ffb500;
  color: #ffb500;
}

#blogs article {
  height:250px;
}

.slick-dots li:only-child{
  display: none;
}
.ui-autocomplete-category{
  width:auto;
  height: auto;
  padding:10px 5px 20px;
  font-family: 'Raleway', sanserif;
}
.ui-autocomplete-category img{
  width:auto;
  height: auto;
}
.ui-menu-item a{
width:100%;
display:inline-block;
font-size:18px;
color:#B3B3B3;
padding:3px 0px;
border:none;
font-family: 'Raleway', sanserif;
}
.ui-menu-item a:hover{
width:100%;
display:inline-block;
font-size:18px;
background: #00a8b1;
border:none;
}
.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active {
border:none;
background: #00a8b1;
width:100%;
display:inline-block;
font-size:18px;
}


.fa-heart-o,
.fa-heart {
 display: none;
}
/* Modal mobile */
.css-unh5jg {
  background: rgba(0,0,0,0.85);
}
.css-unh5jg iframe {
  background: #fff;
}
.css-1ycvjh {
  background: #000;
}

/* date picker */
.ui-datepicker {
  display: none;
  overflow: hidden;
  padding: 0 !important;
  border-radius: 3px;
  border: 0 !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15) !important;
}

.ui-datepicker .ui-datepicker-header {
  background-color: #99CC33 !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.ui-datepicker .ui-datepicker-title {
  background: transparent !important;
}

.ui-datepicker table th {
  background: #666 !important;
}

.ui-datepicker .ui-datepicker-current-day {
  background: #99CC33 !important;
  border-radius: 3px;
}

.ui-datepicker table td:hover {
  background: #CCC !important;
  border-radius: 3px;
}

.ui-datepicker .ui-datepicker-prev::before,
.ui-datepicker .ui-datepicker-next::before {
  display: block !important;
  line-height: 30px !important;
  text-align: center !important;
}

.ui-datepicker .ui-datepicker-prev::before {
  text-indent: 0 !important;
  content: "<" !important;

}

.ui-datepicker .ui-datepicker-next::before {
  text-indent: 0 !important;
  content: ">" !important;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: none !important;
}


.css-unh5jg iframe{ height:100%; }
