/* Commissioner ----------------------------------------------------------------------
 * Self-hosted webfont (SIL Open Font License 1.1). Subsets: latin, latin-ext, greek.
 *
 * Two sets of declarations:
 *  1. "Commissioner"        - proper family, weight-aware (300/400/500/700).
 *  2. "Commissioner-light"  - fixed-weight aliases, each declared font-weight:normal so
 *     "Commissioner-book"     that rules pairing them with their own `font-weight`
 *     "Commissioner-medium"   render the intended cut instead of being re-matched.
 *     "Commissioner-bold"
 * ---------------------------------------------------------------------------------- */

@font-face {
    font-family: 'Commissioner';
    src: url('fonts/Commissioner-Light.woff2') format('woff2'),
         url('fonts/Commissioner-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner';
    src: url('fonts/Commissioner-Regular.woff2') format('woff2'),
         url('fonts/Commissioner-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner';
    src: url('fonts/Commissioner-Medium.woff2') format('woff2'),
         url('fonts/Commissioner-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner';
    src: url('fonts/Commissioner-Bold.woff2') format('woff2'),
         url('fonts/Commissioner-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner-light';
    src: url('fonts/Commissioner-Light.woff2') format('woff2'),
         url('fonts/Commissioner-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner-book';
    src: url('fonts/Commissioner-Regular.woff2') format('woff2'),
         url('fonts/Commissioner-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner-medium';
    src: url('fonts/Commissioner-Medium.woff2') format('woff2'),
         url('fonts/Commissioner-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner-bold';
    src: url('fonts/Commissioner-Bold.woff2') format('woff2'),
         url('fonts/Commissioner-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-light: #F9F8F6;
    --dark-text: #4B321D;
    --dark-text-hover: #170f09;
    --red-text: #E1230E;
    --gold-text: #C09E7D;
    --gold-dark: #B99470;
    --gold-dark-hover: #825f3c;
    --title-font-size: 30px;
    --activity-title-font-size: 27px;
    --activity-best-month-font-size: 18px;
    --small-title-font-size: 24px;
    --subtitle-font-size: 24px;
    --small-subtitle-font-size: 18px;
    --text-font-size: 18px;
}

body {
    font-family: 'Commissioner', 'Open Sans', sans-serif;
    overflow: initial;
}

a, span, p, h1, h2, h3, h4 {
    font-family: 'Commissioner', 'Open Sans', sans-serif;
}

.font-light {
    font-family: 'Commissioner-light','Open Sans', sans-serif !important;
}

.font-medium {
    font-family: 'Commissioner-medium','Open Sans', sans-serif !important;
}

.font-bold {
    font-family: 'Commissioner-bold','Open Sans', sans-serif !important;
}

.font-book {
    font-family:'Commissioner-book', 'Open Sans', sans-serif !important;
}

#Header {
    z-index: 3;
}

.input-group .form-control {
    z-index: 1 !important;
}

.btn {
    letter-spacing: 0.2px;
    padding: 10px 20px !important;
    box-shadow: 0px 3px 6px #00000029;
    font-size: 16px !important;
    border-radius: 0px !important;
    font-family: 'Commissioner-medium', 'Open Sans', sans-serif !important;
    transition: 0.25s ease all; -webkit-transition: 0.25s ease all; -o-transition: 0.25s ease all; -ms-transition: 0.25s ease all; -moz-transition:0.25s ease all;
}

.primary-btn {
    background-color: var(--gold-dark) !important;
    color: white !important;
}

#Wrapper {
    overflow: initial;
}

.section-title {
    font-size: var(--title-font-size);
    font-family: 'Commissioner-bold','Open Sans', sans-serif !important;
    margin: 0px 0px 15px 0px;
    letter-spacing: 0.8px;
}

.section-subtitle {
    font-size: var(--subtitle-font-size);
    font-family: 'Commissioner-light','Open Sans', sans-serif !important;
    margin: 0px;
    line-height: 40px;
    letter-spacing: 0.3px;
}

.primary-btn:hover,
.primary-btn:focus {
    background-color: var(--gold-dark-hover) !important;
    color: white !important;
    outline: none !important;
}

.primary-btn:visited {
    color: white !important;
    outline: none !important;
}


#Content {
    padding-top: 0;
}

.page-template-ourhistory .full-width--image {
    height: 563px;
}

.full-width--image {
    width: 100%;
    height: 375px;
    background-position: center;
    background-size: cover;
}

.site-container {
    max-width: 1500px;
    margin: auto;
    padding: 0px 25px 15px 25px; /* was 50px 25px 15px 25px */
    -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column;
}

.section_wrapper {
    max-width: 100% !important;
}

.the_content_wrapper {
    margin: 0 !important;
}

a:focus {
    outline: none !important;
}

.bg-light {
    background-color: var(--bg-light);
}

.d-flex {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
}

.justify-content-between {
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
}

.justify-content-evenly {
    -ms-flex-pack: space-evenly; -webkit-box-pack: justify; -webkit-justify-content: space-evenly; justify-content: space-evenly;
}

.justify-content-fs {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex-wrap {
    flex-wrap: wrap;
}

.our-history--outer {
    margin-top: 100px;
    margin-bottom: 150px;
    position: relative;
    padding-bottom: 100px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}

.our-history--outer .background {
    background-color: var(--bg-light);
    content: "";
    width: 100vw;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 100%;
/*     top: -40px; */
}

.our-history--outer .red-text {
    color: var(--red-text);
}

.our-history--outer .title {
    font-size: var(--subtitle-font-size);
    line-height: 32px;
    color: var(--dark-text);
    margin-bottom: 19px;
}

.our-history--outer .description {
    font-size: var(--text-font-size);
    line-height: 32px;
    margin-bottom: 40px;
    color: var(--dark-text);
}

.link {
    color: var(--gold-text);
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.15px;
    text-decoration: underline;
}

.link:hover,
.link:focus,
.link:visited {
    color: var(--gold-text);
}

/* History */

.our-history--img {
    max-width: 489px;
    position: relative;
}

.our-history--img img {
    box-shadow: 0px 3px 6px #00000029;
    top: 80px;
    position: relative;
    width: 100%;
}

.our-history--content {
    max-width: 860px;
    width: 100%;
    z-index: 1;
    padding-left: 25px;
}

.page-template-ourhistory .homepage-chalets .homepage-chalets--header {
    display: none;
}

.page-template-ourhistory .homepage-chalets .chalets--grid .chalets--grid-item .details {
    background-color: white;
}

.ourhistory-chalets--header {
    display: none;
    max-width: 1256px;
    /* margin: 0 auto; */
}

.ourhistory-chalets {
    position: relative;
}

.page-template-ourhistory .homepage-chalets .homepage-chalets--body::before {
    background-color: var(--bg-light);
    content: "";
    width: 100vw;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 70%;
    top: -80px;
    z-index: -1;
}


.page-template-ourhistory .ourhistory-chalets--header {
    display: block;
}

.page-template-ourhistory .ourhistory-chalets--header .ourhistory-chalets--title {
    margin: 0;
    color: var(--dark-text);
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
}

.page-template-ourhistory .homepage-chalets .chalets--grid .chalets--grid-item .details .button-group {
    -webkit-box-pack: start; -moz-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start;
}

.page-template-ourhistory .homepage-chalets {
    margin-bottom: 100px;
}

.page-template-ourhistory .homepage-chalets .homepage-chalets--body {
    background-color: white;
    z-index: 1;
    padding: 40px 25px 0 25px;
}
/* END History */

/* START Header */
.custom-lang-switcher {
    right: 10px;
    top: calc(50% + 150px);
    z-index: 10;
    position: fixed;
    border: 1px solid #C09E7D;
    height: 70px;
    width: 65px;
    background-color: white;
}

.custom-lang-switcher .wpml-ls {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    height: 100%;
    margin: 0px;
}

.custom-lang-switcher .wpml-ls ul {
    width: 100%;
    height: 100%;
}

.custom-lang-switcher .wpml-ls .wpml-ls-item {
    height: 50%;
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-align-items: center; -moz-align-items: center; -ms-flex-align: center; align-items: center;
    -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
}

.custom-lang-switcher .wpml-ls .wpml-ls-item a {
    padding: 0;
    color: #C09E7D;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-size: 18px;
}

.custom-lang-switcher .wpml-ls .wpml-ls-item a:hover {
    text-decoration: none;
}

.book-now--container {
    display: none;
}

#Top_bar .menu li ul li {
    width: 220px;
}

#Top_bar .menu > li > .sub-menu {
    margin-left: 40px;
    box-shadow: 0px 3px 6px #00000029;
    background-color: white;
}

#Top_bar .menu > li .sub-menu a:hover,
#Top_bar .menu > li ul li.hover > a {
    background-color: white;
}

.menuo-sub-active #Top_bar .menu > li ul li.current-menu-item > a {
    background-color: white;
}

#Top_bar .menu > li .sub-menu a span {
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-size: var(--text-font-size);
    font-family: 'Commissioner-light','Open Sans', sans-serif !important;
}

#Top_bar .menu > li > a {
    text-transform: uppercase;
}

#Top_bar .top_bar_left .header-contact-info .phone-icon,
#Top_bar .top_bar_left .header-contact-info .address-icon {
    color: var(--dark-text);
    margin-right: 15px;
}

.slick-initialized .slick-slide{
    background-color: rgba(0, 0, 0, 0.2)!important;
    background-size: cover;
}

.fullwidth-hero {
    width: 100%;
    position: relative;
    height: 800px;
    background-repeat: no-repeat;
    background-position: center;
}

.fullwidth-hero .overlay-text {
    position: absolute;
    width: 100%;
    top: 20%;
}

/* To align hero text with booking form */
.fullwidth-hero .overlay-text .site-container .col-sm-12 {
    padding-left: 0;
}



.fullwidth-hero .hero-title {
    font-size: 35px;
    color: #FAFAF9;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 58px;
    letter-spacing: 0.5px;
    text-shadow: 0px 3px 6px rgba(0,0,0,0.8);
}

.fullwidth-hero .hero-subtitle {
    color: #FAFAF9;
    font-size: 18px;
    margin: 0px;
    line-height: 25px;
    max-width: 1000px;
    text-shadow: 0px 3px 6px rgba(0,0,0,0.8);
}

#Top_bar .menu > li > a, 
#Top_bar #menu ul li.submenu .menu-toggle {
    color: var(--dark-text) !important;
    font-size: 18px;
    letter-spacing: 0.2px;
    font-family:'Commissioner-light' !important;
    font-weight: normal;
}


#Top_bar .menu > li > a:hover, 
#Top_bar #menu ul li.submenu .menu-toggle:hover {
    color: var(--dark-text) !important;
}

#Top_bar .column.one {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-align-items: center; -moz-align-items: center; -ms-flex-align: center; align-items: center;
    -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
}

.book-now--container {
    display: none;
}

#Top_bar .column.one .logo-menu {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
}

.mm-vertical #Top_bar .top_bar_left {
    max-width: 1500px;
    padding: 0px 25px;
	width: 100%;
}

#Top_bar .top_bar_left .top-menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0 15px 0;
}

#Top_bar.is-sticky .top_bar_left .top-menu {
    display: none;
}


#Top_bar.is-sticky .logo-menu {
    margin-top: 15px;
}

#Top_bar.is-sticky .top_bar_left .logo{
    margin: 0;
}

#Top_bar.is-sticky .menu_wrapper {
    margin-bottom: 15px;
}

.arrow {
    border: solid var(--gold-dark);
    border-width: 0 1px 1px 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    bottom: 2px;
    position: relative;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.floating-booking {
    background-color: var(--gold-dark);
    width: 242px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-90deg);
    position: absolute;
    right: -75px;
    top: calc(50% - 60px);
    z-index: 5;
    position: fixed;
}

.floating-booking .floagin-booking--text {
    margin: 0px;
    border: 0.5px solid white;
    padding: 16px 35px;
    color: white;
    text-align: center;
    font-size: 16px;
}

.floating-booking .floagin-booking--text:hover {
    text-decoration: none;
}

.floating-booking .floagin-booking--text .arrow {
    border-color: white;
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    position: relative;
    top: 4px;
    margin-left: 20px;
    right: 0px;
}


/* END Header */

/* START Footer */

footer#Footer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background-color: var(--bg-light) !important;
}

.footer-wr {
    width: 100%;
    margin: auto;
    padding: 100px;
}

footer .footer-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: auto;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
}

.footer-contact, .footer-newsletter, .footer-instagram {
    width: 100%;
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column;
    padding: 10px;
}

.footer-newsletter input[type="email"] {
    height: 58px;
    width: 246px;
    box-shadow: 0px 3px 6px #00000029;
    font-size: var(--text-font-size);
    color: #020202;
    border:none;
}

.footer-newsletter input[type="email"]:focus {
    color: #020202;
    background-color: white !important;
}

.footer-contact .footer-book-btn {
    width: 180px;
    margin-left: 60px;
}

.footer-item-title {
    color: var(--gold-dark);
    margin-bottom: 35px;
    font-size: 22px;
}
.contact-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 20px;
    width: 100%;
}
.contact-item p {
font-size: 14px;
}

.contact-i-wr {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 20px;
    margin-right: 40px;
}

.contact-i-wr .contact-footer-icon {
    color: #060606;
}

.contact-item i {
    color: #060606;
    font-size: var(--title-font-size);
}

#Footer a:not(.btn) {
    color: #0A0A0A !important;
    line-height: 20px;
    font-size: 16px;
}

#Footer a:not(.btn):hover {
    text-decoration: none;
}


/* END Footer */


.home--bg-carousel-item {
    width: 100%;
    position: relative;
    height: 800px;
    background-repeat: no-repeat;
    background-position: center;
}

/* START Booking form - Homepage */
.booking-calendar {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 190px;
}

.booking-calendar .form-section {
    padding: 0px;
}

.booking-calendar #booking-mask {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -moz-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
/*     -ms-flex-pack: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between; */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.home-book-left {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.home-book-right {
    margin-top: 15px;
}

.home-book-dates {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 15px;
}

.home-book-selects {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    margin-top: 15px;
}

.booking-calendar #booking-mask .form-group {
    margin: 0px;
    position: relative;
}

.single-chalet-content #booking-mask label {
    font-size: 12px!important;
}

.booking-calendar #booking-mask .select-input svg {
    width: 13px;
    fill: var(--gold-dark);
    position: absolute;
    right: 20px;
    top: 60px;
}

.booking-calendar #booking-mask label {
    color: #fefcfc;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.2px;
    margin-bottom: 7px;
    text-shadow: 0px 3px 6px rgba(0,0,0,0.8);
}

.booking-calendar #booking-mask .date-input .date,
.booking-calendar #booking-mask .select-input select {
    background: #fefcfc 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border: none;
    height: 60px;
    cursor: pointer;
}

.booking-calendar #booking-mask .select-input select {
    padding: 0px 20px;
}

.booking-calendar #booking-mask .select-input .select-chevron-icon {
    position: absolute;
    top: 50px;
    right: 5px;
    color: var(--primary-color);
}

.booking-calendar #booking-mask .date-input .date {
    width: 340px;
    height: 60px;
}

.booking-calendar #booking-mask .date-input .date input {
    width: 100%;
    height: 100%;
    color: var(--dark-text);
    font-size: var(--text-font-size);
    letter-spacing: 0.2px;
    padding: 0px 30px;
}

.booking-calendar #booking-mask .date-input .date .input-group-addon {
    position: absolute;
    right: 20px;
    z-index: 2;
    height: 100%;
    background-color: transparent;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    width: 14px;
    color: var(--primary-color);
}

.booking-calendar #booking-mask .date-input .date .input-group-addon svg {
    font-size: 20px;
}

.booking-calendar #booking-mask .date-input .date .input-group-addon svg path {
    fill: var(--gold-dark);
}

.booking-calendar #booking-mask .date-input .date .glyphicon::before {
    font-size: 13px;
    color: var(--primary-color);
}

.input-container.date-input {
    margin-right: 30px; /* was 30px */
}

.single-chalet--right .input-container.date-input {
    margin-right: 0px;
}

.booking-calendar #booking-mask .select-input {
    width: 130px;
    margin-right: 30px;
}

.booking-calendar #booking-mask input[type='submit'] {
    box-shadow: 0px 3px 6px #00000029;
    margin: 0;
    background-color: var(--gold-dark);
    width: 250px;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: var(--text-font-size);
    letter-spacing: 0.4px;
    transition: 0.25s ease all; -webkit-transition: 0.25s ease all; -o-transition: 0.25s ease all; -ms-transition: 0.25s ease all; -moz-transition:0.25s ease all;
}

.booking-calendar #booking-mask input[type='submit']:hover {
    background-color: var(--gold-dark-hover);
}

.booking-calendar #booking-mask input[type='submit']:focus {
    outline: none;
}

/* END Booking form - Homepage */



/* START Homepage */
.homepage-our-history {
    max-width: 1256px;
    margin: 50px auto 90px auto;
}

.homepage-our-history .homepage-our-history--image {
    margin-bottom: 50px;
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
}

.homepage-our-history .homepage-our-history--image img {
    max-width: 1256px !important;
    width: 90%;
    margin: 0 auto;
}

.homepage-our-history .homepage-our-history--text {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column;
    -webkit-align-items: center; -moz-align-items: center; -ms-flex-align: center; align-items: center;
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
}

.homepage-our-history .homepage-our-history--text .homepage-our-history--title {
    font-size: var(--title-font-size);
    color: var(--dark-text);
    margin-bottom: 15px;
    text-align: center;
}

.homepage-our-history .homepage-our-history--text .homepage-our-history--subtitle {
    margin-bottom: 15px;
    font-size: var(--subtitle-font-size);
    color: var(--dark-text);
    text-align: center;
}

.homepage-our-history .homepage-our-history--text .homepage-our-history--paragraph {
    font-size: var(--text-font-size);
    margin-bottom: 30px;
    color: var(--dark-text);
    text-align: center;
    line-height: 28px;
    max-width: 930px;
}

.homepage-chalets {
    margin-bottom: 200px;
    position: relative;
}

.homepage-chalets .homepage-chalets--body {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0px;
}

.homepage-chalets .homepage-chalets--header {
    margin-bottom: 60px;
}


/* Removed so the chalet card could align with the top logo on the navbar */
/* .homepage-chalets .homepage-chalets--body--inner {
    max-width: 1256px;
    margin: 0 auto;
    padding: 0 20px;
} */


.homepage-chalets .chalets--grid {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-justify-content: space-around; -moz-justify-content: space-around; -ms-justify-content: space-around; -o-justify-content: space-around; justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.single-chalet .homepage-chalets--body--inner > .chalets--grid.chalet-page {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}


.homepage-chalets .chalets--grid .chalets--grid-item {
    max-width: 40%;
    box-shadow: 0px 3px 6px #00000029;
    width: 100%;
    min-width: 300px;
    margin-right: 15px;
    margin-bottom: 15px;
}

.homepage-chalets .chalets--grid .chalets--grid-item:last-child {
    margin-right: 0;
}

.homepage-chalets .chalets--grid .image img {
    max-width: 610px;
    width: 100%;
}

.homepage-chalets .chalets--grid .chalets--grid-item .details {
    padding: 30px;
    background: #fff;
}

.homepage-chalets .chalets--grid .chalets--grid-item .details .name {
    color: var(--dark-text);
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 32px;
    margin: 0;
}

.homepage-chalets .chalets--grid .chalets--grid-item .details .small-desc {
    letter-spacing: 0.2px;
    color: var(--dark-text);
    font-size: 17px;
    margin-bottom: 70px;
    line-height: 30px;
}

.homepage-chalets .chalets--grid .chalets--grid-item .details .button-group {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-box-pack: end; -moz-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end;
}

.homepage-bar-restaurant {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    padding: 100px 0px;
    position: relative;
    max-height: 590px;
    margin-bottom: 200px;
}

.homepage-bar-restaurant .br-text {
    z-index: 1;
}

.homepage-bar-restaurant::before {
    content: "";
    background-color: var(--bg-light);
    height: 100%;
    width: 700px;
    display: block;
    position: absolute;
    left: -700px;
    top: 0;
}

.homepage-bar-restaurant::after {
    content: "";
    background-color: var(--bg-light);
    height: 100%;
    width: 700px;
    display: block;
    position: absolute;
    right: -700px;
    top: 0;
}

.homepage-bar-restaurant--images {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
}

.br-image--bar img, .br-image--restaurant img {
    width: 340px;
}

.homepage-bar-restaurant .br-image--bar {
    position: relative;
    top: -190px;
    margin-right: 25px;
} 

.homepage-bar-restaurant .br-image--restaurant {
    margin-right: 35px;
}

.homepage-bar-restaurant .br-text .br--subtitle {
    margin-bottom: 30px;
}

.homepage-bar-restaurant .br-text .br--hours,
.homepage-bar-restaurant .br-text .br--contact,
.page-template-bar-restaurant .br--hours,
.page-template-bar-restaurant .br--contact {
    font-size: var(--text-font-size);
}

.homepage-bar-restaurant .br-text .br--hours .contact-icon,
.homepage-bar-restaurant .br-text .br--contact .contact-icon,
.page-template-bar-restaurant .br--hours .contact-icon,
.page-template-bar-restaurant .br--contact .contact-icon {
    margin-right: 30px;
}

.homepage-bar-restaurant .br-text .br--hours span,
.page-template-bar-restaurant .br--hours span {
    color: var(--gold-dark);
}

span.restaurant-hours {
    color: #333!important;
}

.homepage-bar-restaurant .br-text .br--contact,
.page-template-bar-restaurant .br--contact {
    color: var(--dark-text);
    margin-bottom: 45px;
    display: block;
}

.homepage-bar-restaurant .br-text .br--contact:hover,
.page-template-bar-restaurant .br--contact:hover {
    text-decoration: none;
}

.homepage-bar-restaurant .br-text .button-group {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
}

.homepage-activities--header {
    margin-bottom: 50px;
}

.homepage-activities--body {
    width: 100vw;
    padding: 75px 0px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
}

.homepage-activities--body .homepage-activities--body--inner {
    max-width: 1500px;
    padding: 0px 25px;
    width: 100%;
}

.section-subtitle .homepage-activities--subtitle {
    display: block;
    line-height: normal;
}

.smaller-activities-subtitle {
    display: none;
}

.activities--grid {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
    -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; flex-wrap: wrap;
}

.activities--grid .slick-prev,
.activities--grid .slick-next {
    left: 20px;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-left: 2px solid #0a0a0a;
    border-top: 2px solid #0a0a0a;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.activities--grid .slick-next {
    left: unset;    
    right: 20px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.activities--grid .slick-prev:before,
.activities--grid .slick-next:before {
    content: unset;
}

.activities--grid .activities--grid-item {
    max-width: 24%;
    width: 100%;
    height: 500px;
}

.activities--grid-item .activities--thumb {
    position: relative;
    height: 100%;
    width: 100%;
}

.activities--grid-item .activities--thumb:hover .image {
    opacity: 1;
}

.activities--grid-item .activities--thumb .image {
    position: absolute;
    width: 100%;
    max-height: 100%;
    opacity: 0.31;
    transition: 0.25s ease all; -webkit-transition: 0.25s ease all; -o-transition: 0.25s ease all; -ms-transition: 0.25s ease all; -moz-transition:0.25s ease all;
}

.activities--grid-item .details {
    width: 100%;
    height: 100%;
    padding: 85px 45px;
    position: absolute;
}

.activities--grid-item .details .activities--icon {
    margin-bottom: 25px;
    font-size: var(--small-title-font-size);
    color: var(--dark-text);
}

.activities--grid-item .details .activities--title {
    color: var(--dark-text);
    font-size: var(--title-font-size);
    letter-spacing: 0.6px;
    line-height: 44px;
    margin-bottom: 15px;
}

.activities--grid-item .details .activities--excerpt {
    color: var(--dark-text);
    font-size: var(--text-font-size);
    letter-spacing: 0.4px;
    line-height: 30px;
    margin: 0;
    max-width: 80%;
}

/* END Homepage */

/* START Single chalet */

.single-chalet-content {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
}

.single-chalet .single-chalet--header .single-chalet--title {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.single-chalet .single-chalet-shortdesc {
    margin-bottom: 20px;
}

.single-chalet-shortdesc p {
    font-family: 'Commissioner-light','Open Sans', sans-serif !important;
}

.single-chalet-content .single-chalet-shortdesc p {
    font-family: 'Commissioner-light','Open Sans', sans-serif !important;
    font-size: 22px;
    margin: 0px;
}

.single-chalet-content .single-chalet--left {
    width: 66%;
    margin-right: 30px;
}

.single-chalet-content .single-chalet--right {
    width: 33%;
}

.single-chalet-content .single-chalet--gallery {
    margin-bottom: 50px;
}

.slick-next-chalet {
    width: 25px;
    color: white;
    position: absolute;
    fill: white;
    right: 60px;
    top: calc(50% - 12px);
    cursor: pointer;
    z-index: 1;
}

.slick-prev-chalet {
    width: 25px;
    color: white;
    position: absolute;
    fill: white;
    left: 60px;
    top: calc(50% - 12px);
    cursor: pointer;
    z-index: 1;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.single-chalet-content .single-event--details {
    margin-bottom: 80px;
}

.single-chalet-content .topview-link {
    font-size: var(--text-font-size);
    color: var(--gold-dark);
    margin: 30px 0px 0px 0px;
    display: block;
    text-decoration: underline;
}

.single-chalet-content .topview-link:hover {
    text-decoration: none;
}

.single-chalet-content .single-chalet-description {
    margin-bottom: 80px;
}

.single-chalet-content .single-chalet-description .chalet--desc-title {
    margin: 0px 0px 20px 0px;
    font-size: 24px;
}

.single-chalet-content .single-chalet-description p {
    font-family: 'Commissioner-light','Open Sans', sans-serif !important;
}

.single-chalet .homepage-chalets .chalets--grid .chalets--grid-item .details .button-group {
    -webkit-box-pack: start; -moz-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start;
}

.single-chalet .homepage-chalets .background {
    background-color: var(--bg-light);
    content: "";
    width: 100vw;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 70%;
}

.single-chalet .homepage-chalets .chalets--grid .chalets--grid-item .details {
    background-color: white;
}

.single-chalet-content .sc--booking-form {
    padding: 86px 55px;
    background-color: var(--bg-light);
    position: sticky;
    top: 130px;
    box-shadow: 0px 3px 6px #00000029;
    margin-bottom: 50px;
    max-width: 455px;
    margin-left: auto;
}

.single-chalet-content .sc--booking-form .sc--booking-form--title {
    margin: 0px 0px 10px 0px;
    color: var(--gold-dark);
    font-size: var(--subtitle-font-size);
    line-height: 24px;
}

.single-chalet-content .sc--booking-form .sc--booking-form--subtitle {
    color: var(--gold-dark);
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 40px;
}

.single-chalet-content .sc--booking-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.single-chalet-content .sc--booking-form .input-group {
    width: 100%;
    background: #fefcfc 0% 0%;
    box-shadow: 0px 3px 6px #00000029;
    border: none;
    height: 68px;
    cursor: pointer;
}

.single-chalet-content .sc--booking-form .input-group input,
.single-chalet-content .sc--booking-form .input-group select {
    width: 100%;
    height: 100%;
    color: var(--dark-text);
    font-size: 17px;
    letter-spacing: 0.2px;
    padding: 10px 30px;
    box-shadow: 0px 3px 6px #00000029;
}

.single-chalet-content #booking-mask label {
    font-size: 17px;
    color: var(--dark-text);
    letter-spacing: 0.2px;
    margin-bottom: 15px;
    font-weight: normal;
}

.single-chalet-content .sc--booking-form .input-split-container {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.single-chalet-content .sc--booking-form .input-split-container > div.input-container {
    max-width: 100px;
    -webkit-box-flex: 1; -moz-box-flex: 1; width: 33%; -webkit-flex: 1; -ms-flex: 1; flex: 1;
}

.single-chalet-content .sc--booking-form .select-input select {
    padding: 10px 30px;
    height: 68px;
    box-shadow: 0px 3px 6px #00000029;
    cursor: pointer;
}


.single-chalet-content .sc--booking-form .input-group .input-group-addon {
    position: absolute;
    right: 30px;
    z-index: 10;
    height: 100%;
    background-color: transparent;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    width: 14px;
    color: var(--primary-color);
}

.single-chalet-content .sc--booking-form .input-group .input-group-addon svg {
    font-size: 20px;
}

.single-chalet-content .sc--booking-form .input-group .input-group-addon svg path {
    fill: var(--gold-dark);
}

.single-chalet-content .sc--booking-form input[type="submit"] {
    width: 100%;
    padding: 20px!important;
    box-shadow: 0px 3px 6px #00000029;
    font-family: 'Commissioner-light','Open Sans', sans-serif !important;
}

.single-chalet-content .sc--booking-form .select-input svg {
    width: 13px;
    fill: var(--gold-dark);
    position: absolute;
    right: 20px;
    top: 67px;
    pointer-events: none;
}

/* END Single CHalet */


/* START Single Event */
.single-event {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.single-event-sidebar {
    width: 33%;
    margin-top: 110px;
    max-width: 270px;
    margin-right: 15px;
}

.single-event-content {
    max-width: 990px;
    width: 67%;
}

.single-event .events-list {
    margin: 0px;
}

.single-event .events-list .events-list-item a {
    color: var(--gold-dark);
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 20px;
    transition: 0.25s ease all; -webkit-transition: 0.25s ease all; -o-transition: 0.25s ease all; -ms-transition: 0.25s ease all; -moz-transition:0.25s ease all;
    position: relative;
}

.single-event .events-list .events-list-item a::after{
    content: '';
    border: solid var(--gold-text);
    border-width: 0 1px 1px 0;
    display: inline-block;
    position: absolute;
    top: 30%;
    margin-left: 10px;
    padding: 5px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.single-event .events-list .events-list-item a:hover {
    color: var(--gold-dark-hover);
    text-decoration: none;
}

.single-event .events-list .events-list-item:not(:last-child) {
    margin-bottom: 30px;
}

.single-event .single-event--title {
    font-size: var(--title-font-size);
    margin: 35px 0px 35px 0px;
    letter-spacing: 0.3px;
    line-height: 32px;
    color: var(--dark-text);
}

.single-event .single-event--featured-image {
    width: 100%;
    margin-bottom: 40px;
}

.single-event .single-event--featured-image img {
    max-width: 90%;
    height: auto;
}

.single-event .single-event--description {
    margin-bottom: 40px;
}

.event--title {
    font-size: var(--subtitle-font-size);
    color: var(--dark-text);
    line-height: 31px;
}

.event--description {
    font-size: var(--text-font-size);
    line-height: 32px;
}

.light--card {
    box-shadow: 0px 3px 6px #00000029;
    background: var(--bg-light);
    padding: 40px;
}

.single-event--details {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 90px 40px 50px;
    position: relative;
}

.single-chalet-content .single-event--details:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1700px;
    background: #f9f8f6;
    z-index: 1;
    width: 1705px;
    box-shadow: -5px 3px 6px 0px #00000029;
}

.single-event--details--title {
    font-size: 22px;
    color: var(--dark-text);
    line-height: 25px;
}

.single-event--details--wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.single-event--details--wrapper:before {
    content: '';
    position: absolute;
    height: 62%;
    top: 5px;
    width: 2px;
    background: #EFECEC;
    left: -50px;
}

.single-event--details--row {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.single-event--details--name--icon {
    margin-right: 20px;
}

.single-event--details--name--icon svg path {
    fill: var(--gold-dark);
}

.single-event--details--name--icon img {
    width: 32px;
}

.single-event--details--name--extra {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center;
    min-width: 130px;
}

.single-event--details--name--extra span {
    font-size: var(--text-font-size);
}

.single-event--details--name {
    min-width: 130px;
    font-size: var(--title-font-size);
    min-width: 90px;
    font-size: var(--text-font-size);
    line-height: 24px;
    color: var(--dark-text);
    margin-right: 15px;
}

.single-event--details--value {
    max-width: 352px;
    width: 100%;
    font-size: var(--text-font-size);
    line-height: 24px;
    color: var(--dark-text);
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center;
}

.single-event--contact-link {
    margin: 0;
    margin-top: 45px;
}

.single-event--contact-link a {
    font-size: var(--text-font-size);
    line-height: 39px;
    letter-spacing: 0.21px;
    text-decoration: underline;
    color: var(--dark-text);
}

.single-event--contact-link a:hover,
.single-event--contact-link a:focus,
.single-event--contact-link a:visited {
    color: var(--dark-text);
}

/* END Single Event */

/* Amenities */
.amenities {
    width: 100%;
    max-width: 930px;
    padding: 40px 77px 130px 170px;
    margin-top: -132px;
    margin-bottom: 50px;
}

.amenities-title {
    font-size: var(--title-font-size);
    color: var(--dark-text);
    letter-spacing: 0.36px;
    line-height: 32px;
    margin-bottom: 32px;
    margin-top: 0;
}

.amenities-description {
    font-size: var(--text-font-size);
    line-height: 30px;
    color: var(--dark-text);
    margin-bottom: 60px;
}

.amenities--row.amenity {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center;
    margin-bottom: 40px;
}

.amenities--list .amenities--row.amenity:last-child {
    margin-bottom: 0;
}

.amenity .amenity--icon {
    margin-right: 80px;
    min-width: 80px;
}

.amenity--icon {
    font-size: 47px;
    color: var(--gold-dark);
}

.amenity--text {
    font-size: var(--text-font-size);
    line-height: 26px;
    color: var(--dark-text);
    margin-bottom: 0;
}

.katopin {
    color: var(--gold-dark);
    margin-top: 20px;
}

.pt-0 {
    padding-top: 0;
}
/* END Amenities */

/* Contact */
.contact-page {
    overflow-x: hidden;
}

.contact-page.full-width--image {
    height: 552px;
    overflow: hidden;
}

.full-width--image p {
    margin: 0;
    color: #F9F8F6;
    font-size: 50px;
    line-height: 70px;
    padding-top: 96px;
    padding-left: 200px;
}

.contact-page.full-width--image p {
    padding-left: 20px!important;
    margin: auto!important;
}

.contact-row {
    margin-bottom: 100px;
}

.one-step-closer {
    font-size: var(--title-font-size);
    line-height: 36px;
    
    color: var(--dark-text);
    margin-top: 50px;
    margin-bottom: 12px;
}

.epikoinwnia {
    font-size: var(--small-title-font-size);
    line-height: 26px;

    color: var(--dark-text);
    margin: 0;
    margin-bottom: 30px;
}

.contact--info--row {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center;
    margin-bottom: 20px;
}

.contact--info .contact--info--row:last-child {
    margin-bottom: 38px;
}

.contact--info--row .contact--info--icon {
    color: var(--dark-text);
    font-size: var(--subtitle-font-size);
    min-width: 30px;
    margin-right: 45px;
}

.contact--info--text {
    font-size: var(--text-font-size);
    line-height: 24px;
    
    color: var(--dark-text);
    margin: 0;
}

.contact--info--text a {
    color: var(--dark-text);
    font-size: var(--text-font-size);
    line-height: 24px;
}

.contact--info--text a:hover,
.contact--info--text a:focus,
.contact--info--text a:visited {
    color: var(--dark-text);
}

.contact--title {
    font-size: var(--small-title-font-size);
    line-height: 26px;
    color: var(--gold-dark);
    margin-top: 35px;
    margin-bottom: 5px;
}

.contact--subtitle {
    font-size: var(--text-font-size);
    line-height: 25px;
    color: var(--gold-dark);
    margin: 0;
    margin-bottom: 33px;
}

.contact--form {
    width: 100%;
    max-width: 625px;
    margin-bottom: 55px;
}

.contact--form .contact-col {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    flex-wrap: wrap;
}

.contact-col .input-container:first-child {
    margin-right: 30px;
}

.contact--form .input-container {
    margin-bottom: 30px;
    min-width: 250px;
    flex: 1;
}

.custom-input {
    color: var(--dark-text);
    height: 74px;
    width: 100%;
    box-shadow: 0px 3px 6px #00000029 !important;
    font-size: 20px !important;
    border: none;
    padding-left: 40px !important;
    padding-right: 20px !important;
}

textarea.custom-input {
    height: 220px;
    resize: vertical;
}

.directions--title {
    color: var(--dark-text);
    font-size: var(--title-font-size);
    line-height: 35px;
    margin-top: 36px;
    margin-bottom: 18px;
}

.directions--subtitle {
    color: var(--gold-dark);
    font-size: var(--small-title-font-size);
    line-height: 39px;
    margin-top: 0;
    margin-bottom: 50px;
}

.direction--row {
    width: 100%;
    max-width: 684px;
    margin-bottom: 40px;
    padding-right: 15px;
}

.direction--title {
    color: var(--dark-text);
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 30px;
}

.direction--text {
    color: var(--dark-text);
    font-size: var(--text-font-size);
    line-height: 30px;
}

.directions--km {
    font-size: 25px;
    line-height: 39px;
    color: var(--gold-dark);

    margin-top: 40px;
    margin-bottom: 200px;
}
/* END Contact */

/* Book component */
.book-your-adventure {
    background: var(--bg-light);
    box-shadow: 0px 3px 6px #00000029;
    border: 4px solid #fff;

    max-width: 612px;
    width: 100%;
    
    margin-top: 38px;
    margin-bottom: 85px;
    padding: 30px 23px 35px 50px;
}

.book-your-adventure--title {
    font-size: var(--activity-title-font-size);
    line-height: 30px;

    color: var(--gold-dark);
}

.book-your-adventure--text  {
    font-size: var(--small-subtitle-font-size);
    line-height: 30px;

    color: var(--dark-text);
    margin-bottom: 15px;
}
/* END Book component */

/* START Activities */
.full-width-slider .slick-next-custom {
    width: 50px;
    color: white;
    position: absolute;
    fill: white;
    right: 110px;
    top: calc(50% - 12px);
    cursor: pointer;
    z-index: 1;
}

.full-width-slider .slick-prev-custom {
    width: 50px;
    color: white;
    position: absolute;
    fill: white;
    left: 110px;
    top: calc(50% - 12px);
    transform: rotate(180deg);
    cursor: pointer;
    z-index: 1;
}

.activities--title {
    font-size: var(--activity-title-font-size);
    color: var(--dark-text);
    line-height: 30px;
    letter-spacing: 0.36px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.activities--subtitle {
    font-size: 18px;
    color: var(--dark-text);
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 1044px;
}

.activities--text {
    font-size: var(--text-font-size);
    color: var(--dark-text);
    line-height: 33px;
    margin-top: 22px;
    margin-bottom: 60px;
    max-width: 1330px;
}

.single-activity-title {
    margin-top: 90px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-50 {
    margin-bottom: 50px;
}

.activity-wrapper {
    margin-top: 25px;
}

.single-activity--img {
    position: relative;
    bottom: -50px; /* was -96px */
}

.move-img-top {
    top: -160px;
    bottom: 0;
}

.single-activity--img img {
    max-width: 490px;
}

.activity--list {
    max-width: 763px;
    width: 100%;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.activity--list--row--title {
    font-size: var(--activity-title-font-size);
    line-height: 22px;
    color: var(--dark-text);
    margin: 0px 0px 12px 0px;
}

.activity--list--row--title svg {
    color: var(--gold-dark);
}

.best-months {
    color: var(--gold-text);

    font-size: var(--activity-best-month-font-size);
    line-height: 30px;
    margin: 0;
}

.activity--list--row--description {
    font-size: var(--small-subtitle-font-size);
    line-height: 30px;
    margin: 0;
}

.activity--list--row {
    margin-bottom: 36px;
}

.activity--list .activity--list--row:last-child {
    margin-bottom: 0;
}

.wine--subtitle,
.naousa--subtitle {
    font-size: 22px;
}

/* END Activities */

/* Naousa */
.naousa--small-title {
    color: var(--dark-text);
    font-size: 22px;
    line-height: 32px;
    margin: 0;
}

.naousa--text {
    color: var(--dark-text);
    font-size: var(--text-font-size);
    line-height: 32px;
    margin: 0;
    margin-bottom: 25px;
    max-width: 1298px;
}

.naousa--separator {
    height: 35px;
}

.naousa-710 {
    max-width: 710px;
}

.gyrw-perioxes-list {
    margin-top: 20px;
}

.gyrw-perioxes-list--row {
    margin-bottom: 25px;
}

.gyrw-perioxes-list .gyrw-perioxes-list--row:last-child {
    margin-bottom: 0;
}

.gyrw-perioxes-list--row--icon {
    font-size: 23px;
    color: var(--dark-text);
    margin-right: 20px;
}

.gyrw-perioxes-list--row--text {
    font-size: 22px;
    color: var(--dark-text);
}
/* END Naousa */

/* Istorika Mnimeia */
.istorika--title {
    margin-bottom: 22px;
}

.istorika--subtitle {
    margin-bottom: 40px;
    font-size: 22px;
}

.istorika--small-title {
    margin-bottom: 35px;
}

.istorika--text {
    margin-bottom: 0;
    font-size: var(--text-font-size);
    max-width: 1360px;
}

.activities--grid-item > a:hover,
.activities--grid-item > a:focus,
.activities--grid-item > a:visited {
    text-decoration: none;
}
/* END Istorika Mnimeia */
/* START Bar-Restaurant */

.page-template-bar-restaurant .bar-restaurant--outer {
    margin: 100px 0px;
}

.page-template-bar-restaurant .restaurant-section {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    position: relative;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
}

.text-card {
    position: relative;
}

.text-card.restaurant-details {
    top: -300px;
    margin-right: 15px;
}

.text-card .text-card--description {
    background: #F9F8F6 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border: 4px solid white;
    width: 100%;
    max-width: 700px;
    padding: 40px 50px;
    margin-bottom: 100px;
}

.text-card .text-card--description .text-card--title {
    margin: 0px 0px 10px 0px;
    font-size: var(--title-font-size);
    color: var(--dark-text);
}

.text-card .text-card--description .text-card--subtitle {
    margin: 0px 0px 20px 0px;
    font-size: 22px;
    color: var(--dark-text);
}

.text-card .text-card--description .text-card--text {
    color: var(--dark-text);
    font-size: var(--text-font-size);
    line-height: 30px;
    margin: 0;
}

.restaurant-section .restaurant-icons {
    padding: 160px 0px;
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
    background-color: var(--bg-light);
    justify-content: center;
    display: flex;
    width: 100vw;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    top: 100px;
}

.restaurant-section .restaurant-icons .restaurant-icons--inner {
    max-width: 1500px;
    padding: 0px 100px;
    width: 100%;
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-box-pack: start; -moz-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start;
}

.restaurant-section .restaurant-icons .restaurant-icons--inner .icon-item:not(:last-child) {
    margin-right: 120px;
}

.restaurant-section .restaurant-icons .text p {
    margin: 0px;
    font-size: 20px;
    text-align: center;
}


.icon-item {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column;
    -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
    -webkit-align-items: center; -moz-align-items: center; -ms-flex-align: center; align-items: center;
}

.icon-item .icon img {
    width: 130px;
}

.restaurant-section .restaurant-image {
    z-index: 1;
    position: relative;
    top: -70px;
}

.restaurant-section .restaurant-image img {
    max-width: 450px;
    width: 100%;
}

.bar-section {
    margin-top: 100px;
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


.bar-section .bar-image {
    margin-right: 15px;
}

.bar-section .bar-image img {
    max-width: 420px;
    width: 100%;
}

.bar-section .text-card .text-card--description {
    margin-bottom: 50px;
}

/* END Bar-Restaurant */

.homepage--social {
    max-width: 370px;
    min-height: 315px;
    margin: auto;

    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
    -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center;
    -ms-flex-pack: space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
}

.homepage--social--item {
    width: 75px;
    height: 75px;
    background: var(--gold-dark);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.homepage--social--item:hover,
.homepage--social--item:focus,
.homepage--social--item:active,
.homepage--social--item:visited {
    color: #fff;
}

.homepage--social--item:hover,
.homepage--social--item:focus {
    background: var(--gold-dark-hover);
}

.homepage--social--item svg {
    font-size: 42px;
}

#Top_bar .top_bar_left .top-menu .custom-top-menu a {
    font-size: 16px;
}



@media only screen and (max-width: 1700px) {
    :root {
        --title-font-size: 26px;
        --activity-title-font-size: 26px;
        --small-title-font-size: 20px;
        --subtitle-font-size: 20px;
        --small-subtitle-font-size: 15px;
        --text-font-size: 16px;
    }



    .page-template-ourhistory .full-width--image,
    .contact-page.full-width--image,
    .contact-page.full-width--image .slick-slide,
    .contact-page.full-width--image .slick-slide img {
        height: 500px!important;
    }
    

    .homepage--social {
        min-height: 170px;
    }

    .booking-calendar {
        bottom: 250px;
    }

    .activities--grid-item .details .activities--title {
        font-size: 24px !important;
        line-height: 30px;
    }
    

    .custom-input {
        font-size: 18px !important;
    }

    .mm-vertical #Top_bar .top_bar_left {
        width: 90% !important;
        padding: 0px;
    }

    .site-container {
        width: 90%;
    }

    .homepage-activities--body .homepage-activities--body--inner {
        width: 90%;
    }

    .homepage-our-history .homepage-our-history--text .homepage-our-history--paragraph {
        max-width: 830px;
    }

    .section-subtitle {
        line-height: 36px;
    }

    .homepage--social--item {
        width: 60px;
        height: 60px;
    }

    .homepage--social--item svg {
        font-size: 30px;
    }

    .booking-calendar #booking-mask .date-input .date {
        width: 300px;
    }

    .single-event--details--wrapper:before {
        left: -20px;
    }

    .text-card .text-card--description .text-card--subtitle {
        font-size: 20px;
    }

    .single-event .events-list .events-list-item:not(:last-child) {
        margin-bottom: 20px;
    }

    .single-event .events-list .events-list-item a {
        font-size: 21px;
    }

    .directions--km {
        font-size: 22px;
        margin-bottom: 150px;
    }

    .full-width--image p {
        font-size: 40px;
        line-height: 60px;
    }

    .single-event--details--title {
        font-size: 16px;
    }

    #Top_bar .top_bar_left .header-contact-info a {
        font-size: 16px;
    }

    #Top_bar .menu > li > a, 
    #Top_bar #menu ul li.submenu .menu-toggle {    
        font-size: 16px;
    }

    .fullwidth-hero .hero-title {
        font-size: 35px;
    }

    .fullwidth-hero .hero-subtitle {
        font-size: 16px;
    }

    .booking-calendar #booking-mask label {
        font-size: 15px;
    }

    .homepage-chalets .chalets--grid .chalets--grid-item .details .name {
        font-size: 22px;
    }

    .homepage-chalets .chalets--grid .chalets--grid-item .details .small-desc {
        font-size: 20px;
    }
    
    #Top_bar #logo img {
        max-width: 270px;
    }

    /* .homepage-bar-restaurant::before {
        left: -50px;
    } */

    /* .homepage-bar-restaurant::after {
        right: -50px;
    } */
}

@media only screen and (max-width: 1600px) {
    /* .fullwidth-hero .overlay-text{
        top: 0;
    } */

    .booking-calendar {
        bottom: 250px;
    }

    .booking-calendar #booking-mask .select-input {
        width: 100px;
    }

    .booking-calendar #booking-mask .date-input .date {
        width: 260px;
    }

    .booking-calendar #booking-mask input[type='submit'] {
        width: 200px;
    }

    .floating-booking {
        width: 200px;
        height: 60px;
        right: -60px;
    }

    .floating-booking .floagin-booking--text {
        padding: 10px 25px;
        font-size: 14px;
    }

    .custom-lang-switcher {
        top: calc(50% + 100px);
        height: 50px;
        width: 40px;
    }

    .custom-lang-switcher .wpml-ls .wpml-ls-item a {
        font-size: 14px;
    }

    .homepage-bar-restaurant,
    .homepage-chalets {
        margin-bottom: 150px;
    }

    .single-event--details--wrapper:before {
        display: none;
    }

    .footer-wr {
        padding: 50px;
    }

    .our-history--img {
        max-width: 390px;
    }
}

@media only screen and (max-width: 1400px) {
    .homepage-bar-restaurant,
    .homepage-chalets {
        margin-bottom: 100px;
    }

    .booking-calendar {
        bottom: 230px;
    }
}

@media only screen and (max-width: 1300px) {
    .single-chalet-content .sc--booking-form{
        padding: 74px 55px;
    }
}

@media only screen and (min-width: 1240px) {
    #Top_bar.is-sticky .menu > li > a, #Top_bar.is-sticky .menu > li > a span {
        padding: 0 15px;
    }
}

/* 4 columns */
@media screen and (max-width: 1450px) {

    #Top_bar a.responsive-menu-toggle {
        top: 75% !important;
    }

    .fullwidth-hero .overlay-text {
        top: 15%;
    }

    .bar-section {
        -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
    }

    .text-card .text-card--description {
        max-width: 700px;
    }

    .bar-section .bar-image img {
        max-width: 400px;
    }

    .activities--grid-item .details {
        padding-left: 35px;
        padding-right: 35px;
    }

    .activities--grid-item .details .activities--title {
        font-size: 28px;
    }

    .br-image--bar img, .br-image--restaurant img {
        max-width: 215px;
    }

    .br-text {
        padding-right: 65px;
    }

    .our-history--img {
        max-width: 390px;
    }

    .our-history--content {
        max-width: 600px;
        padding-left: 25px;
    }
}

/* 3 columns */
@media screen and (max-width: 1200px) {
    .booking-calendar {
        bottom: 150px;
    }

    .fullwidth-hero .overlay-text {
        top: 10%;
    }

    .page-template-ourhistory .full-width--image,
    .contact-page.full-width--image,
    .contact-page.full-width--image .slick-slide,
    .contact-page.full-width--image .slick-slide img {
        height: 400px;
    }

    .activities--grid {
        -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
    }

    .activities--grid .activities--grid-item {
        max-width: 50%;
        min-width: 300px;
        margin: 0px 0px 20px 0px;
    }

    .activity-wrapper {
        -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; flex-wrap: wrap;
        margin-top: 0;
        -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
        padding-bottom: 15px;
    }

    .activity--list {
        padding-left: 0;
        padding-right: 0;
    }

    /* A hack to fix the text constantly being on the next line */
    .section-subtitle.homepage-activities--subtitle {
        display: none;
    }

    .smaller-activities-subtitle{
        display: block!important;
    }

    .single-activity--img {
        bottom: 0;
    }

    .move-img-top {
        top: 0;
        margin-top: 15px;
    }

    .mb-50 {
        margin-bottom: 0;
    }

    .homepage-bar-restaurant .br-image--bar {
        margin-right: 0;
        top: 0;
    }

    .booking-calendar #booking-mask .date-input .date {
        width: 250px;
    }

    .booking-calendar #booking-mask .select-input {
        width: 80px;
    }

    .single-chalet-content .sc--booking-form {
        padding: 30px 40px;
    }

    .single-chalet-content .sc--booking-form .sc--booking-form--subtitle {
        margin-bottom: 20px;
    }

    .our-history--outer .background {
        top: -40px;
    }

    .our-history--img {
        max-width: 350px;
    }

    .our-history--img img {
        top: 0; /* was 82px */
    }

    .our-history--content {
        max-width: 100%; /* was 501px */
        padding-left: 25px;
        padding-top: 25px;
    }

    
    .restaurant-section .restaurant-icons .restaurant-icons--inner {
        padding: 0 40px;
        margin-left: 30px;
    }

    .restaurant-section .restaurant-icons .restaurant-icons--inner .icon-item:not(:last-child) {
        margin-right: 50px;
    }

    .restaurant-section .restaurant-icons .restaurant-icons--inner .icon-item .icon img{
        width: 90px;
    }

    .restaurant-section .restaurant-image img {
        max-width: 320px;
    }

    .restaurant-section .restaurant-image {
        top: 0;
    }

}

@media screen and (min-width: 993px) and (max-width: 1001px) {
    .our-history--img img{
        top: 0;
    }
}

/* 2 columns */
@media screen and (max-width: 992px) {
    :root {
        --activity-title-font-size: 26px;
    }

    .floating-booking {
        right: -70px;
    }
    
    .custom-lang-switcher {
        right: 0;
    }

    .custom-input {
        font-size: 16px !important;
        padding-left: 20px !important;
    }

    #Top_bar #logo {
        height: 110px !important;
    }

    #Top_bar .top_bar_left .top-menu {
		padding-top: 10px;
	}

    #Top_bar .top_bar_left .top-menu .header-contact-info a {
        display: none;
    }

    #Top_bar .top_bar_left .header-contact-info > div:not(:last-child) {
        margin-right: 30px;
    }

    .page-template-bar-restaurant .restaurant-section {
        -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column;
    }

    .page-template-bar-restaurant .bar-restaurant--outer {
        margin: 50px 0px;
    }

    .text-card.restaurant-details {
        -webkit-box-ordinal-group: 1; -moz-box-ordinal-group: 1; -ms-flex-order: 1; -webkit-order: 1; order: 1;
        top: 0px;
        position: relative;
        max-width: 100%;
    }

    .text-card.restaurant-details .text-card--description {
        max-width: 100%;
        margin-bottom: 50px;
    }
    

    .restaurant-section .restaurant-icons {
        -webkit-box-ordinal-group: 3; -moz-box-ordinal-group: 3; -ms-flex-order: 3; -webkit-order: 3; order: 3;
        padding: 50px 0px;
        position: relative;
        top: 0px;
    }

    .restaurant-section .restaurant-icons .restaurant-icons--inner {
        -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
        max-width: 100%;
        -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column;
        -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
        -webkit-align-items: center; -moz-align-items: center; -ms-flex-align: center; align-items: center;
    }

    .restaurant-section .restaurant-image {
        text-align: center;
        -webkit-box-ordinal-group: 2; -moz-box-ordinal-group: 2; -ms-flex-order: 2; -webkit-order: 2; order: 2;
        margin-bottom: 50px;
    }

    .restaurant-section .restaurant-image img {
        max-width: 220px;
    }

    .site-container {
        padding-top: 30px;
    }

    .single-activity--img img {
        max-width: 80%;
        height: auto;
        margin: auto;
        margin-bottom: 15px;
        display: block;
    }

    .activity--list--row--title {
        line-height: 34px;
    }

    .mb-160 {
        margin-bottom: 80px;
    }
    
    .single-event {
        flex-direction: column;
        align-items: center;
    }

    .single-event-sidebar {
        margin-top: 0;
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }

    .single-event-sidebar {
        -webkit-box-align: start;
        -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .events-list-item {
        text-align: left;
    }

    .single-event-content {
        width: 100%;
    }

    .footer-wr {
        padding: 40px 10px;
    }

    footer .footer-info {
        -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center;
        -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; flex-wrap: wrap;
    }

    .footer-contact, .footer-newsletter {
        width: 50%;
        padding-bottom: 20px;
    }

    .footer-item-title {
        margin-bottom: 25px;
    }

    .our-history--outer{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .our-history--content{
        padding-left: 0;
        max-width: 100%;
    }

    .our-history--img {
        bottom: unset;
        width: 100%;
        max-width: unset;
    }

    .our-history--img img {
        top: 0!important;
        position: relative;
        width: 100%;
        max-width: 360px;
        margin: auto;
        display: block;
    }

    .homepage-chalets {
        margin-bottom: 100px;
    }

    .homepage-bar-restaurant {
        margin-bottom: 100px;
    }

    .homepage-bar-restaurant {
        padding: 50px 0;
        max-height: unset;
        -webkit-flex-direction: column-reverse; -moz-flex-direction: column-reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .homepage-bar-restaurant--images {
        margin-top: 25px;
    }

    .homepage-bar-restaurant .br-image--bar {
        margin-right: 40px;
    }

    .homepage-bar-restaurant .br-image--restaurant {
        margin-right: 0px;
    }

    .fullwidth-hero .overlay-text {
        top: 5%;
        padding-right: 50px;
    }

    .fullwidth-hero .overlay-text .site-container .row, .container-fluid .booking-calendar .row {
        margin-left: 0!important;
    }

    .booking-calendar {
        padding-left: 30px!important;
        bottom: 15%;
    }

    .single-chalet-content .sc--booking-form .input-split-container > div.input-container {
        width: 50%;
    }

    .single-chalet-content .single-chalet--left,
    .single-chalet-content .single-chalet--right {
        width: 50%;
    }

    .our-history--img {
        max-width: 350px;
    }

    .restaurant-section .restaurant-icons .restaurant-icons--inner .icon-item:not(:last-child) {
        margin-right: 0px;
    }
}

/* 1 column */
@media screen and (max-width: 768px) {
    :root {
        --title-font-size: 24px;
        --activity-title-font-size: 24px;
        --small-title-font-size: 18px;
        --subtitle-font-size: 18px;
        --small-subtitle-font-size: 15px;
        --text-font-size: 15px;
    }

    .homepage--social--item {
        width: 50px;
        height: 50px;
    }

    .homepage--social--item svg {
        font-size: 24px;
    }

    .homepage--social {
        -webkit-justify-content: space-around; -moz-justify-content: space-around; -ms-justify-content: space-around; -o-justify-content: space-around; justify-content: space-around;
        min-height: 100px;
    }

    .section-subtitle {
        line-height: 30px;
    }

    .site-container,
    .mm-vertical #Top_bar .top_bar_left,
    .homepage-activities--body .homepage-activities--body--inner {
        width: 100% !important;
    }

    .homepage-chalets .chalets--grid .chalets--grid-item .details .name {
        font-size: 18px;
    }

    .homepage-chalets .chalets--grid .chalets--grid-item .details .small-desc {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .btn {
        font-size: 16px !important;
    }


    .text-card .text-card--description {
        padding: 20px 30px;
    }
    .activities--grid .activities--grid-item {
        margin-right: 0;
        max-width: 100%;
    }

    .book-your-adventure--title {
        font-size: var(--title-font-size);
    }

    .amenities {
        padding: 40px 25px;
    }

    .amenity .amenity--icon {
        margin-right: 30px;
        min-width: 60px;
        font-size: 32px;
    }

    .full-width--image p {
        font-size: 40px;
        line-height: 50px;
        padding-top: 150px;
        padding-left: 20px;
    }

    .directions--km {
        margin-bottom: 100px;
    }

    #menu {
        right: -20px;
    }

    #Top_bar #menu {
        float: unset;
        position: absolute !important;
        padding-bottom: 0 !important;
    }

    #Top_bar a.responsive-menu-toggle {
        top: 70% !important;
    }

    .homepage-chalets .chalets--grid .chalets--grid-item {
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 50px;
    }

    .homepage-chalets .chalets--grid .image img {
        max-width: 100%;
    }

    .br-image--bar img, .br-image--restaurant img {
        max-width: 100%;
    }

    .fullwidth-hero .hero-title {       
        margin: 0;
        font-size: 35px;
        line-height: 55px;
    }


    .single-chalet-content {
        -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column;
    }

    .single-chalet-content .single-chalet--left,
    .single-chalet-content .single-chalet--right {
        width: 100%;
    }

    .single-chalet-content .single-chalet--left {
        margin-right: unset;
    }

    .slick-next-chalet {
        right: 20px;
    }

    .slick-prev-chalet {
        left: 20px;
    }

    .single-chalet-content .sc--booking-form {
        position: relative;
        top: 0;
        margin-bottom: 20px;
        margin-left: 0;
    }

    .single-chalet-content .single-event--details {
        margin-bottom: 40px;
        padding: 20px 30px;
    }

    .homepage-chalets {
        margin-bottom: 50px;
    }

    .single-chalet-content .sc--gallery-item img {
        max-width: 100%;
    }

    .single-chalet-content .single-chalet-description {
        margin-bottom: 40px;
    }

    .our-history--outer {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }

    .page-template-ourhistory .homepage-chalets .homepage-chalets--body::before {
        top: -100px;
    }

    .our-history--img {
        max-width: 300px;
    }

    .our-history--content {
        max-width: 100%;
        padding-left: 15px;
    }
}

/* 1 column */
@media screen and (max-width: 576px) {

    /* .home-book-dates, .home-book-left, .booking-calendar #booking-mask {
        -webkit-box-pack: start!important; -moz-box-pack: start!important; -webkit-justify-content: flex-start!important; -ms-flex-pack: start!important; justify-content: flex-start!important;
    } */

    .top-menu .custom-top-menu {
        display: none!important;
    }

    /* #Top_bar {
        position: fixed !important;
    } */

    #Top_bar.is-sticky .column.one .logo-menu {
        margin-top: 0;
    }

    #Top_bar .top_bar_left .top-menu .header-contact-info {
        -webkit-box-align: start; -moz-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start;
    }

    #Top_bar .top_bar_left .top-menu .header-contact-info>div {
        display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
        -webkit-flex-direction: row; -moz-flex-direction: row; -ms-flex-direction: row; flex-direction: row;
    }

    #Top_bar.is-sticky .column.one .logo-menu {
        position: fixed;
        background: #fff;
        left: 0;
        right: 0;
        padding: 0 10px;
        top: 0;
    }

    .book-now--container {
        min-width: fit-content;
        display: flex;
        align-items: center;
    }

    .book-now--container a {
        height: auto;
        padding: 5.5px 15px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .1em;
        min-width: fit-content;
        color: #fff;
        background: var(--gold-dark);
    }

    .book-now--container a:hover, .book-now--container a:focus, .book-now--container a:active {
        color: #fff;
        text-decoration: none;
    }

    .fullwidth-hero .overlay-text {
        padding-right: 0;
        top: 13%;
    }

    .fullwidth-hero .overlay-text .site-container .col-sm-12 {
        padding-left: 10px;
        padding-right: 35px;
    }

    .input-container.date-input {
        margin-right: 0px;
    }

    .booking-calendar #booking-mask .select-input {
        margin-right: 10px;
    }

    .booking-calendar #booking-mask .select-input:last-child {
        margin-right: 0px;
    }

    .booking-calendar #booking-mask input[type='submit'] {
        width: 260px;
    }

    .booking-calendar {
        bottom: 10%;
        padding-left: 15px !important;
    }


    .floating-booking {
        display: none;
        width: 150px;
        height: 45px;
        right: -55px;
    }

    .floating-booking .floagin-booking--text {
        padding: 4px 17px;
        font-size: 10px;
    }

    .homepage-chalets--subtitle.section-subtitle {
        width: 60%;
    }

    .homepage-our-history .homepage-our-history--image {
        overflow: hidden;
        min-height: 180px;
    }

    .homepage-our-history .homepage-our-history--image img {
        /* width: 100%;
        height: 100%; */
        object-fit: cover;
        width: 100%;
        height: 100%;
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        -webkit-transform-origin-x: 30%;
}
    

    footer .footer-info {
        -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; flex-direction: column;
    }
    .footer-contact, .footer-newsletter, .footer-instagram {
        width: 100%;
    }
    .footer-contact, .footer-newsletter {
        padding-bottom: 50px;
    }
    .footer-contact .footer-book-btn {
        margin-left: 0px;
    }
    .activities--grid {
        padding: 0 15px;   
    }

    .activities--grid .slick-prev {
        left: 0;        
    }

    .activities--grid .slick-next {
        right: 0;
    }

    .single-activity-title {
        margin-top: 20px;
    }

    .full-width--image p {
        font-size: var(--title-font-size);
    }

    .contact-col .input-container:first-child {
        margin-right: 0;
    }

    #eapps-instagram-feed-1 {
        max-width: 260px !important;
    }
    
    .homepage-chalets .chalets--grid .chalets--grid-item {
        min-width: 270px;
    }

    .homepage-chalets .chalets--grid .chalets--grid-item .details {
        padding: 10px;
    }

    .br-text {
        padding-right: 0;
    }

    .homepage-bar-restaurant {
        margin-right: -25px;
        margin-left: -25px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .homepage-bar-restaurant:before {
        content: unset;
    }

    span.restaurant-hours {
        display: block;
        margin-left: 45px;
    }

    .fullwidth-hero:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.2);
    }

    .home-book-dates,
    .home-book-left,
    .booking-calendar #booking-mask {
        -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
    }

    .fullwidth-hero {
        height: 550px; /* was 940px */
        z-index: 2;
    }

    .container-fluid.booking-calendar {
        display: none!important;
    }

    .home--bg-carousel-item {
        height: 940px;
        z-index: 2;
    }

    .fullwidth-hero .hero-title {
        font-size: 30px;
        line-height: 45px;
    }

    .fullwidth-hero .hero-subtitle {
        font-size: 16px;
    }

    .booking-calendar {
        z-index: 3;
    }

    #Top_bar #logo img.logo-mobile {
        max-width: 150px;
    }

    #Top_bar a.responsive-menu-toggle {
        /* right: 10%; */
        /* top: 50%!important; */
        position: static;
        margin-top: 15px;
        width: unset;
        height: unset;
    }

    #Top_bar .logo {
        width: fit-content; /* For better menu alignment */
    }

    #Top_bar .menu_wrapper {
        width: fit-content!important; /* For better menu alignment */
    }

    #Top_bar .logo #logo {
        margin: -20px 25px;
    }
    
    .homepage-chalets .homepage-chalets--header {
        margin-bottom: 30px;
    }

    .homepage-chalets .homepage-chalets--body {
        padding-top: 0;
        padding-bottom: 0;
    }

    .single-chalet-content .single-chalet--right {
        display: none;
    }

    .chalets--grid .chalet-page .chalets--grid-item {
        margin-bottom: 0;
    }

    .single-chalet-content .sc--booking-form {
        padding: 20px 20px;
    }

    .homepage-chalets .chalets--grid .chalets--grid-item .details .button-group{
        -webkit-box-pack: start; -moz-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start;
    }

    .homepage-activities--body {
        padding-bottom: 0;
    }
    
    /* For icons on mobile resolutions to remove their container margin on the left */
    .restaurant-section .restaurant-icons .restaurant-icons--inner {
        margin-left: 0;
    }

    .page-template-ourhistory .full-width--image {
        background-size: 200%;
        background-repeat: no-repeat;
        height: 300px!important;
    }

    .our-history--outer {
        margin-top: 0;
    }

    .our-history--img {
        max-width: 100%;
    }

    .our-history--content {
        max-width: 100%;
        padding-left: 15px;
    }

    .bar-section {
        margin-top: 20px;
    }

    .d-flex.justify-content-between.activity-wrapper.mb-50 .activity--list {
        padding-top: 0;
    }

    .mb-160 {
        margin-bottom: 0;
    }

    .full-width--image p {
        padding: 30px 25px 25px 15px;
    }
    
    .gyrw-perioxes-list--row--text { 
        font-size: 16px;
    }

    .contact-page .slick-list .slick-track{
        max-height: 250px!important;
    }

    .contact-page.full-width--image {
        height: 250px!important;
    }

    .contact-page.full-width--image .slick-slide {
        height: 250px!important;
    }

    .contact-page.full-width--image .slick-slide img {
        height: 250px!important;
    }
}


@media screen and (max-width: 373px){
    .booking-calendar {
        bottom: 5%;
    }
}

@media screen and (max-width: 350px) {
    .fullwidth-hero .overlay-text {
        top: 4%;
    }

    .booking-calendar {
        bottom: 0;
    }

    #Top_bar .logo #logo {
        margin: -20px 10px;
    }

    #Top_bar .menu_wrapper {
        margin-left: 10px!important;
    }

    .book-now--container a {
        padding: 5.5px 10px;
    }

    /* .homepage-our-history .homepage-our-history--image {
        min-height: 120px;
    } */

    .homepage-our-history .homepage-our-history--image img {
        transform: scale(1.3);
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
        -webkit-transform-origin-y: 50%;
}

}

.espa-banner {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: rgba(0,0,0,0.8) !important;
    z-index: 13;
    text-align: center;
    margin: 0px;
    text-align: center;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}

.espa-banner img {
    height: 55px !important;
    width: auto !important;
    margin-top: 5px;
    display: inline-block;
    max-width: 100%;
}