/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
@import url(../../bower_components/fullcalendar/dist/fullcalendar.css);
@import url(../../src/css/fonts.css);
@import url(../../bower_components/fancybox/source/jquery.fancybox.css);
@import url(../../bower_components/sweetalert/dist/sweetalert.css);
@import url(../../bower_components/slick-carousel/slick/slick.css);
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/* --------------------------------------------------------------------------------------------------- *\

                                                VARIABLES

\* --------------------------------------------------------------------------------------------------- */
/*
 1) Base variables
 */
/*
 2) Navigation variables
 */
/*
 3) Booking panel variables
 */
/*
 4) Listing variables
 */
/*
 5) Home Page variables
 */
/*
 6) Footer variables
 */
/*
 7) Form variables
 */
/*
 7) Form variables
 */
/* SIZES */
/* FONTS */
/* --------------------------------------------------------------------------------------------------- *\

                                                MIXINS

\* --------------------------------------------------------------------------------------------------- */
@-webkit-keyframes buttonPulse {
  0% {
    -webkit-transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(5px); }
  100% {
    -webkit-transform: translateY(0px); } }

@-moz-keyframes buttonPulse {
  0% {
    -moz-transform: translateY(0px); }
  50% {
    -moz-transform: translateY(5px); }
  100% {
    -moz-transform: translateY(0px); } }

@keyframes buttonPulse {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px); }
  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

/* ------------------------------------------ *\

				DEFAULT VARIABLES

\* ------------------------------------------ */
/* COLORS */
/* SIZES */
/* FONTS */
/* NIE RUSZAJ JAK NIE UMIESZ */
@font-face {
  font-family: 'mixpicker-icons';
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SDX4AAAC8AAAAYGNtYXDwj/CPAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZrkJ+mQAAAF4AAABhGhlYWQEAG3nAAAC/AAAADZoaGVhBqgDyAAAAzQAAAAkaG10eArbAMoAAANYAAAAHGxvY2EAugE4AAADdAAAABBtYXhwAAkALwAAA4QAAAAgbmFtZVcZpu4AAAOkAAABRXBvc3QAAwAAAAAE7AAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADwVAPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEAEAAAAAMAAgAAgAEAAEAIPAN8FT//f//AAAAAAAg8A3wU//9//8AAf/jD/cPsgADAAEAAAAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAD8APwLmAuYALAAAJRQPAQYjIi8BBwYjIi8BJjU0PwEnJjU0PwE2MzIfATc2MzIfARYVFA8BFxYVAuYQThAXFxCoqBAXFhBOEBCoqBAQThAWFxCoqBAXFxBOEBCoqBDDFhBOEBCoqBAQThAWFxCoqBAXFxBOEBCoqBAQThAXFxCoqBAXAAAAAQBYAA8CqAOoABoAAAkCFhUUDwEGIyInASY1NDcBNjMyHwEWFRQHAp3+0QEvCwtfCw4PC/5YCwsBqAsPDgtfCwsDC/7Q/tELDw8KXwsLAagLDg8LAagLC18LDg8LAAAAAQAzAA8CgwOoABoAAAkBBiMiLwEmNTQ3CQEmNTQ/ATYzMhcBFhUUBwJ5/lgLDw8LXwsLATD+0AsLXwsPDwsBqAoKAcL+WAsLXwoPDwsBLwEwCw8OC18LC/5YCw8OCwAAAQAAAAEAAPIX8PJfDzz1AAsEAAAAAADQ/hShAAAAAND+FKEAAAAAAuYDqAAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAC5gABAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAIAAAADJQA/AtsAWALbADMAAAAAAAoAFAAeAGIAkgDCAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAVYAAsAAAAABQwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxINfmNtYXAAAAFoAAAAVAAAAFTwj/CPZ2FzcAAAAbwAAAAIAAAACAAAABBnbHlmAAABxAAAAYQAAAGEuQn6ZGhlYWQAAANIAAAANgAAADYEAG3naGhlYQAAA4AAAAAkAAAAJAaoA8hobXR4AAADpAAAABwAAAAcCtsAymxvY2EAAAPAAAAAEAAAABAAugE4bWF4cAAAA9AAAAAgAAAAIAAJAC9uYW1lAAAD8AAAAUUAAAFFVxmm7nBvc3QAAAU4AAAAIAAAACAAAwAAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8FQDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABABAAAAADAAIAAIABAABACDwDfBU//3//wAAAAAAIPAN8FP//f//AAH/4w/3D7IAAwABAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQA/AD8C5gLmACwAACUUDwEGIyIvAQcGIyIvASY1ND8BJyY1ND8BNjMyHwE3NjMyHwEWFRQPARcWFQLmEE4QFxcQqKgQFxYQThAQqKgQEE4QFhcQqKgQFxcQThAQqKgQwxYQThAQqKgQEE4QFhcQqKgQFxcQThAQqKgQEE4QFxcQqKgQFwAAAAEAWAAPAqgDqAAaAAAJAhYVFA8BBiMiJwEmNTQ3ATYzMh8BFhUUBwKd/tEBLwsLXwsODwv+WAsLAagLDw4LXwsLAwv+0P7RCw8PCl8LCwGoCw4PCwGoCwtfCw4PCwAAAAEAMwAPAoMDqAAaAAAJAQYjIi8BJjU0NwkBJjU0PwE2MzIXARYVFAcCef5YCw8PC18LCwEw/tALC18LDw8LAagKCgHC/lgLC18KDw8LAS8BMAsPDgtfCwv+WAsPDgsAAAEAAAABAADyF/DyXw889QALBAAAAAAA0P4UoQAAAADQ/hShAAAAAALmA6gAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAAuYAAQAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAACAAAAAyUAPwLbAFgC2wAzAAAAAAAKABQAHgBiAJIAwgABAAAABwAtAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("woff");
  font-weight: normal;
  font-style: normal; }

.mixpicker__prev, .mixpicker__next, .mixpicker__close {
  font-family: 'mixpicker-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none; }

html.disable-scroll, html.disable-scroll body {
  overflow: hidden !important;
  height: 100%; }

.mixpicker, .mixpicker * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.mixpicker_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  background: rgba(0, 0, 0, 0.5);
  zoom: 1;
  font-family: inherit;
  display: none;
  opacity: 0;
  z-index: 9997;
  transition: all 0.2s ease; }
  .mixpicker_modal.active {
    opacity: 1; }

.mixpicker {
  z-index: 9995;
  margin: 0 auto;
  width: 850px;
  font-size: 16px;
  background-color: #fff;
  border-radius: 0px;
  padding: 20px 10px 20px 10px;
  display: block;
  overflow: hidden;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-height: 414px; }
  .mixpicker.mixpicker__popup {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    opacity: 0; }
  .mixpicker.mixpicker__inline {
    margin: 0;
    background: none; }
  .mixpicker.mixpicker__fullsize {
    width: auto;
    left: 10px !important;
    right: 10px !important; }
  .mixpicker.active {
    opacity: 1; }
  .mixpicker a {
    color: #000;
    text-decoration: none; }
    .mixpicker a:hover {
      text-decoration: none; }
  .mixpicker .mixpicker__btn {
    display: block;
    width: auto;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    margin: 0;
    background: #c41230;
    color: #FFF;
    border-radius: 0px;
    text-align: center;
    transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s; }
    .mixpicker .mixpicker__btn:hover {
      background: #950e25;
      color: #FFF; }
    .mixpicker .mixpicker__btn[disabled="disabled"] {
      background: #ef4d69;
      color: #FFF;
      cursor: default;
      opacity: 0.6; }
  .mixpicker .mixpicker__close {
    display: none;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transform: translateZ(0);
    background: #c41230;
    color: #FFF;
    text-align: center;
    line-height: 37px;
    font-size: 20px; }
    .mixpicker .mixpicker__close:before {
      content: "\f00d"; }
  .mixpicker .mixpicker__nav {
    height: auto;
    clear: both;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px; }
    .mixpicker .mixpicker__nav a {
      display: inline-block;
      transition: all 0.2s ease 0s;
      -moz-transition: all 0.2s ease 0s;
      -webkit-transition: all 0.2s ease 0s;
      text-decoration: none; }
      .mixpicker .mixpicker__nav a.mixpicker__prev {
        float: left; }
      .mixpicker .mixpicker__nav a.mixpicker__prev:before {
        content: "\f053"; }
      .mixpicker .mixpicker__nav a.mixpicker__next {
        float: right;
        text-indent: 4px; }
      .mixpicker .mixpicker__nav a.mixpicker__next:before {
        content: "\f054"; }
  .mixpicker .mixpicker__wrapper {
    width: 100%;
    padding-bottom: 20px;
    min-width: 425px;
    max-width: 850px;
    overflow: hidden;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out; }
    .mixpicker .mixpicker__wrapper .mixpicker__mobile-more {
      display: none; }
    .mixpicker .mixpicker__wrapper .mixpicker__months {
      width: auto;
      min-width: 1px;
      height: 354px; }
    .mixpicker .mixpicker__wrapper .mixpicker__month {
      width: 405px;
      display: inline-block;
      border: 0;
      margin: 0;
      padding: 0px 10px 0px 10px;
      text-align: center;
      float: left;
      vertical-align: top;
      zoom: 1; }
      .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__month_name {
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        height: 40px;
        line-height: 40px;
        margin-bottom: 20px;
        text-transform: uppercase; }
      .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month {
        width: 100%;
        border: 0;
        margin: 0;
        padding: 0;
        text-align: center;
        border-collapse: initial;
        border-spacing: 1px; }
        .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month thead {
          width: 100%;
          height: 40px; }
          .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month thead th {
            width: 202.5px;
            height: 40px;
            font-weight: normal;
            text-transform: uppercase; }
        .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td {
          width: 14.28%;
          max-width: 14.28%;
          height: 40px;
          overflow: hidden; }
          .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td.mixpicker__day {
            margin: 0;
            padding: 0; }
          .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day {
            width: 100%;
            height: 100%;
            clear: both;
            position: relative;
            background: #FFF;
            transition: all 0.2s ease 0s;
            -moz-transition: all 0.2s ease 0s;
            -webkit-transition: all 0.2s ease 0s; }
            .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day a {
              color: #5D5D5D;
              display: block;
              width: 100%;
              height: 100%;
              line-height: 40px;
              overflow: hidden; }
            .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__current {
              background: #555; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__current a {
                color: #FFF; }
            .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__nocheckin, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__nocheckout {
              background: #EDEDED; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__nocheckin a, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__nocheckout a {
                color: #FFF; }
            .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__disabled {
              background: #F4F4F4; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__disabled a {
                color: #D9D9D9; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__disabled.mixpicker__checkio, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__disabled:hover {
                background: #B22D00 !important; }
                .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__disabled.mixpicker__checkio a, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__disabled:hover a {
                  color: #fff !important; }
            .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkoverlay {
              background: #B2E7A0 !important;
              position: relative; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkoverlay.mixpicker__checkin:before, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkoverlay.mixpicker__checkin_tmp:before {
                border-left-color: #B2E7A0 !important;
                border-top-color: #B2E7A0 !important; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkoverlay.mixpicker__checkout:before, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkoverlay.mixpicker__checkout_tmp:before {
                border-right-color: #B2E7A0 !important;
                border-bottom-color: #B2E7A0 !important; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkoverlay.mixpicker__disabled {
                background: #F4F4F4 !important; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkoverlay a {
                z-index: 10;
                position: absolute;
                top: 0;
                left: 0; }
            .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin_tmp {
              background: #c41230; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin a, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin_tmp a {
                color: #FFF; }
            .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkio, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day:hover, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__hover, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__selected {
              background: #c41230 !important; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkio a, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day:hover a, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__hover a, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__selected a {
                color: #FFF; }
            .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout {
              background: #c41230; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout a {
                color: #FFF; }
            .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin_tmp {
              background: #c41230 !important;
              position: relative; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin:before, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin_tmp:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                display: block;
                z-index: 0;
                border-left: 10px solid #FFF;
                border-top: 10px solid #FFF;
                border-right: 10px solid transparent;
                border-bottom: 10px solid transparent; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin.mixpicker__disabled, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin_tmp.mixpicker__disabled {
                background: #F4F4F4 !important; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin.mixpicker__hover, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin_tmp.mixpicker__hover {
                background: #c41230 !important; }
                .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin.mixpicker__hover:before, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin_tmp.mixpicker__hover:before {
                  content: "";
                  position: absolute;
                  bottom: 0;
                  right: 0;
                  display: block;
                  z-index: 0;
                  border: 0 !important; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin a, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkin_tmp a {
                z-index: 10;
                position: absolute;
                top: 0;
                left: 0; }
            .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout_tmp {
              background: #c41230 !important;
              position: relative; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout:before, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout_tmp:before {
                content: "";
                position: absolute;
                bottom: 0;
                right: 0;
                display: block;
                z-index: 0;
                border-right: 10px solid #FFF;
                border-bottom: 10px solid #FFF;
                border-top: 10px solid transparent;
                border-left: 10px solid transparent; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout.mixpicker__checkio, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout_tmp.mixpicker__checkio {
                background: #c41230 !important; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout.mixpicker__hover, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout_tmp.mixpicker__hover {
                background: #c41230 !important; }
                .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout.mixpicker__hover:before, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout_tmp.mixpicker__hover:before {
                  content: "";
                  position: absolute;
                  bottom: 0;
                  right: 0;
                  display: block;
                  z-index: 0;
                  border: 0 !important; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout a, .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__checkout_tmp a {
                z-index: 10;
                position: absolute;
                top: 0;
                left: 0; }
            .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__error {
              -webkit-animation-duration: .75s;
              animation-duration: .75s;
              -webkit-animation-fill-mode: both;
              animation-fill-mode: both;
              background: #B22D00;
              animation-iteration-count: 2;
              -webkit-animation-iteration-count: 2;
              -webkit-animation-name: mixpicker-flash;
              animation-name: mixpicker-flash; }
              .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day.mixpicker__error a {
                color: #fff !important; }
  .mixpicker .mixpicker__footer {
    width: 100%;
    height: auto;
    min-height: 40px;
    clear: both;
    margin: 0;
    padding: 0;
    position: relative;
    -webkit-transform: translateZ(0); }
    .mixpicker .mixpicker__footer div.mixpicker__message {
      max-width: 50%;
      height: auto;
      line-height: 130%;
      font-size: 14px;
      display: inline-block;
      float: left;
      margin: 0 0 0 10px;
      padding: 10px 20px;
      position: relative;
      color: #333;
      border: 1px solid transparent; }
      .mixpicker .mixpicker__footer div.mixpicker__message.mixpicker__message--error {
        border-color: #c13d2b;
        background: #f2dede; }
      .mixpicker .mixpicker__footer div.mixpicker__message.mixpicker__message--info {
        border-color: #5498CF;
        background: #D9EDF7; }
    .mixpicker .mixpicker__footer div.mixpicker__select {
      width: 30%;
      height: auto;
      display: inline-block;
      float: right;
      margin: 0 10px 0 0;
      padding: 0;
      text-transform: uppercase;
      position: relative; }

@media only screen and (max-width: 900px) {
  .mixpicker {
    width: 425px; }
    .mixpicker .nav div.header {
      width: 345px; } }

@media only screen and (max-width: 480px) {
  .mixpicker.mixpicker__inline {
    zoom: 0.8; } }

@media only screen and (max-width: 480px) {
  .mixpicker.mixpicker__inline {
    zoom: 0.7; } }

.mixpicker.mixpicker__mobile-hld,
.mixpicker_modal.mixpicker__mobile-hld {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch; }
  .mixpicker.mixpicker__mobile-hld .mixpicker.mixpicker__mobile,
  .mixpicker_modal.mixpicker__mobile-hld .mixpicker.mixpicker__mobile {
    top: 0 !important;
    width: 100%;
    min-height: 100%;
    box-sizing: border-box; }
    .mixpicker.mixpicker__mobile-hld .mixpicker.mixpicker__mobile .mixpicker__mobile-more,
    .mixpicker_modal.mixpicker__mobile-hld .mixpicker.mixpicker__mobile .mixpicker__mobile-more {
      width: 100%;
      height: auto;
      display: block !important;
      float: right;
      margin: 0 auto;
      padding: 0;
      text-transform: uppercase;
      position: relative; }
  .mixpicker.mixpicker__mobile-hld .mixpicker,
  .mixpicker_modal.mixpicker__mobile-hld .mixpicker {
    min-width: 100%; }
    .mixpicker.mixpicker__mobile-hld .mixpicker .mixpicker__close,
    .mixpicker_modal.mixpicker__mobile-hld .mixpicker .mixpicker__close {
      display: block; }
    .mixpicker.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper,
    .mixpicker_modal.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper {
      min-width: 100%;
      padding-bottom: 50px; }
    .mixpicker.mixpicker__mobile-hld .mixpicker .mixpicker__footer,
    .mixpicker_modal.mixpicker__mobile-hld .mixpicker .mixpicker__footer {
      position: fixed;
      bottom: 0;
      padding: 10px 0;
      border-top: 1px solid #ccc;
      left: 0;
      background: #fff; }
    .mixpicker.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper .mixpicker__months,
    .mixpicker_modal.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper .mixpicker__months {
      width: 100% !important;
      height: auto;
      overflow: hidden;
      margin: 0 !important; }
    .mixpicker.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper .mixpicker__month,
    .mixpicker_modal.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper .mixpicker__month {
      margin-bottom: 20px;
      padding: 0;
      width: 100%; }
    .mixpicker.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td,
    .mixpicker_modal.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td {
      height: 45px; }
      .mixpicker.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day a,
      .mixpicker_modal.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day a {
        line-height: 45px; }
    .mixpicker.mixpicker__mobile-hld .mixpicker .mixpicker__nav,
    .mixpicker_modal.mixpicker__mobile-hld .mixpicker .mixpicker__nav {
      display: none; }
    .mixpicker.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__month_name,
    .mixpicker_modal.mixpicker__mobile-hld .mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__month_name {
      margin-bottom: 0; }
    .mixpicker.mixpicker__mobile-hld .mixpicker.mixpicker__fullsize,
    .mixpicker_modal.mixpicker__mobile-hld .mixpicker.mixpicker__fullsize {
      left: 0 !important;
      right: 0 !important; }

@-webkit-keyframes mixpicker-flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes mixpicker-flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@font-face {
  font-family: 'lg';
  src: url("../../bower_components/lightgallery/src/fonts/lg.eot?n1z373");
  src: url("../../bower_components/lightgallery/src/fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../../bower_components/lightgallery/src/fonts/lg.woff?n1z373") format("woff"), url("../../bower_components/lightgallery/src/fonts/lg.ttf?n1z373") format("truetype"), url("../../bower_components/lightgallery/src/fonts/lg.svg?n1z373#lg") format("svg");
  font-weight: normal;
  font-style: normal; }

.lg-icon {
  font-family: 'lg';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0;
  color: #c41230;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080; }
  .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
    pointer-events: none;
    opacity: 0.5; }
  .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
    color: #950e25; }

.lg-actions .lg-next {
  right: 20px; }
  .lg-actions .lg-next:before {
    content: "\e095"; }

.lg-actions .lg-prev {
  left: 20px; }
  .lg-actions .lg-prev:after {
    content: "\e094"; }

@-webkit-keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@-moz-keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@-ms-keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@-webkit-keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

@-moz-keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

@-ms-keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

@keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative; }

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative; }

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8); }
  .lg-toolbar .lg-icon {
    color: #c41230;
    cursor: pointer;
    float: right;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: medium none;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear; }
    .lg-toolbar .lg-icon:hover {
      color: #950e25; }
  .lg-toolbar .lg-close:after {
    content: "\e070"; }
  .lg-toolbar .lg-download:after {
    content: "\e0f2"; }

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080; }
  .lg-sub-html h4 {
    margin: 0;
    font-size: 13px;
    font-weight: bold; }
  .lg-sub-html p {
    font-size: 12px;
    margin: 5px 0 0; }

#lg-counter {
  color: #c41230;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle; }

.lg-toolbar, .lg-prev, .lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear; }

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0); }

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0); }

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0); }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1; }

.lg-outer .lg-thumb-outer {
  background-color: rgba(255, 255, 255, 0.8);
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }
  .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab; }
  .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing; }
  .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important; }

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0); }

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px; }

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px; }
  @media (min-width: 1025px) {
    .lg-outer .lg-thumb-item {
      -webkit-transition: border-color 0.25s ease;
      -o-transition: border-color 0.25s ease;
      transition: border-color 0.25s ease; } }
  .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #c41230; }
  .lg-outer .lg-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px; }

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0; }

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease; }

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px; }

.lg-outer .lg-toogle-thumb {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 0 0;
  color: #c41230;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px; }
  .lg-outer .lg-toogle-thumb:after {
    content: "\e1ff"; }
  .lg-outer .lg-toogle-thumb:hover {
    color: #950e25; }

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px; }

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative; }
  .lg-outer .lg-video .lg-object {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; }
  .lg-outer .lg-video .lg-video-play {
    width: 84px;
    height: 59px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -42px;
    margin-top: -30px;
    z-index: 1080;
    cursor: pointer; }

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../../bower_components/lightgallery/src/img/vimeo-play.png") no-repeat scroll 0 0 transparent; }

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../../bower_components/lightgallery/src/img/vimeo-play.png") no-repeat scroll 0 -58px transparent; }

.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../../bower_components/lightgallery/src/img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8; }

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1; }

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../../bower_components/lightgallery/src/img/youtube-play.png") no-repeat scroll 0 0 transparent; }

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../../bower_components/lightgallery/src/img/youtube-play.png") no-repeat scroll 0 -60px transparent; }

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0; }

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden; }

.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none; }

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible; }

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s; }
  .lg-progress-bar .lg-progress {
    background-color: #c41230;
    height: 5px;
    width: 0; }
  .lg-progress-bar.lg-start .lg-progress {
    width: 100%; }
  .lg-show-autoplay .lg-progress-bar {
    opacity: 1; }

.lg-autoplay-button:after {
  content: "\e01d"; }
  .lg-show-autoplay .lg-autoplay-button:after {
    content: "\e01a"; }

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s; }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden; }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden; }

#lg-zoom-in:after {
  content: "\e311"; }

#lg-actual-size {
  font-size: 20px; }
  #lg-actual-size:after {
    content: "\e033"; }

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none; }
  #lg-zoom-out:after {
    content: "\e312"; }
  .lg-zoomed #lg-zoom-out {
    opacity: 1;
    pointer-events: auto; }

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px; }
  .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
    overflow: visible; }

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px; }
  .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
    box-shadow: 0 0 0 2px white inset; }

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0); }
  .lg-outer .lg-pager-thumb-cont img {
    width: 100%;
    height: 100%; }

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px; }
  .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
    box-shadow: 0 0 0 8px white inset; }

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0; }

.lg-fullscreen:after {
  content: "\e20c"; }
  .lg-fullscreen-on .lg-fullscreen:after {
    content: "\e20d"; }

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s; }

.lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible; }

.lg-outer.lg-dropdown-active #lg-share {
  color: #FFF; }

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translate3d(0, 5px, 0);
  -o-transform: translate3d(0, 5px, 0);
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s; }
  .lg-outer .lg-dropdown:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    border: 8px solid transparent;
    border-bottom-color: #FFF;
    right: 16px;
    top: -16px; }
  .lg-outer .lg-dropdown > li:last-child {
    margin-bottom: 0px; }
  .lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
    color: #333; }
  .lg-outer .lg-dropdown a {
    color: #333;
    display: block;
    white-space: pre;
    padding: 4px 12px;
    font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px; }
    .lg-outer .lg-dropdown a:hover {
      background-color: rgba(0, 0, 0, 0.07); }
  .lg-outer .lg-dropdown .lg-dropdown-text {
    display: inline-block;
    line-height: 1;
    margin-top: -3px;
    vertical-align: middle; }
  .lg-outer .lg-dropdown .lg-icon {
    color: #333;
    display: inline-block;
    float: none;
    font-size: 20px;
    height: auto;
    line-height: 1;
    margin-right: 8px;
    padding: 0;
    vertical-align: middle;
    width: auto; }

.lg-outer #lg-share {
  position: relative; }
  .lg-outer #lg-share:after {
    content: "\e80d"; }

.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998; }
  .lg-outer #lg-share-facebook .lg-icon:after {
    content: "\e901"; }

.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced; }
  .lg-outer #lg-share-twitter .lg-icon:after {
    content: "\e904"; }

.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39; }
  .lg-outer #lg-share-googleplus .lg-icon:after {
    content: "\e902"; }

.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027; }
  .lg-outer #lg-share-pinterest .lg-icon:after {
    content: "\e903"; }

.group {
  *zoom: 1; }

.group:before, .group:after {
  display: table;
  content: "";
  line-height: 0; }

.group:after {
  clear: both; }

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s; }
  .lg-outer * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .lg-outer.lg-visible {
    opacity: 1; }
  .lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important; }
  .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important;
    opacity: 1; }
  .lg-outer.lg-grab img.lg-object {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab; }
  .lg-outer.lg-grabbing img.lg-object {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing; }
  .lg-outer .lg {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    max-height: 100%; }
  .lg-outer .lg-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap; }
  .lg-outer .lg-item {
    background: url("../../bower_components/lightgallery/src/img/loading.gif") no-repeat scroll center center transparent;
    display: none !important; }
  .lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
    display: inline-block !important; }
  .lg-outer.lg-css .lg-current {
    display: inline-block !important; }
  .lg-outer .lg-item, .lg-outer .lg-img-wrap {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%; }
    .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
      content: "";
      display: inline-block;
      height: 50%;
      width: 1px;
      margin-right: -1px; }
  .lg-outer .lg-img-wrap {
    position: absolute;
    padding: 0 5px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .lg-outer .lg-item.lg-complete {
    background-image: none; }
  .lg-outer .lg-item.lg-current {
    z-index: 1060; }
  .lg-outer .lg-image {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important; }
  .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s; }
  .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
    opacity: 1; }
  .lg-outer .lg-empty-html {
    display: none; }
  .lg-outer.lg-hide-download #lg-download {
    display: none; }

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s; }
  .lg-backdrop.in {
    opacity: 1; }

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important; }

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden; }

.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden; }

.lg-css3.lg-fade .lg-item {
  opacity: 0; }
  .lg-css3.lg-fade .lg-item.lg-current {
    opacity: 1; }
  .lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
    -webkit-transition: opacity 0.1s ease 0s;
    -moz-transition: opacity 0.1s ease 0s;
    -o-transition: opacity 0.1s ease 0s;
    transition: opacity 0.1s ease 0s; }

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0; }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
    left: -100%; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
    left: 100%; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    left: 0;
    opacity: 1; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }

.lg-backdrop {
  background: #fff; }

.lg-thumb-outer.lg-grab {
  padding-right: 10px;
  padding-left: 10px; }

/* External scripts styles */
#cookieWarning {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: teal !important;
  font-size: 10px !important;
  border-top: 2px solid #c41230; }
  #cookieWarning .cookieContent {
    text-align: center;
    padding: 0px !important; }
    #cookieWarning .cookieContent strong {
      text-transform: uppercase;
      margin-right: 10px; }
    #cookieWarning .cookieContent strong, #cookieWarning .cookieContent p {
      display: inline-block; }
    #cookieWarning .cookieContent .cookieButton {
      float: none !important;
      border: none !important;
      padding: 0 !important; }
      #cookieWarning .cookieContent .cookieButton a {
        padding: 2px 6px !important;
        border: none;
        display: inline-block;
        background: transparent !important;
        color: #c41230 !important; }
        #cookieWarning .cookieContent .cookieButton a:hover {
          background: rgba(255, 255, 255, 0.9) !important;
          color: #c41230 !important; }

@font-face {
  font-family: "slick";
  src: url("/bower_components/slick.js/slick/fonts/slick.eot");
  src: url("/bower_components/slick.js/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/bower_components/slick.js/slick/fonts/slick.woff") format("woff"), url("/bower_components/slick.js/slick/fonts/slick.ttf") format("truetype"), url("/bower_components/slick.js/slick/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* IE9 FALLBACK */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9; }

.sweet-alert .sa-icon.sa-success {
  border-color: transparent; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9; }

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  /* --- CUSTOM PRINT --- */
  /* --- END CUSTOM PRINT --- */ }

.skip {
  display: none; }

html {
  box-sizing: border-box; }
  html * {
    box-sizing: inherit; }
  html a {
    color: #000000;
    text-decoration: none; }
    html a[href^='tel:'] {
      color: inherit;
      cursor: default; }
    html a:hover {
      text-decoration: underline; }

.arrow__inner:before, .banners .arrow-down:before, .navigation__icons .nav-icon:before, .mosaic .liquid:after, .contact .contact__left a[href^='mailto:']::before,
.contact .contact__left a[href^='tel:']::before,
.contact .contact__left .fax::before,
.contact .contact__left .gps::before {
  speak: none;
  font-family: 'icomoon';
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.content a, .content-intro a {
  -webkit-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  position: relative;
  color: #c41230; }
  .content a:hover, .content-intro a:hover {
    text-decoration: underline; }
  .content a[href^='tel:']:hover, .content-intro a[href^='tel:']:hover {
    color: #c41230; }

.askoffer span.CurrencyValueCms-details {
  font-size: 28px;
  display: inline-block; }

/* ------------------------------------------ *\

                SUSY CONFIG

\* ------------------------------------------ */
body {
  font-family: "lora", serif;
  font-size: 14px;
  background: #ffffff;
  overflow-x: hidden; }

/* ------------------------------------------ *\

                COMMON

\* ------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.04em;
  line-height: 150%;
  color: #000000; }

.box__top h2, .box3__inner h2 {
  color: #c41230;
  font-family: "lora", serif;
  font-size: 35px;
  font-weight: 400;
  margin: 5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 130%;
  letter-spacing: 0.08em; }

h1 {
  font-size: 45px;
  font-family: "lora", serif;
  letter-spacing: 0.1em;
  color: #c41230;
  text-align: center;
  margin-bottom: 10px;
  padding: 0 30px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0;
  padding-top: 40px; }

.slick-hld, .slick-list, .slick-track {
  position: relative;
  width: 100%;
  height: 100%; }

.js-start-slick:not(.slick-initialized),
.js-start-slick:not(.slick-initialized) ~ .section--left-offers__title,
.js-start-slick:not(.slick-initialized) ~ .button-hld-see-all-offers,
.slides#offers-home:not(.slick-initialized) {
  display: none; }

.liquid {
  height: 100%; }

.button, form.offerask .buttons button, .block--left__book, form.contact .buttons button, .btn, .button--sec, .newsletter .btn-primary {
  color: #ffffff;
  background: #c41230;
  font-family: "lora", serif;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.14em;
  line-height: 1;
  height: 38px;
  padding: 12px 20px 9px;
  font-weight: 600;
  border: 0;
  outline: 0;
  min-width: 195px;
  -webkit-transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
  -o-transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
  transition: border 0.3s ease, background 0.3s ease, color 0.3s ease; }
  .button:hover, form.offerask .buttons button:hover, .block--left__book:hover, form.contact .buttons button:hover, .btn:hover, .button--sec:hover, .newsletter .btn-primary:hover {
    background: #950e25; }

.button--book {
  min-width: 0; }

.button--transparent {
  color: #000000;
  background: transparent;
  border: solid 1px #ebebeb; }
  .button--transparent:hover {
    background: #ebebeb; }

.button--sec, .newsletter .btn-primary {
  font-weight: 600; }

.button--voucher {
  position: fixed;
  right: -81px;
  top: 45%;
  transform: rotate(-90deg);
  z-index: 99; }

.arrow {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .arrow--details {
    top: 0px; }
    .arrow--details .arrow__inner {
      top: 40px; }
  .arrow__box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 63px;
    cursor: pointer; }
    .arrow__box--left {
      left: 0; }
      .arrow__box--left .arrow__text {
        margin-left: 6px; }
      .arrow__box--left:hover .arrow__inner::before {
        color: #c41230;
        transform: translateX(-10px); }
      .arrow__box--left:hover .arrow__text {
        color: #c41230; }
    .arrow__box--right {
      right: 0; }
      .arrow__box--right .arrow__text {
        margin-right: 6px;
        order: -1; }
      .arrow__box--right:hover .arrow__inner::before {
        color: #c41230;
        transform: translateX(10px); }
      .arrow__box--right:hover .arrow__text {
        color: #c41230; }
  .arrow__inner {
    cursor: pointer; }
    .arrow__inner:before {
      content: '';
      font-family: "icomoon";
      position: absolute;
      display: block;
      color: #000000;
      font-size: 8px;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .arrow__inner--left:before {
      content: '\e96b';
      text-align: center;
      position: relative; }
    .arrow__inner--right:before {
      content: '\e96c';
      text-align: center;
      position: relative; }
  .arrow__text {
    color: #000000;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease; }

.box {
  position: relative; }
  .box__top {
    padding: 0;
    text-align: left;
    margin: 0;
    height: 130px;
    display: flex;
    align-items: center;
    width: 100%;
    background: #ffffff; }
    .box__top__inner {
      width: 100%;
      padding: 0;
      border-bottom: none;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .box__top__inner h1, .box__top__inner h2, .box__top__inner h3 {
        color: #c41230;
        line-height: 1.2;
        letter-spacing: 0.02em;
        font-size: 35px;
        font-family: "lora", serif;
        font-weight: 400; }
      .box__top__inner p {
        font-family: "lora", serif;
        color: #000000;
        font-size: 24px;
        margin: 0; }
  .box__content {
    padding: 40px 48px 90px;
    text-align: center;
    font-family: "lora", serif;
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-top: 0;
    color: #000000;
    line-height: 1.7;
    min-height: 400px;
    background: linear-gradient(rgba(255, 255, 255, 0.83) 0%, white 40%);
    position: relative;
    border: solid 1px #ebebeb; }
    .box__content .divider {
      width: 100%;
      text-align: center;
      padding-bottom: 30px; }
      .box__content .divider span {
        display: inline-block;
        width: 25px;
        height: 25px; }
        .box__content .divider span:before {
          content: '\e90b';
          font-size: 18px;
          font-family: "icomoon";
          color: #ffffff; }
    .box__content p {
      margin: 0 0 10px; }
  .box .button--midbox {
    position: absolute;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
    width: 60%;
    display: block; }

.IE .box {
  text-align: center; }
  .IE .box .button--midbox {
    position: relative;
    bottom: 80px; }

input, textarea, button {
  outline: none; }
  input:hover, input:focus, textarea:hover, textarea:focus, button:hover, button:focus {
    outline: none; }

input:focus::-webkit-input-placeholder, input:hover::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder {
  font-weight: 500;
  color: teal; }

input:focus::-moz-placeholder, input:hover::-moz-placeholder, textarea:focus::-moz-placeholder, textarea:hover::-moz-placeholder {
  font-weight: 500;
  color: teal; }

input:focus:-moz-placeholder, input:hover:-moz-placeholder, textarea:focus:-moz-placeholder, textarea:hover:-moz-placeholder {
  font-weight: 500;
  color: teal; }

input:focus:-ms-input-placeholder, input:hover:-ms-input-placeholder, textarea:focus:-ms-input-placeholder, textarea:hover:-ms-input-placeholder {
  font-weight: 500;
  color: teal; }

.footer--generic {
  position: relative;
  bottom: 0;
  width: 100%; }

.icon-full-size:before {
  display: inline-block;
  transform: rotate(90deg); }

/* ------------------------------------------ *\

                LISTINGS

\* ------------------------------------------ */
.section--listing {
  background-color: #ffffff; }
  .section--listing .listing {
    position: relative; }
    .section--listing .listing .listing_content_txt {
      color: teal;
      text-align: center;
      width: 70%;
      margin-left: 15%;
      font-size: 16px;
      padding-bottom: 40px;
      font-weight: 400;
      letter-spacing: 0.05em;
      line-height: 150%;
      font-family: "lora", serif; }
    .section--listing .listing__item {
      width: 33.33333%;
      float: left;
      padding-left: 1.25%;
      padding-right: 1.25%;
      margin-bottom: 30px;
      overflow: hidden;
      -webkit-transition: visibility 0.3s ease, opacity 0.3s ease;
      -o-transition: visibility 0.3s ease, opacity 0.3s ease;
      transition: visibility 0.3s ease, opacity 0.3s ease;
      visibility: hidden;
      opacity: 0; }
      .section--listing .listing__item:nth-child(3n + 1) {
        margin-left: 0;
        margin-right: -100%;
        clear: both; }
      .section--listing .listing__item:nth-child(3n + 2) {
        margin-left: 33.33333%;
        margin-right: -100%;
        clear: none; }
      .section--listing .listing__item:nth-child(3n + 3) {
        margin-left: 66.66667%;
        margin-right: -100%;
        clear: none; }
      .section--listing .listing__item.active {
        visibility: visible;
        opacity: 1; }
      .section--listing .listing__item--1:first-child {
        width: 33.33333%;
        float: left;
        margin-left: 33.33333%;
        margin-right: -100%;
        padding-left: 1.25%;
        padding-right: 1.25%; }
      .section--listing .listing__item--2:first-child {
        width: 33.33333%;
        float: left;
        margin-left: 16.66667%;
        margin-right: -100%;
        padding-left: 1.25%;
        padding-right: 1.25%; }
      .section--listing .listing__item--2:last-child {
        width: 33.33333%;
        float: left;
        margin-left: 50%;
        margin-right: -100%;
        padding-left: 1.25%;
        padding-right: 1.25%; }
    .section--listing .listing:before {
      content: '';
      position: absolute;
      top: 30px;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      visibility: hidden;
      opacity: 0; }
    .section--listing .listing:after {
      content: '';
      width: 58px;
      height: 58px;
      position: absolute;
      top: 150px;
      left: 50%;
      color: red;
      z-index: 99;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .section--listing .listing.loading:before, .section--listing .listing.loading:after {
      visibility: visible;
      opacity: 1; }

.icon--cont {
  color: #c41230;
  line-height: 120%; }
  .icon--cont span {
    color: #666;
    font-size: 13px;
    line-height: 180%;
    font-family: "lora", serif;
    font-weight: normal;
    -webkit-font-smoothing: initial;
    -moz-osx-font-smoothing: initial;
    margin-left: 10px; }

.filters {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  max-width: 1260px; }
  .filters:after {
    content: " ";
    display: block;
    clear: both; }
  .filters__hld {
    width: 100%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    padding-left: calc(1.25% + 30px);
    padding-right: calc(1.25% + 30px); }
  .filters__inner {
    background-color: #ffffff; }
    .filters__inner__hld {
      height: 100%;
      position: relative; }
  .filters__wrap {
    padding-left: 210px;
    background-color: #f4f4f4; }
  .filters__title {
    font-size: 12px;
    text-transform: uppercase;
    font-family: "lora", serif;
    letter-spacing: 0.1em;
    margin: 0;
    color: #ebebeb;
    display: table-cell;
    vertical-align: middle;
    padding: 0 30px; }
    .filters__title__hld {
      display: table;
      height: 100%;
      position: relative;
      float: left;
      top: 0px;
      left: 0px; }
      .filters__title__hld--fixed {
        height: 66px; }

.filter {
  display: inline-block;
  vertical-align: top;
  font-family: "lora", serif;
  color: #ebebeb;
  font-size: 15px;
  position: relative;
  margin: 0;
  padding: 20px 40px;
  margin-left: -5px;
  background-color: #f4f4f4;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .filter-attractions {
    padding-left: 60px; }
  .filter span {
    font-family: "lora", serif;
    font-size: 13px;
    color: #ebebeb;
    line-height: 200%; }
  .filter--icon {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 30px;
    top: 16px; }
    .filter--icon:before {
      content: '';
      font-size: 22px;
      font-family: "icomoon";
      width: 13px;
      height: 13px;
      border-radius: 2px;
      position: absolute;
      top: 12px;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      color: teal; }
    .filter--icon-all:before {
      content: '\e967';
      font-size: 20px; }
    .filter--icon-16689:before {
      content: '\e96a';
      font-size: 20px; }
    .filter--icon-16690:before {
      content: '\e979'; }
    .filter--icon-16691:before {
      content: '\e965'; }
  .filter.active, .filter:hover {
    background-color: #ebebeb;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .filter.active span, .filter:hover span {
      color: #fff; }

.attr_categ_hld {
  color: #fff;
  margin-top: 10px;
  position: relative;
  display: block;
  width: 100%;
  text-align: center; }
  .attr_categ_hld .attraction_categ {
    font-family: "lora", serif;
    font-size: 14px;
    display: inline-block;
    width: 100%;
    height: auto;
    padding-left: 23px; }
    .attr_categ_hld .attraction_categ .filter--icon {
      width: auto;
      height: auto;
      left: 50%;
      top: -4px;
      -moz-transform: translateX(-50px);
      -o-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
      -webkit-transform: translateX(-50px);
      transform: translateX(-50px); }
    .attr_categ_hld .attraction_categ:before {
      content: '\e96b';
      font-family: "icomoon";
      position: absolute;
      display: block;
      font-size: 45px;
      color: teal;
      top: 44px;
      left: 50%;
      -moz-transform: translateX(-50%) rotate(270deg);
      -o-transform: translateX(-50%) rotate(270deg);
      -ms-transform: translateX(-50%) rotate(270deg);
      -webkit-transform: translateX(-50%) rotate(270deg);
      transform: translateX(-50%) rotate(270deg); }

.item__price__inner__attr {
  width: 232px; }
  .item__price__inner__attr .attraction_categ {
    top: -9px;
    position: relative; }
  .item__price__inner__attr .filter--icon {
    top: 7px;
    margin-right: 7px; }

.attr_summary {
  display: block;
  margin-top: 80px; }

.facilities {
  margin: 0 0 15px;
  width: 100%;
  float: left;
  margin-bottom: 0;
  padding-left: 1.66667%; }
  .facilities__title {
    color: #000000;
    text-align: left;
    font-family: "lora", serif;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase; }
  .facilities__hld {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .facilities__hld::after {
      clear: both;
      content: "";
      display: table; }

.facility {
  width: 16.66667%;
  float: left;
  padding-left: 1.25%;
  padding-right: 1.25%;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 15px !important;
  padding-left: 20px;
  text-align: left;
  position: relative;
  color: #000000;
  font-family: "lora", serif !important;
  float: left;
  width: 33%; }
  .facility:nth-child(6n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both; }
  .facility:nth-child(6n + 2) {
    margin-left: 16.66667%;
    margin-right: -100%;
    clear: none; }
  .facility:nth-child(6n + 3) {
    margin-left: 33.33333%;
    margin-right: -100%;
    clear: none; }
  .facility:nth-child(6n + 4) {
    margin-left: 50%;
    margin-right: -100%;
    clear: none; }
  .facility:nth-child(6n + 5) {
    margin-left: 66.66667%;
    margin-right: -100%;
    clear: none; }
  .facility:nth-child(6n + 6) {
    margin-left: 83.33333%;
    margin-right: -100%;
    clear: none; }
  @media screen and (max-width: 655px) {
    .facility {
      width: 50%; } }
  .facility:before {
    content: '';
    position: absolute;
    display: block;
    top: 2px;
    left: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #c41230; }
  .facility .icon {
    color: teal;
    margin-right: 4px;
    float: left;
    width: 8%;
    text-align: left;
    height: 100%; }
  .facility span {
    float: left;
    width: 85%; }

.ext {
  margin: 55px 0 80px;
  padding-left: 1.667%; }
  .ext .block__title {
    color: #000000;
    text-align: left;
    font-family: "lora", serif;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase; }
  .ext p {
    font-size: 14px;
    font-family: "lora", serif !important;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    margin-right: 20px;
    line-height: 20px;
    float: left;
    width: auto; }
    .ext p:before {
      font-family: "icomoon";
      font-size: 12px;
      position: absolute;
      left: 0;
      color: #c41230; }
    .ext p .dimension {
      font-weight: 600; }
  .ext .icon-technology1:before {
    content: '\e92f'; }
  .ext .icon-size8:before {
    content: '\e902';
    font-size: 12px; }
  .ext .icon-person:before {
    content: '\e91f';
    font-size: 13px; }
  .ext .icon-beds12:before {
    content: '\e912'; }

form.offerask #OfferName {
  color: #c41230;
  text-align: center;
  border: none !important;
  font-size: 14px; }
  form.offerask #OfferName::-webkit-input-placeholder {
    font-size: inherit;
    color: #fff; }
  form.offerask #OfferName::-moz-placeholder {
    font-size: inherit;
    color: #fff; }
  form.offerask #OfferName:-moz-placeholder {
    font-size: inherit;
    color: #fff; }
  form.offerask #OfferName:-ms-input-placeholder {
    font-size: inherit;
    color: #fff; }

form.offerask #SubmitMessage {
  height: 120px; }

form.offerask .buttons {
  width: 100%; }
  form.offerask .buttons button {
    width: 100%;
    white-space: nowrap;
    font-size: 12px;
    border: none; }

.askoffer {
  color: #c41230;
  text-align: center;
  font-size: 18px;
  font-weight: 700; }
  .askoffer span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400; }

.MinPrice-cms-offer {
  font-size: 24px;
  color: teal;
  text-align: center; }

.fancybox-overlay {
  display: block !important; }

input, textarea {
  width: 100%;
  font-family: "lora", serif; }

/* FOR PROPER PATH AFTER MINIMIZE STYLE */
#fancybox-loading, .fancybox-close, .fancybox-next span, .fancybox-prev span {
  background-image: url(/bower_components/fancybox/source/fancybox_sprite.png); }

#fancybox-loading div {
  background: url("/bower_components/fancybox/source/fancybox_loading.gif") center center no-repeat; }

.fancybox-nav {
  background: transparent url("/bower_components/fancybox/source/blank.gif"); }

.fancybox-overlay {
  background: url("/bower_components/fancybox/source/fancybox_overlay.png"); }

.fancybox-next span, .fancybox-prev span {
  background-image: none;
  height: 100%;
  width: 80px;
  top: 18px;
  right: 0;
  background: rgba(235, 235, 235, 0.4); }
  .fancybox-next span:before, .fancybox-prev span:before {
    position: absolute;
    display: block;
    content: '\e901';
    color: #c41230;
    font-family: "icomoon";
    font-size: 25px;
    top: calc(50% - 10px);
    left: 33px; }

@media screen and (max-width: 1024px) {
  .fancybox-next span, .fancybox-prev span {
    visibility: visible;
    opacity: 1; } }

.fancybox-prev span {
  left: 0; }
  .fancybox-prev span:before {
    content: '\e900';
    left: 29px; }

.fancybox-close {
  background-image: none;
  position: absolute;
  margin-top: 18px;
  right: 5px;
  cursor: pointer; }
  .fancybox-close:before {
    position: absolute;
    display: block;
    content: '\e90e';
    color: rgba(0, 0, 0, 0.3);
    font-family: "icomoon";
    font-size: 20px;
    top: 13px;
    left: 8px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .fancybox-close:hover:before {
    color: #000000; }

.mobile-only {
  display: none; }

a[href$='.pdf'] {
  padding-left: 30px;
  position: relative;
  margin: 3px 0; }
  a[href$='.pdf']:before {
    content: '\e91c';
    position: absolute;
    top: -3px;
    left: 0;
    color: inherit;
    font-size: 20px;
    width: 20px;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoohting: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.ie9 .banners__middle {
  z-index: 0; }

a[href^='tel:'], a[href^='tel:']:hover, a[href^='tel:']:focus {
  text-decoration: none !important; }

.icon-size:before, .icon-user:before {
  margin-right: 5px; }

.icon-size:before {
  font-size: 12px; }

.icon-user:before {
  content: '\e91f'; }

/* ------------------------------------------ *\

                SECTIONS


\* ------------------------------------------ */
.section {
  margin: 0;
  background: #ffffff;
  position: relative; }
  .section__no-bg {
    background: transparent; }
  .section__inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 100px;
    overflow: hidden; }
    .section__inner:after {
      content: " ";
      display: block;
      clear: both; }
    .section__inner.details {
      margin-top: 0; }
      .section__inner.details .breadcrumbs {
        margin-bottom: 45px; }
    .section__inner.contact {
      padding: 0; }
  @media screen and (min-width: 10px) {
    .section--menu .wrap {
      max-width: 1200px;
      margin: auto; } }
  .section--homeoffers {
    padding: 21px 0 60px;
    position: relative;
    /* &::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            max-width: 1170px;
            width: 100%;
            margin: auto;
            height: 2px;
            background: #dcdcdc;
        } */ }
    .home .section--homeoffers::before {
      display: none; }
  .section--details .section--homeoffers {
    border-top: solid 1px #ebebeb;
    padding-bottom: 60px; }
    .section--details .section--homeoffers h2:before {
      display: none; }
  .section--midbox {
    min-height: 500px;
    position: relative;
    padding-bottom: 90px; }
    .section--midbox:before {
      content: '';
      position: absolute;
      display: block;
      width: 274px;
      height: 1px;
      left: calc(50% - 137px);
      top: -1px; }
    .section--midbox .liquid {
      position: absolute;
      top: 0;
      bottom: 90px;
      right: 0;
      left: 0;
      height: auto; }
    .section--midbox .box__button {
      border-color: teal;
      font-family: "lora", serif;
      font-size: 12px;
      letter-spacing: 0.19em;
      padding: 11px 20px;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .section--midbox .box__button:hover {
        background-color: teal; }
  .section--boxes {
    padding: 60px 0;
    padding-bottom: 100px; }
    .section--boxes__bg {
      margin-top: -90px;
      padding-top: 150px;
      background-color: #ffffff;
      position: relative;
      /*        &:before {
                left: 0;
                background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 75%, rgba(255,255,255,1) 75%, rgba(255,255,255,0.95) 100%), 
                            url('../../img/section_bg_1.jpg') left center no-repeat; 
                background-size: cover;
            }

            &:after {
                right: 0;
                background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 75%, rgba(255,255,255,1) 75%, rgba(255,255,255,0.95) 100%), 
                            url('../../img/section_bg_2.jpg') left center no-repeat; 
                background-size: cover;
            } */
      /*      background-image: url('../../img/section_bg_1.jpg'), 
            url('../../img/section_bg_2.jpg');
  
            background-repeat: no-repeat, no-repeat;
            background-size: 80%, 50%;
            background-position: center left, bottom right;


        }*/ }
      .section--boxes__bg:before, .section--boxes__bg:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 50%; }
  .section--map, .section .map_canvas {
    min-height: 500px;
    position: relative;
    margin-bottom: 0; }
  .section--contact {
    padding-bottom: 70px; }
  .section--contact h1, .section--listing h1 {
    margin-bottom: 0; }
  .section--gallery, .section--calendar {
    background: #ffffff; }
  .section--generic .map_canvas {
    width: 100%; }
  .section--generic .map-info--contact {
    min-width: 280px; }
  .section--generic .section--map {
    margin-top: 30px;
    width: 100%;
    float: left; }
  .section--generic table {
    margin: 0;
    overflow: hidden;
    color: #c41230; }
    .section--generic table th {
      color: #000000;
      font-weight: normal;
      text-align: center;
      border: 0;
      border: 1px solid  #dadada;
      background: teal;
      font-family: "lora", serif;
      border-bottom: 1px solid  #dadada;
      font-weight: 400;
      font-size: 13px;
      letter-spacing: 0.1em; }
    .section--generic table td {
      text-align: center;
      border: 1px solid  #dadada;
      font-weight: 400;
      font-size: 13px;
      letter-spacing: 0.05em; }
      .section--generic table td:nth-child(odd) {
        background: rgba(0, 128, 128, 0.3); }
    .section--generic table th, .section--generic table td {
      padding: 12px 15px; }
      .section--generic table th label, .section--generic table td label {
        margin-bottom: 0; }
      .section--generic table th.bold, .section--generic table td.bold {
        font-weight: 700; }
    .section--generic table.table-price td, .section--generic table.table-price tr {
      font-size: 0.9em; }
    .section--generic table.table-price th {
      border-bottom-color: #dadada;
      font-weight: 400; }
    .section--generic table.widthertable {
      overflow-x: scroll;
      display: block;
      position: relative; }
  .section--generic .aftertable {
    font-family: "lora", serif;
    text-align: right;
    padding-right: 30px;
    float: right;
    margin-top: 10px; }
    .section--generic .aftertable:after {
      content: '\e901';
      font-family: "icomoon";
      color: teal;
      position: relative;
      right: -10px;
      top: 0px;
      display: inline-block;
      font-size: 8px; }
  .section--generic .weddingtable table th {
    width: 33.3%; }
  .section--generic .weddingtable table td {
    vertical-align: top; }
  .section--generic table .days, .section--generic table .center {
    text-align: center; }
  .section--generic .sale-konferencyjne .name {
    width: 30%; }
  .section--generic .sale-konferencyjne .size {
    text-align: center;
    width: 10%; }
  .section--generic .sale-konferencyjne .people {
    text-align: center;
    width: 20%; }
  .section--generic .vital-spa .cena {
    width: 130px;
    text-align: center; }
  .section--generic .vital-spa .duration {
    width: 130px;
    text-align: center; }

body.contact {
  background: #ffffff; }
  body.contact .section--map {
    margin-top: 60px; }
  body.contact #map_directions > div > div > div:nth-child(9) > div {
    left: -15px !important; }

/* ------------------------------------------ *\

              MENU

\* ------------------------------------------ */
.section--menu {
  height: auto;
  width: 100%;
  float: left;
  margin: 0px; }
  .section--menu .listing_content_txt {
    color: #fff;
    text-align: left;
    width: calc(100% - 500px);
    float: right;
    font-size: 16px;
    padding-bottom: 40px;
    font-family: "lora", serif;
    letter-spacing: 0.05em;
    line-height: 150%;
    margin-top: 50px;
    margin-bottom: -30px; }
    .section--menu .listing_content_txt span {
      font-style: italic; }
  .section--menu .details-main--menu .btn-hld {
    text-align: center;
    margin-top: 40px; }
    .section--menu .details-main--menu .btn-hld .site-btn {
      margin: 5px; }
  .section--menu .details-main {
    float: right;
    width: calc(100% - 510px);
    margin-top: 50px;
    padding-right: 63px; }
    .section--menu .details-main--menu {
      margin-bottom: 60px; }
  .section--menu .menu-category__title {
    color: #fff;
    font-size: 25px;
    font-family: "lora", serif;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: -1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
    .section--menu .menu-category__title:before {
      left: 0;
      margin-left: 0; }
  .section--menu .menu-items {
    display: none;
    background-color: transparent;
    padding: 0px 50px 25px 0px;
    animation: FadeInUp 0.3s ease forwards; }
    .section--menu .menu-items.is-hiding {
      animation-name: FadeOutDown; }
    .section--menu .menu-items.is-visible {
      display: block; }
    .section--menu .menu-items:first-child {
      border-top: none; }
  .section--menu .menu-item {
    padding: 27px 0;
    display: table;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
    .section--menu .menu-item.is-titled {
      border-top: 0; }
  .section--menu .menu-item__col {
    display: table-cell;
    vertical-align: middle; }
    .section--menu .menu-item__col--price {
      width: 100px;
      text-align: right; }
  .section--menu .menu-item__title {
    display: block;
    font-size: 15px;
    color: #fff;
    max-width: 600px;
    font-family: "lora", serif;
    letter-spacing: 0.11em;
    line-height: 1.2; }
    .section--menu .menu-item__title .volume {
      font-weight: 400;
      color: #fff;
      font-size: 12px;
      display: inline-block;
      padding-left: 10px; }
    .section--menu .menu-item__title--category-title {
      color: #fff;
      font-size: 18px; }
  .section--menu .menu-item__desc {
    display: block;
    max-width: 600px;
    font-size: 13px;
    line-height: 1.5;
    color: #fff;
    letter-spacing: 0.05em;
    font-family: "lora", serif; }
    .section--menu .menu-item__desc p {
      margin-top: 7px;
      margin-bottom: 0; }
  .section--menu .menu-item__price {
    color: teal; }
    .section--menu .menu-item__price .value {
      font-size: 18px;
      font-family: "lora", serif;
      letter-spacing: 0.03em;
      margin-right: 2px; }
    .section--menu .menu-item__price .suffix {
      font-size: 18px;
      letter-spacing: 0.01em;
      font-family: "lora", serif;
      letter-spacing: 0.03em;
      text-transform: lowercase; }
  .section--menu .menu-category-item {
    width: 380px;
    height: 110px;
    position: relative;
    cursor: pointer;
    margin-bottom: 11px;
    overflow: hidden; }
    .section--menu .menu-category-item:hover .menu-category-item__title:before, .section--menu .menu-category-item.is-active .menu-category-item__title:before {
      width: 60px; }
    .section--menu .menu-category-item:hover .menu-category-item__img-hld img, .section--menu .menu-category-item.is-active .menu-category-item__img-hld img {
      -moz-transform: scale(1.05);
      -o-transform: scale(1.05);
      -ms-transform: scale(1.05);
      -webkit-transform: scale(1.05);
      transform: scale(1.05); }
    .section--menu .menu-category-item.is-active {
      cursor: default; }
  .section--menu .menu-category-item__img-hld {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    overflow: hidden; }
    .section--menu .menu-category-item__img-hld:after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
      background-color: #c41230;
      transform: translateX(-100%);
      transition: transform 0.3s ease; }
    .section--menu .menu-category-item__img-hld img {
      width: 100%;
      height: 100%;
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
  .section--menu .menu-category-item__title-hld {
    position: absolute;
    left: auto;
    right: 0;
    width: calc(100% - 150px);
    height: 100%;
    display: block;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .section--menu .menu-category-item__title-hld-inner {
    width: 100%;
    height: 110px;
    display: block;
    text-align: center;
    padding: 16px 20px;
    background: rgba(73, 72, 72, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .section--menu .menu-category-item__title {
    display: block;
    top: 50%;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-family: "lora", serif;
    letter-spacing: 0.11em;
    padding-bottom: 12px;
    position: relative;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
    .section--menu .menu-category-item__title:before {
      content: '';
      position: absolute;
      display: block;
      width: 30px;
      height: 1px;
      background: teal;
      left: 50%;
      bottom: 0;
      -moz-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
  .section--menu .details-sidebar {
    float: left;
    width: 510px;
    padding-left: 63px;
    padding-bottom: 50px;
    padding-top: 30px;
    position: relative;
    margin-top: 50px; }
  .section--menu .sidebar-box {
    background-color: #fff;
    padding: 40px; }
    .section--menu .sidebar-box:not(:last-child) {
      border-bottom: 1px solid #e5e5e5; }
    .section--menu .sidebar-box h3 {
      font-size: 18px;
      color: #666;
      text-align: center;
      margin-top: 0;
      margin-bottom: 30px;
      line-height: 1.3; }
    .section--menu .sidebar-box h4 {
      font-size: 14px;
      color: #666;
      margin-top: 0;
      margin-bottom: 10px;
      letter-spacing: 0.03em;
      font-weight: 600; }
      .section--menu .sidebar-box h4:not(:first-child) {
        margin-top: 30px; }
    .section--menu .sidebar-box button {
      padding-left: 28px;
      padding-right: 28px; }
  .section--menu .sidebar-box__price-hld {
    text-align: center;
    font-size: 14px;
    color: #666;
    letter-spacing: 0.03em; }
    .section--menu .sidebar-box__price-hld .from {
      text-transform: uppercase;
      display: block; }
    .section--menu .sidebar-box__price-hld .price {
      margin: 8px 0;
      display: inline-block; }
      .section--menu .sidebar-box__price-hld .price .CurrencyPrefix, .section--menu .sidebar-box__price-hld .price .CurrencySeparator, .section--menu .sidebar-box__price-hld .price .CurrencyDecimals {
        display: none; }
      .section--menu .sidebar-box__price-hld .price .CurrencyValue {
        color: #c41230;
        font-size: 48px;
        font-weight: 400; }
      .section--menu .sidebar-box__price-hld .price .CurrencySuffix {
        color: #c41230;
        font-size: 25px;
        font-weight: 400;
        margin-left: 2px; }
    .section--menu .sidebar-box__price-hld .rate {
      display: block;
      margin-bottom: 30px; }
  .section--menu .sidebar-box__btn-hld {
    text-align: center; }
  .section--menu .sidebar-box__checkin-info {
    display: block;
    font-size: 14px;
    color: #ccc;
    letter-spacing: 0.01em; }
  .section--menu .sidebar-box__payments-list li {
    float: left;
    margin-right: 10px;
    margin-top: 5px; }
  .section--menu .sidebar-box__payments-list:after {
    content: "";
    display: table;
    clear: both; }
  .section--menu .details-main--menu .btn-hld {
    text-align: center;
    margin-top: 40px; }
    .section--menu .details-main--menu .btn-hld .site-btn {
      margin: 5px; }

/* ------------------------------------------ *\

                CALENDAR [full calendar . io]

\* ------------------------------------------ */
.section--calendar .section__inner {
  margin-top: 80px; }
  .section--calendar .section__inner #calendar {
    padding: 0 50px; }
    .section--calendar .section__inner #calendar .fc-toolbar .fc-today-button {
      display: none; }
    .section--calendar .section__inner #calendar .fc-toolbar .fc-right {
      float: left; }
      .section--calendar .section__inner #calendar .fc-toolbar .fc-right .fc-button-group {
        left: 10px; }
        .section--calendar .section__inner #calendar .fc-toolbar .fc-right .fc-button-group .fc-prev-button.fc-state-default.fc-corner-left, .section--calendar .section__inner #calendar .fc-toolbar .fc-right .fc-button-group .fc-next-button.fc-state-default.fc-corner-right {
          width: 30px;
          height: 30px;
          border-radius: 100%;
          border: 1px solid #ebebeb;
          background-color: transparent !important;
          background-image: none;
          padding: 0;
          margin: 0 5px;
          -webkit-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          .section--calendar .section__inner #calendar .fc-toolbar .fc-right .fc-button-group .fc-prev-button.fc-state-default.fc-corner-left.fc-state-hover, .section--calendar .section__inner #calendar .fc-toolbar .fc-right .fc-button-group .fc-next-button.fc-state-default.fc-corner-right.fc-state-hover {
            border-radius: 100%;
            background-color: #fff !important; }
    .section--calendar .section__inner #calendar .fc-toolbar .fc-left h2 {
      font-size: 20px;
      font-weight: 700;
      font-family: "lora", serif;
      text-transform: capitalize; }
    .section--calendar .section__inner #calendar .fc-view-container {
      background: #c41230; }
      .section--calendar .section__inner #calendar .fc-view-container table .fc-head {
        background: #ebebeb; }
        .section--calendar .section__inner #calendar .fc-view-container table .fc-head .fc-day-header {
          font-size: 14px;
          font-family: "lora", serif;
          color: #fff;
          text-transform: uppercase;
          font-weight: 700;
          padding: 10px;
          border-color: #ebebeb; }
      .section--calendar .section__inner #calendar .fc-view-container table .fc-body .fc-week table .fc-day {
        border-color: #cfcec2; }
        .section--calendar .section__inner #calendar .fc-view-container table .fc-body .fc-week table .fc-day.fc-state-highlight {
          background-color: #f4f4f4; }

.fc-ltr .fc-basic-view .fc-day-number {
  padding-right: 5px; }

.fc-event {
  background-color: teal;
  border-color: teal; }
  .fc-event span {
    font-family: "lora", serif; }

/* ------------------------------------------ *\

                VENUES LISTNIG

\* ------------------------------------------ */
.section--listing--venues, .section--details--venues {
  overflow: hidden; }
  .section--listing--venues .block--top .content-intro, .section--details--venues .block--top .content-intro {
    font-size: 15px;
    color: #ebebeb;
    font-weight: 700;
    letter-spacing: 0.075em;
    font-family: "lora", serif;
    max-width: 950px;
    padding: 0 40px;
    margin: auto;
    line-height: 150%;
    text-align: center; }
  .section--listing--venues .content-content article, .section--details--venues .content-content article {
    text-align: left; }
  .section--listing--venues article, .section--details--venues article {
    text-align: center;
    color: teal;
    font-family: "lora", serif;
    font-size: 15px;
    max-width: 850px;
    margin: 0 auto;
    letter-spacing: 0.025em;
    padding: 0 30px 5px; }
  .section--listing--venues .listing-facilities, .section--details--venues .listing-facilities {
    text-align: center; }
    .section--listing--venues .listing-facilities h2, .section--details--venues .listing-facilities h2 {
      font-size: 15px;
      color: teal;
      font-family: "lora", serif;
      margin-top: 60px;
      margin-bottom: 20px; }
    .section--listing--venues .listing-facilities .venues-facilities, .section--details--venues .listing-facilities .venues-facilities {
      padding: 10px 20px 10px 40px;
      font-size: 14px;
      font-family: "lora", serif;
      letter-spacing: 0.05em;
      color: teal; }
      .section--listing--venues .listing-facilities .venues-facilities .icon, .section--details--venues .listing-facilities .venues-facilities .icon {
        padding-right: 10px; }
        .section--listing--venues .listing-facilities .venues-facilities .icon:before, .section--details--venues .listing-facilities .venues-facilities .icon:before {
          color: teal;
          font-size: 14px;
          position: absolute;
          margin-top: 1px;
          margin-left: -22px; }
        .section--listing--venues .listing-facilities .venues-facilities .icon.icon-flipchart:before, .section--details--venues .listing-facilities .venues-facilities .icon.icon-flipchart:before {
          font-size: 18px;
          margin-top: 0; }
        .section--listing--venues .listing-facilities .venues-facilities .icon.icon-screen:before, .section--details--venues .listing-facilities .venues-facilities .icon.icon-screen:before {
          font-size: 18px;
          margin-top: 0; }
        .section--listing--venues .listing-facilities .venues-facilities .icon.icon-projector, .section--details--venues .listing-facilities .venues-facilities .icon.icon-projector {
          margin-left: 8px; }
          .section--listing--venues .listing-facilities .venues-facilities .icon.icon-projector:before, .section--details--venues .listing-facilities .venues-facilities .icon.icon-projector:before {
            margin-left: -36px;
            font-size: 13px;
            margin-top: 2px; }
        .section--listing--venues .listing-facilities .venues-facilities .icon.icon-microphone, .section--details--venues .listing-facilities .venues-facilities .icon.icon-microphone {
          margin-left: -13px; }
          .section--listing--venues .listing-facilities .venues-facilities .icon.icon-microphone:before, .section--details--venues .listing-facilities .venues-facilities .icon.icon-microphone:before {
            margin-left: -18px; }
  .section--listing--venues .venues-listing, .section--details--venues .venues-listing {
    max-width: 1200px;
    margin: auto;
    padding-top: 35px; }
    .section--listing--venues .venues-listing .venue-item-hld, .section--details--venues .venues-listing .venue-item-hld {
      width: 50%;
      float: left;
      padding: 15px;
      position: relative; }
      .section--listing--venues .venues-listing .venue-item-hld .venue-item, .section--details--venues .venues-listing .venue-item-hld .venue-item {
        background-color: #fff;
        position: relative;
        border: 1px solid #dedede; }
        .section--listing--venues .venues-listing .venue-item-hld .venue-item .img_outer, .section--details--venues .venues-listing .venue-item-hld .venue-item .img_outer {
          height: 300px;
          overflow: hidden; }
          .section--listing--venues .venues-listing .venue-item-hld .venue-item .img_outer .venue-item__img-hld, .section--details--venues .venues-listing .venue-item-hld .venue-item .img_outer .venue-item__img-hld {
            width: 100%;
            height: 300px;
            display: block;
            -webkit-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            transition: all 0.5s ease; }
            .section--listing--venues .venues-listing .venue-item-hld .venue-item .img_outer .venue-item__img-hld img, .section--details--venues .venues-listing .venue-item-hld .venue-item .img_outer .venue-item__img-hld img {
              width: 100%; }
        .section--listing--venues .venues-listing .venue-item-hld .venue-item__title, .section--details--venues .venues-listing .venue-item-hld .venue-item__title {
          font-size: 16px;
          font-family: "lora", serif;
          color: #ebebeb;
          padding-left: 26px;
          width: calc(100% - 200px);
          float: left;
          margin: 28px 0 23px; }
        .section--listing--venues .venues-listing .venue-item-hld .venue-item__info, .section--details--venues .venues-listing .venue-item-hld .venue-item__info {
          width: 200px;
          float: left;
          text-align: right;
          padding-right: 10px;
          padding-top: 32px; }
          .section--listing--venues .venues-listing .venue-item-hld .venue-item__info__item, .section--details--venues .venues-listing .venue-item-hld .venue-item__info__item {
            display: inline-block;
            padding: 0 15px; }
            .section--listing--venues .venues-listing .venue-item-hld .venue-item__info__item .icon:before, .section--details--venues .venues-listing .venue-item-hld .venue-item__info__item .icon:before {
              color: teal;
              font-size: 14px;
              position: absolute;
              margin-left: -10px;
              margin-top: 1px; }
            .section--listing--venues .venues-listing .venue-item-hld .venue-item__info__item .hld, .section--details--venues .venues-listing .venue-item-hld .venue-item__info__item .hld {
              font-size: 13px;
              color: #ebebeb;
              font-family: "lora", serif;
              padding-left: 10px; }
        .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement, .section--details--venues .venues-listing .venue-item-hld .venue-item__arrangement {
          clear: both;
          padding: 28px 25px 23px; }
          .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement:before, .section--details--venues .venues-listing .venue-item-hld .venue-item__arrangement:before {
            content: '';
            position: absolute;
            display: block;
            width: 100%;
            left: 0;
            margin-top: -22px;
            height: 1px;
            background: #dedede; }
          .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement .arrangement, .section--details--venues .venues-listing .venue-item-hld .venue-item__arrangement .arrangement {
            display: inline-block;
            padding: 0 15px 0 35px;
            font-size: 13px;
            color: #ebebeb;
            font-family: "lora", serif; }
            .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement .arrangement .icon, .section--details--venues .venues-listing .venue-item-hld .venue-item__arrangement .arrangement .icon {
              margin-top: 1px;
              margin-left: -25px;
              position: absolute; }
              .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement .arrangement .icon:before, .section--details--venues .venues-listing .venue-item-hld .venue-item__arrangement .arrangement .icon:before {
                padding-right: 10px;
                color: teal;
                font-size: 17px; }
        .section--listing--venues .venues-listing .venue-item-hld .venue-item__btn-hld, .section--details--venues .venues-listing .venue-item-hld .venue-item__btn-hld {
          position: absolute;
          right: 25px;
          margin-top: -49px; }
      .section--listing--venues .venues-listing .venue-item-hld:hover .venue-item .img_outer .venue-item__img-hld, .section--details--venues .venues-listing .venue-item-hld:hover .venue-item .img_outer .venue-item__img-hld {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05); }
  .section--listing--venues .venues-contact, .section--details--venues .venues-contact {
    clear: both;
    width: 405px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 85px;
    text-align: center; }
    .section--listing--venues .venues-contact h2, .section--details--venues .venues-contact h2 {
      font-size: 25px;
      color: teal;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-family: "lora", serif;
      margin-bottom: 30px; }
    .section--listing--venues .venues-contact .venues-form, .section--details--venues .venues-contact .venues-form {
      background-color: #fff;
      padding: 20px; }
      .section--listing--venues .venues-contact .venues-form h3, .section--details--venues .venues-contact .venues-form h3 {
        font-family: "lora", serif;
        font-size: 18px;
        color: #ebebeb;
        margin-bottom: 0; }
      .section--listing--venues .venues-contact .venues-form p, .section--details--venues .venues-contact .venues-form p {
        margin-top: 3px;
        margin-bottom: 10px; }
        .section--listing--venues .venues-contact .venues-form p.employe, .section--details--venues .venues-contact .venues-form p.employe {
          font-size: 16px;
          font-family: "lora", serif;
          color: #ebebeb;
          margin-bottom: 25px; }
        .section--listing--venues .venues-contact .venues-form p .tel, .section--listing--venues .venues-contact .venues-form p .email, .section--details--venues .venues-contact .venues-form p .tel, .section--details--venues .venues-contact .venues-form p .email {
          font-size: 14px;
          font-family: "lora", serif;
          color: #ebebeb; }
          .section--listing--venues .venues-contact .venues-form p .tel .icon:before, .section--listing--venues .venues-contact .venues-form p .email .icon:before, .section--details--venues .venues-contact .venues-form p .tel .icon:before, .section--details--venues .venues-contact .venues-form p .email .icon:before {
            color: teal;
            margin-top: 2px;
            padding-right: 5px; }
        .section--listing--venues .venues-contact .venues-form p .email span, .section--details--venues .venues-contact .venues-form p .email span {
          text-decoration: underline;
          padding-left: 20px; }
          .section--listing--venues .venues-contact .venues-form p .email span.icon, .section--details--venues .venues-contact .venues-form p .email span.icon {
            text-decoration: none;
            margin-left: -20px; }
        .section--listing--venues .venues-contact .venues-form p .email .icon:before, .section--details--venues .venues-contact .venues-form p .email .icon:before {
          content: '\e948';
          display: inline-block;
          position: relative;
          top: 2px; }
        .section--listing--venues .venues-contact .venues-form p .email:hover, .section--details--venues .venues-contact .venues-form p .email:hover {
          color: teal; }

/* ------------------------------------------ *\

                VENUES DETAILS

\* ------------------------------------------ */
.section--details--venues {
  overflow-x: hidden; }
  .section--details--venues .section__inner {
    max-width: 940px;
    margin: auto;
    padding: 0 50px; }
    @media screen and (min-width: 1400px) {
      .section--details--venues .section__inner {
        max-width: 1200px; } }
    .section--details--venues .section__inner .content .basic_info_hld h2 {
      font-size: 25px;
      font-family: "lora", serif;
      color: teal;
      text-transform: uppercase;
      margin-top: 60px;
      margin-bottom: 30px; }
    .section--details--venues .section__inner .content .basic_info_hld span {
      font-size: 14px;
      font-family: "lora", serif !important;
      color: teal;
      padding-right: 40px;
      letter-spacing: 0.02em;
      padding-left: 25px; }
      .section--details--venues .section__inner .content .basic_info_hld span strong {
        font-weight: 400; }
      .section--details--venues .section__inner .content .basic_info_hld span:before {
        position: absolute;
        font-family: "icomoon" !important;
        color: teal;
        font-size: 17px;
        margin-left: -25px; }
    .section--details--venues .section__inner .content .content-txt {
      margin-top: 40px;
      margin-bottom: 40px;
      font-size: 14px;
      font-family: "lora", serif;
      color: #fff;
      line-height: 150%;
      letter-spacing: 0.05em; }
    .section--details--venues .section__inner .content .venue-item__arrangement {
      background-color: #ffffff;
      padding: 14px;
      position: relative;
      height: 127px;
      text-align: center;
      margin-top: 20px; }
      .section--details--venues .section__inner .content .venue-item__arrangement .arrangement-hld .arrangement {
        display: inline-block;
        padding: 16px 47px 20px 68px;
        font-size: 14px;
        font-family: "lora", serif;
        font-weight: 400;
        color: #333;
        position: relative; }
        .section--details--venues .section__inner .content .venue-item__arrangement .arrangement-hld .arrangement i:before {
          font-size: 16px;
          color: teal;
          position: absolute;
          margin-left: -25px;
          margin-top: 1px; }
        .section--details--venues .section__inner .content .venue-item__arrangement .arrangement-hld .arrangement span {
          display: block;
          text-align: center;
          padding-top: 10px;
          color: #666;
          margin-left: -30px;
          font-size: 14px;
          font-family: "lora", serif;
          line-height: 150%;
          letter-spacing: 0.05em;
          width: 74px; }
    .section--details--venues .section__inner .content .facilities h3 {
      margin-top: 0;
      font-family: "lora", serif;
      margin-bottom: 30px; }
    .section--details--venues .section__inner .content .facilities ul li {
      padding-bottom: 0;
      letter-spacing: 0.05em; }
      .section--details--venues .section__inner .content .facilities ul li:first-letter {
        text-transform: uppercase; }
    .section--details--venues .section__inner .content .gallery--right {
      padding: 0; }
      .section--details--venues .section__inner .content .gallery--right h3 {
        padding-left: 0;
        margin-bottom: 30px;
        font-family: "lora", serif; }
      .section--details--venues .section__inner .content .gallery--right .gallery--right__inner:nth-child(2) {
        padding-left: 0; }
      .section--details--venues .section__inner .content .gallery--right .gallery--right__inner:last-child {
        padding-right: 0; }

/* ------------------------------------------ *\

                BANNERS

\* ------------------------------------------ */
.IE .banners .logo svg {
  top: 15px; }

.banners {
  min-height: 450px;
  position: relative; }
  .banners .slick-slider {
    margin-bottom: 0px; }
  .banners .banner_overlay {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 30%, transparent 30%); }
  .banners .slick-arrow {
    width: 50px;
    height: 50px;
    display: block;
    text-align: center;
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
    .banners .slick-arrow:before {
      content: '';
      font-family: "icomoon";
      color: #ffffff;
      font-size: 25px;
      -webkit-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
      transition: all 0.4s ease; }
    .banners .slick-arrow.slick-prev {
      left: 100px; }
      .banners .slick-arrow.slick-prev:before {
        content: '\e96b'; }
    .banners .slick-arrow.slick-next {
      right: 130px; }
      .banners .slick-arrow.slick-next:before {
        content: '\e96c'; }
    .banners .slick-arrow:hover:before {
      color: #c41230; }
  .banners .arrow-down-box {
    position: absolute;
    bottom: 40px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 100;
    text-align: center; }
    .banners .arrow-down-box:hover .arrow-down:before {
      color: #c41230; }
  .banners .arrow-down__text {
    display: inline-block;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    -webkit-animation: buttonPulse 2s ease infinite;
    -o-animation: buttonPulse 2s ease infinite;
    animation: buttonPulse 2s ease infinite; }
  .banners .arrow-down {
    width: 60px;
    height: 60px;
    background: teal;
    font-size: 12px; }
    .banners .arrow-down:before {
      content: '\e962';
      display: block;
      color: #ffffff; }
    .banners .arrow-down__link {
      cursor: pointer; }
  .banners .logo-container {
    position: fixed;
    width: 130px;
    height: 130px;
    z-index: 125;
    text-align: center;
    overflow: hidden;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    background: #ac162c;
    transition: width .3s, height .3s; }
    .banners .logo-container svg {
      position: absolute;
      bottom: 50%;
      right: 50%;
      width: 100%;
      transform: translate(50%, 50%); }
  .banners__middle {
    height: 50vh;
    overflow: hidden; }
  .banners--home .banners__middle {
    height: -webkit-calc(100vh - 0px);
    height: calc(100vh - 0px); }
  .banners--home .bookPanel {
    bottom: 150px; }
  .banners--title-group {
    position: absolute;
    top: 50%;
    margin-top: -75px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 100px; }
    .banners--title-group h1 {
      font-size: 72px;
      letter-spacing: 0.06em;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-family: "lora", serif;
      font-weight: 400;
      line-height: 1;
      color: #ffffff;
      padding: 0;
      text-transform: uppercase; }
    .banners--title-group p {
      font-size: 30px;
      font-family: "lora", serif;
      font-weigh: 500;
      margin: 0;
      color: #ffffff;
      letter-spacing: 0.04em;
      text-shadow: 0px 0px 72.68px black;
      text-shadow: 0px 0px 72.68px black; }
  .banners--mt {
    margin-top: 30px; }
    .banners--mt .logo {
      top: -30px; }
  .banners ul {
    margin: 0; }
  .banners__middle {
    min-height: 450px; }
  .banners__img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
    outline: none; }
    .banners__img:before {
      content: '';
      position: absolute;
      display: block;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.13); }

/* styles for svg logo */
.logo__background {
  fill: #FFFFFF; }

.logo__shapes {
  fill: #ffffff; }

/* ------------------------------------------ *\

                NAVIGATIONS

\* ------------------------------------------ */
.navigation__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.navigation-top__right-box {
  display: flex;
  justify-content: flex-end;
  align-items: center; }

.navigation--top {
  height: 35px;
  text-align: right;
  padding: 0;
  width: 100%;
  margin: 0;
  padding: 0 15px;
  position: absolute;
  top: 10px;
  z-index: 10; }
  .navigation--top__lang, .navigation--top__middle, .navigation--top__socials, .navigation--top__infos {
    font-size: 12px;
    line-height: 30px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0;
    list-style-type: none; }
    .navigation--top__lang a, .navigation--top__middle a, .navigation--top__socials a, .navigation--top__infos a {
      display: block;
      color: #fff;
      -webkit-transition: color 0.3s ease;
      -o-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      .navigation--top__lang a:hover, .navigation--top__middle a:hover, .navigation--top__socials a:hover, .navigation--top__infos a:hover {
        color: #fff; }
  .navigation--top .nav-lang-dropdown {
    position: relative;
    padding: 0;
    float: right;
    font-size: 13px;
    padding-right: 25px;
    padding-bottom: 20px;
    cursor: pointer;
    font-family: "lora", serif;
    margin-top: 14px;
    margin-left: 10px;
    height: 30px; }
  .navigation--top .nav-lang-item {
    margin-left: 20px;
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    transition: color 0.2s ease; }
    .navigation--top .nav-lang-item:first-child {
      margin-left: 0; }
    .navigation--top .nav-lang-item:hover {
      color: #ffffff; }
  .navigation--top .nav-lang-current, .navigation--top .nav-lang-current-single {
    color: #ffffff; }
  .navigation--top__middle li {
    display: inline-block; }
    .navigation--top__middle li:last-child {
      margin-right: 6px; }
  .navigation--top__middle a {
    padding: 0 6px; }
    .navigation--top__middle a.active {
      text-decoration: underline; }
  .navigation--top__middle:after {
    content: '|';
    position: absolute;
    top: 0;
    color: #878787; }
  .navigation--top__infos {
    float: left;
    color: #ffffff;
    margin-top: 5px !important; }
    .navigation--top__infos a, .navigation--top__infos a[href^='tel:'] {
      font-family: "lora", serif;
      font-size: 13px;
      font-weight: 400;
      line-height: 23px;
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 0.1em; }
    .navigation--top__infos li {
      display: inline-block;
      padding-left: 25px;
      margin-right: 24px;
      position: relative; }
      .navigation--top__infos li:hover a, .navigation--top__infos li:hover a[href^='tel:'] {
        color: #ffffff; }
      .navigation--top__infos li:hover span:before {
        color: #ffffff; }
    .navigation--top__infos span:before {
      position: absolute;
      display: block;
      color: rgba(255, 255, 255, 0.6);
      font-family: "icomoon";
      left: 0px;
      top: 2px;
      line-height: 20px;
      -webkit-transition: color 0.3s ease;
      -o-transition: color 0.3s ease;
      transition: color 0.3s ease; }
  .navigation--top .nav-social {
    margin-right: 25px; }
    .navigation--top .nav-social ul {
      display: inline;
      padding: 0;
      margin-right: 15px; }
      .navigation--top .nav-social ul li {
        font-size: 12px;
        display: inline-block;
        text-align: center;
        font-weight: 400;
        margin-right: 0px;
        vertical-align: top;
        overflow: hidden;
        text-align: center; }
    .navigation--top .nav-social a {
      display: block;
      color: rgba(255, 255, 255, 0.6);
      line-height: 22px;
      height: 22px;
      text-align: center;
      padding: 0 3px; }
      .navigation--top .nav-social a:before {
        -webkit-transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease, border 0.3s ease;
        -o-transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease, border 0.3s ease;
        transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease, border 0.3s ease;
        display: block; }
      .navigation--top .nav-social a:hover:before {
        color: #ffffff; }
    .navigation--top .nav-social .fb {
      text-align: center; }
      .navigation--top .nav-social .fb:before {
        width: 20px;
        height: 20px;
        font-size: 18px; }
      .navigation--top .nav-social .fb:hover:before {
        color: #3b5998; }
    .navigation--top .nav-social .ta {
      margin-right: 3px; }
      .navigation--top .nav-social .ta:before {
        font-size: 22px; }
      .navigation--top .nav-social .ta:hover:before {
        color: #589442; }
    .navigation--top .nav-social .gp {
      font-size: 17px; }
      .navigation--top .nav-social .gp:hover:before {
        color: #dc4e41; }
    .navigation--top .nav-social .ig {
      margin-right: 3px; }
      .navigation--top .nav-social .ig:before {
        font-size: 16px; }
      .navigation--top .nav-social .ig:hover:before {
        color: #702c91; }

.navigation--main {
  /*        &:before {
            content: '';
            position: absolute;
            top: -30px;
            left: 0;
            right: 0;
            display: block;
            height: calc(150px);
            background: $accent2-dark;
            box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.13);
            @include transform (translateY(-100%));
            @include transition(all ease-in-out .2s);
            @include hidden;
        } */
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 103;
  letter-spacing: 0;
  font-size: 0px;
  background: transparent;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease; }
  .navigation--main__holder {
    margin-right: 0;
    float: left;
    vertical-align: top;
    list-style-type: none;
    width: 50%;
    height: 46px;
    text-align: right; }
    .navigation--main__holder--right {
      margin-left: 0;
      text-align: left;
      float: right; }
  .navigation--main .navbar {
    padding: 0;
    height: 46px;
    display: inline-block; }
    .navigation--main .navbar li:last-child .submenu {
      left: 35px; }
    .navigation--main .navbar li:first-child .submenu {
      left: 91px; }
    .navigation--main .navbar--left {
      padding-right: 75px;
      position: relative; }
    .navigation--main .navbar--right {
      padding-right: 0;
      padding-left: 75px;
      position: relative; }
      .navigation--main .navbar--right li:last-child .submenu {
        left: 6px; }
      .navigation--main .navbar--right .button-booknow-hld {
        background: #c41230;
        visibility: hidden;
        opacity: 0;
        display: none;
        color: #ffffff;
        -webkit-transition: background 0.3s ease;
        -o-transition: background 0.3s ease;
        transition: background 0.3s ease; }
        .navigation--main .navbar--right .button-booknow-hld:hover {
          background: #950e25;
          -webkit-transition: background 0.3s ease;
          -o-transition: background 0.3s ease;
          transition: background 0.3s ease; }
    .navigation--main .navbar li {
      display: inline-block;
      vertical-align: top;
      height: 100%;
      position: relative;
      -webkit-transition: background 0.3s ease;
      -o-transition: background 0.3s ease;
      transition: background 0.3s ease; }
      .navigation--main .navbar li > a {
        font-size: 16px;
        color: #ffffff;
        padding: 15px 10px 13px;
        display: block;
        text-align: center;
        font-weight: 400;
        position: relative;
        letter-spacing: 0.04em;
        font-family: "lora", serif;
        border: solid 1px transparent;
        -webkit-transition: color 0.4s ease;
        -o-transition: color 0.4s ease;
        transition: color 0.4s ease;
        line-height: 1; }
        .navigation--main .navbar li > a.button--nav-scroll {
          color: #ffffff;
          -webkit-transition: all 0.4s ease;
          -o-transition: all 0.4s ease;
          transition: all 0.4s ease; }
      .navigation--main .navbar li:hover a, .navigation--main .navbar li.active a {
        border: solid 1px #ffffff; }
      .navigation--main .navbar li:hover a.button--nav-scroll, .navigation--main .navbar li.active a.button--nav-scroll {
        color: #000000;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease; }
      .navigation--main .navbar li:hover {
        z-index: 10000; }
      .navigation--main .navbar li .submenu {
        position: absolute;
        left: 50%;
        top: 44px;
        z-index: 10;
        background-color: #ffffff;
        padding: 0;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%); }
        .navigation--main .navbar li .submenu > li {
          -webkit-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          transition: all 0.3s ease;
          padding: 5px 0;
          display: block; }
          .navigation--main .navbar li .submenu > li:not(:last-child) {
            border-bottom: solid 1px #ebebeb; }
          .navigation--main .navbar li .submenu > li.is-parent.is-clicked > a:before {
            transform: rotate(180deg); }
          .navigation--main .navbar li .submenu > li.is-parent > a {
            position: relative;
            padding-right: 20px; }
            .navigation--main .navbar li .submenu > li.is-parent > a:before {
              content: '\e905';
              position: absolute;
              top: 14px;
              right: 15px;
              font-family: "icomoon";
              font-size: 7px;
              transition: transform .2s; }
          .navigation--main .navbar li .submenu > li a {
            min-width: 182px;
            max-width: 200px;
            padding: 13px 15px;
            margin: 0;
            font-size: 14px;
            line-height: 15px;
            white-space: nowrap;
            border: none;
            letter-spacing: 0.04em;
            color: #000000;
            white-space: pre-wrap;
            -webkit-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease; }
            .navigation--main .navbar li .submenu > li a:after, .navigation--main .navbar li .submenu > li a :before {
              display: none; }
            .navigation--main .navbar li .submenu > li a.active, .navigation--main .navbar li .submenu > li a:hover {
              background: #ebebeb; }
        .navigation--main .navbar li .submenu .sec-submenu {
          display: none;
          padding: 0; }
          .navigation--main .navbar li .submenu .sec-submenu a.active, .navigation--main .navbar li .submenu .sec-submenu a:hover {
            background: rgba(235, 235, 235, 0.6); }
    .navigation--main .navbar > li:hover .submenu {
      visibility: visible;
      opacity: 1; }
    .navigation--main .navbar > li:hover:before, .navigation--main .navbar > li:hover:after,
    .navigation--main .navbar > li.active:before,
    .navigation--main .navbar > li.active:after {
      visibility: visible;
      opacity: 1; }
    .navigation--main .navbar > li:hover:after,
    .navigation--main .navbar > li.active:after {
      width: 100%;
      -webkit-transition: width 0.5s ease;
      -o-transition: width 0.5s ease;
      transition: width 0.5s ease; }
    .navigation--main .navbar .navbar__btn .button--book {
      height: auto;
      padding: 15px 10px; }

.navigation--sec {
  background: #950e25;
  position: relative;
  overflow: hidden; }
  .navigation--sec ul {
    list-style-type: none;
    padding: 40px 0;
    text-align: center;
    margin: 0;
    position: relative; }
  .navigation--sec li {
    font-size: 14px;
    width: 100%;
    position: relative;
    font-family: "lora", serif;
    color: #ffffff;
    text-transform: uppercase;
    padding: 0; }
    .navigation--sec li a {
      display: block;
      padding: 19px 11px 18px;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      letter-spacing: 0.14em;
      font-weight: 400;
      color: #ffffff; }
    .navigation--sec li.active a {
      color: #ffffff;
      background: #c41230; }
    .navigation--sec li:hover a {
      color: #ffffff;
      background: #c41230; }

.navigation--mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  height: 54px;
  z-index: 9999;
  padding: 0; }
  .navigation--mobile .mob-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 290px;
    padding: 0;
    background-color: #ffffff;
    -moz-transform: translatex(100%);
    -o-transform: translatex(100%);
    -ms-transform: translatex(100%);
    -webkit-transform: translatex(100%);
    transform: translatex(100%);
    -webkit-transition: transform 0.2s ease, height 0.3s ease;
    -o-transition: transform 0.2s ease, height 0.3s ease;
    transition: transform 0.2s ease, height 0.3s ease;
    z-index: -1;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
    .navigation--mobile .mob-nav .svg {
      height: 25px;
      position: absolute;
      top: 15px;
      left: 0;
      right: 0;
      margin: auto;
      text-align: center; }
      .navigation--mobile .mob-nav .svg svg {
        height: 25px; }
      .navigation--mobile .mob-nav .svg path {
        fill: #c41230; }
    .navigation--mobile .mob-nav__inner {
      text-transform: uppercase;
      position: relative;
      min-height: 100vh;
      padding-bottom: 65px; }
    .navigation--mobile .mob-nav__ul {
      font-size: 13px;
      list-style-type: none;
      padding-left: 0;
      text-align: left; }
      .navigation--mobile .mob-nav__ul > li {
        position: relative; }
        .navigation--mobile .mob-nav__ul > li > a {
          display: block;
          width: 100%;
          padding: 15px 35px 15px 15px;
          color: #c41230;
          font-family: "lora", serif;
          border-bottom: 1px solid #c41230;
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
          .navigation--mobile .mob-nav__ul > li > a.active {
            color: #c41230;
            font-weight: 600; }
          .navigation--mobile .mob-nav__ul > li > a:hover {
            color: #000000;
            -webkit-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease; }
        .navigation--mobile .mob-nav__ul > li.subnav-active .mob-nav__submenu {
          max-height: 300px; }
        .navigation--mobile .mob-nav__ul > li.subnav-active .mob-nav__trigger::after {
          top: -5px;
          -moz-transform: rotatex(180deg);
          -o-transform: rotatex(180deg);
          -ms-transform: rotatex(180deg);
          -webkit-transform: rotatex(180deg);
          transform: rotatex(180deg); }
    .navigation--mobile .mob-nav__trigger, .navigation--mobile .mob-nav__subtrigger {
      position: absolute;
      width: 46px;
      height: 46px;
      top: 0;
      right: 0;
      text-align: center;
      -webkit-transition: transform 0.2s ease;
      -o-transition: transform 0.2s ease;
      transition: transform 0.2s ease; }
      .navigation--mobile .mob-nav__trigger:after, .navigation--mobile .mob-nav__subtrigger:after {
        content: "\e905";
        margin: auto;
        font-family: "icomoon";
        font-size: 5px;
        color: #c41230;
        position: absolute;
        top: 5px;
        right: 0;
        bottom: 0;
        left: 0;
        height: 9px; }
      .navigation--mobile .mob-nav__trigger:hover, .navigation--mobile .mob-nav__trigger:focus, .navigation--mobile .mob-nav__subtrigger:hover, .navigation--mobile .mob-nav__subtrigger:focus {
        outline: none; }
    .navigation--mobile .mob-nav__submenu {
      position: relative;
      list-style-type: none;
      padding-left: 0;
      -webkit-transition: max-height 0.3s ease;
      -o-transition: max-height 0.3s ease;
      transition: max-height 0.3s ease;
      max-height: 0;
      overflow: hidden; }
      .navigation--mobile .mob-nav__submenu li {
        position: relative;
        border-bottom: solid 1px #c41230;
        padding-left: 25px; }
        .navigation--mobile .mob-nav__submenu li.subsubnav-active .mob-nav__subsubmenu {
          max-height: 300px; }
        .navigation--mobile .mob-nav__submenu li.subsubnav-active .mob-nav__subtrigger::after {
          top: -5px;
          -moz-transform: rotatex(180deg);
          -o-transform: rotatex(180deg);
          -ms-transform: rotatex(180deg);
          -webkit-transform: rotatex(180deg);
          transform: rotatex(180deg); }
      .navigation--mobile .mob-nav__submenu a {
        position: relative;
        color: #c41230;
        padding: 15px;
        display: block;
        font-size: 12px;
        font-family: "lora", serif;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        .navigation--mobile .mob-nav__submenu a.active {
          color: black;
          font-weight: 600; }
        .navigation--mobile .mob-nav__submenu a:hover {
          color: #000000;
          -webkit-transition: color 0.3s ease;
          -o-transition: color 0.3s ease;
          transition: color 0.3s ease; }
        .navigation--mobile .mob-nav__submenu a:before {
          display: none; }
    .navigation--mobile .mob-nav__subsubmenu {
      position: relative;
      list-style-type: none;
      padding-left: 0;
      -webkit-transition: max-height 0.3s ease;
      -o-transition: max-height 0.3s ease;
      transition: max-height 0.3s ease;
      max-height: 0;
      overflow: hidden; }
  .navigation--mobile .nav-lang__list {
    list-style-type: none;
    display: block;
    text-align: center;
    padding: 10px 0; }
  .navigation--mobile .nav-lang__item {
    display: inline-block;
    font-family: "lora", serif;
    margin: 0 5px; }
    .navigation--mobile .nav-lang__item a:hover {
      color: #000000; }
    .navigation--mobile .nav-lang__item.active-lang {
      font-weight: 600; }

.navigation__icons {
  width: 100%;
  float: left;
  height: 100%;
  z-index: 2;
  background-color: #ffffff;
  border-top: solid 1px #c41230; }
  .navigation__icons .nav-icon {
    width: 25%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    height: 100%;
    text-align: center;
    position: relative;
    padding-top: 33px;
    font-size: 11px;
    text-transform: uppercase;
    font-family: "lora", serif;
    color: #c41230;
    border-right: 1px solid #c41230;
    cursor: pointer; }
    .navigation__icons .nav-icon:last-child {
      border-right-width: 0; }
    .navigation__icons .nav-icon:before {
      position: absolute;
      font-size: 20px;
      top: 10px;
      left: 0;
      right: 0;
      margin: auto; }
    .navigation__icons .nav-icon--phone:before {
      content: "\e911";
      font-size: 18px; }
    .navigation__icons .nav-icon--map:before {
      content: "\e910";
      font-size: 20px;
      top: 8px; }
    .navigation__icons .nav-icon--book {
      color: #ffffff;
      background: #c41230; }
      .navigation__icons .nav-icon--book:before {
        content: "\e91a";
        font-size: 20px;
        top: 8px; }
    .navigation__icons .nav-icon--menu:before {
      content: "\e91b";
      font-size: 20px;
      top: 8px; }
    .navigation__icons .nav-icon--menu.closed:before {
      content: "\e90e"; }

.site-scrolled .logo-container {
  width: 66px;
  height: 66px; }

.site-scrolled .navigation--main {
  position: fixed;
  z-index: 120;
  -moz-transform: translateY(-55px);
  -o-transform: translateY(-55px);
  -ms-transform: translateY(-55px);
  -webkit-transform: translateY(-55px);
  transform: translateY(-55px);
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  background-color: #ffffff;
  border-bottom: solid 1px #ebebeb; }
  .site-scrolled .navigation--main:before {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1; }

.site-scrolled .navbar--right {
  display: flex;
  padding-left: 45px;
  width: 100%; }
  .site-scrolled .navbar--right .button-booknow-hld {
    visibility: visible;
    opacity: 1;
    display: inline-block; }

.site-scrolled .navbar--left {
  padding-right: 45px;
  width: 100%; }

.site-scrolled .logo__elements-hide {
  visibility: hidden;
  opacity: 0; }

.site-scrolled .navigation--main .navbar > li > a {
  color: #000000;
  border: 0; }
  .site-scrolled .navigation--main .navbar > li > a:hover, .site-scrolled .navigation--main .navbar > li > a.active {
    color: #c41230; }
  .site-scrolled .navigation--main .navbar > li > a.button--nav-scroll {
    font-size: 13px;
    color: white; }
    .site-scrolled .navigation--main .navbar > li > a.button--nav-scroll span.icon {
      color: white; }
    .site-scrolled .navigation--main .navbar > li > a.button--nav-scroll:hover {
      background: #950e25; }

.shadow-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  background-color: #000;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease; }

/* styles needed to prevent showing two scrools */
.mobile-nav-active {
  height: 100%;
  overflow: hidden !important; }
  .mobile-nav-active .shadow-background {
    visibility: visible;
    opacity: 1;
    opacity: 0.5;
    z-index: 1000; }
  .mobile-nav-active .navigation--mobile .mob-nav {
    -moz-transform: translatex(0%);
    -o-transform: translatex(0%);
    -ms-transform: translatex(0%);
    -webkit-transform: translatex(0%);
    transform: translatex(0%); }

/* ------------------------------------------ *\

                HOME ICONS

\* ------------------------------------------ */
.section--homeicons {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-bottom: solid 1px #ebebeb;
  position: relative; }
  .section--homeicons .homeicons-hld {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    margin: 0 auto;
    list-style-type: none;
    height: 120px;
    width: 100%;
    max-width: 930px; }
  .section--homeicons .homeicon {
    display: block;
    width: 25%;
    text-align: center;
    padding-top: 20px;
    text-transform: uppercase;
    color: #c41230;
    font-size: 13px;
    font-weight: 500;
    position: relative; }
    .section--homeicons .homeicon__items-hld {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      width: 100%;
      list-style-type: none;
      padding: 0;
      margin: 0;
      font-size: 0;
      letter-spacing: 0;
      text-align: center; }
    .section--homeicons .homeicon__item {
      display: inline-block;
      width: 20%;
      font-family: "lora", serif;
      font-weight: 500;
      font-size: 12px;
      line-height: 18px;
      letter-spacing: 0.04em;
      color: #000000;
      text-align: center; }
    .section--homeicons .homeicon__icon {
      color: #c41230;
      display: block;
      font-size: 23px;
      margin-bottom: 15px; }
    .section--homeicons .homeicon span {
      display: block;
      color: #c41230; }

/* ------------------------------------------ *\

                BOOKING PANEL

\* ------------------------------------------ */
.bookPanel {
  background: #ffffff;
  height: 68px;
  width: 100%;
  max-width: 830px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  padding: 0 30px;
  bottom: 70px;
  z-index: 102; }
  .bookPanel form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%; }
  .bookPanel .div.div {
    position: relative;
    text-align: left; }
    .bookPanel .div.div:first-child {
      margin-left: 0; }
  .bookPanel .div.col-xs {
    width: 175px; }
  .bookPanel .div label {
    display: none; }
  .bookPanel .div .spec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 38px;
    background: #ebebeb; }
  .bookPanel .div #MinOccupancy {
    font-size: 12px;
    color: black;
    font-family: "lora", serif;
    padding-left: 15px;
    cursor: pointer; }
  .bookPanel .div #textInput1, .bookPanel .div #textInput2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    font-size: 12px;
    color: black;
    font-family: "lora", serif;
    padding-left: 15px;
    cursor: pointer;
    z-index: 10; }
  .bookPanel .div:hover .spec {
    background: #dedede; }
  .bookPanel .div:hover .icon-calendar, .bookPanel .div:hover .icon-dropdown {
    background: #c41230;
    color: #ffffff; }
  .bookPanel .booking_btn label {
    display: none; }
  .bookPanel .button--booknow {
    background: #c41230;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .bookPanel .button--booknow:hover {
      background: #950e25; }
  .bookPanel .icon-calendar, .bookPanel .icon-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 1px;
    font-size: 14px;
    background: #ffffff;
    color: #c41230;
    -webkit-transition: color 0.2s ease, background 0.2s ease;
    -o-transition: color 0.2s ease, background 0.2s ease;
    transition: color 0.2s ease, background 0.2s ease; }
  .bookPanel .icon-dropdown {
    font-size: 8px; }
  .bookPanel .icon-calendar {
    position: absolute;
    right: 0;
    z-index: 0; }
  .bookPanel #occupancyList {
    display: none;
    width: 170px;
    max-height: 180px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 74px;
    z-index: 1000;
    background: #ffffff;
    list-style-type: none; }
    .bookPanel #occupancyList li {
      height: 30px;
      font-size: 12px;
      text-indent: 15px;
      color: #000000;
      font-family: "lora", serif;
      line-height: 30px;
      -webkit-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
      transition: all 0.4s ease; }
      .bookPanel #occupancyList li:hover {
        background: #dedede;
        cursor: pointer; }

/* ------------------------------------------ *\

                ATTRACTIONS DETAILS

\* ------------------------------------------ */
.attraction-map-pointer {
  width: 29px;
  height: 40px;
  margin-left: 82px;
  margin-top: 8px; }
  .attraction-map-pointer:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(/img/point.png);
    width: 40px;
    height: 40px; }

.section--details--attractions .block--top {
  padding-bottom: 15px; }
  .section--details--attractions .block--top .content-intro {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 60px 50px 0px;
    font-family: "lora", serif;
    letter-spacing: 0.05em;
    line-height: 150%;
    font-size: 15px;
    color: #fff;
    text-align: center; }
    @media screen and (max-width: 1400px) {
      .section--details--attractions .block--top .content-intro {
        max-width: 940px; } }

.section--details--attractions .section__inner {
  max-width: 1200px;
  margin: 30px auto 0; }
  @media screen and (max-width: 1400px) {
    .section--details--attractions .section__inner {
      max-width: 840px; } }
  .section--details--attractions .section__inner .attraction__info_box {
    position: relative;
    margin-top: 30px;
    background-color: #ebebeb;
    height: 130px; }
    .section--details--attractions .section__inner .attraction__info_box .info_box-inner {
      display: inline-block; }
      .section--details--attractions .section__inner .attraction__info_box .info_box-inner span {
        display: block; }
      .section--details--attractions .section__inner .attraction__info_box .info_box-inner__heading {
        width: 265px; }
        .section--details--attractions .section__inner .attraction__info_box .info_box-inner__heading h3 {
          font-size: 20px;
          height: 130px;
          line-height: 130%;
          text-transform: uppercase;
          font-family: "lora", serif;
          background: #ebebeb;
          letter-spacing: 0.06em;
          margin: 0;
          color: #fff;
          display: table-cell;
          vertical-align: middle;
          text-align: center;
          padding: 0 30px;
          border: 1px solid teal; }
      .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours {
        width: calc(100% - 265px);
        float: right;
        height: 100%;
        padding: 41px 50px 0; }
        .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours .info_box-hour span {
          width: 50%;
          float: left;
          height: 100%;
          text-align: center;
          font-size: 20px;
          font-family: "lora", serif;
          color: #fff; }
          .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours .info_box-hour span span {
            display: block;
            font-size: 13px;
            font-family: "lora", serif;
            color: #fff;
            width: 100%;
            letter-spacing: 0.05em;
            margin-top: 7px; }
          .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours .info_box-hour span__center {
            width: 100%; }
  .section--details--attractions .section__inner .attraction--map {
    margin-top: 40px; }
    .section--details--attractions .section__inner .attraction--map #map-canvas--attractions {
      height: 435px; }
  .section--details--attractions .section__inner .content-txt {
    font-size: 14px;
    color: #fff;
    font-family: "lora", serif;
    letter-spacing: 0.05em;
    line-height: 150%;
    padding: 20px 0 0; }
    .section--details--attractions .section__inner .content-txt h2 {
      font-size: 25px;
      font-family: "lora", serif;
      color: #fff;
      padding: 0 0 20px; }
    .section--details--attractions .section__inner .content-txt table {
      margin: 0;
      overflow: hidden; }
      .section--details--attractions .section__inner .content-txt table th {
        color: #ebebeb;
        font-weight: normal;
        text-align: center;
        border: 0;
        border: 1px solid  #dadada;
        background: teal;
        font-family: "lora", serif;
        border-bottom: 1px solid  #dadada;
        font-weight: 400;
        font-size: 13px;
        letter-spacing: 0.1em; }
      .section--details--attractions .section__inner .content-txt table td {
        text-align: center;
        border: 1px solid  #dadada;
        color: #ebebeb;
        font-weight: 400;
        font-size: 13px;
        background: #f6f6f6;
        letter-spacing: 0.05em; }
      .section--details--attractions .section__inner .content-txt table th, .section--details--attractions .section__inner .content-txt table td {
        padding: 12px 15px; }
        .section--details--attractions .section__inner .content-txt table th label, .section--details--attractions .section__inner .content-txt table td label {
          margin-bottom: 0; }
        .section--details--attractions .section__inner .content-txt table th.bold, .section--details--attractions .section__inner .content-txt table td.bold {
          font-weight: 700; }
      .section--details--attractions .section__inner .content-txt table.table-price td, .section--details--attractions .section__inner .content-txt table.table-price tr {
        font-size: 0.9em; }
      .section--details--attractions .section__inner .content-txt table.table-price th {
        border-bottom-color: #dadada;
        font-weight: 400; }
      .section--details--attractions .section__inner .content-txt table.widthertable {
        overflow-x: scroll;
        display: block;
        position: relative; }
    .section--details--attractions .section__inner .content-txt .aftertable {
      font-family: "lora", serif;
      text-align: right;
      padding-right: 30px;
      float: right;
      margin-top: 10px; }
      .section--details--attractions .section__inner .content-txt .aftertable:after {
        content: '\e901';
        font-family: "icomoon";
        color: teal;
        position: relative;
        right: -10px;
        top: 0px;
        display: inline-block;
        font-size: 8px; }
    .section--details--attractions .section__inner .content-txt .weddingtable table td {
      vertical-align: top; }
    .section--details--attractions .section__inner .content-txt table .days, .section--details--attractions .section__inner .content-txt table .center {
      text-align: center; }
  .section--details--attractions .section__inner .gallery {
    padding: 0 !important;
    margin: 0 -1.25%; }
    .section--details--attractions .section__inner .gallery .gallery--right__hld h3 {
      font-size: 20px;
      font-family: "lora", serif;
      color: #fff;
      padding-bottom: 30px; }

/* ------------------------------------------ *\

                HOME OFFERS

\* ------------------------------------------ */
.section--homeoffers {
  overflow: hidden; }
  .section--homeoffers__title {
    font-size: 45px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    color: #c41230;
    font-family: "lora", serif;
    letter-spacing: 0.1em;
    margin: 45px auto;
    line-height: 1.2;
    z-index: 2; }
  .section--homeoffers .button-hld-see-all-offers {
    width: 100%;
    text-align: center;
    margin: 60px 0 0; }
    .section--homeoffers .button-hld-see-all-offers .button--see-all-offers {
      display: inline-block; }

.listing--rooms .item {
  height: 470px; }

.section--left-offers__title {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase; }

.section--left-offers .item {
  height: 390px; }

.section--left-offers .item__img {
  height: 310px; }

.section--left-offers .item__title__text {
  font-size: 15px; }

.section--left-offers .item__hover__inner {
  padding: 40px 10px 60px; }

.section--left-offers .listing__item.slides {
  padding: 0; }

.section--left-offers .item__hover .button, .section--left-offers .item__hover form.offerask .buttons button, form.offerask .buttons .section--left-offers .item__hover button, .section--left-offers .item__hover .block--left__book, .section--left-offers .item__hover form.contact .buttons button, form.contact .buttons .section--left-offers .item__hover button {
  bottom: 20px; }

.listing {
  padding: 0px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; }
  .listing:after {
    content: " ";
    display: block;
    clear: both; }
  .listing:not(.listing--page) {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px; }
    .listing:not(.listing--page):after {
      content: " ";
      display: block;
      clear: both; }
  .listing--page {
    padding-top: 70px;
    padding-bottom: 90px;
    overflow: hidden; }
    .listing--page .listing--cont {
      margin: 0;
      padding: 0; }
  .listing--page-offers {
    padding-top: 50px; }
  .listing__item {
    outline: none; }
    .listing__item:hover, .listing__item:focus {
      outline: none; }
    .listing__item.slides {
      width: 400px;
      float: left;
      padding-left: 15px;
      padding-right: 15px; }
    .listing__item__inner {
      display: block;
      height: 100%;
      position: relative; }
  .listing--noslides--1 .listing__item.slides {
    width: 50%;
    float: left;
    margin-left: 25%;
    margin-right: -100%;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .listing--noslides--2 .listing__item.slides {
    width: 50%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .listing--noslides--3 .listing__item.slides {
    width: 33.33333%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%; }

.item {
  position: relative;
  outline: none;
  background-color: #fff;
  cursor: pointer;
  height: 420px;
  /*    &__inner {
            padding: 6px 15px 10px;
            margin: 0 54px 10px;
            text-align: center;
            font-family: $header;
            color: $dustygray;
            font-size: 13px;
            height: 50px;
            @include hex-to-rgba($white, 0.9);

            .filter--icon {
                display: inline-block;
                position: relative;
                width: 40px;
                left: 0;
                height: 34px;
                top: 0;

                &:before {
                    top: -3px;
                    left: 0;
                    font-size: 24px;
                }
            }
        }*/ }
  .item:hover, .item:focus {
    outline: none;
    cursor: pointer; }
    .item:hover .item__hover, .item:focus .item__hover {
      background: #000000;
      background: rgba(0, 0, 0, 0.6);
      transform: translateY(0); }
  .item__img {
    position: relative;
    height: 340px;
    overflow: hidden; }
  .item__infoBox__title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding: 10px;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    -webkit-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
    border: solid 1px #ebebeb;
    border-top: 0; }
  .item__title__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    font-family: "lora", serif;
    color: #000000;
    letter-spacing: 0.04em;
    padding: 0 30px; }
  .item__furnitures {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    position: relative;
    text-align: center;
    border: solid 1px #ebebeb;
    border-top: 0; }
    .item__furnitures__items {
      padding: 0 30px;
      display: flex;
      align-items: center;
      justify-content: space-around;
      position: relative;
      text-align: center;
      font-family: "lora", serif; }
    .item__furnitures__item {
      text-align: left;
      display: inline-block;
      text-align: center; }
      .item__furnitures__item:first-child {
        margin-right: 20px; }
      .item__furnitures__item span {
        color: #000000;
        font-size: 14px;
        font-family: "lora", serif;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 23px; }
      .item__furnitures__item:before {
        color: #c41230;
        margin-right: 0 !important;
        font-size: 12px; }
      .item__furnitures__item__beds {
        display: inline-block;
        padding-top: 12px;
        float: left;
        position: relative;
        left: 30px;
        font-size: 12px;
        font-family: "lora", serif;
        width: 36%; }
        .item__furnitures__item__beds span {
          color: #c41230;
          font-family: "lora", serif;
          display: inline-block;
          position: absolute;
          margin-left: -20px; }
          .item__furnitures__item__beds span:before {
            display: inline-block;
            position: relative !important; }
        .item__furnitures__item__beds .icon-singlebed1:before {
          content: '\e976';
          display: block;
          position: absolute;
          font-family: "icomoon";
          color: teal;
          font-size: 13px; }
        .item__furnitures__item__beds .icon-doublebed:before {
          content: '\e977';
          display: block;
          position: absolute;
          font-family: "icomoon";
          color: teal;
          font-size: 16px; }
        .item__furnitures__item__beds .icon-couch:before {
          content: '\e939';
          display: block;
          position: absolute;
          font-family: "icomoon";
          color: teal;
          font-size: 17px; }
    .item__furnitures.doubleLine .item__furnitures__items {
      top: 15px; }
    .item__furnitures.doubleLine .item__furnitures__item__beds {
      padding-top: 6px; }
  .item__hover {
    position: absolute;
    text-align: center;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6) 15%, #000000);
    transform: translateY(235px);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .item__hover__inner {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      flex-direction: column;
      text-align: center;
      height: 100%;
      padding: 60px 40px 80px; }
    .item__hover .priceBookInfo {
      font-family: "lora", serif;
      color: #ffffff;
      font-size: 13px;
      line-height: 16px;
      width: 100%;
      height: 20px;
      margin: 0 0 40px; }
    .item__hover__summary {
      line-height: 1.7;
      letter-spacing: 0.04em;
      color: #ffffff;
      font-size: 16px;
      width: 100%;
      margin: 0; }
      .item__hover__summary p {
        margin: 0; }
    .item__hover .button, .item__hover form.offerask .buttons button, form.offerask .buttons .item__hover button, .item__hover .block--left__book, .item__hover form.contact .buttons button, form.contact .buttons .item__hover button {
      position: absolute;
      bottom: 40px;
      right: 50%;
      transform: translateX(50%); }
  .item .PriceValue {
    text-transform: uppercase;
    font-family: "lora", serif;
    font-size: 14px;
    font-weight: 400; }
    .item .PriceValue .CurrencyValue, .item .PriceValue .CurrencySuffix {
      font-family: "lora", serif;
      font-weight: 400; }
    .item .PriceValue .CurrencyValue {
      margin: 0 3px;
      font-size: 27px;
      font-weight: 800; }
    .item .PriceValue .CurrencySuffix {
      font-size: 14px; }

.button--offer {
  min-width: 195px; }

/* ------------------------------------------ *\

                MIDBOX

\* ------------------------------------------ */
.section--midbox .midbox {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative; }
  .section--midbox .midbox:after {
    content: " ";
    display: block;
    clear: both; }
  .section--midbox .midbox__middle {
    width: 33.33333%;
    float: left;
    margin-left: 33.33333%;
    margin-right: -100%;
    padding-left: 1.25%;
    padding-right: 1.25%;
    min-height: inherit; }
  .section--midbox .midbox__inner {
    height: 100%;
    min-height: inherit;
    margin-top: 30px;
    margin-bottom: -60px;
    min-height: 530px;
    z-index: 10; }

/* ------------------------------------------ *\

                3 BOX

\* ------------------------------------------ */
.section--boxes {
  position: relative;
  overflow: hidden; }
  .section--boxes__inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2; }
    .section--boxes__inner:after {
      content: " ";
      display: block;
      clear: both; }

.box3 {
  height: 500px;
  text-align: center;
  /*

       &--opinions {
            &.box3__inner {
                .box3__inner__text {
                    color: $accent2;
                    margin-top: 60px;
                    padding: 40px;
                    position: relative;
                    font-size: 12px;

                    .author {
                        font-size: 15px;
                        color: red;
                        font-weight: 700;
                        font-family: $common;
                        text-transform: uppercase;
                        margin-top: 0px;
                    }
                }
            }
        } */ }
  .box3:first-child {
    width: 33.33333%;
    float: left;
    margin-left: 33.33333%;
    margin-right: -100%;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .box3:nth-child(2) {
    width: 33.33333%;
    float: left;
    margin-left: 0;
    margin-right: -100%;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .box3:last-child {
    width: 33.33333%;
    float: left;
    margin-left: 66.66667%;
    margin-right: -100%;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .box3__inner {
    height: 100%; }
    .box3__inner:not(.box3__inner--gallery) h2 {
      font-family: "lora", serif;
      font-size: 27px;
      padding: 31px 25px;
      vertical-align: middle;
      color: #c41230;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 0.08em;
      border: none;
      vertical-align: middle;
      display: table-cell; }
    .box3__inner:not(.box3__inner--gallery) .box3__inner {
      height: 100%;
      position: relative; }
      .box3__inner:not(.box3__inner--gallery) .box3__inner__header {
        width: 100%;
        height: 100px;
        background: #ffffff;
        margin: 0;
        display: table;
        position: relative;
        border: solid 1px #ebebeb;
        border-bottom: 0;
        /*
                    .icon-left-quote {
                        position: absolute;
                        display: block;
                        width: 40px;
                        height: 40px;
                        right: 50%;
                        bottom: -20px;
                        transform: translateX(50%);
                        font-size: 12px;

                        &:after {
                            content: '';
                            display: block;
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 40px;
                            height: 40px;
                            background:  $accent2-dark;
                            transform: rotate(45deg);
                            z-index: -1;
                       }

                       &:before {
                        //content: '';
                        font-size: 18px;
                        display: block;
                        position: absolute;
                        //width: 30px;
                        //height: 30px;
                        bottom: 50%;
                        right: 50%;
                        //transform: translate(50%, 50%);
                        transform: translate(50%, 50%);
                        color: white;
                        }
                    }*/ }
      .box3__inner:not(.box3__inner--gallery) .box3__inner__textBox {
        height: calc(100% - 100px);
        border: solid 1px #ebebeb;
        position: relative; }
        .box3__inner:not(.box3__inner--gallery) .box3__inner__textBox .button--sec__hld {
          position: absolute;
          left: 0;
          right: 0;
          margin: auto;
          bottom: 30px;
          text-align: center; }
          .box3__inner:not(.box3__inner--gallery) .box3__inner__textBox .button--sec__hld .button, .box3__inner:not(.box3__inner--gallery) .box3__inner__textBox .button--sec__hld form.offerask .buttons button, form.offerask .buttons .box3__inner:not(.box3__inner--gallery) .box3__inner__textBox .button--sec__hld button, .box3__inner:not(.box3__inner--gallery) .box3__inner__textBox .button--sec__hld .block--left__book, .box3__inner:not(.box3__inner--gallery) .box3__inner__textBox .button--sec__hld form.contact .buttons button, form.contact .buttons .box3__inner:not(.box3__inner--gallery) .box3__inner__textBox .button--sec__hld button, .box3__inner:not(.box3__inner--gallery) .box3__inner__textBox .button--sec__hld .button--sec {
            display: inline-block;
            -webkit-transition: background 0.3s ease;
            -o-transition: background 0.3s ease;
            transition: background 0.3s ease; }
      .box3__inner:not(.box3__inner--gallery) .box3__inner__text {
        line-height: 180%;
        color: #000000;
        font-family: "lora", serif;
        font-size: 14px;
        line-height: 1.8;
        letter-spacing: 0.04em;
        padding: 30px 40px 60px;
        overflow: hidden;
        position: relative;
        width: 100%;
        top: 0;
        bottom: 0; }
        .box3__inner:not(.box3__inner--gallery) .box3__inner__text .title {
          color: teal;
          font-size: 17px;
          font-family: "lora", serif; }
        .box3__inner:not(.box3__inner--gallery) .box3__inner__text .description {
          font-size: 14px;
          font-weight: 300;
          display: block;
          margin: 25px 0; }
        .box3__inner:not(.box3__inner--gallery) .box3__inner__text .author {
          color: teal; }
        .box3__inner:not(.box3__inner--gallery) .box3__inner__text ul {
          margin: 0;
          padding: 0;
          text-align: left;
          position: relative; }
          .box3__inner:not(.box3__inner--gallery) .box3__inner__text ul li {
            list-style-type: none;
            font-size: 13px;
            font-weight: 300;
            line-height: 20px;
            letter-spacing: 0.04em;
            margin-bottom: 15px;
            font-family: "lora", serif;
            padding-left: 25px;
            position: relative; }
            .box3__inner:not(.box3__inner--gallery) .box3__inner__text ul li:before {
              content: '';
              position: absolute;
              display: block;
              top: 4px;
              left: 0;
              border-top: 5px solid transparent;
              border-bottom: 5px solid transparent;
              border-left: 8px solid #c41230; }
    .box3__inner.box3__inner--news .box3__inner__textBox {
      display: block;
      padding: 40px 0 100px;
      display: flex;
      flex-direction: column;
      justify-content: space-around; }
    .box3__inner.box3__inner--news .box3__inner__news {
      display: block;
      padding: 0 50px; }
      .box3__inner.box3__inner--news .box3__inner__news .title, .box3__inner.box3__inner--news .box3__inner__news .date {
        display: inline-block;
        font-family: "lora", serif;
        letter-spacing: 0.04em;
        line-height: 150%; }
      .box3__inner.box3__inner--news .box3__inner__news .title {
        margin-bottom: 10px;
        color: #000000;
        font-size: 14px;
        line-height: 1.4;
        -webkit-transition: color 0.3s ease;
        -o-transition: color 0.3s ease;
        transition: color 0.3s ease; }
      .box3__inner.box3__inner--news .box3__inner__news .date {
        margin-bottom: 20px;
        font-size: 14px;
        color: #c41230; }
      .box3__inner.box3__inner--news .box3__inner__news:hover .title {
        color: #c41230; }
  .box3__inner--testimonials .box3__inner__textBox .box3__inner__text {
    padding-top: 70px; }

/* ------------------------------------------ *\

                GALLERY

\* ------------------------------------------ */
.section--gallery .gallery {
  height: auto;
  width: 100%;
  float: left;
  margin: 0 0 30px; }
  .section--gallery .gallery .mosaic {
    width: 25%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    margin-bottom: 2.5%; }
    .section--gallery .gallery .mosaic:nth-child(4n + 1) {
      margin-left: 0;
      margin-right: -100%;
      clear: both; }
    .section--gallery .gallery .mosaic:nth-child(4n + 2) {
      margin-left: 25%;
      margin-right: -100%;
      clear: none; }
    .section--gallery .gallery .mosaic:nth-child(4n + 3) {
      margin-left: 50%;
      margin-right: -100%;
      clear: none; }
    .section--gallery .gallery .mosaic:nth-child(4n + 4) {
      margin-left: 75%;
      margin-right: -100%;
      clear: none; }
    .section--gallery .gallery .mosaic__inner {
      padding-bottom: 100%;
      position: relative; }
    .section--gallery .gallery .mosaic .liquid {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }

.content-img {
  display: block;
  width: calc(50% - 20px);
  float: left;
  margin: 10px;
  position: relative; }
  .content-img img {
    width: 100%;
    height: auto;
    border: 4px solid #ffffff; }
  .content-img:before, .content-img:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    visibility: hidden;
    opacity: 0; }
  .content-img:after {
    content: '';
    background: url(/img/zoom.png) no-repeat;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-23px, -23px);
    -o-transform: translate(-23px, -23px);
    -ms-transform: translate(-23px, -23px);
    -webkit-transform: translate(-23px, -23px);
    transform: translate(-23px, -23px);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .content-img:before {
    content: '';
    display: block;
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    -o-transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    background-color: rgba(65, 65, 65, 0.4); }
  .content-img:hover:before, .content-img:hover:after {
    visibility: visible;
    opacity: 1;
    opacity: 1; }
  .content-img:hover:before {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }

/* ------------------------------------------ *\

                MOSAIC

\* ------------------------------------------ */
.mosaic {
  height: 100%;
  font-size: 0; }
  .mosaic--1 .mosaic__hld {
    height: 100%;
    display: block; }
  .mosaic--2 .mosaic__hld {
    height: 50%;
    border-bottom: 1px solid transparent;
    display: block; }
    .mosaic--2 .mosaic__hld:last-child {
      border-bottom-width: 0; }
  .mosaic--3 .mosaic__hld {
    height: 50%;
    width: 50%;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent; }
    .mosaic--3 .mosaic__hld:last-child {
      border-bottom-width: 0;
      width: 100%; }
    .mosaic--3 .mosaic__hld:last-child, .mosaic--3 .mosaic__hld--1 {
      border-right-width: 0; }
  .mosaic--4 .mosaic__hld {
    height: 50%;
    width: 50%;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
    vertical-align: top; }
    .mosaic--4 .mosaic__hld:last-child, .mosaic--4 .mosaic__hld--1 {
      border-right-width: 0; }
    .mosaic--4 .mosaic__hld--2, .mosaic--4 .mosaic__hld:last-child {
      border-bottom-width: 0; }
  .mosaic--5 .mosaic__hld, .mosaic--6 .mosaic__hld {
    width: 100%;
    border-bottom: 1px solid transparent; }
    .mosaic--5 .mosaic__hld--0, .mosaic--5 .mosaic__hld--4, .mosaic--6 .mosaic__hld--0, .mosaic--6 .mosaic__hld--4 {
      height: 37.46%; }
    .mosaic--5 .mosaic__hld--2, .mosaic--6 .mosaic__hld--2 {
      height: 25%; }
    .mosaic--5 .mosaic__hld:last-child, .mosaic--6 .mosaic__hld:last-child {
      border-bottom-width: 0; }
  .mosaic--5 .mosaic__hld--1, .mosaic--5 .mosaic__hld--3 {
    height: 50%; }
  .mosaic--6 .mosaic__hld--1 {
    height: 25%; }
  .mosaic--6 .mosaic__hld--3, .mosaic--6 .mosaic__hld--5 {
    height: 37.46%; }
  .mosaic .liquid {
    display: block;
    position: relative;
    cursor: pointer; }
    .mosaic .liquid:before, .mosaic .liquid:after {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      visibility: hidden;
      opacity: 0; }
    .mosaic .liquid:after {
      content: '\e972';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 45px;
      height: 45px;
      margin: auto;
      background: #c41230;
      color: #ffffff;
      font-size: 20px;
      line-height: 45px;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .mosaic .liquid:before {
      content: '';
      display: block;
      -moz-transform: scale(0.8);
      -o-transform: scale(0.8);
      -ms-transform: scale(0.8);
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
      -webkit-transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
      -o-transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
      transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
      background-color: rgba(45, 46, 48, 0.7); }
    .mosaic .liquid:hover:before, .mosaic .liquid:hover:after {
      visibility: visible;
      opacity: 1;
      opacity: 1; }
    .mosaic .liquid:hover:before {
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1); }
  .mosaic__col {
    width: 50%;
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: top; }
    .mosaic__col:first-child {
      border-right: 1px solid transparent; }
  .mosaic__hld {
    display: inline-block;
    vertical-align: top; }

/* ------------------------------------------ *\

                GENERIC ETC.

\* ------------------------------------------ */
.contact .breadcrumbs {
  padding-bottom: 50px; }

.breadcrumbs {
  text-align: center;
  padding: 0;
  margin: 0 auto;
  list-style-type: none;
  font-family: "lora", serif; }
  .breadcrumbs li {
    display: inline-block;
    text-transform: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1; }
    .breadcrumbs li:first-child {
      margin-left: 0; }
    .breadcrumbs li a {
      padding-right: 15px;
      position: relative;
      font-size: 15px;
      letter-spacing: 0.04em;
      line-height: 1; }
      .breadcrumbs li a:after {
        content: '\e931';
        font-family: "icomoon" !important;
        color: #000000;
        font-size: 6px;
        display: inline-block;
        padding-left: 15px;
        margin-top: -1px;
        position: relative;
        top: -1px; }
      .breadcrumbs li a span {
        color: #000000;
        font-family: "lora", serif;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
      .breadcrumbs li a:hover span {
        color: #c41230; }
    .breadcrumbs li span {
      color: #c41230;
      font-family: "lora", serif;
      font-size: 13px;
      letter-spacing: 0.04em; }

.icons-pcs {
  display: inline-block;
  margin-right: 15px !important;
  width: 15px;
  height: 12px;
  position: relative;
  top: 7px; }
  .icons-pcs--mail {
    background: url(/img/mail.png) center center no-repeat; }
  .icons-pcs--tel {
    background: url(/img/tel.png) center center no-repeat; }

#en .block__dates__time--1 {
  margin-left: 55px; }

#en .block__dates__time--2 {
  margin-left: 25px; }

.block--top--titlehld {
  position: relative;
  width: 75%;
  float: right;
  padding-bottom: 30px; }
  .block--top--titlehld:after {
    display: block;
    content: '';
    position: absolute;
    left: 30px;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ebebeb; }
  .block--top--titlehld h1 {
    text-align: left;
    line-height: 120%;
    margin-top: 4px;
    margin-bottom: 10px; }
  .block--top--titlehld .breadcrumbs {
    text-align: left;
    padding-left: 30px; }

.block--left {
  width: 25%;
  float: left;
  padding-left: 1.25%;
  padding-right: 1.25%;
  margin-top: 50px; }
  .block--left__hld {
    text-align: center;
    position: relative;
    margin-bottom: 30px; }
    .block--left__hld .block--left__inner--book {
      position: relative;
      overflow: hidden;
      border: solid 1px #ebebeb; }
    .block--left__hld .block--left__inner--nodeco {
      padding: 30px 40px;
      text-align: left;
      border: solid 1px #ebebeb;
      overflow: hidden;
      position: relative; }
      .block--left__hld .block--left__inner--nodeco::after {
        clear: both;
        content: "";
        display: table; }
      .block--left__hld .block--left__inner--nodeco h2 {
        font-size: 14px;
        font-family: "lora", serif;
        font-weight: 600;
        letter-spacing: 0.04em;
        margin-bottom: 15px;
        color: #000000; }
    .block--left__hld--book {
      border: none; }
  .block--left__inner {
    padding: 0; }
  .block--left--booking .block--left__hld {
    width: 100%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    padding: 0; }
    .block--left--booking .block--left__hld .block--left__inner > *:first-child {
      margin-top: 0; }
  .block--left__price {
    font-size: 14px;
    color: #000000;
    padding-top: 47px;
    display: block;
    text-align: center;
    font-family: "lora", serif;
    position: relative;
    z-index: 2; }
    .block--left__price .from {
      display: block; }
    .block--left__price .CurrencyValue {
      display: inline-block;
      font-size: 32px;
      margin-right: 4px;
      text-transform: uppercase;
      font-family: "lora", serif;
      color: #c41230;
      line-height: 100%;
      font-weight: 800;
      margin: 15px 0 10px; }
    .block--left__price .RateDesc {
      display: block;
      font-family: "lora", serif;
      font-size: 13px;
      text-align: center; }
    .block--left__price .CurrencySuffix {
      text-transform: uppercase;
      font-size: 18px;
      font-family: "lora", serif;
      font-weight: 800;
      color: #c41230; }
  .block--left__inner-price {
    padding-bottom: 0; }
  .block--left__book {
    cursor: pointer;
    width: 190px;
    margin: 25px auto 40px;
    padding-top: 1px;
    padding-bottom: 0;
    white-space: nowrap;
    border: none;
    line-height: 40px;
    font-size: 12px;
    font-family: "lora", serif;
    letter-spacing: 0.1em;
    position: relative; }

.block--right {
  width: 75%;
  float: left; }
  .block--right--fullwidth {
    width: 100% !important; }
  .block--right__hld {
    width: 100%;
    float: left;
    padding-left: 1.66667%;
    padding-right: 1.66667%; }
  .block--right--full {
    width: 100%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%; }

.block__dates {
  z-index: 2;
  margin-bottom: 25px;
  width: 100%;
  float: left;
  padding-left: 5%;
  padding-right: 5%; }
  .block__dates__date {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 200%;
    font-size: 14px; }
    .block__dates__date .block__title {
      position: relative;
      margin: 0;
      padding-left: 15px; }
      .block__dates__date .block__title:before {
        content: '\e906';
        font-family: "icomoon";
        position: absolute;
        display: block;
        width: 20px;
        height: 20px;
        color: #c41230;
        left: -10px;
        margin-top: 2px;
        font-size: 16px;
        font-weight: 800;
        line-height: 20px; }
  .block__dates__time {
    font-weight: 600; }

.block--hotel-policy-all {
  position: relative;
  z-index: 2; }
  .block--hotel-policy-all .block-inner span {
    font-size: 14px;
    font-family: "lora", serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 15px;
    color: #000000; }
  .block--hotel-policy-all .block-inner ul {
    list-style: none;
    padding-left: 0; }
    .block--hotel-policy-all .block-inner ul li {
      font-size: 13px;
      font-family: "lora", serif;
      letter-spacing: 0.04em;
      line-height: 1.6;
      margin-bottom: 15px; }

.block__cards {
  position: relative;
  z-index: 2; }
  .block__cards .block__title {
    font-size: 14px;
    font-family: "lora", serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #000000;
    margin: 25px 0 15px; }
  .block__cards__hld {
    margin-left: -9px;
    margin-right: -9px; }
  .block__cards__img {
    height: auto;
    width: 41px;
    margin: 0 3px 10px 3px; }

.content h1, .content h2 {
  padding: 0;
  font-size: 18px;
  font-family: "lora", serif;
  font-weight: 400;
  margin-top: 35px;
  margin-bottom: 16px;
  color: #000000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left; }
  .content h1:first-child, .content h2:first-child {
    margin-top: 0; }

.content h3, .content h4, .content h5, .content h6 {
  font-size: 16px;
  font-family: "lora", serif;
  font-weight: 500;
  margin-top: 35px;
  margin-bottom: 16px;
  color: #000000;
  text-transform: uppercase; }

.content ul {
  padding: 0;
  list-style-type: none;
  line-height: 180%;
  list-style: none; }
  .content ul.double li {
    width: 40%;
    display: inline-block; }
  .content ul li {
    padding-left: 25px;
    padding-bottom: 7px;
    position: relative;
    line-height: 150%;
    color: #000000;
    font-size: 14px;
    font-weight: 300; }
    .content ul li:before {
      content: '';
      position: absolute;
      display: block;
      top: 4px;
      left: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 8px solid #c41230; }

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

.content--header {
  font-size: 16px;
  font-family: "lora", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 160%;
  width: 100%;
  float: left;
  padding-left: 1.66667%;
  padding-right: 1.66667%;
  margin-top: 50px;
  color: #000000; }
  .content--header p {
    margin: 0 0 12px; }

.content--text, .content--desc {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 160%;
  width: 100%;
  float: left;
  padding-left: 1.66667%;
  padding-right: 1.66667%;
  font-family: "lora", serif;
  letter-spacing: 0.04em; }

.content--text {
  margin-top: 17px; }
  .content--text .make-it-center {
    margin-left: 50%;
    -moz-transform: translateX(-73px);
    -o-transform: translateX(-73px);
    -ms-transform: translateX(-73px);
    -webkit-transform: translateX(-73px);
    transform: translateX(-73px); }
  .content--text__venues {
    float: none;
    max-width: 790px;
    margin: auto; }
  .content--text h1:before {
    display: none; }
  .content--text p, .content--text div {
    margin: 0 0 12px; }
  .content--text table {
    color: #000000 !important;
    border-color: #dadada !important;
    font-size: 13px;
    font-family: "lora", serif; }
    .content--text table h3 {
      color: #000000 !important;
      font-size: 14px; }
    .content--text table td {
      border: 1px solid #ebebeb; }
  .content--text ul {
    list-style-type: none !important; }

.content--desc > *:first-child {
  margin-top: 0; }

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

.sitemap {
  display: inline-block; }
  .sitemap > ul {
    text-align: left; }
    .sitemap > ul a:hover {
      text-decoration: underline; }

.gallery {
  height: 250px; }
  .gallery__inner {
    float: left; }
  .gallery__title {
    font-size: 18px;
    font-family: "lora", serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-left: 1.25%;
    padding-right: 1.25%;
    float: left;
    clear: both; }
  .gallery__small-title {
    font-size: 18px;
    font-family: "lora", serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 35px;
    color: #000000;
    padding-left: 1.66667%; }
  .gallery--1 .gallery__inner {
    height: 100%;
    width: 100%; }
  .gallery--2 .gallery__inner {
    height: 50%;
    width: 100%; }
    .gallery--2 .gallery__inner--0 {
      border-bottom: 1px solid transparent; }
  .gallery--3 .gallery__inner {
    height: 50%; }
    .gallery--3 .gallery__inner--0 {
      border-right: 1px solid transparent;
      width: 60%; }
    .gallery--3 .gallery__inner--1 {
      width: 40%; }
    .gallery--3 .gallery__inner--2 {
      width: 100%;
      border-top: 1px solid transparent; }
  .gallery--4 .gallery__inner {
    height: 50%; }
    .gallery--4 .gallery__inner--0, .gallery--4 .gallery__inner--2 {
      border-right: 1px solid transparent; }
    .gallery--4 .gallery__inner--2, .gallery--4 .gallery__inner--3 {
      border-top: 1px solid transparent; }
    .gallery--4 .gallery__inner--0, .gallery--4 .gallery__inner--3 {
      width: 60%; }
    .gallery--4 .gallery__inner--1, .gallery--4 .gallery__inner--2 {
      width: 40%; }
  .gallery .fancybox--hidden {
    display: none; }
  .gallery .liquid:after {
    text-align: center; }
  .gallery--right {
    width: 100%;
    float: left;
    height: auto;
    padding-left: 15px;
    padding-right: 15px; }
    .gallery--right__hld::after {
      clear: both;
      content: "";
      display: table; }
    .gallery--right__inner {
      width: 25%;
      float: left;
      padding-left: 1.25%;
      padding-right: 1.25%;
      height: 180px; }
    .gallery--right .gallery__title {
      padding-left: 15px;
      margin-bottom: 20px; }
      .gallery--right .gallery__title:first-letter {
        font-size: 26px; }

.testimonials {
  display: flex;
  flex-wrap: wrap;
  padding-left: 1.25%;
  padding-right: 1.25%;
  padding-top: 60px; }

.testimonials__block {
  width: calc(100% * 1/3 - 12px);
  margin: 18px 18px 0 0; }
  .testimonials__block:nth-child(3n) {
    margin-right: 0; }

.testimonials__heightener {
  position: relative;
  padding-bottom: 100%; }
  .testimonials__heightener--photo {
    background-color: #ffffff; }

.testimonials__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  min-height: 100%;
  padding: 20px 20px 35px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  text-align: center; }
  .testimonials__content.is-active {
    z-index: 2; }
    .testimonials__content.is-active .testimonials__text > * {
      display: none; }
    .testimonials__content.is-active .testimonials__text::before {
      display: block; }
    .testimonials__content.is-active .testimonials__more-text::before {
      content: attr(data-less); }
    .testimonials__content.is-active .testimonials__more-icon {
      transform: rotateX(180deg); }

.testimonials__content--unpadded {
  overflow: hidden;
  padding: 0; }
  .testimonials__content--unpadded img {
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    min-width: 100%;
    min-height: 100%; }

.testimonials__title {
  margin-bottom: 10px;
  color: #c41230;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase; }

.testimonials__text {
  margin-bottom: 20px;
  font-size: 15px; }
  .testimonials__text::before {
    content: attr(data-full-content);
    display: none; }

.testimonials__read-more {
  align-self: center;
  margin-bottom: 20px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  text-transform: lowercase; }

.testimonials__more-text::before {
  content: attr(data-more); }

.testimonials__more-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  margin-right: 3px;
  color: #c41230;
  font-size: 13px; }

.testimonials__footer {
  position: relative;
  margin-top: auto;
  padding-top: 24px;
  font-size: 15px;
  letter-spacing: 0.08em; }
  .testimonials__footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 40px;
    height: 1px;
    margin: auto;
    background-color: #c41230; }

.testimonials__source {
  color: #c41230; }

/* ------------------------------------------ *\

                NEWS

\* ------------------------------------------ */
.calendar {
  width: 100%;
  float: left;
  padding-left: 5%;
  padding-right: 5%;
  padding: 6px;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  border: solid 1px #ebebeb; }
  .calendar__hld {
    text-align: center;
    position: relative;
    z-index: 2; }
  .calendar__month {
    display: block;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "lora", serif;
    height: 43px;
    line-height: 43px;
    cursor: pointer;
    color: #000000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent; }
    .calendar__month:hover {
      background: #c41230;
      color: #ffffff; }
    .calendar__month.active {
      background: #c41230;
      color: #ffffff; }
  .calendar__item {
    margin-bottom: 30px; }
    .calendar__item:not(:first-child) {
      border-top: solid 1px #ebebeb; }
    .calendar__item h3 {
      text-align: center;
      padding: 10px 0;
      color: #000000;
      position: relative;
      margin-bottom: 0;
      font-size: 17px; }

.block--left__inner__news {
  padding-bottom: 65px;
  text-align: center;
  position: relative;
  z-index: 2; }
  .block--left__inner__news .news__archive {
    display: inline-block;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    bottom: -25px; }

.news--left-box {
  width: 100%;
  float: left;
  padding-left: 5%;
  padding-right: 5%;
  padding: 6px;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  border: solid 1px #ebebeb; }
  .news--left-box .button, .news--left-box form.offerask .buttons button, form.offerask .buttons .news--left-box button, .news--left-box .block--left__book, .news--left-box form.contact .buttons button, form.contact .buttons .news--left-box button {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%); }

#en .news .news__title {
  margin-bottom: 5px; }

.news {
  margin-bottom: 20px;
  border: 1px solid #eaeaea; }
  .news:last-child {
    margin-bottom: 0; }
  .news-group {
    margin-top: 48px; }
  .news__inner__hld {
    position: relative; }
    .news__inner__hld::after {
      clear: both;
      content: "";
      display: table; }
  .news__img {
    width: 22.22222%;
    float: left;
    padding-left: 1.66667%;
    padding-right: 1.66667%;
    padding-bottom: 22.22222%;
    height: 100%; }
  .news__text {
    width: 77.77778%;
    float: left;
    padding-left: 1.66667%;
    padding-right: 1.66667%;
    padding-top: 35px;
    padding-bottom: 30px;
    color: #ffffff;
    line-height: 1.5;
    overflow: hidden; }
    .news__text .news__title {
      margin-top: -20px;
      margin-bottom: -10px;
      font-size: 18px; }
  .news__title {
    width: 90%;
    font-size: 18px;
    font-family: "lora", serif;
    font-weight: 400;
    margin-top: 0;
    letter-spacing: 0.04em;
    text-align: left;
    text-transform: uppercase;
    line-height: 1.5; }
    .news__title--light {
      color: #000000;
      font-weight: 400;
      text-align: left; }
    .news__title--left {
      text-align: center;
      padding: 0;
      margin-bottom: 25px;
      color: #000000; }
  .news__intro {
    font-family: "lora", serif;
    font-size: 14px;
    line-height: 1.5;
    color: #000000; }
  .news__link {
    text-align: center;
    display: block;
    padding: 5px 10px;
    color: #000000;
    font-family: "lora", serif;
    font-size: 13px;
    line-height: 140%;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .news__link__date {
      font-size: 12px;
      color: #000000;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .news__link:hover {
      background-color: #c41230;
      color: #ffffff; }
      .news__link:hover .news__link__date {
        font-size: 12px;
        color: #ffffff; }
  .news .news__title, .news__intro {
    padding-left: 5px; }
  .news-item__calendar {
    position: absolute;
    top: 0;
    right: 0;
    text-transform: lowercase;
    color: #000000;
    font-size: 16px;
    background-color: #ebebeb;
    padding: 3px 10px; }
  .news .button--sec {
    position: absolute;
    bottom: 15px;
    right: 15px; }

/* ------------------------------------------ *\

                CONTACT

\* ------------------------------------------ */
.contact {
  margin-bottom: 0; }
  .contact::after {
    clear: both;
    content: "";
    display: table; }
  .contact__info span, .contact__info p, .contact__info a, .contact__form span, .contact__form p, .contact__form a {
    line-height: 180%;
    color: #ffffff;
    margin: 0;
    font-family: "lora", serif;
    font-size: 14px; }
    .contact__info span:before, .contact__info p:before, .contact__info a:before, .contact__form span:before, .contact__form p:before, .contact__form a:before {
      font-family: "icomoon";
      font-size: 11px; }
    .contact__info span.icon, .contact__info p.icon, .contact__info a.icon, .contact__form span.icon, .contact__form p.icon, .contact__form a.icon {
      padding-left: 20px;
      position: relative; }
      .contact__info span.icon:before, .contact__info p.icon:before, .contact__info a.icon:before, .contact__form span.icon:before, .contact__form p.icon:before, .contact__form a.icon:before {
        position: absolute;
        left: 0;
        color: #c41230;
        font-size: 12px;
        top: 4px;
        line-height: 1; }
  .contact__info a, .contact__form a {
    text-decoration: underline;
    color: yellow; }
    .contact__info a:hover, .contact__form a:hover {
      color: #c41230; }
  .contact .contact__left, .contact .contact__right {
    padding-top: 25px;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden; }
    .contact .contact__left h2, .contact .contact__left h3, .contact .contact__right h2, .contact .contact__right h3 {
      font-size: 18px;
      color: #000000;
      font-family: "lora", serif;
      font-weight: 500;
      padding-bottom: 0px;
      margin-top: 0;
      padding-top: 12px;
      letter-spacing: 0.02em; }
    .contact .contact__left a, .contact .contact__right a {
      color: #000000;
      text-decoration: none;
      font-size: 18px;
      font-family: "lora", serif;
      line-height: 180%;
      letter-spacing: 0.04em;
      display: flex;
      align-items: center;
      transition: color .2s; }
      .contact .contact__left a:hover, .contact .contact__right a:hover {
        color: #c41230; }
    .contact .contact__left p, .contact .contact__right p {
      color: #000000;
      font-family: "lora", serif;
      margin-bottom: 6px;
      font-size: 18px;
      line-height: 180%;
      letter-spacing: 0.04em; }
      .contact .contact__left p strong, .contact .contact__right p strong {
        font-family: "lora", serif;
        font-weight: 700;
        letter-spacing: 0.05em; }
  .contact .contact__left {
    width: 33.33333%;
    float: left;
    padding: 0 40px;
    height: 100%;
    color: red; }
    .contact .contact__left h2, .contact .contact__left h3, .contact .contact__left h4, .contact .contact__left .contact__subtitle {
      margin-top: 28px;
      color: #c41230;
      margin-bottom: 20px; }
    .contact .contact__left a[href^='mailto:'],
    .contact .contact__left a[href^='tel:'],
    .contact .contact__left .fax,
    .contact .contact__left .gps {
      position: relative; }
      .contact .contact__left a[href^='mailto:']::before,
      .contact .contact__left a[href^='tel:']::before,
      .contact .contact__left .fax::before,
      .contact .contact__left .gps::before {
        color: #c41230;
        font-size: 16px;
        margin-right: 10px; }
    .contact .contact__left a[href^='tel:']::before {
      content: '\e911'; }
    .contact .contact__left a[href^='mailto:']::before {
      content: '\e948'; }
    .contact .contact__left .fax::before {
      content: '\e94f'; }
    .contact .contact__left .gps::before {
      content: '\e942'; }
  .contact .contact__right {
    width: 66.66667%;
    float: left;
    float: right;
    text-align: center; }
    .contact .contact__right h2, .contact .contact__right h3 {
      padding-left: 1.25%;
      width: 66.66667%;
      float: left;
      margin-left: 16.66667%;
      text-align: left; }
  .contact__form {
    width: 100%;
    padding-left: 0;
    padding-right: 0; }
    .contact__form p {
      width: 100%;
      float: left;
      padding-left: 2.5%;
      padding-right: 2.5%;
      color: teal; }
  .contact__block {
    margin-bottom: 30px; }
    .contact__block::after {
      clear: both;
      content: "";
      display: table; }
    .contact__block__inner {
      width: 100%;
      float: left;
      padding-left: 2.5%;
      padding-right: 2.5%; }
    .contact__block__inner + .contact__block__inner {
      margin-top: 40px;
      position: relative; }
      .contact__block__inner + .contact__block__inner:before {
        content: '';
        display: block;
        position: absolute;
        margin: 0 auto;
        left: 2.5%;
        height: 2px;
        width: 14px;
        top: -20px;
        background: #ebebeb;
        -webkit-transition: color 0.3s ease, background 0.3s ease;
        -o-transition: color 0.3s ease, background 0.3s ease;
        transition: color 0.3s ease, background 0.3s ease; }

fieldset {
  padding: 0;
  margin: 0;
  border: 0; }

form.contact {
  width: 66.66667%;
  float: left;
  margin-left: 16.66667%;
  padding-top: 10px; }
  form.contact .control-label {
    color: #ffffff;
    font-size: 14px;
    display: block;
    letter-spacing: 0; }
    form.contact .control-label span {
      color: #c41230; }
  form.contact .FirstName, form.contact .LastName, form.contact .Email, form.contact .Phone {
    width: 50%;
    float: left;
    padding-left: 2.5%;
    padding-right: 2.5%; }
  form.contact .FirstName, form.contact .LastName, form.contact .Email, form.contact .Phone, form.contact .SubmitMessage {
    padding-left: 1.25%;
    padding-right: 1.25%; }
  form.contact .Info p {
    color: #000000;
    font-size: 13px;
    text-align: left;
    padding-right: 1.25%;
    margin-top: 5px; }
  form.contact .buttons {
    width: 100%;
    float: left;
    padding-left: 2.5%;
    padding-right: 2.5%;
    margin-top: -45px; }
    form.contact .buttons button {
      float: right; }
  form.contact .alert {
    display: none !important; }
  form.contact .star {
    line-height: 1em; }

input, textarea {
  padding: 12px 20px;
  margin-bottom: 10px;
  background-color: #ffffff;
  color: #000000;
  font-size: 12px;
  -webkit-appearance: none;
  font-family: "lora", serif;
  border: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: solid 1px #ebebeb; }
  input:focus, textarea:focus {
    border-color: #c41230; }
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-family: "lora", serif;
    color: #000000;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  input::-moz-placeholder, textarea::-moz-placeholder {
    font-family: "lora", serif;
    color: #000000;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  input:-moz-placeholder, textarea:-moz-placeholder {
    font-family: "lora", serif;
    color: #000000;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-family: "lora", serif;
    color: #000000;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset; }

input:-webkit-autofill:first-line {
  color: #000000; }

textarea {
  height: 160px;
  resize: none; }

.form-msg {
  display: none; }

.testimonials {
  display: flex;
  flex-wrap: wrap;
  padding-left: 1.25%;
  padding-right: 1.25%;
  padding-top: 60px; }

.testimonials__block {
  width: calc(100% * 1/3 - 12px);
  margin: 18px 18px 0 0; }
  .testimonials__block:nth-child(3n) {
    margin-right: 0; }

.testimonials__heightener {
  position: relative;
  padding-bottom: 100%; }
  .testimonials__heightener--photo {
    background-color: #ffffff; }

.testimonials__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  min-height: 100%;
  padding: 20px 20px 35px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  text-align: center; }
  .testimonials__content.is-active {
    z-index: 2; }
    .testimonials__content.is-active .testimonials__text > * {
      display: none; }
    .testimonials__content.is-active .testimonials__text::before {
      display: block; }
    .testimonials__content.is-active .testimonials__more-text::before {
      content: attr(data-less); }
    .testimonials__content.is-active .testimonials__more-icon {
      transform: rotateX(180deg); }

.testimonials__content--unpadded {
  overflow: hidden;
  padding: 0; }
  .testimonials__content--unpadded img {
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    min-width: 100%;
    min-height: 100%; }

.testimonials__title {
  margin-bottom: 10px;
  color: #c41230;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase; }

.testimonials__text {
  margin-bottom: 20px;
  font-size: 15px; }
  .testimonials__text::before {
    content: attr(data-full-content);
    display: none; }

.testimonials__read-more {
  align-self: center;
  margin-bottom: 20px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  text-transform: lowercase; }

.testimonials__more-text::before {
  content: attr(data-more); }

.testimonials__more-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  margin-right: 3px;
  color: #c41230;
  font-size: 13px; }

.testimonials__footer {
  position: relative;
  margin-top: auto;
  padding-top: 24px;
  font-size: 15px;
  letter-spacing: 0.08em; }
  .testimonials__footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 40px;
    height: 1px;
    margin: auto;
    background-color: #c41230; }

.testimonials__source {
  color: #c41230; }

/* ------------------------------------------ *\

                NEWSLETTER STYLES

\* ------------------------------------------ */
.newsletter-box {
  border-top: solid 1px #ebebeb; }

.newsletter-hld {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  text-align: center; }

.newsletter__header {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase; }

.newsletter__text {
  margin-bottom: 40px; }

.Email input {
  width: 100%;
  max-width: 360px; }

/* ------------------------------------------ *\

                MAP

\* ------------------------------------------ */
.contact .section--map .map-info__hld {
  top: 27px; }

.section--map {
  margin-top: 0 !important; }
  .section--map .map-info {
    width: 33.33333%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    width: 400px; }
    .section--map .map-info__hld {
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      position: absolute;
      top: 0;
      height: 0;
      left: 0;
      right: 0; }
      .section--map .map-info__hld:after {
        content: " ";
        display: block;
        clear: both; }
      .section--map .map-info__hld .box {
        height: 500px;
        background-image: none; }
        .section--map .map-info__hld .box h3 {
          text-transform: uppercase;
          text-align: center; }
        .section--map .map-info__hld .box__top {
          padding-bottom: 0;
          margin: 0;
          background: #ffffff;
          border: 1px solid #ebebeb;
          border-bottom: 0; }
          .section--map .map-info__hld .box__top__inner {
            padding-bottom: 1em;
            border-bottom: none;
            padding: 1px; }
            .section--map .map-info__hld .box__top__inner h1, .section--map .map-info__hld .box__top__inner h2, .section--map .map-info__hld .box__top__inner h3 {
              padding: 0;
              margin: 5px; }
        .section--map .map-info__hld .box__content {
          margin-top: 0;
          border-top: none;
          min-height: 370px;
          padding: 0 65px;
          background: rgba(255, 255, 255, 0.8); }
    .section--map .map-info h2 strong {
      display: block; }
    .section--map .map-info--contact {
      padding-left: 0; }
      .section--map .map-info--contact__subtitle {
        font-size: 26px;
        font-family: "lora", serif;
        margin: 0;
        text-transform: uppercase;
        color: #c41230;
        position: relative;
        text-align: center;
        font-weight: 500;
        width: 100%;
        padding: 18px 0 18px;
        letter-spacing: .12em;
        background: #ffffff; }
      .section--map .map-info--contact .box {
        height: auto;
        top: 110px;
        left: 10px;
        border: none;
        width: 360px; }
        .section--map .map-info--contact .box__content {
          padding: 0;
          margin: 0;
          border: none;
          min-height: 0;
          text-align: center; }
          .section--map .map-info--contact .box__content:before {
            display: none; }
        .section--map .map-info--contact .box .directions {
          position: relative;
          padding: 29px; }
          .section--map .map-info--contact .box .directions .directions_origin {
            padding: 10px 20px 11px;
            margin-bottom: 15px;
            text-align: center; }
            .section--map .map-info--contact .box .directions .directions_origin:hover, .section--map .map-info--contact .box .directions .directions_origin:focus {
              border-color: #c41230; }
            .section--map .map-info--contact .box .directions .directions_origin::-webkit-input-placeholder {
              text-align: center; }
            .section--map .map-info--contact .box .directions .directions_origin::-moz-placeholder {
              text-align: center; }
            .section--map .map-info--contact .box .directions .directions_origin:-moz-placeholder {
              text-align: center; }
            .section--map .map-info--contact .box .directions .directions_origin:-ms-input-placeholder {
              text-align: center; }
          .section--map .map-info--contact .box .directions .directions_error {
            bottom: 8px; }
          .section--map .map-info--contact .box .directions .box__button {
            display: block;
            font-size: 12px;
            color: #ffffff;
            margin-top: 20px;
            margin-bottom: 30px;
            border-color: teal;
            -webkit-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease; }
            .section--map .map-info--contact .box .directions .box__button:hover {
              background-color: teal; }
  .section--map .vcard {
    padding: 0 0 30px;
    position: relative;
    text-align: center;
    color: #000000;
    text-align: left; }
    .section--map .vcard > * {
      display: inline-block; }
    .section--map .vcard .org {
      font-size: 18px;
      line-height: 25px;
      font-family: "lora", serif;
      font-weight: 400;
      margin: 40px 0 0;
      text-align: center;
      width: 100%;
      letter-spacing: 0.04em;
      position: relative; }
    .section--map .vcard .adr {
      margin: 15px 0 40px;
      position: relative;
      text-align: center;
      width: 100%;
      font-size: 14px;
      line-height: 20x;
      letter-spacing: 0.04em; }
    .section--map .vcard .tel, .section--map .vcard .email {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      color: #000000;
      font-size: 13px;
      line-height: 1.5;
      letter-spacing: 0.15em;
      text-transform: uppercase; }
      .section--map .vcard .tel:before, .section--map .vcard .email:before {
        color: #c41230; }
    .section--map .vcard .tel {
      margin-bottom: 10px; }
      .section--map .vcard .tel:before {
        font-size: 10px; }
      .section--map .vcard .tel:hover {
        color: #c41230; }
    .section--map .vcard .email:hover {
      color: #c41230; }

.directions {
  text-align: center;
  margin: 0 auto;
  position: relative;
  /* .box__button {
        position: static;
        margin: 0 auto;
        @include transform(translatex(0));
        margin-top: 23px;
        display: inline-block;
        font-family: $header;
        font-size: 12px;
        @include transition(all 0.3s ease);
        padding: 11px 12px;
        width: 147px;
        background: 0;
        letter-spacing: 0.1em;
        color: $accent1;

        &:hover {
            background-color: $accent2;
        }
    }*/ }
  .directions .directions_origin {
    color: #000000;
    background: transparent;
    display: block;
    width: 100%;
    padding: 9px 15px 11px;
    text-align: center;
    font-family: "lora", serif;
    border: 1px solid #e5e3e2;
    margin-bottom: 20px; }
    .directions .directions_origin:hover, .directions .directions_origin:focus {
      border-color: #c41230; }
    .directions .directions_origin::-webkit-input-placeholder {
      color: #000000;
      font-size: 12px;
      text-align: center;
      font-family: "lora", serif; }
    .directions .directions_origin::-moz-placeholder {
      color: #000000;
      font-size: 12px;
      text-align: center;
      font-family: "lora", serif; }
    .directions .directions_origin:-moz-placeholder {
      color: #000000;
      font-size: 12px;
      text-align: center;
      font-family: "lora", serif; }
    .directions .directions_origin:-ms-input-placeholder {
      color: #000000;
      font-size: 12px;
      text-align: center;
      font-family: "lora", serif; }
  .directions .directions_error {
    position: absolute;
    bottom: -25px;
    left: 15px;
    right: 15px;
    text-align: center;
    font-size: 12px;
    color: red; }

#dir {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 500px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  visibility: hidden;
  opacity: 0; }
  #dir #map_directions {
    width: 500px;
    height: 70%;
    padding: 10px 15px;
    border: 2px solid #000;
    background: #ffffff;
    overflow-y: scroll;
    position: absolute;
    top: 74px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  #dir.active {
    visibility: visible;
    opacity: 1; }
  #dir .directions_close {
    width: 49px;
    height: 49px;
    margin: 0;
    position: absolute;
    top: 20px;
    left: 415px;
    border: 1px solid #991915;
    background-color: #991915; }
    #dir .directions_close:before {
      content: '';
      position: absolute;
      width: 25px;
      height: 25px;
      top: 11px;
      left: 11px;
      background: none; }

.map-data {
  margin-bottom: 15px;
  display: inline-block;
  text-align: left; }

#map_popup {
  width: 810px;
  height: 450px;
  position: absolute;
  z-index: -5;
  top: 0;
  left: 0;
  right: 0; }
  @media screen and (min-width: 600px) {
    #map_popup {
      display: block !important; } }
  #map_popup img {
    max-width: inherit; }

.fancybox-opened #map_popup {
  z-index: 1;
  position: relative;
  top: auto;
  left: auto; }

.directions-load .fancybox-overlay {
  opacity: 0;
  visibility: hidden; }

#map_directions {
  width: 810px;
  height: 390px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50; }

#map_routes {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  height: 390px;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
  overflow-y: scroll;
  overflow-x: hidden;
  width: 50%;
  display: none; }

#map_routes_content {
  -webkit-overflow-scrolling: touch; }
  #map_routes_content table {
    table-layout: auto;
    width: 100%;
    margin: 0; }
    #map_routes_content table td {
      border-bottom-width: 1px; }
      #map_routes_content table td:nth-child(3) {
        word-break: break-all; }

#map_details {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  font-size: 12px;
  font-family: "lora", serif; }
  #map_details .map_holder {
    height: 50px;
    overflow: hidden;
    float: left; }
    #map_details .map_holder div {
      height: 25px;
      width: 250px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      float: left;
      clear: both; }
      #map_details .map_holder div span {
        height: 25px;
        line-height: 24px; }

#map_routes_toggle {
  position: static;
  float: right;
  font-size: 12px;
  -moz-transform: translatex(0);
  -o-transform: translatex(0);
  -ms-transform: translatex(0);
  -webkit-transform: translatex(0);
  transform: translatex(0);
  background: #c41230;
  padding: 7px 10px;
  color: #ffffff;
  letter-spacing: 0.1em;
  border: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  #map_routes_toggle:hover {
    background-color: #950e25; }

#map_url {
  float: right;
  clear: right;
  margin-top: 4px;
  color: #333; }
  #map_url:hover, #map_url:focus {
    color: #181010;
    cursor: pointer;
    outline: none; }

.footer {
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  min-height: 60px;
  font-family: "lora", serif;
  font-size: 13px;
  background: #000000; }
  .footer__left, .footer__right, .footer__middle {
    display: flex;
    position: relative;
    color: #ffffff; }
  .footer__middle a {
    color: #ffffff; }
  .footer__right {
    flex-flow: row wrap;
    justify-content: space-around; }
    .footer__right .create {
      float: left;
      margin-left: 15px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      color: #ffffff; }
      .footer__right .create > span {
        display: inline-block;
        position: relative;
        margin-right: 5px;
        top: 2px; }
      .footer__right .create a {
        width: 77px;
        height: 20px;
        opacity: 1;
        -webkit-transition: opacity 0.2s ease;
        -o-transition: opacity 0.2s ease;
        transition: opacity 0.2s ease; }
  .footer__left {
    letter-spacing: 0.05em; }
  .footer .footer-nav {
    float: left;
    width: calc(100% - 460px);
    padding: 0;
    margin-top: -12px; }
    .footer .footer-nav ul {
      list-style: none;
      padding: 0;
      text-align: center; }
      .footer .footer-nav ul li {
        display: inline-block;
        padding: 0px 15px; }
        .footer .footer-nav ul li a {
          color: #999;
          font-size: 12px;
          font-family: "lora", serif;
          text-transform: uppercase;
          letter-spacing: 0.05em;
          -webkit-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          .footer .footer-nav ul li a:hover {
            color: #999; }
  .footer .nav-social {
    padding: 0; }
    .footer .nav-social ul {
      display: inline;
      padding: 0;
      margin-right: 15px; }
      .footer .nav-social ul li {
        font-size: 12px;
        display: inline-block;
        text-align: center;
        font-weight: 400;
        margin-right: 0px;
        vertical-align: top;
        overflow: hidden;
        text-align: center; }
    .footer .nav-social a {
      display: block;
      color: #ffffff;
      line-height: 22px;
      height: 22px;
      text-align: center;
      padding: 0 3px; }
      .footer .nav-social a:before {
        -webkit-transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease, border 0.3s ease;
        -o-transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease, border 0.3s ease;
        transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease, border 0.3s ease;
        display: block; }
      .footer .nav-social a:hover:before {
        color: #ffffff; }
    .footer .nav-social .fb {
      text-align: center; }
      .footer .nav-social .fb:before {
        width: 20px;
        height: 20px;
        font-size: 18px; }
      .footer .nav-social .fb:hover:before {
        color: #3b5998; }
    .footer .nav-social .ta {
      margin-right: 3px; }
      .footer .nav-social .ta:before {
        font-size: 22px; }
      .footer .nav-social .ta:hover:before {
        color: #589442; }
    .footer .nav-social .gp {
      font-size: 17px; }
      .footer .nav-social .gp:hover:before {
        color: #dc4e41; }
    .footer .nav-social .ig {
      margin-right: 3px; }
      .footer .nav-social .ig:before {
        font-size: 16px; }
      .footer .nav-social .ig:hover:before {
        color: #702c91; }
  .footer--generic {
    display: block;
    padding: 6px 0;
    text-align: center;
    background-image: none;
    background: #ffffff;
    border-top: solid 1px #ebebeb;
    position: relative;
    margin: 0; }

.create a {
  position: relative;
  top: -3px; }
  .create a:hover .color-text {
    fill: #c41230; }

.create .profitroom-logo svg {
  width: 100%;
  fill: #ffffff; }

.create .profitroom-logo .color-text {
  fill: #ffffff;
  -webkit-transition: fill ease-in-out 0.2s;
  -o-transition: fill ease-in-out 0.2s;
  transition: fill ease-in-out 0.2s; }

.footerContact {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: #000000;
  padding: 25px 0;
  font-size: 14px;
  position: relative; }
  .footerContact:after {
    content: " ";
    display: block;
    clear: both; }
  .footerContact__slogan, .footerContact .location, .footerContact .contactData {
    width: 33.33333%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    position: relative; }
    .footerContact__slogan__inner, .footerContact .location__inner, .footerContact .contactData__inner {
      display: inline-block;
      text-align: left; }
    .footerContact__slogan p, .footerContact .location p, .footerContact .contactData p {
      margin: 0; }
  .footerContact__slogan {
    padding-left: 5%; }
  .footerContact__slogan__inner {
    display: block; }
    .footerContact__slogan__inner a {
      color: #000000; }
    .footerContact__slogan__inner p:nth-child(1) {
      font-size: 18px;
      font-family: "lora", serif;
      font-weight: 400;
      letter-spacing: 0.04em; }
    .footerContact__slogan__inner p:not(:nth-child(1)), .footerContact__slogan__inner span {
      margin-top: 5px;
      color: #c41230;
      font-size: 16px;
      font-family: "lora", serif;
      font-weight: 400;
      letter-spacing: 0.04em; }
    .footerContact__slogan__inner h2 {
      margin: 0;
      line-height: 160%; }
      .footerContact__slogan__inner h2:first-letter {
        font-size: 32px; }
  .footerContact .location {
    margin-top: 0; }
    .footerContact .location .adr, .footerContact .location .org {
      margin-top: 5px;
      font-size: 14px;
      line-height: 170%;
      color: #000000;
      font-family: "lora", serif;
      letter-spacing: 0.04em;
      display: block;
      text-transform: initial; }
  .footerContact .contactData {
    -webkit-transform-style: preserve-3d;
    -webkit-transform: translate3d(0, 0, 0);
    margin-top: 0;
    line-height: 170%; }
    .footerContact .contactData__inner > * {
      padding-left: 23px;
      display: inline-block;
      position: relative;
      font-family: "lora", serif;
      color: #ffffff;
      font-size: 13px; }
      .footerContact .contactData__inner > * span:before {
        font-size: 11px;
        left: -13px;
        position: absolute;
        top: -17px;
        font-size: 13px;
        font-family: "icomoon";
        color: #c41230; }
    .footerContact .contactData a {
      font-size: 13px;
      color: #000000;
      font-family: "lora", serif;
      font-weight: 300;
      letter-spacing: 0.04em;
      text-transform: initial; }
      .footerContact .contactData a.email {
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        .footerContact .contactData a.email:before {
          content: '\e948';
          font-family: "icomoon";
          color: #c41230;
          position: absolute;
          left: 9px; }
    .footerContact .contactData a:hover {
      color: #c41230; }
  .footerContact .icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    line-height: 140%;
    position: relative;
    top: 2px; }

#cookieWarning {
  border-top: none;
  height: 20px;
  padding: 0px; }

#cookieWarning .cookieContent {
  background-color: #f4f4f4 !important;
  color: #333 !important;
  font-family: "lora", serif !important;
  font-size: 10px;
  margin-bottom: 2px; }
  #cookieWarning .cookieContent > * {
    margin: 4px !important; }

#cookieWarning .cookieContent .cookieButton a {
  background-color: transparent !important;
  color: #c41230 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  #cookieWarning .cookieContent .cookieButton a:hover {
    color: teal !important;
    background-color: transparent !important; }

/* ------------------------------------------ *\

                    WIDTHS

\* ------------------------------------------ */
/* ------------------------------------------ *\

                    STYLES

\* ------------------------------------------ */
@media screen and (min-width: 900px) {
  .block--top--titlehld, .block--right {
    width: calc(100% - 300px); }
  .block--right--gallery {
    width: 100%; }
  .block--left {
    width: 300px; } }

@media (max-width: 1360px) {
  .section--listing--venues .listing-facilities .venues-facilities {
    padding: 5px 14px 10px 20px;
    font-size: 13px; }
    .section--listing--venues .listing-facilities .venues-facilities .icon:before {
      font-size: 15px; } }

@media screen and (max-width: 1400px) {
  .banners .arrow-down {
    bottom: 200px; } }

@media screen and (max-width: 900px) {
  .section--details .block--top--titlehld {
    width: 100%;
    text-align: center; }
    .section--details .block--top--titlehld h1, .section--details .block--top--titlehld ol {
      text-align: center;
      padding: 0 10px; }
    .section--details .block--top--titlehld h1 {
      padding-top: 30px; }
  .section--details .block--left {
    width: 100%;
    float: left;
    margin-bottom: 30px; }
    .section--details .block--left__hld {
      width: 100%;
      float: left;
      padding-left: 1.25%;
      padding-right: 1.25%; }
      .section--details .block--left__hld .ext, .section--details .block--left__hld .block__dates {
        width: 50%;
        float: left;
        padding-left: 1.25%;
        padding-right: 1.25%;
        padding-left: 10px; }
      .section--details .block--left__hld .ext span {
        width: auto;
        margin-right: 15px; }
      .section--details .block--left__hld .block--hotel-policy-all {
        width: 50%;
        float: left;
        padding-left: 1.25%;
        padding-right: 1.25%; }
      .section--details .block--left__hld .block__cards__hld, .section--details .block--left__hld .block__cards h3 {
        width: 100%;
        float: left;
        padding-left: 1.25%;
        padding-right: 1.25%; }
      .section--details .block--left__hld .block__cards .block__title {
        margin-top: 0; }
      .section--details .block--left__hld .block__cards img {
        margin: 0 8px 10px; }
    .section--details .block--left .gallery {
      display: none; }
  .section--details .block--right {
    width: 100%;
    float: left;
    padding-bottom: 50px; }
  .section--homeoffers__rooms .section--homeoffers__title {
    font-size: 40px;
    letter-spacing: 0.1em; }
  .section--generic .block--left {
    display: none; }
  .section--generic .block--right {
    width: 100%;
    float: left; }
  .section--generic .gallery--right__inner {
    width: 25%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .block--top--titlehld:after {
    display: none; }
  .content--text table {
    margin: auto; }
  .testimonial__item-hld {
    padding-left: 30px; }
  .block__dates__date {
    justify-content: flex-start; }
    .block__dates__date .block__title {
      margin-right: 25px; }
  /*--------------------------------------------------------------------------*/
  .testimonials__block {
    width: calc(100% * 1/2 - 15px);
    margin: 25px 30px 0 0; }
    .testimonials__block:nth-child(3n) {
      margin-right: 30px; }
    .testimonials__block:nth-child(2n) {
      margin-right: 0; }
    .testimonials__block:nth-child(3) {
      margin-top: 25px; }
  .testimonials__heightener {
    padding-bottom: 110%; }
  .testimonials__content {
    padding: 50px; }
  /*--------------------------------------------------------------------------*/ }

@media screen and (max-width: 1110px) and (min-width: 1023px) {
  .box3__inner:not(.box3__inner--gallery) .box3__inner__hld h2 {
    font-size: 27px;
    letter-spacing: 0.09em;
    padding-top: 34px; }
  .opinion__text {
    padding: 50px 20px 5px; } }

@media (max-width: 1260px) {
  .section--icons-aco {
    padding: 0 30px; }
    .section--icons-aco > div {
      padding-top: 25px; }
    .section--icons-aco .icon-item {
      max-width: 156px !important; }
      .section--icons-aco .icon-item h4 {
        text-align: center !important; }
      .section--icons-aco .icon-item:before {
        display: none !important; }
  .section--homeoffers .arrow__inner--left {
    margin-left: 30px; }
  .section--homeoffers .arrow__inner--right {
    margin-right: 30px; }
  .box__top__inner h2 .long_subtitle {
    padding: 10px 45px 0; }
  .midbox__inner .box__content {
    font-size: 13px;
    padding: 58px 45px 100px; }
  .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement .arrangement {
    padding: 0 13px 0 25px; }
  .section--listing .listing--rooms .listing__item .item__hover__inner #map_routes_toggle, .section--listing .listing--rooms .listing__item .item__hover__inner .box__button {
    bottom: 13px; }
  .section--details--venues .section__inner .content .venue-item__arrangement .arrangement-hld .arrangement {
    padding: 16px 40px 20px 45px; } }

@media screen and (max-width: 1150px) {
  .navigation--main .navbar > li a {
    font-size: 14px;
    padding-left: 7px;
    padding-right: 7px; }
  .navigation--main .navbar > li .submenu li a {
    font-size: 13px; }
  .box3__inner:not(.box3__inner--gallery) .box3__inner__text {
    padding: 25px 20px 80px; } }

@media screen and (max-width: 1024px) {
  .prestigeClubHld {
    right: 0;
    width: 22px; }
    .prestigeClubHld a > * {
      display: none !important; }
    .prestigeClubHld a {
      width: 22px;
      height: 100%;
      display: block; }
    .prestigeClubHld:before {
      right: -58px !important;
      pointer-events: none; }
    .prestigeClubHld:hover {
      right: 0; } }

@media (max-width: 1023px) {
  body {
    padding-bottom: 54px; }
  /*------------------------------------------*/
  .testimonials__content {
    padding: 30px 15px; }
  .testimonials__heightener {
    padding-bottom: 120%; }
  /*-------------------------------
    .testimonials__heightener {
        padding-bottom: 120%;
    }

    .testimonials__content {
        padding: 25px 15px 30px;
    }

    .testimonials__title {
        font-size: 20px;
    }
----------*/
  .banners .arrow-down {
    bottom: 10px; }
  .box__top__inner h2 .long_subtitle {
    padding: 10px 70px 0; }
  .banners--title-group h1 {
    font-size: 60px !important; }
  .navigation--top {
    width: 100%;
    margin: 0;
    top: 0;
    background: #ac162c; }
  .navigation--top__infos .header-tel-hld {
    display: none; }
  .site-scrolled .logo-container,
  .banners .logo-container {
    position: absolute;
    width: 80px;
    height: 80px; }
  .fancybox-next span, .fancybox-prev span {
    visibility: visible;
    background: none; }
    .fancybox-next span:before, .fancybox-prev span:before {
      font-size: 15px;
      left: 43px; }
  .fancybox-prev span:before {
    left: 29px; }
  .mobile-only--tablet {
    display: block; }
  .nav-lang-dropdown {
    display: none; }
  .section--homeoffers__title {
    font-size: 40px; }
  .section--menu .details-sidebar {
    display: none; }
  .section--menu .details-main {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px; }
  .booking-panel {
    display: none; }
  .navigation--main {
    display: none; }
  .section--midbox .midbox__middle {
    width: 50%;
    float: left;
    margin-left: 25%;
    margin-right: -100%;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .section--listing .listing--rooms .listing__item, .section--listing .listing .listing__item {
    width: 50%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    margin-bottom: 2.5%; }
    .section--listing .listing--rooms .listing__item:nth-child(2n + 1), .section--listing .listing .listing__item:nth-child(2n + 1) {
      margin-left: 0;
      margin-right: -100%;
      clear: both; }
    .section--listing .listing--rooms .listing__item:nth-child(2n + 2), .section--listing .listing .listing__item:nth-child(2n + 2) {
      margin-left: 50%;
      margin-right: -100%;
      clear: none; }
    .section--listing .listing--rooms .listing__item--1:first-child, .section--listing .listing .listing__item--1:first-child {
      width: 50%;
      float: left;
      margin-left: 25%;
      margin-right: -100%;
      padding-left: 1.25%;
      padding-right: 1.25%; }
  .section--generic .gallery--right__inner {
    width: 50%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    height: auto;
    padding-bottom: 50%;
    position: relative;
    margin-bottom: 2.5%; }
    .section--generic .gallery--right__inner .liquid {
      position: absolute;
      top: 2.5%;
      right: 2.5%;
      bottom: 2.5%;
      left: 2.5%; }
  .banners .bookPanel {
    display: none; }
  .arrow__box {
    top: 60px; }
  .box3:first-child {
    width: 100%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    margin: 0 auto 30px; }
  .box3:nth-child(2) {
    width: 50%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    margin: 0;
    margin-bottom: 15px;
    height: 550px; }
    .box3:nth-child(2) .box3__inner__text {
      max-height: none;
      top: auto;
      bottom: auto;
      position: inherit; }
    .box3:nth-child(2) .box3__inner__hld {
      padding-bottom: 100px; }
  .box3:last-child {
    width: 50%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    margin: 0;
    margin-bottom: 15px;
    height: 550px; }
    .box3:last-child .box3__inner__hld {
      padding-bottom: 100px; }
  .midbox__inner .box__content {
    font-size: 14px;
    padding-left: 50px;
    padding-right: 50px; }
  .midbox__title, .box__top, .section--map .map-info__hld .box__top {
    font-size: 30px !important; }
  .contact__info, .contact__form {
    width: 100%;
    float: left; }
  #map_popup, #map_directions {
    width: 600px; }
  #map_routes_toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto; }
  .news__text {
    padding-bottom: 45px; }
  .opinions_column_1, .opinions_column_2, .opinions_column_3 {
    float: none;
    display: block;
    width: 700px;
    margin: auto;
    padding-top: 0;
    padding-bottom: 0; }
  .opinion--photo {
    display: none; }
  .section__inner-opinions {
    margin-top: 15px; }
  .filters__hld {
    padding-left: 1.25%;
    padding-right: 1.25%; }
    .filters__hld .filter {
      padding: 18px 15px 18px 40px; }
      .filters__hld .filter .filter--icon:before {
        left: -32px;
        top: 7px; }
  .section--details--attractions .section__inner {
    padding: 0 40px 40px;
    max-width: 920px; }
    .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours {
      width: calc(100% - 266px); }
      .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours .info_box-hour span {
        text-align: center; }
    .section--details--attractions .section__inner .attraction--map #map-canvas--attractions {
      height: 400px; }
    .section--details--attractions .section__inner .content-txt h2 {
      margin-top: 10px; }
  .fc-state-hover {
    background-color: transparent !important; }
  .section--listing--venues .venues-listing .venue-item-hld .venue-item__title {
    padding-left: 10px;
    font-size: 16px;
    width: 50%;
    margin: 16px 0; }
  .section--listing--venues .venues-listing .venue-item-hld .venue-item__info {
    width: 50%;
    padding-top: 20px; }
  .section--listing--venues .venues-listing .venue-item-hld .venue-item__text-hld {
    margin-bottom: 40px; }
  .section--listing--venues .venues-listing .venue-item-hld .venue-item__btn-hld {
    display: block;
    text-align: center;
    right: auto;
    left: auto;
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: relative;
    margin-top: -43px; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__btn-hld span {
      color: #fff; }
  .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement {
    text-align: center;
    padding: 28px 5px 23px; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement .arrangement-hld .arrangement {
      padding: 0 10px 0 31px; }
  .section--listing--venues .listing-facilities {
    margin: 0 30px; }
    .section--listing--venues .listing-facilities .venues-facilities {
      width: 33.33%;
      float: left;
      text-align: left;
      padding-left: 60px; }
      .section--listing--venues .listing-facilities .venues-facilities .icon:before {
        font-size: 14px; }
      .section--listing--venues .listing-facilities .venues-facilities .icon.icon-microphone, .section--listing--venues .listing-facilities .venues-facilities .icon.icon-projector {
        margin-left: 0; }
      .section--listing--venues .listing-facilities .venues-facilities .icon.icon-projector {
        font-size: 12px; }
        .section--listing--venues .listing-facilities .venues-facilities .icon.icon-projector:before {
          margin-left: -33px; }
  .section--listing--venues .venues-contact {
    padding-top: 20px;
    padding-bottom: 40px; }
  .section--details--venues .section__inner .content .basic_info_hld h2 {
    margin-top: 30px;
    margin-bottom: 20px; }
  .section--details--venues .section__inner .content .venue-item__arrangement .arrangement-hld .arrangement {
    padding: 20px 20px 20px 48px; }
  .box__content:before {
    top: 150px; }
  #cookieWarning {
    bottom: 56px !important;
    display: inline-block;
    font-size: 10px !important; }
  .section--homeicons .homeicons-hld {
    height: auto;
    padding: 20px 0; }
  .footerContact {
    padding-top: 15px;
    padding-bottom: 15px; }
    .footerContact__slogan {
      width: 100%;
      float: left;
      padding-left: 1.25%;
      padding-right: 1.25%;
      margin-bottom: 10px;
      margin-top: 0; }
      .footerContact__slogan a {
        text-align: center; }
      .footerContact__slogan strong {
        display: inline; }
    .footerContact .location, .footerContact .contactData {
      width: 50%;
      float: left;
      padding-left: 1.25%;
      padding-right: 1.25%;
      margin-top: 10px; }
    .footerContact .location__inner {
      padding: 0 10px; }
      .footerContact .location__inner .org {
        font-size: 14px; }
    .footerContact .svg {
      display: none; } }

@media (max-width: 800px) {
  .box__content {
    padding-left: 20px;
    padding-right: 20px; }
  h1 {
    font-size: 36px !important;
    padding-left: 50px;
    padding-right: 50px; }
  .contact_to_left {
    width: 50%;
    float: left; }
  .contact_to_right {
    width: 50%;
    float: left; }
  .gallery--right__inner {
    width: 25%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .contact .contact__left, .contact .contact__right {
    width: 100%;
    text-align: center; }
  .contact .contact__left a, .contact .contact__right a {
    justify-content: center; }
  .contact .contact__left {
    margin-bottom: 30px; }
  #cookieWarning {
    bottom: 70px !important;
    display: inline-block;
    font-size: 10px !important; } }

@media (max-width: 767px) {
  .section--details--venues .block--top ol, .section--listing--venues .block--top ol {
    padding-bottom: 20px; }
  .navigation--top {
    padding: 0 20px; }
  .section--menu .details-main {
    padding-left: 30px;
    padding-right: 30px; }
  .section--menu .menu-items {
    padding-right: 0; }
  .section__inner {
    padding-bottom: 70px; }
  .booking-panel__link__inner, .booking-panel .book-btn__inner {
    font-size: 13px; }
    .booking-panel__link__inner span:before, .booking-panel .book-btn__inner span:before {
      content: none; }
  .booking-panel__link:before, .booking-panel .book-btn:before {
    content: none; }
  .section--homeoffers .arrow__inner {
    top: 40px !important; }
  .banners--title-group {
    margin-top: -54px;
    padding: 0; }
    .banners--title-group h1 {
      font-size: 40px !important; }
    .banners--title-group p {
      font-size: 25px !important; }
  .banners .slick-arrow {
    display: none !important; }
  .gallery .gallery--right__hld h3 {
    padding-bottom: 20px;
    margin-top: 15px; }
  .section--homeicons .homeicon__icon {
    margin-bottom: 0; }
  .section--homeicons .homeicon__text {
    display: none; }
  .arrow__box {
    top: 57px; }
  .section--midbox .midbox__middle {
    width: 66.66667%;
    float: left;
    margin-left: 16.66667%;
    margin-right: -100%;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .section--homeoffers__title, .section--homeoffers__rooms .section--homeoffers__title {
    font-size: 35px; }
  .section--map .map-info {
    width: 50%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%; }
    .section--map .map-info .box__content {
      padding: 20px; }
  .section--details .block--left__hld .block--hotel-policy-all {
    width: 100%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    margin-top: 0; }
  .section--details .block--left__hld .ext, .section--details .block--left__hld .block__dates {
    width: 100%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    padding-left: 10px; }
  .section--details .block--left__hld .ext span {
    width: 25%;
    padding-left: 20px; }
  .section--details .block--left__hld:nth-child(2) .block--left__inner {
    padding: 10px; }
  .section--map, .section .map_canvas {
    display: none; }
  .ext .block__title {
    font-size: 20px; }
  .box3__inner:not(.box3__inner--gallery) .box3__inner__hld {
    padding: 0px 0px 100px; }
    .box3__inner:not(.box3__inner--gallery) .box3__inner__hld h2 {
      font-size: 24px;
      letter-spacing: 0.09em;
      padding-top: 35px; }
  .navigation--top__middle {
    float: left; }
    .navigation--top__middle:after {
      content: none; }
  #map_popup, #map_directions {
    width: 520px; }
  #map_routes_toggle {
    width: 150px;
    white-space: pre-wrap;
    line-height: 140%; }
  .footerContact .location, .footerContact .contactData {
    width: 100%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%; }
    .footerContact .location__inner, .footerContact .contactData__inner {
      text-align: center; }
  .footerContact .contactData__inner a {
    padding-left: 15px; }
    .footerContact .contactData__inner a.email:before {
      left: 0; }
  .footerContact .location__inner {
    margin-bottom: 10px; }
  .footer--generic {
    padding: 22px 40px 22px !important; }
  .footer {
    flex-direction: column; }
  .footer__left, .footer__right {
    margin: 10px 0; }
  .section--calendar .section__inner #calendar .fc-view-container table .fc-head .fc-day-header {
    font-size: 11px; }
  .section--calendar .fc-ltr .fc-basic-view .fc-day-number {
    font-size: 8px; }
  .section--calendar .fc-day-grid-event {
    font-size: 9px; }
  .opinions_column_1, .opinions_column_2, .opinions_column_3 {
    width: 550px; }
  .filters__hld .filters__wrap {
    margin-left: 168px;
    padding-left: 10px; }
  .filters__hld .filter {
    padding: 30px 15px 8px 15px; }
    .filters__hld .filter .filter--icon:before {
      left: 10px;
      top: -12px; }
    .filters__hld .filter span {
      font-size: 13px; }
  .section--details--attractions .block--top {
    padding-bottom: 35px; }
    .section--details--attractions .block--top .content-intro {
      font-size: 14px;
      padding: 20px 30px 0; }
  .section--details--attractions .section__inner {
    padding: 0 10px 40px; }
    .section--details--attractions .section__inner .attraction__info_box {
      height: 100px; }
      .section--details--attractions .section__inner .attraction__info_box .info_box-inner__heading {
        width: 220px; }
        .section--details--attractions .section__inner .attraction__info_box .info_box-inner__heading .filters__title__hld h3 {
          font-size: 20px;
          height: 100px;
          padding: 0 10px; }
      .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours {
        width: calc(100% - 220px);
        padding: 24px 20px 0; }
        .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours .info_box-hour span {
          text-align: center;
          font-size: 24px; }
    .section--details--attractions .section__inner .attraction--map #map-canvas--attractions {
      height: 400px; }
    .section--details--attractions .section__inner .content-txt h2 {
      margin-top: 10px; }
  .section--listing--venues .block--top {
    padding-bottom: 35px; }
    .section--listing--venues .block--top .content-intro {
      font-size: 14px;
      padding: 20px 30px 0; }
  .section--listing--venues .venues-listing {
    padding-top: 85px; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__title {
      padding-left: 0;
      font-size: 16px;
      width: 100%;
      margin: 10px 0;
      text-align: center; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__info {
      width: 100%;
      padding-top: 5px;
      text-align: center;
      padding-bottom: 10px; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__text-hld {
      margin-bottom: 40px; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement {
      text-align: center; }
      .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement .arrangement-hld .arrangement {
        padding: 0 4px 0 23px; }
        .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement .arrangement-hld .arrangement .icon {
          margin-left: -18px;
          margin-top: 2px; }
          .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement .arrangement-hld .arrangement .icon:before {
            font-size: 14px; }
  .section--listing--venues .venues-contact {
    padding-top: 20px;
    padding-bottom: 40px; }
  .section--details--venues .block--top {
    padding-bottom: 35px; }
    .section--details--venues .block--top .content-intro {
      font-size: 14px;
      padding: 20px 30px 0; }
  .section--details--venues .section__inner {
    padding: 0 20px; }
    .section--details--venues .section__inner .content .basic_info_hld h2 {
      margin-top: 30px;
      margin-bottom: 20px; }
    .section--details--venues .section__inner .content .venue-item__arrangement .arrangement-hld {
      text-align: center; }
      .section--details--venues .section__inner .content .venue-item__arrangement .arrangement-hld .arrangement {
        padding: 20px 14px 20px 42px; }
    .section--details--venues .section__inner .content .facilities {
      padding-top: 20px; }
      .section--details--venues .section__inner .content .facilities .facilities__title {
        margin-bottom: 15px; }
      .section--details--venues .section__inner .content .facilities .facilities__hld .facility {
        margin-bottom: 11px !important; }
    .section--details--venues .section__inner .content .gallery .gallery--right__hld .gallery__small-title {
      margin-bottom: 0; }
    .section--details--venues .section__inner .venues-contact {
      padding: 30px 0; }
  #cookieWarning {
    bottom: 96px !important;
    display: inline-block;
    font-size: 10px !important; }
    #cookieWarning .cookieContent {
      padding: 4px 0 2px !important; }
      #cookieWarning .cookieContent strong {
        display: block; }
      #cookieWarning .cookieContent p {
        display: block;
        margin: 5px; }
      #cookieWarning .cookieContent span {
        display: block; }
  .listing__item.slides {
    padding-left: 10px !important;
    padding-right: 10px !important; }
  .section--listing .listing .listing_content_txt {
    width: 90%;
    margin-left: 5%; } }

@media screen and (max-width: 650px) {
  .navigation--top__infos li.contact-data.mail {
    display: none; }
  .news__text .news__title {
    font-size: 16px; }
  .section--listing .listing--rooms .listing__item.listing__item, .section--listing .listing .listing__item.listing__item {
    width: 100%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    clear: both;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 30px; }
  /*------------------------------------------------------*/
  .testimonials__block {
    width: 100%;
    max-width: 350px;
    height: 350px;
    margin: 0 auto; }
    .testimonials__block:nth-child(3n) {
      margin-right: auto; }
    .testimonials__block:nth-child(2n) {
      margin-right: auto; }
    .testimonials__block:nth-child(3) {
      margin-top: 0; }
  .testimonials__heightener {
    height: 100%;
    padding-bottom: 0;
    border-bottom: 0; }
  /*------------------------------------------------------*/ }

@media (max-width: 599px) {
  .arrow__box {
    top: 52px; }
  .section {
    margin-left: 0;
    margin-right: 0; }
    .section--homeoffers {
      padding-bottom: 45px; }
      .section--homeoffers__title {
        font-size: 27px; }
        .section--homeoffers__title span {
          font-size: 30px; }
    .section .section__inner {
      padding-bottom: 40px; }
    .section .box__top__inner h2 .long_subtitle {
      padding: 10px 30px 0; }
    .section--homeoffers__rooms .section--homeoffers__title {
      font-size: 27px; }
    .section--boxes {
      padding: 100px 0 30px; }
    .section .midbox__inner .box__content {
      font-size: 13px; }
    .section .box3__inner:not(.box3__inner--gallery) .box3__inner__hld {
      padding-bottom: 80px; }
      .section .box3__inner:not(.box3__inner--gallery) .box3__inner__hld .box3:nth-child(2) .box3__inner__text {
        margin-top: 30px;
        font-size: 13px; }
      .section .box3__inner:not(.box3__inner--gallery) .box3__inner__hld .box3:last-child .box3__inner__text {
        font-size: 13px; }
    .section--details .block--left__hld {
      width: 100%;
      float: left;
      padding-left: 1.25%;
      padding-right: 1.25%; }
      .section--details .block--left__hld:nth-child(2) {
        width: 100%;
        float: left;
        padding-left: 1.25%;
        padding-right: 1.25%;
        margin-left: 0;
        margin-top: -1px; }
      .section--details .block--left__hld .ext, .section--details .block--left__hld .block__dates {
        width: 50%;
        float: left;
        padding-left: 1.25%;
        padding-right: 1.25%;
        padding-left: 20px; }
      .section--details .block--left__hld .ext span {
        width: 50%;
        margin-right: 0; }
        .section--details .block--left__hld .ext span:nth-child(4), .section--details .block--left__hld .ext span:nth-child(2) {
          width: 50%; }
    .section--listing .listing {
      padding-top: 30px; }
      .section--listing .listing .listing_content_txt {
        font-size: 14px; }
  .section--homeoffers .arrow__inner {
    top: 31px !important; }
  .navigation--top .nav-social {
    float: left; }
    .navigation--top .nav-social ul {
      padding-left: 0; }
  .navigation--top {
    display: none; }
  .item__title__text {
    font-size: 15px; }
  .box3 {
    height: 400px; }
    .box3:nth-child(2), .box3:last-child {
      width: 100%;
      float: left;
      padding-left: 1.25%;
      padding-right: 1.25%;
      margin-bottom: 15px;
      height: auto; }
    .box3:first-child {
      height: 300px; }
  .content--header {
    font-size: 14px; }
  .content--text {
    font-size: 13px; }
    .content--text p.our-team {
      width: 96%;
      margin: 10px 2%; }
    .content--text h3 {
      font-size: 18px; }
  h1 {
    padding-left: 45px;
    padding-right: 45px;
    font-size: 22px; }
  form.contact .buttons {
    margin-top: 0; }
  form.contact .buttons button {
    float: none; }
  .banners {
    min-height: 0; }
    .banners--title-group p {
      font-size: 20px !important; }
    .banners--title-group h1 {
      font-size: 34px !important; }
  .box3__inner:not(.box3__inner--gallery) .box3__inner__hld h2 strong {
    font-size: 24px; }
  .box3__inner:not(.box3__inner--gallery) .box3__inner__hld .title {
    margin-top: 0; }
    .box3__inner:not(.box3__inner--gallery) .box3__inner__hld .title span {
      font-size: 15px; }
  .box3__inner:not(.box3__inner--gallery) .box3__inner__text p {
    margin: 0; }
  .navigation--mobile {
    padding-left: 0;
    padding-right: 0; }
  .block--left--booking .svg {
    display: none; }
  .block--left__book {
    padding-left: 20px;
    padding-right: 20px; }
  .block--left__inner {
    padding-top: 15px;
    padding-bottom: 15px; }
  .contact__info {
    padding-bottom: 0; }
  #map_popup, #map_directions {
    width: auto; }
  .navigation--top__socials {
    float: left; }
    .navigation--top__socials:after {
      display: none; }
  .gallery--right__inner {
    width: 50%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%;
    height: auto;
    padding-bottom: 50%;
    position: relative;
    margin-bottom: 2.5%; }
    .gallery--right__inner .liquid {
      position: absolute;
      top: 2.5%;
      right: 2.5%;
      bottom: 2.5%;
      left: 2.5%; }
  .opinions_column_1, .opinions_column_2, .opinions_column_3 {
    width: 400px; }
  .opinion__text {
    padding: 50px 20px 5px; }
  .filters__hld .filters__title__hld {
    display: none; }
  .filters__hld .filters__wrap {
    margin-left: 0px;
    padding-left: 0; }
  .filters__hld .filter {
    padding: 30px 20px 8px 20px; }
    .filters__hld .filter .filter--icon:before {
      left: 18px;
      top: -12px; }
    .filters__hld .filter span {
      font-size: 13px; }
  .section--details--attractions .block--top {
    padding-bottom: 35px; }
    .section--details--attractions .block--top .content-intro {
      font-size: 13px;
      padding: 10px 20px 0; }
  .section--details--attractions .section__inner {
    padding: 0 10px 40px; }
    .section--details--attractions .section__inner .attraction__info_box {
      height: 90px; }
      .section--details--attractions .section__inner .attraction__info_box .info_box-inner__heading {
        width: 170px; }
        .section--details--attractions .section__inner .attraction__info_box .info_box-inner__heading .filters__title__hld h3 {
          height: 90px;
          font-size: 16px;
          padding: 0 10px; }
      .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours {
        width: calc(100% - 170px);
        padding: 23px 10px 0; }
        .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours .info_box-hour span {
          text-align: center;
          font-size: 20px; }
          .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours .info_box-hour span span {
            font-size: 12px;
            letter-spacing: 0.02em; }
    .section--details--attractions .section__inner .attraction--map #map-canvas--attractions {
      height: 400px; }
    .section--details--attractions .section__inner .content-txt {
      font-size: 13px;
      line-height: 140%; }
      .section--details--attractions .section__inner .content-txt h2 {
        margin-top: 10px;
        font-size: 20px; }
  #calendar {
    padding: 0 10px !important; }
  .section--listing--venues .block--top {
    padding-bottom: 35px; }
    .section--listing--venues .block--top .content-intro {
      font-size: 13px;
      padding: 10px 20px 0; }
  .section--listing--venues .venues-listing .venue-item-hld {
    width: 100%; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__title {
      width: 50%; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__info {
      width: 50%;
      padding-top: 14px; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__text-hld {
      margin-bottom: 0px; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__btn-hld {
      position: absolute;
      left: auto;
      right: 14px;
      -moz-transform: translateX(0px);
      -o-transform: translateX(0px);
      -ms-transform: translateX(0px);
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
      margin-top: -49px; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement {
      text-align: center;
      width: calc(100% - 170px); }
  .section--listing--venues .listing-facilities .venues-facilities {
    padding-left: 35px; }
  .section--listing--venues .venues-contact {
    padding-top: 20px;
    padding-bottom: 40px; }
  .section--details--venues .block--top {
    padding-bottom: 35px; }
    .section--details--venues .block--top .content-intro {
      font-size: 13px;
      padding: 10px 20px 0; }
  .section--details--venues .section__inner {
    padding: 0 20px; }
    .section--details--venues .section__inner .content .venue-item__arrangement {
      height: 210px; }
      .section--details--venues .section__inner .content .venue-item__arrangement:before, .section--details--venues .section__inner .content .venue-item__arrangement:after {
        height: 200px; }
      .section--details--venues .section__inner .content .venue-item__arrangement .arrangement-hld {
        text-align: left;
        width: 200px;
        margin: 0 auto; }
        .section--details--venues .section__inner .content .venue-item__arrangement .arrangement-hld .arrangement {
          width: 100%;
          padding: 10px 0; }
          .section--details--venues .section__inner .content .venue-item__arrangement .arrangement-hld .arrangement span {
            display: inline-block;
            white-space: nowrap;
            font-size: 13px;
            line-height: 100%;
            position: absolute;
            padding-left: 50px;
            margin-top: -7px; }
          .section--details--venues .section__inner .content .venue-item__arrangement .arrangement-hld .arrangement i {
            padding-left: 30px; }
    .section--details--venues .section__inner .content .facilities {
      padding-top: 20px; }
      .section--details--venues .section__inner .content .facilities .facilities__title {
        margin-bottom: 15px; }
      .section--details--venues .section__inner .content .facilities .facilities__hld .facility {
        margin-bottom: 11px !important; }
    .section--details--venues .section__inner .content .gallery .gallery--right__hld .gallery__small-title {
      margin-bottom: 0; }
    .section--details--venues .section__inner .venues-contact {
      padding: 30px 0; }
  .listing--noslides--1 .listing__item.slides {
    width: 83.33333%;
    float: left;
    margin-left: 8.33333%;
    margin-right: -100%;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .fancybox-next span:before, .fancybox-prev span:before {
    left: 63px; }
  .fancybox-prev span:before {
    left: 9px; }
  #map_routes_toggle, .box__button {
    width: 170px; }
  .box3__inner:not(.box3__inner--gallery) .box3__inner__hld .button--sec__hld {
    bottom: 10px; } }

@media screen and (max-width: 559px) {
  #cookieWarning {
    bottom: 108px !important;
    display: inline-block;
    font-size: 10px !important; }
  .footer {
    justify-content: space-around; } }

@media screen and (max-width: 500px) {
  .content--text table {
    width: 100% !important; }
  .news__img {
    display: none; }
  .news__text {
    width: 100%; }
  .arrow__box {
    display: none; } }

@media screen and (max-width: 476px) {
  #cookieWarning {
    display: inline-block;
    font-size: 10px !important; }
    #cookieWarning .cookieContent {
      padding: 4px 0 2px !important; }
      #cookieWarning .cookieContent strong {
        display: block; }
      #cookieWarning .cookieContent p {
        display: block;
        margin: 5px; }
      #cookieWarning .cookieContent span {
        display: block; }
  .footer__right {
    flex-direction: column;
    align-items: center; }
    .footer__right .create {
      margin: 20px 0 15px; }
    .footer__right .nav-social ul {
      margin: 0; } }

@media (max-width: 479px) {
  .breadcrumbs li {
    margin-left: 5px; }
    .breadcrumbs li span {
      font-size: 12px; }
    .breadcrumbs li a {
      padding-right: 0; }
  h1 {
    font-size: 21px !important; }
  form.contact .Email, form.contact .FirstName, form.contact .LastName, form.contact .Phone, form.contact .SubmitMessage {
    width: 100%;
    padding-left: 1%;
    padding-right: 1%; }
  form.contact .buttons {
    padding-right: 1%; }
  .navigation--top {
    padding: 0 20px; }
    .navigation--top__middle li {
      margin-left: 5px; }
    .navigation--top__middle a {
      padding-left: 3px;
      padding-right: 3px;
      font-size: 11px; }
    .navigation--top__lang li {
      margin-right: 5px; }
    .navigation--top__lang a {
      padding-left: 3px;
      padding-right: 3px; }
    .navigation--top__middle a, .navigation--top__lang a {
      padding-top: 0px;
      padding-bottom: 3px; }
  .section .box__top__inner h2 .long_subtitle {
    padding: 10px 20px 0; }
  .box__content:before {
    top: 127px; }
  .section--homeoffers__rooms .section--homeoffers__title {
    margin-bottom: 50px;
    margin-top: 10px !important; }
  .midbox__inner .box__content {
    padding: 50px 25px 90px; }
  .section--midbox #map_routes_toggle, .section--midbox .box__button {
    bottom: 35px; }
  .section--homeoffers .arrow__inner {
    top: 63px !important; }
  .banners--title-group {
    margin-top: -54px;
    padding: 0; }
    .banners--title-group h1 {
      font-size: 35px !important; }
    .banners--title-group p {
      font-size: 20px !important; }
  .section--menu .menu-item__col--title span {
    font-size: 14px; }
  .section--menu .menu-item__col--title .menu-item__desc p {
    font-size: 12px; }
  .section--menu .menu-item__col--price {
    width: 30px; }
    .section--menu .menu-item__col--price .menu-item__price span {
      font-size: 16px; }
  .box__top, .midbox__title, .box__top, .section--map .map-info__hld .box__top, .section--map .map-info__hld .box__top {
    font-size: 25px !important; }
  .section--homeoffers__title {
    font-size: 25px;
    margin-bottom: 50px; }
    .section--homeoffers__title span {
      font-size: 20px; }
  .section--midbox .midbox__middle {
    width: 83.33333%;
    float: left;
    margin-left: 8.33333%;
    margin-right: -100%;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .section--midbox .midbox__title, .section--midbox .box__top, .section--midbox .section--map .map-info__hld .box__top, .section--map .map-info__hld .section--midbox .box__top, .section--midbox .midbox p {
    margin: 0; }
  .section--generic table tr, .section--generic table th {
    font-size: 11px; }
  .section--gallery .gallery .mosaic {
    width: 33.33333%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%; }
    .section--gallery .gallery .mosaic:nth-child(3n + 1) {
      margin-left: 0;
      margin-right: -100%;
      clear: both; }
    .section--gallery .gallery .mosaic:nth-child(3n + 2) {
      margin-left: 33.33333%;
      margin-right: -100%;
      clear: none; }
    .section--gallery .gallery .mosaic:nth-child(3n + 3) {
      margin-left: 66.66667%;
      margin-right: -100%;
      clear: none; }
  .section--contact .section__inner {
    padding-bottom: 0;
    margin-bottom: 0; }
    .section--contact .section__inner .contact__left h2 {
      font-size: 20px; }
    .section--contact .section__inner .contact__left h3 {
      font-size: 16px;
      margin-top: 20px; }
    .section--contact .section__inner .contact__left p, .section--contact .section__inner .contact__left a {
      font-size: 15px; }
  .listing--noslides--2 .listing__item.slides {
    width: 100%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%; }
  .contact__block__inner {
    width: 100%;
    float: left;
    padding-left: 2.5%;
    padding-right: 2.5%; }
  .contact__info > .contact__block__inner:last-child {
    margin-top: 30px; }
  .news__text {
    padding-bottom: 50px;
    margin-top: 10px; }
  .facility {
    width: 100%; }
  #cookieWarning {
    right: 0 !important; }
  .opinions_column_1, .opinions_column_2, .opinions_column_3 {
    width: 90%;
    margin-left: 5%; }
  .opinion__text {
    font-size: 13px;
    padding: 37px 15px 5px;
    letter-spacing: 0.02em; }
    .opinion__text:before {
      top: 18px !important; }
  .breadcrumbs {
    padding-left: 10px;
    padding-right: 10px; }
  .filters {
    margin-top: 20px; }
  .filters__hld .filters__title__hld h3 {
    font-size: 20px;
    padding: 17px 30px; }
  .filters__hld .filters__wrap {
    margin-left: 0px; }
  .filters__hld .filter {
    padding: 7px 10px;
    width: 100%; }
    .filters__hld .filter .filter--icon {
      left: 50%; }
      .filters__hld .filter .filter--icon:before {
        top: -18px;
        left: -130px; }
    .filters__hld .filter span {
      font-size: 13px; }
  .section--details--attractions .block--top .content-intro {
    font-size: 12px;
    padding: 10px 10px 0; }
  .section--details--attractions .section__inner {
    padding: 0 10px 40px; }
    .section--details--attractions .section__inner .attraction__info_box {
      height: 70px;
      margin: 90px auto 0;
      width: 280px; }
      .section--details--attractions .section__inner .attraction__info_box .info_box-inner__heading {
        width: 280px;
        position: absolute;
        top: -60px; }
        .section--details--attractions .section__inner .attraction__info_box .info_box-inner__heading .filters__title__hld h3 {
          font-size: 18px;
          height: 60px; }
          .section--details--attractions .section__inner .attraction__info_box .info_box-inner__heading .filters__title__hld h3:before, .section--details--attractions .section__inner .attraction__info_box .info_box-inner__heading .filters__title__hld h3:after {
            height: 50px; }
      .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours {
        width: 280px;
        padding-top: 10px; }
        .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours .info_box-hour span {
          text-align: center;
          font-size: 20px; }
          .section--details--attractions .section__inner .attraction__info_box .info_box-inner__hours .info_box-hour span span {
            font-size: 12px;
            letter-spacing: 0.02em; }
    .section--details--attractions .section__inner .attraction--map {
      display: none; }
    .section--details--attractions .section__inner .content-txt {
      font-size: 13px;
      line-height: 140%; }
      .section--details--attractions .section__inner .content-txt h2 {
        margin-top: 10px;
        font-size: 20px; }
  .section--listing--venues .block--top .content-intro {
    font-size: 12px;
    padding: 10px 10px 0; }
  .section--listing--venues .venues-listing .venue-item-hld .venue-item__title {
    width: 100%; }
  .section--listing--venues .venues-listing .venue-item-hld .venue-item__info {
    width: 100%;
    padding-top: 4px; }
  .section--listing--venues .venues-listing .venue-item-hld .venue-item__text-hld {
    margin-bottom: 43px; }
  .section--listing--venues .venues-listing .venue-item-hld .venue-item__btn-hld {
    position: relative;
    right: auto;
    left: auto;
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: -43px; }
    .section--listing--venues .venues-listing .venue-item-hld .venue-item__btn-hld span {
      color: #fff; }
  .section--listing--venues .venues-listing .venue-item-hld .venue-item__arrangement {
    text-align: center;
    width: 100%; }
  .section--listing--venues .listing-facilities .venues-facilities {
    padding-left: 35px;
    width: 49%; }
    .section--listing--venues .listing-facilities .venues-facilities__title {
      margin-top: 30px; }
  .section--listing--venues .venues-contact {
    padding-top: 20px;
    padding-bottom: 40px;
    width: 290px; }
    .section--listing--venues .venues-contact h2 {
      font-size: 20px;
      margin-bottom: 10px; }
  .section--details--venues .block--top .content-intro {
    font-size: 12px;
    padding: 10px 10px 0; }
  .section--details--venues .section__inner {
    padding: 0 20px; }
    .section--details--venues .section__inner .content .basic_info_hld {
      text-align: center; }
      .section--details--venues .section__inner .content .basic_info_hld span {
        width: 100%;
        display: block;
        padding: 8px 30px; }
        .section--details--venues .section__inner .content .basic_info_hld span:before {
          margin-top: -2px; }
    .section--details--venues .section__inner .content .content-txt {
      font-size: 13px; }
    .section--details--venues .section__inner .content .facilities {
      padding-top: 20px; }
      .section--details--venues .section__inner .content .facilities .facilities__title {
        margin-bottom: 10px; }
      .section--details--venues .section__inner .content .facilities .facilities__hld .facility {
        margin-bottom: 6px !important; }
    .section--details--venues .section__inner .content .gallery .gallery--right__hld .gallery__small-title {
      margin-bottom: 0; }
    .section--details--venues .section__inner .venues-contact {
      padding: 30px 0; }
  .section--details--venues .venues-contact {
    padding-top: 20px;
    padding-bottom: 40px;
    width: 265px; }
    .section--details--venues .venues-contact h2 {
      font-size: 20px;
      margin-bottom: 10px; } }

@media screen and (max-width: 430px) {
  .section--homeoffers__rooms .section--homeoffers__title {
    font-size: 25px;
    margin-top: 33px; }
  .section--gallery .gallery .mosaic {
    width: 50%;
    float: left;
    padding-left: 1.25%;
    padding-right: 1.25%; }
    .section--gallery .gallery .mosaic:nth-child(2n + 1) {
      margin-left: 0;
      margin-right: -100%;
      clear: both; }
    .section--gallery .gallery .mosaic:nth-child(2n + 2) {
      margin-left: 50%;
      margin-right: -100%;
      clear: none; } }

@media screen and (max-width: 370px) {
  .midbox .box__content p {
    font-size: 12px;
    line-height: 170%; }
  .section--icons-aco > div > div {
    padding: 0 15px; } }
