/**
 *  Theme: 7Schwaben by 78media
 * 
 *  Bootstrap breakpoints
 *  ---------------------
 *  xs: 0,
 *  sm: 576px,
 *  md: 768px,
 *  lg: 992px,
 *  xl: 1200px,
 *  xxl: 1400px     
 * 
 *  colors
 *  ------
 *  
 *  @white      = #ffffff   rgba(255,255,255, 1)    Reinweiss RAL 9018
 *  @red        = #861A22   rgba(155,17,30, 1)      Rubinrot RAL 3003
 *  @grey       = #7D7F7D   rgba(139,136,134, 1)    Staubgrau RAL 7037  
 *  @light      = #e3e3e3                           
 *  @medium     = #d5d5d5 
 *  @dark       = #33313c
 *    
**/


/* define colors */
@font-color: #7A7B7A;

@white: #ffffff;

@light: #f0f0f0;

@medium: #d5d5d5;

@grey: #7D7F7D;

@dark: #33313c;

@red: #861A22;


.white {
  color: @white !important;
}

.light {
  color: @light;
}

.grey {
  color: @grey;
}

.dark {
  color: @dark;
}

.red {
  color: @red;  
}

.bg-white {
  background-color: @white !important;
}

.bg-light {
  background-color: @light !important;
}

.bg-grey {
  background-color: @grey;
  color: @font-color;
}

.bg-dark {
  background-color: @dark !important;
  color: @white;
}

.bg-red {
  background-color: @red;
  color: @white;
}

.bg-transparent {
  background-color: transparent !important;
  background: transparent !important;
}

.bg-white-transparent {
  background-color: rgba(255,255,255, .8);
}

.bg-dark-transparent {
  background-color: rgba(0,0,0, .5);
}

.bg-red-transparent {
  background-color: rgba(155,17,30, .8);
}

.border-white-rounded {
  background-color: @white;
  border-radius: 20px;
  overflow: hidden;
  padding: 1rem;
  margin-bottom: 1rem;
}

.border-white-rounded-40 {
  background-color: @white;
  border-radius: 40px;
  overflow: hidden;
  padding: 1rem;
}

.gallery-preview.border-white-rounded,
.gallery-preview.border-white-rounded-40 {
  padding: 0;
}

@media (min-width: 1200px) {
  .border-white-rounded {
    margin-bottom: 0;
  }
}

/* fonts */

@font-face {
  font-family: "Barlow";
  font-weight: 300;
  font-style: normal;
  src: url('../fonts/Barlow/Barlow-Light.ttf') format('truetype');
}

@font-face {
  font-family: "Barlow";
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/Barlow/Barlow-Regular.ttf') format('truetype');
}

@font-face {
  font-family: "Barlow";
  font-weight: 600;
  font-style: normal;
  src: url('../fonts/Barlow/Barlow-Bold.ttf') format('truetype');
}

@font-face {
  font-family: "Barlow Condensed";
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-Regular.ttf') format('truetype');
}

@font-face {
  font-family: "Barlow Semi Condensed";
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/Barlow_Semi_Condensed/BarlowSemiCondensed-Regular.ttf') format('truetype');
}

/* Set font classes */

@font-face {
    font-family: 'LigatureSymbols';
    src: url('../fonts/LigatureSymbols/LigatureSymbols-2.11.eot');
    src: url('../fonts/LigatureSymbols/LigatureSymbols-2.11.eot?#iefix') format('embedded-opentype'),
         url('../fonts/LigatureSymbols/LigatureSymbols-2.11.woff') format('woff'),
         url('../fonts/LigatureSymbols/LigatureSymbols-2.11.ttf') format('truetype'),
         url('../fonts/LigatureSymbols/LigatureSymbols-2.11.svg#LigatureSymbols') format('svg');
    src: url('../fonts/LigatureSymbols/LigatureSymbols-2.11.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.lsf, .lsf-icon:before {
  font-family: 'LigatureSymbols';
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.lsf-icon:before {
  content: attr(title);
  margin-right: 0.3em;
  font-size: 130%;
}

.lsf-icon.favorite:before {
  content: '\E121';
}


/* defaults */
.clearfix {
  overflow: auto;
}   

html, body {
  background-color: @white;
}

body {
  font-family: "Barlow Semi Condensed", Sans-serif;
  font-weight: 300;
  font-size: 20px;
  background-color: transparent;
  color: @font-color;  
}

.header-font, h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow Semi Condensed";  
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
  color: @red !important;
}

h4 {
  font-size: 1.5rem;
}

@media (min-width:1200px)
{  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  h3 {
    font-size: 2.5rem;
  }
  
  h4 {
    font-size: 1.5rem;
  }
}

.small {
  font-size: .8em;
}

strong,
.strong {
  font-weight: 600 !important;
}

.extrastrong {
  font-weight: 700 !important;
}

.sectionHeader {
  text-align: center;
  margin-bottom: 1rem;
}

.sectionHeader .sectionHeader1 {
  display: block;
  width: 90%;
  color: @grey;
  margin-left: -5%;
}

.sectionHeader .sectionHeader2 {
  display: block;
  width: 90%;
  color: @red;
  margin-left: 5%;
  margin-top: -0.65rem;
}

.feature {
  font-size: 1.25rem;
}

@media (min-width:1200px) {
  .sectionHeader .sectionHeader1 {
    margin-left: -3.5%;
  }

  .sectionHeader .sectionHeader2 {
    margin-left: 3.5%;
  }
  
  .feature {
    font-size: 1.5rem;
  }
}

/* lists */

/* links */
a,
a:link,
a:visited {
  color: @font-color;
  text-decoration: none;
  transition: all linear .3s;
}

a:hover,
a:active {
  color: @red;
  text-decoration: none;
  transition: all linear .3s;
}

/* buttons */

.btn-default,
.btn-default:link,
.btn-default:visited {
  padding: .75rem 1.5rem;
  background-color: @red;
  color: @white;
  transition: all linear .3s;
}

.btn-default:hover,
.btn-default:active {
  background-color: @dark;
  color: @white;
}

.btn-inverted,
.btn-inverted:link,
.btn-inverted:visited {
  padding: .75rem 1.5rem;
  background-color: @white;
  color: @dark;
  transition: all linear .3s;
}

.btn-inverted:hover,
.btn-inverted:active {
  background-color: @white;
  color: @red;
}

.btn-light,
.btn-light:link,
.btn-light:visited {
  background-color: transparent;
  border-color: @font-color;
  color: @font-color;
}

.btn-light:hover,
.btn-light:active {
  background-color: transparent;
  border-color: @red;
  color: @red;
}

/* animated */
.animate-inview-element {
  opacity: 0;
}

/* BS Container */
@media (min-width:992px)
{
  .container {
    max-width: 1400px;
    /* width: 95%; */
  }
}

/* header */

header {
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
  /* background: @light; */
  background: transparent;
}

.header-transparent {
  opacity: .8;
}

header .header-logo {
  text-align: left;
  padding: 1rem;
}

header .header-logo .logo-align {
  display: block;
  text-align: left;  
}

header .header-logo img {
  width: 150px;
  height: auto;
}

@media (min-width:1200px)
{
  header .header-logo img {
    width: 240px;
  }
}

/* topbar */

.topbar {
  position: relative; 
  padding: .65rem 0;
}

.topbar-logo {}

.topbar-logo .logo7S {
  width: 140px;
  height: auto;
}

.topbar-nav {
  float: right;
}

.topbar-nav > ul {
  list-style-type: none;
  margin: 0;
}

.topbar-nav > ul > li {
  display: inline-block;
}

.topbar-nav .topbar-nav-link {
  display: inline-block;
  padding: .15rem;
  border-radius: 5px;
  line-height: .8rem;
  cursor: pointer;
}

.topbar-nav .topbar-icon {
  width: 16px;
  height: 16px;
}

@media (min-width:576px) {
  .topbar-logo .logo7S {
    width: 240px;
    height: auto;
  }
  
  .topbar-nav .topbar-icon {
    width: 22px;
    height: 22px;
  }
}

@media (min-width:1200px) {
  .topbar-nav .topbar-icon {
    width: 28px;
    height: 28px;
  }
  
  .topbar-nav .topbar-nav-link {
    padding: .25rem;
    line-height: 1rem;
  }
  
}

/* Navbar */

.navbar-footer {
  display: none;
}

.navbar-footer .navbar {
  background: @red;
  color: @white;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
}

.navbar-header {
  display: none; 
  background-color: rgba(155,17,30, 1);
  color: @white;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  padding: 25% 30px 30px;
}

.navbar-toggler {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: block;
  color: @grey;
  font-size: 200%;
  border: none !important;
  box-shadow: none !important;
}

.mainmenu {
  list-style-type: none;
  margin-left: 0px; 
}

@media (min-width:576px)
{
  .navbar-toggler {
    display: none;
  }
  
  .navbar-footer {
    display: block;
  }
}

@media (min-width:1200px) 
{
  .navbar {
    background: @red;
    top: auto;
    display: block;
  }
}

.mainmenu .nav-item {
  position: relative;
}

.mainmenu .nav-item .nav-link,
.mainmenu .nav-item .nav-link:link,
.mainmenu .nav-item .nav-link:visited {
  display: inline-block;
  background: @red;
  color: @white;
  padding: .5rem 1rem;
  cursor: pointer;
  transition: all linear .3s;
}

.mainmenu .nav-item.active .nav-link,
.mainmenu .nav-item .nav-link:hover,
.mainmenu .nav-item .nav-link:active {
  background: @dark;
  color: @white;
}

.navbar-header .navbar,
.navbar-header .mainmenu,
.navbar-header .nav-item,
.navbar-header .nav-link {
  display: block !important;
}

@media (min-width:1200px)
{
  .mainmenu {
    margin-left: -25px;   /* reset bullet spacing */
  }   
}

/* Sections */

section,
.section {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.headerSection,
.section.headerSection {
  padding-top: 2rem;
  padding-bottom: 0;
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width:1200px) {
  section,
  .section {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .headerSection,
  .section.headerSection {
    padding-top: 4rem;
    padding-bottom: 0;
  }

  .section-padding {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }    
}

.bg-image-section {
  width: 100%;
  height: 95vh;
  background: transparent;
  overflow: hidden;
  padding: 0;
}

.bg-image-section .bg-image {
  width: auto;
  max-width: 200%;
  height: 100vh;
}

/* Glide */

.glide__bullet {
  background-color: @red;
}

/* Backgrounds */

.page-banner {
  margin-top: 25%;
}

.page-banner img {
  display: block;
  width: 70vw; 
  height: auto; 
  margin: 0 auto -50px;
}

.home-banner {
}

.home-banner .claim-bg-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.home-banner .banner-claim {
  position: absolute;
  z-index: 2;
  bottom: 12.5%;
  left: 5%;
  width: auto;
  display: inline-block;
}

.home-banner .banner-claim > .claim {
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1em;
  display: block;
}

.home-banner .banner-claim > .claim-part1 {
  color: @grey;
}

.home-banner .banner-claim > .claim-part2 {
  color: @red;
  margin-left: 25%;
}

.home-banner .banner-overlay {
  position: absolute;
  z-index: 2;
  bottom: 7.5%;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.8);
  padding: 8px 1rem;
  font-family: "Barlow Condensed";
  text-align: center;
}

.home-banner .banner-welcome {
  position: relative;
  /* padding: 2rem 1rem; */
  display: none;
}

.home-banner .banner-left {}

.home-banner .banner-left img,
.home-banner .banner-left .banner-overlay img {
  width: 100%;
  height: auto;
}

@media (min-width:576px)
{
  .page-banner {
    margin-top: 10%;
  }
  
  .page-banner img {
    margin: 0 auto 0;
  }
}

@media (min-width:768px) {
}

@media (min-width:992px) {
  .home-banner .banner-welcome {
    display: block;
    /* position: absolute; */
    /* bottom: 15%; */
    left: 5%;
    right: 5%;
  }
}

@media (min-width:1200px)
{
}

@media (min-width:1400px)
{
  .home-banner .banner-overlay {
    font-size: 2.5em;
  }
  
  .home-banner .banner-claim > .claim {
    font-size: 5em;
    bottom: 17.5%;
  }

  .home-banner .banner-claim > .claim-part2 {
    margin-left: 50%;
  }
}

/* Main content elements */

.page-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.header-border {
  border-bottom: solid 1px rgba(0,0,0,.1);
}

.page-header h3 {
  font-size: 2rem;
  font-weight: 500;
  color: @red;
}

.page-header h1 {
  font-size: 1.15rem;
  line-height: 1.25em;
  color: @red;
}

.pageMainContent {
  margin-top: 15px;
}

.apartmentsPreviewSlider {}

@media (min-width:1200px)
{
  .page-header h3 {
    font-size: 3rem;
    font-weight: 500;
    color: @red;
  }
  
  .pageMainContent {
    margin-top: 60px;
  }
}

/* Appartments box */

.apmt-preview-box {
  position: relative;
  margin-bottom: 2rem;
}

.apmt-preview-box .apmt-preview-box-image {
  opacity: 1;
  z-index: 2;
  width: 60%; 
  height: auto;
}

.apmt-preview-box .apmt-preview-box-data {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10;
  background: @light;
  border-radius: 20px;
  padding: 1rem 1rem;
  /* min-height: 300px; */
}

@media (min-width:576px)
{
  .apmt-preview-box .apmt-preview-box-image {
    width: 80%; 
  }
}

/* Slick Slider  --- DELETE  */

.appartment-preview {
  width: auto;
  padding: 1rem;
  overflow: hidden;
}

.appartment-preview .appartment-preview-image {
  width: 430px;
  height: auto;
}

.appartment-preview .appartment-preview-box {
 background: @white;
 padding: 1rem 2rem 2rem;
 min-height: 110px;
}

.appartment-preview .appartment-preview-box .appartment-name,
.appartment-preview .appartment-preview-box .appartment-description {   
  text-align: center;
}

.appartment-preview-box .apartment-logo {
  display: inline-block;
  height: 24px;
  width: auto;
  float: left;
  margin-right: .5rem;
}

.appartment-preview .appartment-preview-box .appartment-options {
  position: absolute;
  z-index: 5;
  margin-top: .5rem;
  margin-bottom: -2rem;
}

.appartment-preview .appartment-preview-box .appartment-options .btn {
  display: inline-block;
  margin-left: 1rem;
  margin-right: 1rem;
  float:  none;
}

@media (min-width:768px)
{
  .appartment-preview .appartment-preview-box .appartment-name,
  .appartment-preview .appartment-preview-box .appartment-description {   
    text-align: left;
  }
}

@media (min-width:1200px)
{
  .appartment-preview .appartment-preview-box {
    padding: 1rem 1rem 2rem;
  }  
  
  .appartment-preview .appartment-preview-box .appartment-options {
    position: relative;
    z-index: 5;
    margin-top: .5rem;
    margin-bottom: -2rem;
  }
  
  .appartment-preview .appartment-preview-box .appartment-options .btn {
    
    margin-left: .5rem;
    margin-right: 0;
    float: right;
  }
}

.apartment-gallery {}

.apartment-gallery .gallery-image-border {
  position: relative;
  padding: 0px;
  margin-bottom: 1rem;
  width: 100%;
  height: auto;
  background: #000;
  overflow: hidden;
}

.apartment-gallery .gallery-image {
  margin: 0;
  transition: all ease-in .5s;
}

.apartment-gallery .gallery-image:hover {
  opacity: .5;
}

.apartment-gallery .gallery-thumbnail {
  width: 100%;  
}

.apartment-gallery .gallery-icon {
  display: inline-block;
  color: @white;
  position: absolute;
  z-index: 10;
  top: 0px;
  right: 10px;
  opacity: 0;
}

.apartment-gallery .gallery-icon .lsf {
  font-size: 200%;
}

@media (min-width:576px)
{
  .apartment-gallery .gallery-image-border {
    height: calc(100% - 22px);
  }
}

@media (min-width:1200px)
{
  .apartment-gallery .mobile-only {
    height: 0px;
    overflow: hidden;
  }

  .apartment-gallery .gallery-thumbnail {
    margin-bottom: .3rem;
  } 
}

.apartment-book-now {
  margin: 2rem 0;
  background: @grey;
  color: @white;
  padding: 1rem;
  border-radius: 20px;
}

.apartmentName {}

.apartmentName img {
  width: 100%;
  height: auto;
}

.apartment-infos {
  margin: 1rem 0;
}

.apartment-infos .row {}

.apartment-infos .info-icon-border {
  display: inline-block;
  width: 30px;
}

.apartment-infos .lsf {
  margin-right: .5rem;
  font-size: 150%;
}

/* Apartment Finder */

.apartmentFinder {
  background-color: @white;
  border-radius: 20px;
  overflow: hidden;
}

.apartmentFinderHeader {}

.apartmentFinderHeader img {
  width: 100%;
  height: auto;
}

.apartmentFinderInterface {
  background-color: @white;
  padding: 1rem;
}

.apartmentFinderBtn {
  display: inline-block;
}

.apartmentFinderOption {
  display: inline-block;
}

.apartmentFinderOption img {
  width: 100%;
  height: auto;
}

.setSearchItem,
.apartment-search-preview {
  cursor: pointer;
  display: inline-block;
  background-color: transparent;
  width: 100%
  height: auto;
  text-align: center;
  /* padding: 10px; */
  padding: 0;
  font-size: 2rem;
  line-height: 36px;
  border: solid 2px @grey;
  border-radius: 10px;
  border: none;   // override
  margin-right: .5rem;
  margin-bottom: 2rem;
}

.setSearchItem img {
  filter: grayscale(1);
  opacity: .7;
}

.setSearchItem.selected {
  // border: solid 2px @red;
}

.setSearchItem.selected img {
  filter: grayscale(0);
  opacity: 1;
}

.apartmentFinderResults {
  margin-top: 10px;
  padding: 1rem;
  background-color: @red;
}

.apartment-search-preview {}

.apartment-search-preview .apartment-logo {
  width: 100%;
  height: auto;
  /* padding: .5rem; */
}

.apartment-search-preview .apartment-name {}

/* Apartment details */

.apartment {}

.apartmentIcons {
  text-align: right;
  margin: 2rem 0 1rem;
}

.apartmentIcons > .apartmentIcon {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-left: .65rem;
}

.apartmentIcons > .apartmentIcon > img {
  filter: grayscale(1);
  opacity: .7;
  width: 100%;
  height: auto;
}

.apartmentFeatures {
  font-weight: 500;
}

/* Swiper */

:root {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: #fff;
}

.swiper-carousel {
  padding-bottom: 32px;
  max-width: 1200px;
}

.swiper-carousel .swiper-slide {
  width: 520px;
  height: 380px;
  border-radius: 20px;
  background: #18212b;
  max-width: calc(100% - 48px);
}

.swiper-carousel .swiper-carousel-animate-opacity {
  height: 100%;
}

.swiper-carousel .swiper-pagination-bullets {
  bottom: 0;
}

.swiper-carousel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.swiper-carousel .slide-content {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  padding: 88px 16px 24px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  border-radius: 20px;
  color: #fff;
}

.swiper .slide-content h2 {
  margin: 0;
  line-height: 1.1;
}

.swiper-carousel .slide-content p {
  margin: 8px 0 0;
  opacity: 0.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.swiper-carousel .slide-content .content-overlay {
  background: rgba(255,255,255, .8);
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  padding: .5rem 1rem;
  color: @grey;
  text-align: center;
}

@media (max-width: 640px) {
  .swiper-carousel .swiper-button-next,
  .swiper-carousel .swiper-button-prev {
    display: none !important;
  }
}

.experiences {
  margin-top: 2rem;
}

.experiences > .row > div {
  /* border-bottom: solid 1px @light; */
  margin-bottom: .35rem;
  padding-bottom: .35rem;
}

.experiences > .row:last-child > div {
  border-bottom: none;
}

.experiences-description {
  margin-top: 2rem;
}

.experienceHeader img {
  width: 100%;
  height: auto;
}

/* Carousel Slider */

.carousel-item .gallery-preview {
  display: block;
  position: relative;
  text-align: center;
}

.carousel-item .gallery-preview a.gallery-image {}

.carousel-item .gallery-preview a.gallery-image img {
  width: 100%;
  height: auto;
}

/* Apartments */

.apartment {}

.apartment-details {
  margin-top: 3rem;
}

.apartment-details .apartment-header {
  padding: 2rem 2rem 0;  
}

.apartment-details .apartment-features {
  font-size: 1.5rem;
}

/* Contact */

.contactData {
  margin-bottom: 1rem;
}

.contact-data-item {
  vertical-align: middle;
  line-height: 32px;
}

.contactData .contact-icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  background-size: cover;
  margin-right: 1rem;
  position: relative;
  top: 6px;
}

.contact-icon.phoneIcon {
  background-image: url('../img/icons/7S_TELEFON_rw.png');
}

.contact-icon.mailIcon {
  background-image: url('../img/icons/7S_MAIL_rw.png');
}

.contact-icon.whatsappIcon {
  background-image: url('../img/icons/7S_WHATSAPP_rw.png');
}

.contact-icon.arrivalIcon {
  background-image: url('../img/icons/7S_ANREISE_rw.png');
}

.contact-icon.departureIcon {
  background-image: url('../img/icons/7S_ABREISE_rw.png');
}

.contact-icon.websiteIcon {
  background-image: url('../img/icons/7S_WWW_rw.png');
}

.contact-icon.linkedinIcon {
  background-image: url('../img/icons/7S_LINKEDIN_rw.png');
}

/* Forms */

.form-row {}

.embeddingBorder {
}

.embeddingBorder iframe {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;  
}

#emailAddress {
  display: none;
}

/* book now */

.fast-access-booking {
  position: fixed;
  z-index: 999;
  bottom: .35rem;
  left: 0;
  right: 0;
  padding: 1rem;
  text-align: center;
}

.fast-access-booking .btn-fixed-bottom {
  background-color: @white;
  width: 100%;
  max-width: 260px;
  box-shadow: 1px 1px 6px rgba(0,0,0,.5);
}

.fast-access-booking .btn-fixed-bottom > img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Lodgify Widget */

.lodgifyEmbedding {
  margin: 2rem 0;
}

.lodgifyEmbedding a {
  color: @white !important;
}

/* Footer */

footer {
  background-color: @grey;
  color: @light;
  /* font-size: .8em; */
}

footer a,
footer a:link,
footer a:visited {
  color: @light;
}

footer a:hover,
footer a:active {
  color: @white;
}

footer .slogan {
  float: right;
  text-transform: uppercase;
}

.footer-contact,
.footer-copyright {
  padding: 1rem 1rem;
  text-align: center;
}

.footer-copyright {
  background-color: @red;
  letter-spacing: 1px;
}

.footer-contact .contact-item {
  display: inline-block;
  margin-left: .35rem;
  margin-right: .35rem;
}

.footer-contact .contact-item .social-media-icon {
  font-size: 200%;
  position: relative;
}

.footer-contact .contact-item .social-media-icon:hover {
  color: @white;
}

.footer-contact .contact-item .whatsapp-greyscale {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: transparent url('../img/logos/WhatsApp_greyscale.png') center no-repeat;
  background-size: 100% 100%;
}

@media (min-width:1200px) {  
  .footer-contact .contact-item .social-media-icon {
    height: 30px;
    position: relative;
    top: -15px;
  }
  
  .footer-contact .contact-item .whatsapp-greyscale {
    display: inline-block;
    width: 26px;
    height: 26px;
  }
}

/* Whatsapp + Booking Widgets */

#whatsapp-widget {
  display: inline-block;
  background: @white url('../img/logos/WhatsApp.png') center no-repeat;
  background-size: 44px auto;
  width: 50px;
  height: 50px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: -1px 1px 6px rgba(0,0,0,.3);
  position: fixed;
  z-index: 9999;
  top: 180px;
  right: 0;
}

#booking-widget {
  display: inline-block;
  background-color: @red;
  color: @white;
  width: 135px;
  height: 50px;
  padding: .65rem 1rem;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: -1px 1px 6px rgba(0,0,0,.3);
  position: fixed;
  z-index: 9999;
  top: 240px;
  right: 0;
}

@media (min-width:992px) {
  #whatsapp-widget {
    width: 60px;
    height: 60px;
    background-size: 54px auto;
    top: 150px;
  } 
  
  #booking-widget {
    top: 230px;
  } 
}

/* BS modal mod. */

.modal {
  background: rgba(0,0,0,.7);
  z-index: 9999;
}

.modal-fullscreen .modal-footer {
  padding-bottom: 80px;
}

.modal-title {
  color: @red;
  text-align: center;
}

.modal-title img {
  width: 80%;
  height: auto;
  margin-top: 5%;
}

.modal-content {
  color: @font-color;
  background-color: @white;
  background-clip: padding-box;
  border: none;
  border-radius: 0;
  outline: 0;
  padding: 30px 1.5rem;
}

.experienceDetails {}

.experienceDetails .description {
  margin-top: 1rem;
}

.experienceDetails .footnote {
  font-size: .8em;
  color: @grey;
}

.floorPlan {}

.floorPlan img {
  width: 100%;
  height: auto;
}

@media (min-width:1200px)
{
  .modal-title img {
    margin-top: 10%;
  }

  .modal-content iframe {
    width: 720px;
    height: 480px;
  }
}

/* Animated */

.scroll-animated {
  opacity: 0;
  position: relative;
  top: 80px;
}

/* Cookie consent policy */


/* Additional */

:root {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: #fff;
}

.swiper-carousel {
  padding-bottom: 32px;
  max-width: 1200px;
}

.swiper-carousel .swiper-slide {
  /* width: 520px; */
  width: 720px;
  /* height: 380px; */
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background: @white;
  max-width: calc(100% - 48px);
}

.swiper-carousel .swiper-carousel-animate-opacity {
  height: 100%;
}

.swiper-carousel .swiper-pagination-bullets {
  bottom: 0;
}

.swiper-carousel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}

.swiper-carousel .slide-content {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  padding: 88px 16px 24px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  border-radius: 20px;
  color: #fff !important;
}

.swiper-carousel .slide-content h2 {
  margin: 0;
  line-height: 1.1;
  text-align: center;
}

.swiper-carousel .slide-content .swiper-header-image {
  width: 80%;
  height: auto;
  margin: 0 10%;
}

.swiper-carousel .slide-content p {
  margin: 8px 0 0;
  opacity: 0.65;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 575px) {
  
  .swiper-carousel .swiper-slide {
    height: 280px;
  }
  
  .swiper-carousel .swiper-button-next,
  .swiper-carousel .swiper-button-prev {
    display: none !important;
  }
}

@media (min-width:1200px) {

}